干燥机配套车间生产管理系统/云平台服务端
baoshiwei
2023-03-10 1fb197352b6a263646e4ccd3ed1c7854ede031dd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
#app {
  width: 100%;
  height: 100%;
}
 
// =================================
// ==============scrollbar==========
// =================================
 
::-webkit-scrollbar {
  width: 7px;
  height: 8px;
}
 
// ::-webkit-scrollbar-track {
//   background: transparent;
// }
 
::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.05);
}
 
::-webkit-scrollbar-thumb {
  // background: rgba(0, 0, 0, 0.6);
  background-color: rgba(144, 147, 153, 0.3);
  // background-color: rgba(144, 147, 153, 0.3);
  border-radius: 2px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
}
 
::-webkit-scrollbar-thumb:hover {
  background-color: @border-color-dark;
}
 
[data-theme='dark'] {
  ::-webkit-scrollbar-thumb:hover {
    background-color: #5e6063;
  }
}
 
// =================================
// ==============nprogress==========
// =================================
#nprogress {
  pointer-events: none;
 
  .bar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 100%;
    height: 2px;
    background-color: @primary-color;
    opacity: 0.75;
  }
}
 
// =======================================
// ============ [sjl] 按钮组样式 ==========
// =======================================
.j-table-operator {
  // Button按钮间距
  .ant-btn {
    margin: 0 8px 8px 0;
    transition: margin 0s;
  }
 
  & > .ant-btn:last-of-type {
    margin: 0 0 8px 0;
  }
 
  .ant-btn-group,
  &.ant-btn-group {
    .ant-btn {
      margin: 0;
      transition: margin 0s;
    }
 
    & > .ant-btn:last-of-type {
      margin: 0 8px 8px 0;
    }
  }
}
 
// ========================================
// ============ [sjl] 底部按钮样式 ==========
// ========================================
.j-box-bottom-button {
  height: 28px;
 
  &-float {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-top: 1px solid #e8e8e8;
    padding: 10px 16px;
    text-align: right;
    background: #fff;
    border-radius: 0 0 2px 2px;
 
    & .ant-btn {
      margin-left: 8px;
    }
  }
 
  &.offset-20 &-float {
    left: -20px;
    right: -20px;
    bottom: -20px;
  }
}