198 lines
3.2 KiB
CSS
198 lines
3.2 KiB
CSS
[v-cloak] {
|
|
display: none
|
|
}
|
|
|
|
#app {
|
|
background-color: rgb(240, 242, 245);
|
|
height: 100%;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.platform .guava-card .slot-class {
|
|
height: calc(100vh - 180px);
|
|
}
|
|
|
|
/**
|
|
图片预览
|
|
*/
|
|
.viewer-container {
|
|
z-index: 10000;
|
|
}
|
|
|
|
/**
|
|
富文本层级调整
|
|
*/
|
|
.w-e-toolbar{
|
|
z-index: 1001!important;
|
|
}
|
|
|
|
.w-e-text-container{
|
|
z-index: 1000!important;
|
|
}
|
|
|
|
|
|
/**
|
|
搜索栏样式
|
|
*/
|
|
.search {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
margin-bottom: -15px;
|
|
}
|
|
|
|
.search .search-item {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 15px;
|
|
box-sizing: border-box;
|
|
width: calc((100% - 160px) / 3);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.search .search-query {
|
|
width: 160px;
|
|
margin-bottom: 15px;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.search .search-item:not(:last-child) {
|
|
padding-right: 40px;
|
|
}
|
|
|
|
.search .search-item-label {
|
|
color: rgb(100, 100, 100);
|
|
margin-right: 10px;
|
|
width: 80px;
|
|
min-width: 80px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.search .search-item-option {
|
|
min-width: calc(100% - 80px - 10px);
|
|
overflow: hidden;
|
|
}
|
|
|
|
@media screen and (max-width: 1200px) {
|
|
.search .search-item {
|
|
width: calc((100% - 160px) / 2);
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 992px) {
|
|
.search .search-item {
|
|
width: 100%;
|
|
}
|
|
|
|
.search .search-item:not(:last-child) {
|
|
padding-right: 0;
|
|
}
|
|
}
|
|
|
|
|
|
.platform .vi-table table thead tr th {
|
|
background-color: #fafafa !important;
|
|
}
|
|
|
|
.table-tool-group {
|
|
margin-left: 15px;
|
|
overflow: hidden;
|
|
border-radius: 20px;
|
|
display: flex;
|
|
}
|
|
|
|
.table-tool-group .table-tool-group-item {
|
|
width: 40px;
|
|
height: 40px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
background-color: rgba(240, 240, 240, .7);
|
|
font-weight: bolder;
|
|
transition: all 250ms;
|
|
}
|
|
|
|
.table-tool-group .table-tool-group-item:not(:last-child) {
|
|
border-right: 1px solid white;
|
|
}
|
|
|
|
.table-tool-group .table-tool-group-item:hover {
|
|
color: white;
|
|
background-color: rgb(64, 158, 255);
|
|
}
|
|
|
|
.width-100 {
|
|
width: 100%;
|
|
}
|
|
|
|
.ie-must-go-die {
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
}
|
|
|
|
.ie-must-go-die .ie-container {
|
|
position: absolute;
|
|
top: 40%;
|
|
left: 33%;
|
|
text-align: center;
|
|
color: #000;
|
|
}
|
|
|
|
.ie-must-go-die .ie-container h1 {
|
|
font-size: 28px;
|
|
margin-bottom: 36px;
|
|
}
|
|
|
|
.ie-must-go-die .ie-container p {
|
|
font-size: 16px;
|
|
line-height: 24px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.ie-must-go-die .ie-container a {
|
|
display: block;
|
|
color: inherit;
|
|
}
|
|
|
|
.ie-must-go-die .ie-container a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.ie-must-go-die .ie-container a:visited {
|
|
color: inherit;
|
|
}
|
|
|
|
.el-loading-spinner i {
|
|
font-size: 28px;
|
|
}
|
|
|
|
.el-loading-spinner i, .el-loading-spinner p {
|
|
/*color: white !important;*/
|
|
}
|
|
|
|
.w-e-toolbar {
|
|
background-color: white !important;
|
|
border-color: #DCDFE6 !important;
|
|
}
|
|
|
|
.w-e-text-container {
|
|
border-color: #DCDFE6 !important;
|
|
}
|
|
|
|
.el-radio-group label {
|
|
margin-bottom: 0 !important;
|
|
}
|
|
|
|
|
|
/* 滚动条整体部分 */
|
|
.main-navigation::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
|
|
.main-navigation {
|
|
border-right: 3px solid rgb(240, 240, 240);
|
|
} |