1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-27 23:56:18 +00:00
Files
seahub/frontend/src/css/side-panel.css
2025-03-21 18:21:56 +08:00

200 lines
3.2 KiB
CSS

/*
the main reason to icon can not be align is that .folder has a real width it take the place
of .tree-node-inner causing tree-node-icon not aligned , use absolute can make sure .tree-node-icon
is always at the far left of .tree-node-inner
*/
.side-panel {
user-select: none;
height: 100%;
}
.side-panel .nav {
border-bottom: 1px solid #eee;
padding-top: 10px;
padding-bottom: 10px;
min-width: 125px;
height: 36px;
}
.side-panel .nav-link {
color: #888;
}
.side-panel .nav-link.active {
color: #EC8000;
}
.side-panel-content {
padding-top: 8px;
padding-bottom: 8px;
height: calc(100% - 36px);
overflow: auto;
font-size: 0.875rem;
}
.image-view {
width: 200px;
height: 150px;
position: absolute;
background-color: #fff;
z-index: 1004;
box-shadow: 0 0 10px #aaa;
border-radius: 3px;
line-height: 150px;
overflow: hidden;
font-size: 0;
text-align: center;
}
.image-view img {
max-width: 100%;
max-height: 100%;
}
.image-view i {
width: 100%;
height: 100%;
text-align: center;
line-height: 150px;
font-size: 30px;
color: #EC8000;
-moz-animation: rotate 1.5s ease infinite;
-webkit-animation: rotate 1.5s ease infinite;
animation: rotate 1.5s ease infinite;
}
@keyframes rotate {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.outline-h2 {
margin-left: 20px;
line-height: 2.5;
color: #364149;
white-space: nowrap;
cursor: pointer;
}
.outline-h2:hover {
color: #EC8000;
}
.outline-h3 {
margin-left: 40px;
line-height: 2.5;
color: #364149;
white-space: nowrap;
cursor: pointer;
}
.outline-h3:hover {
color: #EC8000;
}
/*tree view */
.tree-view {
padding: 0 12px;
line-height: 1.5;
}
.tree-node-inner {
position: relative;
height: 28px;
padding: 2px 0;
cursor: pointer;
line-height: 1.625;
}
.tree-node-inner-hover {
background-color: rgb(255, 239, 178);
border-radius: 0.25rem;
}
.tree-node-inner .tree-node-text {
padding-left: 2.8rem;
width: calc(100% - 1rem);
font-size: 14px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
line-height: 24px;
}
.tree-node-inner .left-icon {
position: absolute;
display: flex;
justify-content: center;
align-items: center;
top: 2px;
left: 0;
padding-left: 1.5rem;
}
.folder-toggle-icon {
position: absolute;
left: 0;
color: #666666;
line-height: 1.625;
width: 1.5rem;
display: flex;
align-content: center;
justify-content: center;
}
.tree-node-icon {
display: inline-block;
width: 1rem;
text-align: center;
color: #666666;
}
.tree-node-inner .right-icon {
position: absolute;
top: 2px;
right: 1rem;
bottom: 0;
width: 1.5rem;
color: #666;
z-index: 2;
font-size: 0.8125rem;
text-align: center;
}
.tree-node-inner .right-icon i {
width: 100%;
height: 100%;
vertical-align: middle;
font-size: 0.8125rem;
line-height: 1.625rem !important;
color: #666666;
}
.tree-node-hight-light {
color: #fff;
border-radius: 4px;
background-color: #feac74 !important;
}
.tree-node-hight-light i {
color: #fff;
}
.parent-path {
position: relative;
}
.parent-path .form-text {
position: absolute;
top: 50%;
transform: translateY(-50%);
margin-top: 0;
margin-left: 0.25rem;
font-size: 0.9375rem;
}