@lambo-design/shared 1.0.0-beta.253 → 1.0.0-beta.255

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.
Files changed (66) hide show
  1. package/config/config.js +1 -0
  2. package/config/themes/atrovirens/atrovirens.css +2 -1
  3. package/config/themes/atrovirens/atrovirens.less +2 -0
  4. package/config/themes/atrovirens/var.less +2 -0
  5. package/config/themes/blue/blue.css +2 -1
  6. package/config/themes/blue/blue.less +2 -0
  7. package/config/themes/blue/var.less +2 -0
  8. package/config/themes/blue-white/blue-white.css +15 -10
  9. package/config/themes/blue-white/blue-white.less +2 -0
  10. package/config/themes/blue-white/var.less +2 -0
  11. package/config/themes/blue-white-tight/blue-white-tight.css +2 -1
  12. package/config/themes/blue-white-tight/blue-white-tight.less +2 -0
  13. package/config/themes/blue-white-tight/var.less +2 -0
  14. package/config/themes/cuiwei/cuiwei.css +578 -0
  15. package/config/themes/cuiwei/cuiwei.css.map +10 -0
  16. package/config/themes/cuiwei/cuiwei.less +671 -0
  17. package/config/themes/cuiwei/var.less +682 -0
  18. package/config/themes/danqing/danqing.less +2 -0
  19. package/config/themes/danqing/var.less +2 -0
  20. package/config/themes/deep/deep.css +2 -1
  21. package/config/themes/deep/deep.less +2 -0
  22. package/config/themes/deep/var.less +2 -0
  23. package/config/themes/default/default.css +2 -1
  24. package/config/themes/default/default.less +2 -0
  25. package/config/themes/default/var.less +2 -0
  26. package/config/themes/eap/eap.css +2 -1
  27. package/config/themes/eap/eap.less +2 -0
  28. package/config/themes/eap/var.less +2 -0
  29. package/config/themes/gold/gold.css +2 -1
  30. package/config/themes/gold/gold.less +2 -0
  31. package/config/themes/gold/var.less +2 -0
  32. package/config/themes/index.js +4 -1
  33. package/config/themes/lime/lime.css +2 -1
  34. package/config/themes/lime/lime.less +2 -0
  35. package/config/themes/lime/var.less +2 -0
  36. package/config/themes/orange/orange.css +2 -1
  37. package/config/themes/orange/orange.less +2 -0
  38. package/config/themes/orange/var.less +2 -0
  39. package/config/themes/red/red.css +2 -1
  40. package/config/themes/red/red.less +2 -0
  41. package/config/themes/red/var.less +2 -0
  42. package/config/themes/theme-atrovirens.js +2 -0
  43. package/config/themes/theme-blue.js +2 -0
  44. package/config/themes/theme-bw.js +15 -9
  45. package/config/themes/theme-bwt.js +2 -0
  46. package/config/themes/theme-cuiwei.js +562 -0
  47. package/config/themes/theme-danqing.js +49 -43
  48. package/config/themes/theme-deep.js +2 -0
  49. package/config/themes/theme-default.js +2 -0
  50. package/config/themes/theme-eap.js +2 -0
  51. package/config/themes/theme-gold.js +2 -0
  52. package/config/themes/theme-lime.js +2 -0
  53. package/config/themes/theme-orange.js +2 -0
  54. package/config/themes/theme-red.js +2 -0
  55. package/config/themes/theme-white.js +2 -0
  56. package/config/themes/white/var.less +2 -0
  57. package/config/themes/white/white.css +2 -1
  58. package/config/themes/white/white.less +2 -0
  59. package/package.json +1 -1
  60. package/styles/image/layout-header-bg-cuiwei.png +0 -0
  61. package/utils/storage.js +198 -198
  62. package/utils/style.js +24 -24
  63. package/utils/transfer-queue.js +7 -7
  64. package/utils/type.js +102 -102
  65. package/utils/crypto/aes.js +0 -23
  66. package/utils/crypto/rsa.js +0 -16
@@ -111,6 +111,7 @@
111
111
  --table-td-highlight-bg : @table-td-highlight-bg;
112
112
  --menu-dark-title : @menu-dark-title;
113
113
  --menu-dark-active-bg : @menu-dark-active-bg;
114
+ --menu-user-subsidiary-color : @menu-user-subsidiary-color;
114
115
  --menu-dark-subsidiary-color : @menu-dark-subsidiary-color;
115
116
  --menu-dark-group-title-color : @menu-dark-group-title-color;
116
117
  --date-picker-cell-hover-bg : @date-picker-cell-hover-bg;
@@ -207,6 +208,7 @@
207
208
  --layout-active-color : @layout-active-color;
208
209
  --layout-header-color : @layout-header-color;
209
210
  --layout-header-active-color : @layout-header-active-color;
211
+ --layout-header-nav-fontSize : @layout-header-nav-fontSize;
210
212
  --layout-header-nav-color : @layout-header-nav-color;
211
213
  --layout-header-nav-active-color : @layout-header-nav-active-color;
