acud 0.0.61 → 0.0.64

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 (53) hide show
  1. package/dist/acud.css +139 -14
  2. package/dist/acud.css.map +1 -1
  3. package/dist/acud.js +37 -25
  4. package/dist/acud.js.map +1 -1
  5. package/dist/acud.min.css +1 -1
  6. package/dist/acud.min.css.map +1 -1
  7. package/dist/acud.min.js +2 -2
  8. package/dist/acud.min.js.map +1 -1
  9. package/es/alert/style/index.css +1 -1
  10. package/es/alert/style/index.less +150 -147
  11. package/es/alert/style/rtl.less +27 -27
  12. package/es/card/Card.js +4 -3
  13. package/es/card/style/index.css +88 -0
  14. package/es/card/style/index.less +8 -0
  15. package/es/date-picker/src/Picker.js +1 -1
  16. package/es/date-picker/src/RangePicker.js +1 -1
  17. package/es/date-picker/style/index.css +43 -11
  18. package/es/date-picker/style/index.less +13 -2
  19. package/es/date-picker/style/panel.less +32 -10
  20. package/es/dropdown/dropdown-button.js +8 -3
  21. package/es/dropdown/style/index.css +4 -0
  22. package/es/dropdown/style/index.less +4 -0
  23. package/es/menu/globalSilderBar.d.ts +1 -0
  24. package/es/menu/globalSilderBar.js +4 -5
  25. package/es/style/themes/default/components/card.less +3 -0
  26. package/es/style/themes/default/components/datePicker.less +1 -1
  27. package/es/tooltip/index.d.ts +0 -1
  28. package/es/tooltip/index.js +3 -8
  29. package/es/transfer/style/index.css +2 -1
  30. package/es/transfer/style/index.less +2 -1
  31. package/lib/alert/style/index.css +1 -1
  32. package/lib/alert/style/index.less +150 -147
  33. package/lib/alert/style/rtl.less +27 -27
  34. package/lib/card/Card.js +4 -3
  35. package/lib/card/style/index.css +88 -0
  36. package/lib/card/style/index.less +8 -0
  37. package/lib/date-picker/src/Picker.js +1 -1
  38. package/lib/date-picker/src/RangePicker.js +1 -1
  39. package/lib/date-picker/style/index.css +43 -11
  40. package/lib/date-picker/style/index.less +13 -2
  41. package/lib/date-picker/style/panel.less +32 -10
  42. package/lib/dropdown/dropdown-button.js +8 -3
  43. package/lib/dropdown/style/index.css +4 -0
  44. package/lib/dropdown/style/index.less +4 -0
  45. package/lib/menu/globalSilderBar.d.ts +1 -0
  46. package/lib/menu/globalSilderBar.js +4 -5
  47. package/lib/style/themes/default/components/card.less +3 -0
  48. package/lib/style/themes/default/components/datePicker.less +1 -1
  49. package/lib/tooltip/index.d.ts +0 -1
  50. package/lib/tooltip/index.js +3 -8
  51. package/lib/transfer/style/index.css +2 -1
  52. package/lib/transfer/style/index.less +2 -1
  53. package/package.json +1 -1
@@ -24,7 +24,7 @@
24
24
  min-width: 0;
25
25
  }
