NEZ-2446 feat: web terminal 新页面开发(通过浏览器新标签页方式打开)

This commit is contained in:
zhangyu
2022-12-09 21:56:35 +08:00
parent 132beefc1e
commit ea7fed7202
11 changed files with 101 additions and 21 deletions

View File

@@ -104,10 +104,12 @@
.file-size{
width: 15%;
display: inline-block;
position: relative;
}
.file-date{
width: 25%;
display: inline-block;
position: relative;
}
.file-opt{
width: 14%;
@@ -116,6 +118,27 @@
margin-right: 20px;
}
}
.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{
margin-bottom: 5px;
}
.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;
}
.file-item{
font-family: Roboto-Regular;
font-size: 14px;
@@ -153,3 +176,25 @@
}
}
}
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;
}