jhbigscreen/src/pages/style/index.less

131 lines
2.4 KiB
Plaintext
Raw Normal View History

2023-08-10 01:16:23 +08:00
.el-tooltip__popper{
max-width: 50%;
2023-08-12 00:51:55 +08:00
}
.font-size-tools{
.set-font-size{
cursor: pointer;
position: relative;
&.active{
color: aqua;
.svg-icon{
*{
fill: aqua;
}
}
}
.svg-icon{
width: 40px !important;
height: 40px !important;
}
&.font-size2{
&::after{
content: "+";
font-style: normal;
right: 0px;
font-weight: bold;
position: absolute;
font-size: 16px !important;
}
margin-right:4px;
}
&.font-size0{
&::after{
content: "-";
font-style: normal;
right: 0px;
font-weight: bold;
position: absolute;
font-size: 16px !important;
}
}
}
2023-08-20 00:25:52 +08:00
}
.finish-0{
2023-08-23 00:03:22 +08:00
color: #e6a23c;
2023-08-20 00:25:52 +08:00
}
.finish-1{
color: red;
}
.finish-2{
2023-08-23 00:03:22 +08:00
color: #01A9FF;
}
.finish-3{
2023-08-20 00:25:52 +08:00
color: green;
2023-08-23 00:03:22 +08:00
}
.finish-4{
color: #a2c8f9;
2023-08-26 01:23:16 +08:00
}
.hide-scroll{
overflow: hidden;
2023-08-26 22:19:33 +08:00
}
.bg-date-picker{
border:none;
background: transparent;
.el-range-input{
background: transparent;
}
.el-range-separator{
color: #fff;
}
}
.bg-date-picker-pop{
color: #eee;
.el-picker-panel__sidebar{
background: transparent;
border-right-color: rgb(1, 169, 255);
}
.el-date-range-picker__content{
.el-date-table {
th{
border-bottom-color: rgb(1, 169, 255);
}
td.in-range{
div{
background-color: #01A9FF;
}
}
}
&.is-left{
border-right-color: rgb(1, 169, 255);
}
}
.popper__arrow{
border-bottom-color:#01A9FF !important;
&::after{
border-bottom-color:#01A9FF !important;
top:0px !important;
}
}
2023-09-10 00:56:59 +08:00
}
.el-loading-mask{
background-color: rgba(255,255,255,.4);
.el-loading-spinner{
2023-09-10 23:20:30 +08:00
height: 100px;
2023-09-10 00:56:59 +08:00
.circular{
right:unset;
width: 100px;
height: 100px;
}
}
2023-09-30 23:04:00 +08:00
}
.el-pagination.bg-pagination{
text-align: center;
.btn-next,.btn-prev{
background-color: rgba(1, 169, 255,0.4);
color: #fff;
}
.btn-next{
margin-left:20px;
}
.el-pager {
li{
background-color: rgba(1, 169, 255,0.4);
margin-left:20px;
color: #fff;
&.active{
background-color: rgba(1, 169, 255,1);
}
}
}
2023-08-10 01:16:23 +08:00
}