2022-11-21 18:40:28 +08:00
|
|
|
|
.fileDirectory {
|
2022-12-09 09:22:38 +08:00
|
|
|
|
width: 45%;
|
|
|
|
|
|
min-width: 700px;
|
2022-11-21 18:40:28 +08:00
|
|
|
|
position: absolute;
|
2022-12-09 09:22:38 +08:00
|
|
|
|
top: -5px;
|
|
|
|
|
|
height: calc(100% + 30px);
|
|
|
|
|
|
right: -15px;
|
|
|
|
|
|
background: $--background-color-empty;
|
|
|
|
|
|
box-shadow: 5px 0 3px 0 $--explore-border-color-bottom;
|
2022-11-21 18:40:28 +08:00
|
|
|
|
z-index: 10;
|
2022-12-09 09:22:38 +08:00
|
|
|
|
font-size: 14px;
|
2022-11-21 18:40:28 +08:00
|
|
|
|
.file-directory-header{
|
|
|
|
|
|
display: flex;
|
2022-12-09 09:22:38 +08:00
|
|
|
|
font-size: 14px;
|
2022-11-21 18:40:28 +08:00
|
|
|
|
width: 100%;
|
|
|
|
|
|
justify-content: space-between;
|
2022-12-09 09:22:38 +08:00
|
|
|
|
padding: 0 20px;
|
|
|
|
|
|
height: 36px;
|
|
|
|
|
|
line-height: 36px;
|
|
|
|
|
|
background: $--background-color-empty;
|
|
|
|
|
|
border-bottom: 1px solid rgba(51,51,51,0.10);
|
2022-11-21 18:40:28 +08:00
|
|
|
|
box-sizing: border-box;
|
2022-12-09 09:22:38 +08:00
|
|
|
|
color:$--color-text-regular;
|
2022-11-23 18:38:00 +08:00
|
|
|
|
.header-option{
|
|
|
|
|
|
>i {
|
|
|
|
|
|
margin-right: 22px;
|
|
|
|
|
|
}
|
2022-12-09 09:22:38 +08:00
|
|
|
|
.nz-icon-close {
|
|
|
|
|
|
margin-right: 15px;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
.file-directory-path{
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
padding: 0 20px;
|
|
|
|
|
|
background: $--background-color-empty;
|
|
|
|
|
|
height: 36px;
|
|
|
|
|
|
line-height: 36px;
|
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
color:$--color-text-regular;
|
|
|
|
|
|
.breadcrumb-box{
|
|
|
|
|
|
.nz-icon-edit{
|
|
|
|
|
|
margin-left: 15px;
|
|
|
|
|
|
display: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
.breadcrumb-box:hover {
|
|
|
|
|
|
.nz-icon-edit{
|
|
|
|
|
|
display: inline-block;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
.nz-icon-edit:hover{
|
|
|
|
|
|
color: $--color-primary;
|
|
|
|
|
|
cursor: pointer;
|
2022-11-23 18:38:00 +08:00
|
|
|
|
}
|
|
|
|
|
|
.breadcrumb-item{
|
2022-12-09 09:22:38 +08:00
|
|
|
|
color:$--color-text-regular
|
2022-11-23 18:38:00 +08:00
|
|
|
|
}
|
|
|
|
|
|
.breadcrumb-action{
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
}
|
|
|
|
|
|
.breadcrumb-action:hover{
|
|
|
|
|
|
color: $--color-primary;
|
2022-11-21 18:40:28 +08:00
|
|
|
|
}
|
2022-12-09 09:22:38 +08:00
|
|
|
|
.path-option{
|
|
|
|
|
|
display: inline-block;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
.nz-icon-a-newfolder{
|
|
|
|
|
|
margin-left: 20px;
|
|
|
|
|
|
margin-right: 20px;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2022-12-14 17:36:52 +08:00
|
|
|
|
.el-input--suffix .el-input__inner{
|
|
|
|
|
|
padding-right: 106px;
|
|
|
|
|
|
}
|
2022-11-21 18:40:28 +08:00
|
|
|
|
}
|
|
|
|
|
|
.file-directory-content{
|
2022-12-09 09:22:38 +08:00
|
|
|
|
height: calc(100% - 60px);
|
2022-11-21 18:40:28 +08:00
|
|
|
|
width: calc(100% - 15px);
|
|
|
|
|
|
overflow: auto;
|
|
|
|
|
|
}
|
2022-12-20 14:38:48 +08:00
|
|
|
|
//.file-state-panel-content::-webkit-scrollbar {
|
|
|
|
|
|
// width: 6px;
|
|
|
|
|
|
//}
|
|
|
|
|
|
//.file-directory-content::-webkit-scrollbar-thumb {
|
|
|
|
|
|
// width: 6px;
|
|
|
|
|
|
//}
|
|
|
|
|
|
//.file-directory-content::-webkit-scrollbar-thumb:hover {
|
|
|
|
|
|
// width: 6px;
|
|
|
|
|
|
//}
|
2022-12-09 09:22:38 +08:00
|
|
|
|
.directory-content-header{
|
|
|
|
|
|
height: 32px;
|
|
|
|
|
|
line-height: 32px;
|
|
|
|
|
|
background: $--background-color-2;
|
|
|
|
|
|
width: calc(100% - 22px);
|
|
|
|
|
|
color: $--color-text-regular;
|
|
|
|
|
|
}
|
|
|
|
|
|
.file-name{
|
|
|
|
|
|
width: 44%;
|
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
padding-left: 10px;
|
|
|
|
|
|
display: inline-block;
|
2022-12-14 17:36:52 +08:00
|
|
|
|
position: relative;
|
|
|
|
|
|
.nz-icon-link{
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
|
left: 7px;
|
|
|
|
|
|
bottom: -5px;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
}
|
2022-12-09 09:22:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
.file-size{
|
|
|
|
|
|
width: 15%;
|
|
|
|
|
|
display: inline-block;
|
2022-12-09 21:56:35 +08:00
|
|
|
|
position: relative;
|
2022-12-09 09:22:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
.file-date{
|
|
|
|
|
|
width: 25%;
|
|
|
|
|
|
display: inline-block;
|
2022-12-09 21:56:35 +08:00
|
|
|
|
position: relative;
|
2022-12-09 09:22:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
.file-opt{
|
|
|
|
|
|
width: 14%;
|
|
|
|
|
|
display: inline-block;
|
|
|
|
|
|
.nz-icon-shuxing{
|
|
|
|
|
|
margin-right: 20px;
|
2022-11-23 18:38:00 +08:00
|
|
|
|
}
|
2022-11-21 18:40:28 +08:00
|
|
|
|
}
|
2022-12-09 21:56:35 +08:00
|
|
|
|
.file-arrow-header{
|
|
|
|
|
|
display: inline-flex;align-items: center;width: 100%
|
|
|
|
|
|
}
|
|
|
|
|
|
.nz-arrow-box{
|
|
|
|
|
|
display: flex;flex-direction: column;align-items: center;margin-left: 7px
|
|
|
|
|
|
}
|
|
|
|
|
|
.nz-arrow-up{
|
2022-12-22 11:37:01 +08:00
|
|
|
|
margin-bottom: 2px;
|
2022-12-09 21:56:35 +08:00
|
|
|
|
}
|
|
|
|
|
|
.nz-arrow-up.is-select{
|
|
|
|
|
|
border-bottom:5px solid $--color-primary; /* 定义底部颜色 */
|
|
|
|
|
|
}
|
|
|
|
|
|
.nz-arrow-down.is-select{
|
|
|
|
|
|
border-top:5px solid $--color-primary; /* 定义底部颜色 */
|
|
|
|
|
|
}
|
|
|
|
|
|
.nz-icon-caret-up {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
}
|
|
|
|
|
|
.nz-icon-caret-down {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
}
|
2022-11-21 18:40:28 +08:00
|
|
|
|
.file-item{
|
|
|
|
|
|
font-family: Roboto-Regular;
|
|
|
|
|
|
font-size: 14px;
|
2022-12-09 09:22:38 +08:00
|
|
|
|
color: $--color-text-regular;
|
2022-11-21 18:40:28 +08:00
|
|
|
|
font-weight: 400;
|
|
|
|
|
|
margin-top: 8px;
|
2022-12-09 09:22:38 +08:00
|
|
|
|
line-height: 24px;
|
|
|
|
|
|
height: 24px;
|
2022-11-21 18:40:28 +08:00
|
|
|
|
}
|
|
|
|
|
|
.file-item:hover{
|
|
|
|
|
|
background: rgba(255,134,0,0.50);
|
|
|
|
|
|
font-family: Roboto-Regular;
|
2022-11-23 18:38:00 +08:00
|
|
|
|
}
|
|
|
|
|
|
.my-loading-box{
|
|
|
|
|
|
background: #1a1a1a;
|
2022-11-21 18:40:28 +08:00
|
|
|
|
}
|
2022-12-09 09:22:38 +08:00
|
|
|
|
.nz-icon:hover{
|
|
|
|
|
|
color: $--color-primary;
|
|
|
|
|
|
}
|
|
|
|
|
|
.file-info-item-header{
|
|
|
|
|
|
padding-bottom: 20px; border-bottom: 1px solid $--border-color-light;
|
|
|
|
|
|
}
|
|
|
|
|
|
.file-info-item{
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
|
|
|
|
.file-info-item-left{
|
|
|
|
|
|
width: 180px;
|
|
|
|
|
|
flex-shrink: 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
.file-info-item-right{
|
|
|
|
|
|
width: 200px;
|
|
|
|
|
|
flex-shrink: 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2022-11-21 18:40:28 +08:00
|
|
|
|
}
|
2022-12-09 21:56:35 +08:00
|
|
|
|
div.nz-arrow-up {
|
|
|
|
|
|
width:0px;
|
|
|
|
|
|
height:0px;
|
|
|
|
|
|
border-left:5px solid transparent; /* 右透明 */
|
|
|
|
|
|
border-right:5px solid transparent; /*右透明 */
|
|
|
|
|
|
border-bottom:5px solid $--color-text-disabled; /* 定义底部颜色 */
|
|
|
|
|
|
font-size:0px;
|
|
|
|
|
|
line-height:0px;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
}
|
|
|
|
|
|
/* css3三角形(向下 ▼) */
|
|
|
|
|
|
div.nz-arrow-down {
|
|
|
|
|
|
width:0px;
|
|
|
|
|
|
height:0px;
|
|
|
|
|
|
border-left:5px solid transparent;
|
|
|
|
|
|
border-right:5px solid transparent;
|
|
|
|
|
|
border-top:5px solid $--color-text-disabled;
|
|
|
|
|
|
font-size:0px;
|
|
|
|
|
|
line-height:0px;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
}
|
|
|
|
|
|
|