212
214
  --layout-header-nav-active-font-weight : @layout-header-nav-active-font-weight;
@@ -109,6 +109,7 @@
109
109
  @table-td-highlight-bg : #F8FBFB;
110
110
  @menu-dark-title : #333333;
111
111
  @menu-dark-active-bg : #333333;
112
+ @menu-user-subsidiary-color : rgba(255,255,255,.7);
112
113
  @menu-dark-subsidiary-color : rgba(255,255,255,.7);
113
114
  @menu-dark-group-title-color : rgba(255,255,255,.36);
114
115
  @date-picker-cell-hover-bg : #e1f0fe;
@@ -206,6 +207,7 @@
206
207
  @layout-active-color : @primary-color;
207
208
  @layout-header-color : @menu-dark-subsidiary-color;
208
209
  @layout-header-active-color : @white;
210
+ @layout-header-nav-fontSize : @font-size-base;
209
211
  @layout-header-nav-color : @menu-dark-subsidiary-color;
210
212
  @layout-header-nav-active-color : @primary-color;
211
213
  @layout-header-nav-active-font-weight : bold;
@@ -115,6 +115,7 @@ vxe-table
115
115
  --table-td-highlight-bg: #ebf7ff;
116
116
  --menu-dark-title: #225bb0;
117
117
  --menu-dark-active-bg: #333333;
118
+ --menu-user-subsidiary-color: rgba(255, 255, 255, 0.7);
118
119
  --menu-dark-subsidiary-color: rgba(255, 255, 255, 0.7);
119
120
  --menu-dark-group-title-color: rgba(255, 255, 255, 0.36);
120
121
  --date-picker-cell-hover-bg: #e1f0fe;
@@ -194,6 +195,7 @@ vxe-table
194
195
  --layout-active-color: #225bb0;
195
196
  --layout-header-color: rgba(255, 255, 255, 0.7);
196
197
  --layout-header-active-color: #fff;
198
+ --layout-header-nav-fontSize: 14px;
197
199
  --layout-header-nav-color: rgba(255, 255, 255, 0.7);
198
200
  --layout-header-nav-active-color: #fff;
199
201
  --layout-header-nav-active-font-weight: normal;
@@ -574,4 +576,3 @@ vxe-table
574
576
  --content-header-bg-color: #fff;
575
577
  --content-header-font-weight: 500;
576
578
  }
577
- /*# sourceMappingURL=deep.css.map */
@@ -113,6 +113,7 @@
113
113
  --table-td-highlight-bg : @table-td-highlight-bg;
114
114
  --menu-dark-title : @menu-dark-title;
115
115
  --menu-dark-active-bg : @menu-dark-active-bg;
116
+ --menu-user-subsidiary-color : @menu-user-subsidiary-color;
116
117
  --menu-dark-subsidiary-color : @menu-dark-subsidiary-color;
117
118
  --menu-dark-group-title-color : @menu-dark-group-title-color;
118
119
  --date-picker-cell-hover-bg : @date-picker-cell-hover-bg;
@@ -208,6 +209,7 @@
208
209
  --layout-active-color : @layout-active-color;
209
210
  --layout-header-color : @layout-header-color;
210
211
  --layout-header-active-color : @layout-header-active-color;
212
+ --layout-header-nav-fontSize : @layout-header-nav-fontSize;
211
213
  --layout-header-nav-color : @layout-header-nav-color;
212
214
  --layout-header-nav-active-color : @layout-header-nav-active-color;
213
215
  --layout-header-nav-active-font-weight : @layout-header-nav-active-font-weight;
@@ -109,6 +109,7 @@
109
109
  @table-td-highlight-bg : #ebf7ff;
110
110
  @menu-dark-title : #225bb0;
111
111
  @menu-dark-active-bg : #333333;
112
+ @menu-user-subsidiary-color : rgba(255,255,255,.7);
112
113
  @menu-dark-subsidiary-color : rgba(255,255,255,.7);
113
114
  @menu-dark-group-title-color : rgba(255,255,255,.36);
114
115
  @date-picker-cell-hover-bg : #e1f0fe;
@@ -206,6 +207,7 @@
206
207
  @layout-active-color : @primary-color;
207
208
  @layout-header-color : @menu-dark-subsidiary-color;
208
209
  @layout-header-active-color : @white;
210
+ @layout-header-nav-fontSize : @font-size-base;
209
211
  @layout-header-nav-color : @menu-dark-subsidiary-color;
210
212
  @layout-header-nav-active-color : @white;
211
213
  @layout-header-nav-active-font-weight : normal;
@@ -115,6 +115,7 @@ vxe-table
115
115
  --table-td-highlight-bg: #ebf7ff;
116
116
  --menu-dark-title: #333333;
117
117
  --menu-dark-active-bg: #333333;
118
+ --menu-user-subsidiary-color: rgba(255, 255, 255, 0.7);
118
119
  --menu-dark-subsidiary-color: rgba(255, 255, 255, 0.7);
