140 lines
2.3 KiB
CSS
140 lines
2.3 KiB
CSS
#app {
|
|
height: 100%;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
#app > .transition-row {
|
|
min-height: calc(100vh - 50px);
|
|
}
|
|
|
|
#app > .transition-row > .transition-item {
|
|
width: 100%;
|
|
min-height: 100%;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0
|
|
}
|
|
|
|
.viewer-container {
|
|
z-index: 9999;
|
|
}
|
|
|
|
.header {
|
|
position: relative;
|
|
}
|
|
|
|
.app .header-fixed + .layout {
|
|
padding-top: 0;
|
|
}
|
|
|
|
.el-table-container {
|
|
padding-top: 0;
|
|
}
|
|
|
|
.layout {
|
|
max-height: calc(100vh - 50px);
|
|
}
|
|
|
|
.sidebar {
|
|
width: 250px;
|
|
}
|
|
|
|
.app .brand {
|
|
width: 250px !important;
|
|
}
|
|
|
|
.small-menu .brand {
|
|
width: 70px !important;
|
|
}
|
|
|
|
input[type="file"] {
|
|
display: none
|
|
}
|
|
|
|
.pointer {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.space-around {
|
|
justify-content: space-around;
|
|
}
|
|
|
|
.space-between {
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.el-upload__tip {
|
|
margin-top: 0px;
|
|
color: #c33714;
|
|
}
|
|
|
|
.el-dialog {
|
|
width: 60%;
|
|
}
|
|
|
|
.el-table__empty-block {
|
|
min-height: 300px;
|
|
background: url("/none.png") no-repeat center center;
|
|
background-size: 360px 260px;
|
|
width: 100% !important;
|
|
}
|
|
|
|
.el-table__empty-text {
|
|
display: block;
|
|
position: absolute;
|
|
bottom: 80px;
|
|
height: 40px;
|
|
line-height: 40px;
|
|
}
|
|
|
|
.el-radio-group label{
|
|
margin-bottom: 0!important;
|
|
}
|
|
|
|
|
|
.el-scrollbar__wrap { overflow: scroll; width: 110%; height: 120%; }
|
|
|
|
/* 滚动条有滑块的轨道部分 */
|
|
::-webkit-scrollbar-track-piece {
|
|
background-color: #00000000;
|
|
border-radius: 1px;
|
|
}
|
|
|
|
/* 整个滚动条 */
|
|
::-webkit-scrollbar {
|
|
width: 4px;
|
|
height: 100%;
|
|
}
|
|
|
|
/* 滚动条竖向滑块 */
|
|
::-webkit-scrollbar-thumb:vertical {
|
|
width: 6px;
|
|
height: 6px;
|
|
cursor: pointer;
|
|
background-color: rgba(255, 255, 255, 0.5);
|
|
border-radius: 1px;
|
|
}
|
|
|
|
/* 滚动条竖向滑块hover */
|
|
::-webkit-scrollbar-thumb:vertical:hover {
|
|
background-color: rgba(255, 255, 255, .2);
|
|
}
|
|
|
|
/* 滚动条横向滑块 */
|
|
::-webkit-scrollbar-thumb:horizontal {
|
|
width: 6px;
|
|
height: 6px;
|
|
cursor: pointer;
|
|
background-color: rgba(255, 255, 255, .1);
|
|
border-radius: 1px;
|
|
}
|
|
|
|
/* 滚动条横向滑块hover */
|
|
::-webkit-scrollbar-thumb:horizontal:hover {
|
|
background-color: rgba(255, 255, 255, .2);
|
|
}
|
|
|
|
/* 同时有垂直和水平滚动条时交汇的部分 */
|
|
::-webkit-scrollbar-corner {
|
|
display: block; /* 修复交汇时出现的白块 */
|
|
} |