123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- $darkBlue: #3475c5;
- $ashen: #fefefe;
- $backColor: #eef3f6;
- $black: #606266;
- $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, #DDDEE0 0%, #c1c1c1 100%);
- border-radius: 5px;
- }
- .scroll-bar::-webkit-scrollbar-track {
- background-color: none;
- border: 1px solid none;
- }
- .scroll-bar::-webkit-scrollbar-button {
- height: 0px;
- }
- .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;
- }
- .table-text-textnowrap {
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- color: #075985;
- cursor: pointer;
- }
|