119
120
  --menu-dark-group-title-color: rgba(255, 255, 255, 0.36);
120
121
  --date-picker-cell-hover-bg: #e1f0fe;
@@ -194,6 +195,7 @@ vxe-table
194
195
  --layout-active-color: #0091ff;
195
196
  --layout-header-color: rgba(255, 255, 255, 0.7);
196
197
  --layout-header-active-color: #fff;
198
+ --layout-header-nav-fontSize: 14px;
197
199
  --layout-header-nav-color: rgba(255, 255, 255, 0.7);
198
200
  --layout-header-nav-active-color: #fff;
199
201
  --layout-header-nav-active-font-weight: normal;
@@ -574,4 +576,3 @@ vxe-table
574
576
  --content-header-bg-color: #fff;
575
577
  --content-header-font-weight: 500;
576
578
  }
577
- /*# sourceMappingURL=default.css.map */
@@ -113,6 +113,7 @@
113
113
  --table-td-highlight-bg : @table-td-highlight-bg;
114
114
  --menu-dark-title : @menu-dark-title;
115
115
  --menu-dark-active-bg : @menu-dark-active-bg;
116
+ --menu-user-subsidiary-color : @menu-user-subsidiary-color;
116
117
  --menu-dark-subsidiary-color : @menu-dark-subsidiary-color;
117
118
  --menu-dark-group-title-color : @menu-dark-group-title-color;
118
119
  --date-picker-cell-hover-bg : @date-picker-cell-hover-bg;
@@ -209,6 +210,7 @@
209
210
  --layout-active-color : @layout-active-color;
210
211
  --layout-header-color : @layout-header-color;
211
212
  --layout-header-active-color : @layout-header-active-color;
213
+ --layout-header-nav-fontSize : @layout-header-nav-fontSize;
212
214
  --layout-header-nav-color : @layout-header-nav-color;
213
215
  --layout-header-nav-active-color : @layout-header-nav-active-color;
214
216
  --layout-header-nav-active-font-weight : @layout-header-nav-active-font-weight;
@@ -109,6 +109,7 @@
109
109
  @table-td-highlight-bg : #ebf7ff;
110
110
  @menu-dark-title : #333333;
111
111
  @menu-dark-active-bg : #333333;
112
+ @menu-user-subsidiary-color : rgba(255,255,255,.7);
112
113
  @menu-dark-subsidiary-color : rgba(255,255,255,.7);
113
114
  @menu-dark-group-title-color : rgba(255,255,255,.36);
114
115
  @date-picker-cell-hover-bg : #e1f0fe;
@@ -206,6 +207,7 @@
206
207
  @layout-active-color : @primary-color;
207
208
  @layout-header-color : @menu-dark-subsidiary-color;
208
209
  @layout-header-active-color : @white;
210
+ @layout-header-nav-fontSize : @font-size-base;
209
211
  @layout-header-nav-color : @menu-dark-subsidiary-color;
210
212
  @layout-header-nav-active-color : @white;
211
213
  @layout-header-nav-active-font-weight : normal;
@@ -114,6 +114,7 @@ vxe-table
114
114
  --table-td-highlight-bg: #b5def3;
115
115
  --menu-dark-title: #333333;
116
116
  --menu-dark-active-bg: #333333;
117
+ --menu-user-subsidiary-color: rgba(255, 255, 255, 0.7);
117
118
  --menu-dark-subsidiary-color: rgba(255, 255, 255, 0.7);
118
119
  --menu-dark-group-title-color: rgba(255, 255, 255, 0.36);
119
120
  --date-picker-cell-hover-bg: #e1f0fe;
@@ -194,6 +195,7 @@ vxe-table
194
195
  --layout-active-color: #0091FF;
195
196
  --layout-header-color: rgba(255, 255, 255, 0.7);
196
197
  --layout-header-active-color: #fff;
198
+ --layout-header-nav-fontSize: 14px;
197
199
  --layout-header-nav-color: rgba(255, 255, 255, 0.7);
198
200
  --layout-header-nav-active-color: #fff;
199
201
  --layout-header-nav-active-font-weight: normal;
@@ -574,4 +576,3 @@ vxe-table
574
576
  --cursor-disabled: not-allowed;
575
577
  --content-header-font-weight: 500;
576
578
  }
577
- /*# sourceMappingURL=eap.css.map */
@@ -112,6 +112,7 @@
112
112
  --table-td-highlight-bg : @table-td-highlight-bg;
113
113
  --menu-dark-title : @menu-dark-title;
114
114
  --menu-dark-active-bg : @menu-dark-active-bg;
115
+ --menu-user-subsidiary-color : @menu-user-subsidiary-color;
115
116
  --menu-dark-subsidiary-color : @menu-dark-subsidiary-color;
116
117
  --menu-dark-group-title-color : @menu-dark-group-title-color;
117
118
  --date-picker-cell-hover-bg : @date-picker-cell-hover-bg;
@@ -209,6 +210,7 @@
209
210
  --layout-active-color : @layout-active-color;
