1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- $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;
- }
- .table-text-textnowrap {
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- color: #075985;
- cursor: pointer;
- }
|