26
26
  .acud-alert-icon {
27
- margin: 3px 8px 0 0;
27
+ margin: 4px 8px 0 0;
28
28
  font-size: 18px;
29
29
  height: 18px;
30
30
  line-height: 18px;
@@ -4,154 +4,157 @@
4
4
  @alert-prefix-cls: ~'@{acud-prefix}-alert';
5
5
 
6
6
  .@{alert-prefix-cls} {
7
- .reset-component();
8
-
9
- position: relative;
10
- display: flex;
11
- align-items: flex-start;
12
- padding: @P 4 * @P;
13
- word-wrap: break-word;
14
- border-radius: @alert-border-radius;
15
-
16
- &-content {
17
- flex: 1;
18
- min-width: 0;
19
- }
20
-
21
- &-icon {
22
- margin: 3px @alert-margin 0 0;
23
- font-size: @alert-icon-size;
24
- height: @alert-icon-size;
25
- line-height: @alert-icon-size;
26
- }
27
-
28
- &-description {
29
- display: none;
30
- font-size: @T2;
31
- line-height: @T2 + 8px;
32
- color: @alert-message-color;
33
- }
34
-
35
- &-success {
36
- background-color: @alert-success-bg-color;
37
- border: none;
38
- .@{alert-prefix-cls}-icon {
39
- color: @alert-success-icon-color;
40
- }
41
- }
42
-
43
- &-info {
44
- background-color: @alert-info-bg-color;
45
- border: none;
46
- .@{alert-prefix-cls}-icon {
47
- color: @alert-info-icon-color;
48
- }
49
- }
50
-
51
- &-warning {
52
- background-color: @alert-warning-bg-color;
53
- border: none;
54
- .@{alert-prefix-cls}-icon {
55
- color: @alert-warning-icon-color;
56
- }
57
- }
58
-
59
- &-error {
60
- background-color: @alert-error-bg-color;
61
- border: none;
62
-
63
- .@{alert-prefix-cls}-icon {
64
- color: @alert-error-icon-color;
65
- }
66
-
67
- .@{alert-prefix-cls}-description > pre {
68
- margin: 0;
69
- padding: 0;
70
- background: transparent;
71
- overflow: scroll;
72
- }
73
- }
74
-
75
- &-action {
76
- margin-left: @alert-margin;
77
- }
78
-
79
- &-close-icon {
80
- margin-left: @alert-margin;
81
- margin-top: @P;
82
- padding: 0;
83
- overflow: hidden;
84
- font-size: @T4;
85
- line-height: @T2;
86
- background-color: transparent;
87
- border: none;
88
- outline: none;
89
- cursor: pointer;
90
-
91
- > .@{iconfont-css-prefix} {
92
- color: @alert-close-color;
93
- transition: color 0.3s;
94
- &:hover {
95
- color: @alert-close-hover-color;
96
- }
97
- &:active {
98
- color: @alert-close-click-color;
99
- }
100
- }
101
- }
102
-
103
- &-close-text {
104
- font-size: @T2;
105
- color: @alert-close-text-color;
106
- transition: color 0.3s;
107
- &:hover {
108
- color: @alert-close-text-hover-color;
109
- }
110
- }
111
-
112
- &-with-description {
7
+ .reset-component();
8
+
9
+ position: relative;
10
+ display: flex;
113
11
  align-items: flex-start;
114
- padding: @alert-padding;
115
- }
116
-
117
- &-with-description &-message {
118
- display: block;
119
- margin-bottom: 4px;
120
- color: @alert-message-color;
121
- font-size: @T3;
122
- font-weight: @alert-title-font-weight;
123
- }
124
-
125
- &-message {
126
- color: @alert-message-color;
127
- font-size: @T2;
128
- line-height: 6 * @P;
129
- }
130
-
131
- &-with-description &-description {
132
- display: block;
133
- }
134
-
135
- &&-motion-leave {
136
- overflow: hidden;
137
- opacity: 1;
138
- transition: max-height 0.3s @ease-in-out-circ, opacity 0.3s @ease-in-out-circ,
139
- padding-top 0.3s @ease-in-out-circ, padding-bottom 0.3s @ease-in-out-circ,
140
- margin-bottom 0.3s @ease-in-out-circ;
141
- }
142
-
143
- &&-motion-leave-active {
144
- max-height: 0;
145
- margin-bottom: 0 !important;
146
- padding-top: 0;
147
- padding-bottom: 0;
148
- opacity: 0;
149
- }
150
-
151
- &-banner {
152
- margin-bottom: 0;
153
- border: 0;
154
- }
12
+ padding: @P 4 * @P;
13
+ word-wrap: break-word;
14
+ border-radius: @alert-border-radius;
15
+
16
+ &-content {
17
+ flex: 1;
18
+ min-width: 0;
19
+ }
20
+
21
+ &-icon {
22
+ margin: 4px @alert-margin 0 0;
23
+ font-size: @alert-icon-size;
24
+ height: @alert-icon-size;
25
+ line-height: @alert-icon-size;
26
+ }
27
+
28
+ &-description {
29
+ display: none;
30
+ font-size: @T2;
31
+ line-height: @T2 + 8px;
32
+ color: @alert-message-color;
33
+ }
34
+
35
+ &-success {
36
+ background-color: @alert-success-bg-color;
37
+ border: none;
38
+ .@{alert-prefix-cls}-icon {
39
+ color: @alert-success-icon-color;
40
+ }
41
+ }
42
+
43
+ &-info {
44
+ background-color: @alert-info-bg-color;
45
+ border: none;
46
+ .@{alert-prefix-cls}-icon {
47
+ color: @alert-info-icon-color;
48
+ }
49
+ }
50
+
51
+ &-warning {
52
+ background-color: @alert-warning-bg-color;
53
+ border: none;
54
+ .@{alert-prefix-cls}-icon {
55
+ color: @alert-warning-icon-color;
56
+ }
57
+ }
58
+
59
+ &-error {
60
+ background-color: @alert-error-bg-color;
61
+ border: none;
62
+
63
+ .@{alert-prefix-cls}-icon {
64
+ color: @alert-error-icon-color;
65
+ }
66
+
67
+ .@{alert-prefix-cls}-description > pre {
68
+ margin: 0;
69
+ padding: 0;
70
+ background: transparent;
71
+ overflow: scroll;
72
+ }
73
+ }
74
+
75
+ &-action {
76
+ margin-left: @alert-margin;
77
+ }
78
+
79
+ &-close-icon {
80
+ margin-left: @alert-margin;
81
+ margin-top: @P;
82
+ padding: 0;
83
+ overflow: hidden;
84
+ font-size: @T4;
85
+ line-height: @T2;
86
+ background-color: transparent;
87
+ border: none;
88
+ outline: none;
89
+ cursor: pointer;
90
+
91
+ > .@{iconfont-css-prefix} {
92
+ color: @alert-close-color;
93
+ transition: color .3s;
94
+
95
+ &:hover {
96
+ color: @alert-close-hover-color;
97
+ }
98
+
99
+ &:active {
100
+ color: @alert-close-click-color;
101
+ }
102
+ }
103
+ }
104
+
105
+ &-close-text {
106
+ font-size: @T2;
107
+ color: @alert-close-text-color;
108
+ transition: color .3s;
109
+
110
+ &:hover {
111
+ color: @alert-close-text-hover-color;
112
+ }
113
+ }
114
+
115
+ &-with-description {
116
+ align-items: flex-start;
117
+ padding: @alert-padding;
118
+ }
119
+
120
+ &-with-description &-message {
121
+ display: block;
122
+ margin-bottom: 4px;
123
+ color: @alert-message-color;
124
+ font-size: @T3;
125
+ font-weight: @alert-title-font-weight;
126
+ }
127
+
128
+ &-message {
129
+ color: @alert-message-color;
130
+ font-size: @T2;
131
+ line-height: 6 * @P;
132
+ }
133
+
134
+ &-with-description &-description {
135
+ display: block;
136
+ }
137
+
138
+ &&-motion-leave {
139
+ overflow: hidden;
140
+ opacity: 1;
141
+ transition: max-height .3s @ease-in-out-circ, opacity .3s @ease-in-out-circ,
142
+ padding-top .3s @ease-in-out-circ, padding-bottom .3s @ease-in-out-circ,
143
+ margin-bottom .3s @ease-in-out-circ;
144
+ }
145
+
146
+ &&-motion-leave-active {
147
+ max-height: 0;
148
+ margin-bottom: 0 !important;
149
+ padding-top: 0;
150
+ padding-bottom: 0;
151
+ opacity: 0;
152
+ }
153
+
154
+ &-banner {
155
+ margin-bottom: 0;
156
+ border: 0;
157
+ }
155
158
  }
156
159
 
157
160
  @import './rtl';
@@ -1,39 +1,39 @@
1
1
  .@{alert-prefix-cls} {
2
- &&-rtl {
3
- direction: rtl;
4
- }
2
+ &&-rtl {
3
+ direction: rtl;
4
+ }
5
5
 
6
- &&-no-icon {
7
- .@{alert-prefix-cls}-rtl& {
8
- padding: @alert-no-icon-padding-vertical 4 * @P;
6
+ &&-no-icon {
7
+ .@{alert-prefix-cls}-rtl& {
8
+ padding: @alert-no-icon-padding-vertical 4 * @P;
9
+ }
9
10
  }
10
- }
11
11
 
12
- &-icon {
13
- .@{alert-prefix-cls}-rtl & {
14
- margin-right: auto;
15
- margin-left: @alert-margin;
12
+ &-icon {
13
+ .@{alert-prefix-cls}-rtl & {
14
+ margin-right: auto;
15
+ margin-left: @alert-margin;
16
+ }
16
17
  }
17
- }
18
18
 
19
- &-action {
20
- .@{alert-prefix-cls}-rtl & {
21
- margin-right: @alert-margin;
22
- margin-left: auto;
19
+ &-action {
20
+ .@{alert-prefix-cls}-rtl & {
21
+ margin-right: @alert-margin;
22
+ margin-left: auto;
23
+ }
23
24
  }
24
- }
25
25
 
26
- &-close-icon {
27
- .@{alert-prefix-cls}-rtl & {
28
- margin-right: @alert-margin;
29
- margin-left: auto;
26
+ &-close-icon {
27
+ .@{alert-prefix-cls}-rtl & {
28
+ margin-right: @alert-margin;
29
+ margin-left: auto;
30
+ }
30
31
  }
31
- }
32
32
 
33
- &-with-description &-icon {
34
- .@{alert-prefix-cls}-rtl& {
35
- margin-right: auto;
36
- margin-left: @alert-padding;
33
+ &-with-description &-icon {
34
+ .@{alert-prefix-cls}-rtl& {
35
+ margin-right: auto;
36
+ margin-left: @alert-padding;
37
+ }
37
38
  }
38
- }
39
39
  }
package/es/card/Card.js CHANGED
@@ -44,7 +44,7 @@ export var getAction = function getAction(actions) {
44
44
  ;
45
45
 
46
46
  var Card = function Card(_a) {
47
- var _extends2, _classNames2;
47
+ var _extends2, _classNames3;
48
48
 
49
49
  var prefixCls = _a.prefixCls,
50
50
  simple = _a.simple,
@@ -188,6 +188,7 @@ var Card = function Card(_a) {
188
188
 
189
189
  if (title || extra || tabs) {
190
190
  var titleClassName = classNames("".concat(cardPrefixCls, "-head-title"), _defineProperty({}, "".concat(cardPrefixCls, "-head-title-with-tabs"), !!tabs));
191
+ var extraClassName = classNames("".concat(cardPrefixCls, "-head-extra"), _defineProperty({}, "".concat(cardPrefixCls, "-head-extra-with-tabs"), !!tabs));
191
192
  head = /*#__PURE__*/React.createElement("div", {
192
193
  className: "".concat(cardPrefixCls, "-head"),
193
194
  style: headStyle
@@ -196,7 +197,7 @@ var Card = function Card(_a) {
196
197
  }, title && /*#__PURE__*/React.createElement("div", {
197
198
  className: titleClassName
198
199
  }, title), extra && /*#__PURE__*/React.createElement("div", {
199
- className: "".concat(cardPrefixCls, "-head-extra")
200
+ className: extraClassName
200
201
  }, extra)), tabs);
201
202
  }
202
203
 
@@ -225,7 +226,7 @@ var Card = function Card(_a) {
225
226
  }, multiMedia), /*#__PURE__*/React.createElement("div", {
226
227
  className: "".concat(cardPrefixCls, "-con-wrap ").concat(multiMedia ? "".concat(multiMediaPosition === 'left' ? 'right' : 'left') : '')
227
228
  }, head, coverDom, body, footer, actionRender));
228
- var classString = classNames(cardPrefixCls, (_classNames2 = {}, _defineProperty(_classNames2, "".concat(cardPrefixCls, "-loading"), loading), _defineProperty(_classNames2, "".concat(cardPrefixCls, "-bordered"), bordered), _defineProperty(_classNames2, "".concat(cardPrefixCls, "-hoverable"), hoverable), _defineProperty(_classNames2, "".concat(cardPrefixCls, "-contain-grid"), isContainGrid()), _defineProperty(_classNames2, "".concat(cardPrefixCls, "-contain-tabs"), tabList && tabList.length), _defineProperty(_classNames2, "".concat(cardPrefixCls, "-type-").concat(type), !!type), _defineProperty(_classNames2, "".concat(cardPrefixCls, "-rtl"), direction === 'rtl'), _defineProperty(_classNames2, "".concat(cardPrefixCls, "-simple"), simple), _defineProperty(_classNames2, "".concat(cardPrefixCls, "-selected"), isSelected), _classNames2));
229
+ var classString = classNames(cardPrefixCls, (_classNames3 = {}, _defineProperty(_classNames3, "".concat(cardPrefixCls, "-loading"), loading), _defineProperty(_classNames3, "".concat(cardPrefixCls, "-bordered"), bordered), _defineProperty(_classNames3, "".concat(cardPrefixCls, "-hoverable"), hoverable), _defineProperty(_classNames3, "".concat(cardPrefixCls, "-contain-grid"), isContainGrid()), _defineProperty(_classNames3, "".concat(cardPrefixCls, "-contain-tabs"), tabList && tabList.length), _defineProperty(_classNames3, "".concat(cardPrefixCls, "-type-").concat(type), !!type), _defineProperty(_classNames3, "".concat(cardPrefixCls, "-rtl"), direction === 'rtl'), _defineProperty(_classNames3, "".concat(cardPrefixCls, "-simple"), simple), _defineProperty(_classNames3, "".concat(cardPrefixCls, "-selected"), isSelected), _classNames3));
229
230
  return /*#__PURE__*/React.createElement("div", {
230
231
  className: classString,
231
232
  disabled: simple && disabled,
@@ -236,6 +236,94 @@
236
236
  margin-right: auto;
237
237
  margin-left: 0;
238
238
  }
239
+ .acud-card-head-extra-with-tabs {
240
+ color: #151B26;
241
+ background-color: transparent;
242
+ border-color: transparent;
243
+ }
244
+ .acud-card-head-extra-with-tabs:hover {
245
+ color: #2468F2;
246
+ }
247
+ .acud-card-head-extra-with-tabs:focus,
248
+ .acud-card-head-extra-with-tabs:active {
249
+ color: #144BCC;
250
+ }
251
+ .acud-card-head-extra-with-tabs[disabled],
252
+ .acud-card-head-extra-with-tabs[disabled]:hover,
253
+ .acud-card-head-extra-with-tabs[disabled]:focus,
254
+ .acud-card-head-extra-with-tabs[disabled]:active {
255
+ color: #B8BABF;
256
+ }
257
+ .acud-card-head-extra-with-tabs:hover {
258
+ background-color: transparent;
259
+ }
260
+ .acud-card-head-extra-with-tabs:focus,
261
+ .acud-card-head-extra-with-tabs:active {
262
+ background-color: transparent;
263
+ }
264
+ .acud-card-head-extra-with-tabs[disabled],
265
+ .acud-card-head-extra-with-tabs[disabled]:hover,
266
+ .acud-card-head-extra-with-tabs[disabled]:focus,
267
+ .acud-card-head-extra-with-tabs[disabled]:active {
268
+ background-color: transparent;
269
+ }
270
+ .acud-card-head-extra-with-tabs:hover {
271
+ border-color: transparent;
272
+ }
273
+ .acud-card-head-extra-with-tabs:focus,
274
+ .acud-card-head-extra-with-tabs:active {
275
+ border-color: transparent;
276
+ }
277
+ .acud-card-head-extra-with-tabs[disabled],
278
+ .acud-card-head-extra-with-tabs[disabled]:hover,
279
+ .acud-card-head-extra-with-tabs[disabled]:focus,
280
+ .acud-card-head-extra-with-tabs[disabled]:active {
281
+ border-color: transparent;
282
+ }
283
+ .acud-card-head-extra-with-tabs a {
284
+ color: #151B26;
285
+ background-color: transparent;
286
+ border-color: transparent;
287
+ }
288
+ .acud-card-head-extra-with-tabs a:hover {
289
+ color: #2468F2;
290
+ }
291
+ .acud-card-head-extra-with-tabs a:focus,
292
+ .acud-card-head-extra-with-tabs a:active {
293
+ color: #144BCC;
294
+ }
295
+ .acud-card-head-extra-with-tabs a[disabled],
296
+ .acud-card-head-extra-with-tabs a[disabled]:hover,
297
+ .acud-card-head-extra-with-tabs a[disabled]:focus,
298
+ .acud-card-head-extra-with-tabs a[disabled]:active {
299
+ color: #B8BABF;
300
+ }
301
+ .acud-card-head-extra-with-tabs a:hover {
302
+ background-color: transparent;
303
+ }
304
+ .acud-card-head-extra-with-tabs a:focus,
305
+ .acud-card-head-extra-with-tabs a:active {
306
+ background-color: transparent;
307
+ }
308
+ .acud-card-head-extra-with-tabs a[disabled],
309
+ .acud-card-head-extra-with-tabs a[disabled]:hover,
310
+ .acud-card-head-extra-with-tabs a[disabled]:focus,
311
+ .acud-card-head-extra-with-tabs a[disabled]:active {
312
+ background-color: transparent;
313
+ }
314
+ .acud-card-head-extra-with-tabs a:hover {
315
+ border-color: transparent;
316
+ }
317
+ .acud-card-head-extra-with-tabs a:focus,
318
+ .acud-card-head-extra-with-tabs a:active {
319
+ border-color: transparent;
320
+ }
321
+ .acud-card-head-extra-with-tabs a[disabled],
322
+ .acud-card-head-extra-with-tabs a[disabled]:hover,
323
+ .acud-card-head-extra-with-tabs a[disabled]:focus,
324
+ .acud-card-head-extra-with-tabs a[disabled]:active {
325
+ border-color: transparent;
326
+ }
239
327
  .acud-card-footer {
240
328
  height: 24px;
241
329
  line-height: 24px;
@@ -112,6 +112,14 @@
112
112
  margin-right: auto;
113
113
  margin-left: 0;
114
114
  }
115
+
116
+ &-with-tabs {
117
+ .basic-config(@card-head-extra-withtab-default-tp, @card-head-extra-default-p);
118
+
119
+ a {
120
+ .basic-config(@card-head-extra-withtab-default-tp, @card-head-extra-default-p);
121
+ }
122
+ }
115
123
  }
116
124
  }
117
125
 
@@ -423,7 +423,7 @@ function InnerPicker(props) {
423
423
  size: getInputSize(picker, formatList[0], generateConfig)
424
424
  }, getDataOrAriaProps(props), {
425
425
  autoComplete: autoComplete
426
- })), suffixNode, clearNode))));
426
+ })), clearNode, suffixNode))));
427
427
  } // Wrap with class component to enable pass generic with instance method