210
211
  --layout-header-color : @layout-header-color;
211
212
  --layout-header-active-color : @layout-header-active-color;
213
+ --layout-header-nav-fontSize : @layout-header-nav-fontSize;
212
214
  --layout-header-nav-color : @layout-header-nav-color;
213
215
  --layout-header-nav-active-color : @layout-header-nav-active-color;
214
216
  --layout-header-nav-active-font-weight : @layout-header-nav-active-font-weight;
@@ -109,6 +109,7 @@
109
109
  @table-td-highlight-bg : #b5def3;
110
110
  @menu-dark-title : #333333;
111
111
  @menu-dark-active-bg : #333333;
112
+ @menu-user-subsidiary-color : rgba(255,255,255,.7);
112
113
  @menu-dark-subsidiary-color : rgba(255,255,255,.7);
113
114
  @menu-dark-group-title-color : rgba(255,255,255,.36);
114
115
  @date-picker-cell-hover-bg : #e1f0fe;
@@ -206,6 +207,7 @@
206
207
  @layout-active-color : @primary-color;
207
208
  @layout-header-color : @menu-dark-subsidiary-color;
208
209
  @layout-header-active-color : @white;
210
+ @layout-header-nav-fontSize : @font-size-base;
209
211
  @layout-header-nav-color : @menu-dark-subsidiary-color;
210
212
  @layout-header-nav-active-color : @white;
211
213
  @layout-header-nav-active-font-weight : normal;
@@ -115,6 +115,7 @@ vxe-table
115
115
  --table-td-highlight-bg: #ebf7ff;
116
116
  --menu-dark-title: #333333;
117
117
  --menu-dark-active-bg: #333333;
118
+ --menu-user-subsidiary-color: rgba(255, 255, 255, 0.7);
118
119
  --menu-dark-subsidiary-color: rgba(255, 255, 255, 0.7);
119
120
  --menu-dark-group-title-color: rgba(255, 255, 255, 0.36);
120
121
  --date-picker-cell-hover-bg: #e1f0fe;
@@ -194,6 +195,7 @@ vxe-table
194
195
  --layout-active-color: #fa8c16;
195
196
  --layout-header-color: rgba(255, 255, 255, 0.7);
196
197
  --layout-header-active-color: #fff;
198
+ --layout-header-nav-fontSize: 14px;
197
199
  --layout-header-nav-color: rgba(255, 255, 255, 0.7);
198
200
  --layout-header-nav-active-color: #fff;
199
201
  --layout-header-nav-active-font-weight: normal;
@@ -574,4 +576,3 @@ vxe-table
574
576
  --content-header-bg-color: #fff;
575
577
  --content-header-font-weight: 500;
576
578
  }
577
- /*# sourceMappingURL=gold.css.map */
@@ -113,6 +113,7 @@
113
113
  --table-td-highlight-bg : @table-td-highlight-bg;
114
114
  --menu-dark-title : @menu-dark-title;
115
115
  --menu-dark-active-bg : @menu-dark-active-bg;
116
+ --menu-user-subsidiary-color : @menu-user-subsidiary-color;
116
117
  --menu-dark-subsidiary-color : @menu-dark-subsidiary-color;
117
118
  --menu-dark-group-title-color : @menu-dark-group-title-color;
118
119
  --date-picker-cell-hover-bg : @date-picker-cell-hover-bg;
@@ -209,6 +210,7 @@
209
210
  --layout-active-color : @layout-active-color;
210
211
  --layout-header-color : @layout-header-color;
211
212
  --layout-header-active-color : @layout-header-active-color;
213
+ --layout-header-nav-fontSize : @layout-header-nav-fontSize;
212
214
  --layout-header-nav-color : @layout-header-nav-color;
213
215
  --layout-header-nav-active-color : @layout-header-nav-active-color;
214
216
  --layout-header-nav-active-font-weight : @layout-header-nav-active-font-weight;
@@ -109,6 +109,7 @@
109
109
  @table-td-highlight-bg : #ebf7ff;
110
110
  @menu-dark-title : #333333;
111
111
  @menu-dark-active-bg : #333333;
112
+ @menu-user-subsidiary-color : rgba(255,255,255,.7);
112
113
  @menu-dark-subsidiary-color : rgba(255,255,255,.7);
113
114
  @menu-dark-group-title-color : rgba(255,255,255,.36);
114
115
  @date-picker-cell-hover-bg : #e1f0fe;
@@ -206,6 +207,7 @@
206
207
  @layout-active-color : @primary-color;
207
208
  @layout-header-color : @menu-dark-subsidiary-color;
208
209
  @layout-header-active-color : @white;
210
+ @layout-header-nav-fontSize : @font-size-base;
209
211
  @layout-header-nav-color : @menu-dark-subsidiary-color;
210
212
  @layout-header-nav-active-color : @white;
211
213
  @layout-header-nav-active-font-weight : normal;
@@ -11,6 +11,8 @@ import themeBw from "./theme-bw";
11
11
  import themeBwt from "./theme-bwt";
