mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-05-04 09:09:03 +08:00
33 lines
633 B
Plaintext
33 lines
633 B
Plaintext
.week-mode{
|
|
overflow: hidden;
|
|
filter: invert(80%);
|
|
}
|
|
.beauty-scroll{
|
|
scrollbar-color: @primary-color @primary-2;
|
|
scrollbar-width: thin;
|
|
-ms-overflow-style:none;
|
|
position: relative;
|
|
&::-webkit-scrollbar{
|
|
width: 3px;
|
|
height: 1px;
|
|
}
|
|
&::-webkit-scrollbar-thumb {
|
|
border-radius: 3px;
|
|
background: @primary-color;
|
|
}
|
|
&::-webkit-scrollbar-track {
|
|
-webkit-box-shadow: inset 0 0 1px rgba(0,0,0,0);
|
|
border-radius: 3px;
|
|
background: @primary-3;
|
|
}
|
|
}
|
|
.split-right{
|
|
&:not(:last-child) {
|
|
border-right: 1px solid rgba(98, 98, 98, 0.2);
|
|
}
|
|
}
|
|
.disabled{
|
|
cursor: not-allowed;
|
|
opacity: 0.4;
|
|
}
|