1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- $darkBlue: #3475c5;
- $ashen: #fefefe;
- $backColor: #eef3f6;
- $black: #000;
- $fontBlack: #333;
- $fontGray: #999;
- $modena: #6f4afe;
- .text-gray {
- color: $fontGray;
- }
- .text-black {
- color: $fontBlack;
- }
- .back-dark {
- background-color: $darkBlue;
- }
- // 设置滚动条样式
- .scroll-bar::-webkit-scrollbar {
- width: 4px;
- height: 10px;
- }
- .scroll-bar::-webkit-scrollbar-thumb {
- background: linear-gradient(to bottom right, #C1C1C1 0%, #C1C1C1 100%);
- border-radius: 5px;
- }
- .scroll-bar::-webkit-scrollbar-track {
- background-color: none;
- border: 1px solid none;
- }
- .scroll-bar::-webkit-scrollbar-button {
- background-color: #C1C1C1;
- border-radius: 2px;
- height: 4px;
- }
- .scroll-bar::-webkit-scrollbar-button:hover {
- background-color: #999999;
- }
- .scroll-bar-hide::-webkit-scrollbar {
- width: 1px;
- height: 0px;
- }
- .el-dialog__header, .el-dialog__body{
- margin: 0 !important;
- padding: 0 !important;
- }
|