12
12
  import themeDanqing from "./theme-danqing";
13
13
  import themeWhite from "./theme-white";
14
+ import themeCuiWei from "./theme-cuiwei";
15
+
14
16
  export default [
15
17
  themeDefault,
16
18
  themeGold,
@@ -24,5 +26,6 @@ export default [
24
26
  themeBw,
25
27
  themeBwt,
26
28
  themeDanqing,
27
- themeWhite
29
+ themeWhite,
30
+ themeCuiWei
28
31
  ]
@@ -115,6 +115,7 @@ vxe-table
115
115
  --table-td-highlight-bg: #ebf7ff;
116
116
  --menu-dark-title: #333333;
117
117
  --menu-dark-active-bg: #333333;
118
+ --menu-user-subsidiary-color: rgba(255, 255, 255, 0.7);
118
119
  --menu-dark-subsidiary-color: rgba(255, 255, 255, 0.7);
119
120
  --menu-dark-group-title-color: rgba(255, 255, 255, 0.36);
120
121
  --date-picker-cell-hover-bg: #e1f0fe;
@@ -194,6 +195,7 @@ vxe-table
194
195
  --layout-active-color: #52c41a;
195
196
  --layout-header-color: rgba(255, 255, 255, 0.7);
196
197
  --layout-header-active-color: #fff;
198
+ --layout-header-nav-fontSize: 14px;
197
199
  --layout-header-nav-color: rgba(255, 255, 255, 0.7);
198
200
  --layout-header-nav-active-color: #fff;
199
201
  --layout-header-nav-active-font-weight: normal;
@@ -574,4 +576,3 @@ vxe-table
574
576
  --content-header-bg-color: #fff;
575
577
  --content-header-font-weight: 500;
576
578
  }
577
- /*# sourceMappingURL=lime.css.map */
@@ -113,6 +113,7 @@
113
113
  --table-td-highlight-bg : @table-td-highlight-bg;
114
114
  --menu-dark-title : @menu-dark-title;
115
115
  --menu-dark-active-bg : @menu-dark-active-bg;
116
+ --menu-user-subsidiary-color : @menu-user-subsidiary-color;
116
117
  --menu-dark-subsidiary-color : @menu-dark-subsidiary-color;
117
118
  --menu-dark-group-title-color : @menu-dark-group-title-color;
118
119
  --date-picker-cell-hover-bg : @date-picker-cell-hover-bg;
@@ -209,6 +210,7 @@
209
210
  --layout-active-color : @layout-active-color;
210
211
  --layout-header-color : @layout-header-color;
211
212
  --layout-header-active-color : @layout-header-active-color;
213
+ --layout-header-nav-fontSize : @layout-header-nav-fontSize;
212
214
  --layout-header-nav-color : @layout-header-nav-color;
213
215
  --layout-header-nav-active-color : @layout-header-nav-active-color;
214
216
  --layout-header-nav-active-font-weight : @layout-header-nav-active-font-weight;
@@ -109,6 +109,7 @@
109
109
  @table-td-highlight-bg : #ebf7ff;
110
110
  @menu-dark-title : #333333;
111
111
  @menu-dark-active-bg : #333333;
112
+ @menu-user-subsidiary-color : rgba(255,255,255,.7);
112
113
  @menu-dark-subsidiary-color : rgba(255,255,255,.7);
113
114
  @menu-dark-group-title-color : rgba(255,255,255,.36);
114
115
  @date-picker-cell-hover-bg : #e1f0fe;
@@ -206,6 +207,7 @@
206
207
  @layout-active-color : @primary-color;
207
208
  @layout-header-color : @menu-dark-subsidiary-color;
208
209
  @layout-header-active-color : @white;
210
+ @layout-header-nav-fontSize : @font-size-base;
209
211
  @layout-header-nav-color : @menu-dark-subsidiary-color;
210
212
  @layout-header-nav-active-color : @white;
211
213
  @layout-header-nav-active-font-weight : normal;
@@ -115,6 +115,7 @@ vxe-table
115
115
  --table-td-highlight-bg: #ebf7ff;
116
116
  --menu-dark-title: #333333;
117
117
  --menu-dark-active-bg: #333333;
118
+ --menu-user-subsidiary-color: rgba(255, 255, 255, 0.7);
118
119
  --menu-dark-subsidiary-color: rgba(255, 255, 255, 0.7);
119
120
  --menu-dark-group-title-color: rgba(255, 255, 255, 0.36);
120
121
  --date-picker-cell-hover-bg: rgba(238, 84, 20, 0.3);
@@ -194,6 +195,7 @@ vxe-table
194
195
  --layout-active-color: #ee5414;
195
196
  --layout-header-color: rgba(255, 255, 255, 0.7);
196
197
  --layout-header-active-color: #fff;
198
+ --layout-header-nav-fontSize: 14px;
197
199
  --layout-header-nav-color: rgba(255, 255, 255, 0.7);
198
200
  --layout-header-nav-active-color: #fff;