428
428
 
429
429
 
@@ -981,7 +981,7 @@ function InnerRangePicker(props) {
981
981
  width: activeBarWidth,
982
982
  position: 'absolute'
983
983
  })
984
- }), suffixNode, clearNode)));
984
+ }), clearNode, suffixNode)));
985
985
  } // Wrap with class component to enable pass generic with instance method
986
986
 
987
987
 
@@ -366,7 +366,7 @@
366
366
  .acud-picker-input:hover .acud-picker-clear {
367
367
  opacity: 1;
368
368
  }
369
- .acud-picker-input-has-value:not(.acud-picker-clear-disabled):hover .acud-picker-suffix {
369
+ .acud-picker-input-has-value:not(.acud-picker-clear-disabled):hover .acud-picker-clear + .acud-picker-suffix {
370
370
  opacity: 0;
371
371
  }
372
372
  .acud-picker-suffix {
@@ -455,7 +455,7 @@
455
455
  padding: 0 12px;
456
456
  line-height: 1;
457
457
  }
458
- .acud-picker-range-has-value:not(.acud-picker-clear-disabled):hover .acud-picker-suffix {
458
+ .acud-picker-range-has-value:not(.acud-picker-clear-disabled):hover .acud-picker-clear + .acud-picker-suffix {
459
459
  opacity: 0;
460
460
  }
461
461
  .acud-picker-dropdown {
@@ -523,6 +523,28 @@
523
523
  .acud-picker-ranges .acud-picker-preset > .acud-tag-blue {
524
524
  cursor: pointer;
525
525
  }
526
+ .acud-picker-ranges .acud-picker-now {
527
+ font-size: 12px;
528
+ float: left;
529
+ cursor: pointer;
530
+ margin-top: 10px;
531
+ }
532
+ .acud-picker-ranges .acud-picker-now a {
533
+ color: #2468F2;
534
+ }
535
+ .acud-picker-ranges .acud-picker-now a:hover {
536
+ color: #528EFF;
537
+ }
538
+ .acud-picker-ranges .acud-picker-now a:focus,
539
+ .acud-picker-ranges .acud-picker-now a:active {
540
+ color: #144BCC;
541
+ }
542
+ .acud-picker-ranges .acud-picker-now a[disabled],
543
+ .acud-picker-ranges .acud-picker-now a[disabled]:hover,
544
+ .acud-picker-ranges .acud-picker-now a[disabled]:focus,
545
+ .acud-picker-ranges .acud-picker-now a[disabled]:active {
546
+ color: #B8BABF;
547
+ }
526
548
  .acud-picker-ranges .acud-picker-ok {
527
549
  float: right;
528
550
  margin-left: 12px;
@@ -606,12 +628,16 @@
606
628
  left: -12px;
607
629
  background: #E6F0FF;
608
630
  }
609
- .acud-picker-month-panel .acud-picker-cell-in-view.acud-picker-cell-range-hover-end:hover {
610
- background-color: #E6F0FF;
631
+ .acud-picker-month-panel .acud-picker-cell-in-view.acud-picker-cell-in-range.acud-picker-cell-range-hover-end:hover,
632
+ .acud-picker-month-panel .acud-picker-cell-in-view.acud-picker-cell-in-range.acud-picker-cell-range-hover-start:hover {
633
+ background-color: #D4E5FF;
611
634
  }
612
- .acud-picker-month-panel .acud-picker-cell-range-hover-start:hover {
613
- background-color: #A7C2F9;
614
- border-radius: 2px;
635
+ .acud-picker-month-panel .acud-picker-cell-in-view.acud-picker-cell-range-hover-end:hover,
636
+ .acud-picker-month-panel .acud-picker-cell-in-view.acud-picker-cell-range-hover-start:hover {
637
+ background: #E6F0FF;
638
+ }
639
+ .acud-picker-month-panel .acud-picker-cell-disabled:not(:first-child)::before {
640
+ left: -12px;
615
641
  }
616
642
  .acud-picker-header {
617
643
  display: flex;
@@ -859,7 +885,7 @@
859
885
  }
860
886
  .acud-picker-cell:hover:not(.acud-picker-cell-in-view) .acud-picker-cell-inner,
861
887
  .acud-picker-cell:hover:not(.acud-picker-cell-selected):not(.acud-picker-cell-range-start):not(.acud-picker-cell-range-end):not(.acud-picker-cell-range-hover-start):not(.acud-picker-cell-range-hover-end) .acud-picker-cell-inner {
862
- background: #E6F0FF;
888
+ background: #F7F7F9;
863
889
  border-radius: 2px;
864
890
  }
865
891
  .acud-picker-cell-in-view.acud-picker-cell-today .acud-picker-cell-inner::before {
@@ -949,7 +975,7 @@
949
975
  top: 0;
950
976
  bottom: 0;
951
977
  z-index: -1;
952
- background: #A7C2F9;
978
+ background: #D4E5FF;
953
979
  content: '';
954
980
  border-radius: 2px;
955
981
  }
@@ -996,7 +1022,7 @@ tr > .acud-picker-cell-in-view.acud-picker-cell-range-hover-start:last-child::af
996
1022
  }
997
1023
  .acud-picker-cell-disabled:not(:first-child)::before {
998
1024
  width: 12px;
999
- left: -12px;
1025
+ left: -10px;
1000
1026
  background: #F7F7F9;
1001
1027
  }
1002
1028
  .acud-picker-cell-disabled.acud-picker-cell-today .acud-picker-cell-inner::before {
@@ -1012,7 +1038,6 @@ tr > .acud-picker-cell-in-view.acud-picker-cell-range-hover-start:last-child::af
1012
1038
  height: 56px;
1013
1039
  }
1014
1040
  .acud-picker-date-panel .acud-picker-content td:hover {
1015
- background-color: #E6F0FF;
1016
1041
  border-radius: 2px;
1017
1042
  }
1018
1043
  .acud-picker-date-panel tr .acud-picker-cell:first-child::before {
@@ -1033,6 +1058,10 @@ tr > .acud-picker-cell-in-view.acud-picker-cell-range-hover-start:last-child::af
1033
1058
  justify-content: space-between;
1034
1059
  width: 216px;
1035
1060
  }
1061
+ .acud-picker-date-panel .acud-picker-cell-in-view.acud-picker-cell-range-hover-end:hover,
1062
+ .acud-picker-date-panel .acud-picker-cell-in-view.acud-picker-cell-range-hover-start:hover {
1063
+ background-color: #E6F0FF;
1064
+ }
1036
1065
  .acud-picker-footer {
1037
1066
  width: -webkit-min-content;
1038
1067
  width: -moz-min-content;
@@ -1108,6 +1137,9 @@ tr > .acud-picker-cell-in-view.acud-picker-cell-range-hover-start:last-child::af
1108
1137
  .acud-picker-panels .acud-picker-month-panel {
1109
1138
  width: 186px;
1110
1139
  }
1140
+ .acud-picker-panels .acud-picker-date-panel {
1141
+ width: 234px;
1142
+ }
1111
1143
  .acud-picker-week-panel .acud-picker-body {
1112
1144
  padding: 12px 8px;
1113
1145
  }