zkqh-lagrange-utils 0.0.18 → 0.0.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -14,7 +14,8 @@
14
14
  display: inline-block;
15
15
  height: 22px;
16
16
  line-height: 22px;
17
- font-size: @lc_font_size_s;
17
+ padding: 0 8px;
18
+ font-size: @lc_font_size_m;
18
19
  border-radius: @lc_br_4;
19
20
  cursor: pointer;
20
21
  text-align: center;
@@ -24,6 +25,7 @@
24
25
  display: inline-block;
25
26
  height: 30px;
26
27
  line-height: 30px;
28
+ padding: 0 16px;
27
29
  font-size: @lc_font_size_m;
28
30
  border-radius: @lc_br_4;
29
31
  cursor: pointer;
@@ -78,7 +78,7 @@
78
78
  @lc_btn_border_cancel: 1px solid rgba(255, 255, 255, 0.2); // 取消按钮边框
79
79
  @lc_btn_cancel_bg: @lc_btn_bg_cancel; // 取消按钮背景(别名)
80
80
  @lc_btn_cancel_border: @lc_btn_border_cancel; // 取消按钮边框(别名)
81
- @lc_btn_cancel_color: rgba(245, 249, 255, 0.65); // 取消按钮文字颜色
81
+ @lc_btn_cancel_color: #adc9e9; // 取消按钮文字颜色
82
82
 
83
83
  @lc_btn_primary_bg: #177ddc; // 主按钮背景
84
84
  @lc_btn_primary_border: 1px solid #177ddc; // 主按钮边框
@@ -13,14 +13,16 @@
13
13
  // @param @radius: 滚动条圆角
14
14
  .lc-scrollbar(@width: 6px, @radius: 2px) {
15
15
  // Scrollbar Track
16
- &::-webkit-scrollbar {
16
+ &::-webkit-scrollbar,
17
+ ::-webkit-scrollbar {
17
18
  width: @width;
18
19
  height: @width; // For horizontal scrollbars
19
20
  border-radius: @radius;
20
21
  }
21
22
 
22
23
  // Scrollbar Thumb (Handle)
23
- &::-webkit-scrollbar-thumb {
24
+ &::-webkit-scrollbar-thumb,
25
+ ::-webkit-scrollbar-thumb {
24
26
  border-radius: @radius;
25
27
  background-color: @lc_scroll_thumb_bg;
26
28
  cursor: pointer;
@@ -31,7 +33,8 @@
31
33
  }
32
34
 
33
35
  // Scrollbar Track (Background)
34
- &::-webkit-scrollbar-track {
36
+ &::-webkit-scrollbar-track,
37
+ ::-webkit-scrollbar-track {
35
38
  border-radius: @radius + 1px;
36
39
  background-color: @lc_scroll_track_bg;
37
40
  }