199
201
  --layout-header-nav-active-font-weight: normal;
@@ -574,4 +576,3 @@ vxe-table
574
576
  --content-header-bg-color: #fff;
575
577
  --content-header-font-weight: 500;
576
578
  }
577
- /*# sourceMappingURL=orange.css.map */
@@ -113,6 +113,7 @@
113
113
  --table-td-highlight-bg : @table-td-highlight-bg;
114
114
  --menu-dark-title : @menu-dark-title;
115
115
  --menu-dark-active-bg : @menu-dark-active-bg;
116
+ --menu-user-subsidiary-color : @menu-user-subsidiary-color;
116
117
  --menu-dark-subsidiary-color : @menu-dark-subsidiary-color;
117
118
  --menu-dark-group-title-color : @menu-dark-group-title-color;
118
119
  --date-picker-cell-hover-bg : @date-picker-cell-hover-bg;
@@ -209,6 +210,7 @@
209
210
  --layout-active-color : @layout-active-color;
210
211
  --layout-header-color : @layout-header-color;
211
212
  --layout-header-active-color : @layout-header-active-color;
213
+ --layout-header-nav-fontSize : @layout-header-nav-fontSize;
212
214
  --layout-header-nav-color : @layout-header-nav-color;
213
215
  --layout-header-nav-active-color : @layout-header-nav-active-color;
214
216
  --layout-header-nav-active-font-weight : @layout-header-nav-active-font-weight;
@@ -109,6 +109,7 @@
109
109
  @table-td-highlight-bg : #ebf7ff;
110
110
  @menu-dark-title : #333333;
111
111
  @menu-dark-active-bg : #333333;
112
+ @menu-user-subsidiary-color : rgba(255,255,255,.7);
112
113
  @menu-dark-subsidiary-color : rgba(255,255,255,.7);
113
114
  @menu-dark-group-title-color : rgba(255,255,255,.36);
114
115
  @date-picker-cell-hover-bg : rgba(238, 84, 20, 0.3);
@@ -206,6 +207,7 @@
206
207
  @layout-active-color : @primary-color;
207
208
  @layout-header-color : @menu-dark-subsidiary-color;
208
209
  @layout-header-active-color : @white;
210
+ @layout-header-nav-fontSize : @font-size-base;
209
211
  @layout-header-nav-color : @menu-dark-subsidiary-color;
210
212
  @layout-header-nav-active-color : @white;
211
213
  @layout-header-nav-active-font-weight : normal;
@@ -115,6 +115,7 @@ vxe-table
115
115
  --table-td-highlight-bg: #ebf7ff;
116
116
  --menu-dark-title: #333333;
117
117
  --menu-dark-active-bg: #333333;
118
+ --menu-user-subsidiary-color: rgba(255, 255, 255, 0.7);
118
119
  --menu-dark-subsidiary-color: rgba(255, 255, 255, 0.7);
119
120
  --menu-dark-group-title-color: rgba(255, 255, 255, 0.36);
120
121
  --date-picker-cell-hover-bg: rgba(255, 52, 87, 0.3);
@@ -194,6 +195,7 @@ vxe-table
194
195
  --layout-active-color: #ff3457;
195
196
  --layout-header-color: rgba(255, 255, 255, 0.7);
196
197
  --layout-header-active-color: #fff;
198
+ --layout-header-nav-fontSize: 14px;
197
199
  --layout-header-nav-color: rgba(255, 255, 255, 0.7);
198
200
  --layout-header-nav-active-color: #fff;
199
201
  --layout-header-nav-active-font-weight: normal;
@@ -574,4 +576,3 @@ vxe-table
574
576
  --content-header-bg-color: #fff;
575
577
  --content-header-font-weight: 500;
576
578
  }
577
- /*# sourceMappingURL=red.css.map */
@@ -113,6 +113,7 @@
113
113
  --table-td-highlight-bg : @table-td-highlight-bg;
114
114
  --menu-dark-title : @menu-dark-title;
115
115
  --menu-dark-active-bg : @menu-dark-active-bg;
116
+ --menu-user-subsidiary-color : @menu-user-subsidiary-color;
116
117
  --menu-dark-subsidiary-color : @menu-dark-subsidiary-color;
117
118
  --menu-dark-group-title-color : @menu-dark-group-title-color;
118
119
  --date-picker-cell-hover-bg : @date-picker-cell-hover-bg;
@@ -209,6 +210,7 @@
209
210
  --layout-active-color : @layout-active-color;
210
211
  --layout-header-color : @layout-header-color;
211
212
  --layout-header-active-color : @layout-header-active-color;
213
+ --layout-header-nav-fontSize : @layout-header-nav-fontSize;
212
214
  --layout-header-nav-color : @layout-header-nav-color;
213
215
  --layout-header-nav-active-color : @layout-header-nav-active-color;
214
216
  --layout-header-nav-active-font-weight : @layout-header-nav-active-font-weight;
@@ -109,6 +109,7 @@
109
109
  @table-td-highlight-bg : #ebf7ff;
110
110
  @menu-dark-title : #333333;
111
111
  @menu-dark-active-bg : #333333;
112
+ @menu-user-subsidiary-color : rgba(255,255,255,.7);
112
113
  @menu-dark-subsidiary-color : rgba(255,255,255,.7);
113
114
  @menu-dark-group-title-color : rgba(255,255,255,.36);
114
115
  @date-picker-cell-hover-bg : rgba(255, 52, 87, 0.3);
@@ -206,6 +207,7 @@
206
207
  @layout-active-color : @primary-color;
207
208
  @layout-header-color : @menu-dark-subsidiary-color;
208
209
  @layout-header-active-color : @white;
210
+ @layout-header-nav-fontSize : @font-size-base;
209
211
  @layout-header-nav-color : @menu-dark-subsidiary-color;
210
212
  @layout-header-nav-active-color : @white;
211
213
  @layout-header-nav-active-font-weight : normal;
@@ -91,6 +91,7 @@ export default {
91
91
  --table-td-highlight-bg: #ebf7ff;
92
92
  --menu-dark-title: #333333;
93
93
  --menu-dark-active-bg: #333333;
94
+ --menu-user-subsidiary-color: rgba(255, 255, 255, 0.7);
94
95
  --menu-dark-subsidiary-color: rgba(255, 255, 255, 0.7);
95
96
  --menu-dark-group-title-color: rgba(255, 255, 255, 0.36);
96
97
  --date-picker-cell-hover-bg: #e1f0fe;
@@ -170,6 +171,7 @@ export default {
170
171
  --layout-active-color: #3EAF7C;
171
172
  --layout-header-color: rgba(255, 255, 255, 0.7);
172
173
  --layout-header-active-color: #fff;
174
+ --layout-header-nav-fontSize: 14px;
173
175
  --layout-header-nav-color: rgba(255, 255, 255, 0.7);
174
176
  --layout-header-nav-active-color: #fff;
175
177
  --layout-header-nav-active-font-weight: normal;
@@ -91,6 +91,7 @@ export default {
91
91
  --table-td-highlight-bg: #ebf7ff;
92
92
  --menu-dark-title: #306BE3;
93
93
  --menu-dark-active-bg: #002c6b;
94
+ --menu-user-subsidiary-color: rgba(255, 255, 255, 0.7);
94
95
  --menu-dark-subsidiary-color: rgba(255, 255, 255, 0.7);
95
96
  --menu-dark-group-title-color: rgba(255, 255, 255, 0.36);
96
97
  --date-picker-cell-hover-bg: #e1f0fe;
@@ -170,6 +171,7 @@ export default {
170
171
  --layout-active-color: #306BE3;
171
172
  --layout-header-color: rgba(255, 255, 255, 0.7);
172
173
  --layout-header-active-color: #fff;
174
+ --layout-header-nav-fontSize: 14px;
173
175
  --layout-header-nav-color: rgba(255, 255, 255, 0.7);
174
176
  --layout-header-nav-active-color: #fff;
175
177
  --layout-header-nav-active-font-weight: normal;
@@ -58,7 +58,8 @@ export default {
58
58
  --black: #000;
59
59
  --body-background: #fff;
60
60
  --component-background: #fff;
61
- --font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
61
+ --font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB",
62
+ "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
62
63
  --code-family: Consolas, Menlo, Courier, monospace;
63
64
  --title-color: rgba(0, 0, 0, 0.85);
64
65
  --text-color: #515a6e;
@@ -91,6 +92,7 @@ export default {
91
92
  --table-td-highlight-bg: #ebf7ff;
92
93
  --menu-dark-title: #333333;
93
94
  --menu-dark-active-bg: #333333;
95
+ --menu-user-subsidiary-color: rgba(255, 255, 255, 0.7);
94
96
  --menu-dark-subsidiary-color: rgba(255, 255, 255, 0.7);
95
97
  --menu-dark-group-title-color: rgba(255, 255, 255, 0.36);
96
98
  --date-picker-cell-hover-bg: #e1f0fe;
@@ -170,6 +172,7 @@ export default {
170
172
  --layout-active-color: #488aff;
171
173
  --layout-header-color: rgba(255, 255, 255, 0.7);
172
174
  --layout-header-active-color: #fff;
175
+ --layout-header-nav-fontSize: 14px;
173
176
  --layout-header-nav-color: rgba(255, 255, 255, 0.7);
174
177
  --layout-header-nav-active-color: #fff;
175
178
  --layout-header-nav-active-font-weight: normal;
@@ -304,7 +307,9 @@ export default {
304
307
  --date-picker-width: 95%;
305
308
  /*vxe-table*/
306
309
  /*font*/
307
- --vxe-font-family: -apple-system, BlinkMacSystemFont, Segoe UI, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Helvetica Neue, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
310
+ --vxe-font-family: -apple-system, BlinkMacSystemFont, Segoe UI, PingFang SC,
311
+ Hiragino Sans GB, Microsoft YaHei, Helvetica Neue, Helvetica, Arial,
312
+ sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
308
313
  --vxe-font-size: 14px;
309
314
  --vxe-font-size-medium: 14px;
310
315
  --vxe-font-size-small: 13px;
@@ -389,8 +394,9 @@ export default {
389
394
  --vxe-table-column-hover-background-color: #ebf7ff;
390
395
  --vxe-table-column-current-background-color: #ebf7ff;
391
396
  --vxe-table-column-icon-border-color: #c0c4cc;
392
- --vxe-table-column-icon-border-hover-color: #515A6E;
393
- --vxe-table-column-background-image: linear-gradient(#dcdee2, #dcdee2), linear-gradient(#dcdee2, #dcdee2);
397
+ --vxe-table-column-icon-border-hover-color: #515a6e;
398
+ --vxe-table-column-background-image: linear-gradient(#dcdee2, #dcdee2),
399
+ linear-gradient(#dcdee2, #dcdee2);
394
400
  --vxe-table-cell-placeholder-color: #c5c8ce;
395
401
  --vxe-table-cell-padding-left: 9px;
396
402
  --vxe-table-cell-padding-right: 9px;
@@ -400,7 +406,7 @@ export default {
400
406
  --vxe-table-cell-input-height-mini: 30px;
401
407
  --vxe-table-cell-dirty-width: 5px;
402
408
  --vxe-table-cell-dirty-update-color: #f56c6c;
403
- --vxe-table-cell-dirty-insert-color: #19A15F;
409
+ --vxe-table-cell-dirty-insert-color: #19a15f;
404
410
  --vxe-table-cell-area-border-color: #488aff;
405
411
  --vxe-table-cell-area-border-width: 1px;
406
412
  --vxe-table-cell-main-area-extension-border-color: #fff;
@@ -434,7 +440,7 @@ export default {
434
440
  --vxe-grid-maximize-background-color: #fff;
435
441
  /*toolbar*/
436
442
  --vxe-toolbar-background-color: #fff;
437
- --vxe-toolbar-custom-active-background-color: #D9DADB;
443
+ --vxe-toolbar-custom-active-background-color: #d9dadb;
438
444
  --vxe-toolbar-panel-background-color: #fff;
439
445
  /*tooltip*/
440
446
  --vxe-tooltip-dark-color: #fff;
@@ -445,7 +451,7 @@ export default {
445
451
  --vxe-pager-perfect-background-color: #fff;
446
452
  --vxe-pager-perfect-button-background-color: #f4f4f5;
447
453
  /*modal*/
448
- --vxe-modal-header-background-color: #F8F8F8;
454
+ --vxe-modal-header-background-color: #f8f8f8;
449
455
  --vxe-modal-body-background-color: #fff;
450
456
  --vxe-modal-border-color: #ebeef5;
451
457
  /*checkbox*/
@@ -490,7 +496,7 @@ export default {
490
496
  --vxe-input-number-disabled-color: #e4e7ed;
491
497
  --vxe-input-date-festival-color: #999999;
492
498
  --vxe-input-date-festival-important-color: #488aff;
493
- --vxe-input-date-notice-background-color: #FF0000;
499
+ --vxe-input-date-notice-background-color: #ff0000;
494
500
  --vxe-input-date-picker-hover-background-color: #f2f6fc;
495
501
  --vxe-input-date-picker-selected-color: #fff;
496
502
  --vxe-input-date-time-confirm-button-color: #fff;
@@ -536,7 +542,7 @@ export default {
536
542
  --vxe-select-option-height-mini: 24px;
537
543
  --vxe-select-option-hover-background-color: #f5f7fa;
538
544
  --vxe-select-panel-background-color: #fff;
539
- --vxe-select-empty-color: #C0C4CC;
545
+ --vxe-select-empty-color: #c0c4cc;
540
546
  --vxe-optgroup-title-color: #909399;
541
547
  /*switch*/
542
548
  --vxe-switch-font-color: #fff;
@@ -91,6 +91,7 @@ export default {
91
91
  --table-td-highlight-bg: #ebf7ff;
92
92
  --menu-dark-title: #333333;
93
93
  --menu-dark-active-bg: #333333;
94
+ --menu-user-subsidiary-color: rgba(255, 255, 255, 0.7);
94
95
  --menu-dark-subsidiary-color: rgba(255, 255, 255, 0.7);
95
96
  --menu-dark-group-title-color: rgba(255, 255, 255, 0.36);
96
97
  --date-picker-cell-hover-bg: #e1f0fe;
@@ -170,6 +171,7 @@ export default {
170
171
  --layout-active-color: #488aff;
171
172
  --layout-header-color: rgba(255, 255, 255, 0.7);
172
173
  --layout-header-active-color: #fff;
174
+ --layout-header-nav-fontSize: 14px;
173
175
  --layout-header-nav-color: rgba(255, 255, 255, 0.7);
174
176
  --layout-header-nav-active-color: #fff;
175
177
  --layout-header-nav-active-font-weight: normal;