@qn-pandora/pandora-component 5.1.1 → 5.1.3
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.
- package/es/components/AutoComplete/style.css +17 -17
- package/es/components/Button/style.css +69 -69
- package/es/components/Button/style.less +1 -1
- package/es/components/Card/style.css +11 -11
- package/es/components/CheckTransformList/style.css +19 -19
- package/es/components/Checkbox/index.js +9 -1
- package/es/components/CheckboxList/style.css +5 -5
- package/es/components/Collapse/style.css +1 -1
- package/es/components/DateTimePicker/Base/index.d.ts +3 -0
- package/es/components/DateTimePicker/Base/index.js +51 -6
- package/es/components/DateTimePicker/Base/style.css +67 -61
- package/es/components/DateTimePicker/Base/style.less +7 -0
- package/es/components/DateTimePicker/DisplayInput/index.js +3 -1
- package/es/components/DateTimePicker/DisplayInput/style.css +14 -14
- package/es/components/DateTimePicker/constants.d.ts +7 -1
- package/es/components/DateTimePicker/constants.js +1 -0
- package/es/components/DateTimePicker/time.d.ts +1 -0
- package/es/components/DateTimePicker/time.js +1 -0
- package/es/components/DateTimePicker/transform.js +4 -2
- package/es/components/Drawer/index.d.ts +1 -1
- package/es/components/FileResumable/index.js +2 -3
- package/es/components/FileResumable/style.css +8 -8
- package/es/components/FlameGraph/customTooltip.d.ts +22 -0
- package/es/components/FlameGraph/customTooltip.js +91 -0
- package/es/components/FlameGraph/index.d.ts +16 -0
- package/es/components/FlameGraph/index.js +96 -0
- package/es/components/FlameGraph/style.css +8 -0
- package/es/components/FlameGraph/style.less +14 -0
- package/es/components/Input/style.css +14 -14
- package/es/components/Menu/Option.d.ts +1 -1
- package/es/components/Menu/Option.js +12 -4
- package/es/components/Menu/style.css +23 -23
- package/es/components/Modal/style.css +1 -1
- package/es/components/NameExplainTooltip/style.css +1 -1
- package/es/components/OptionList/InlineOptionList/style.css +1 -1
- package/es/components/OptionList/OptionItem/style.css +2 -2
- package/es/components/OptionList/PopoverOptionList/style.css +3 -3
- package/es/components/OptionList/style.css +6 -6
- package/es/components/RadioGroup/style.css +35 -32
- package/es/components/RadioGroup/style.less +4 -0
- package/es/components/RangeInput/style.css +29 -29
- package/es/components/Selector/style.css +17 -17
- package/es/components/Spin/style.css +2 -2
- package/es/components/Steps/style.css +16 -16
- package/es/components/Table/ColumnSetting/index.d.ts +1 -0
- package/es/components/Table/ColumnSetting/index.js +19 -14
- package/es/components/Table/ColumnTag/style.css +4 -4
- package/es/components/Table/EmptyText.d.ts +7 -0
- package/es/components/Table/EmptyText.js +22 -0
- package/es/components/Table/ResizableTitle/index.js +12 -2
- package/es/components/Table/index.d.ts +11 -83
- package/es/components/Table/index.js +114 -287
- package/es/components/Table/style.css +54 -44
- package/es/components/Table/style.less +23 -4
- package/es/components/Table/type.d.ts +63 -0
- package/es/components/Table/type.js +5 -0
- package/es/components/Table/util.d.ts +59 -0
- package/es/components/Table/util.js +224 -0
- package/es/components/Tabs/style.css +10 -10
- package/es/components/TagList/Tag/style.css +5 -5
- package/es/components/TagList/TagSwitch/style.css +1 -1
- package/es/components/TagList/style.css +6 -6
- package/es/components/Timeline/TimelineItem/style.css +1 -1
- package/es/components/TreeSelector/style.css +21 -21
- package/es/constants/language/datetime/en.js +4 -2
- package/es/constants/language/datetime/type.d.ts +4 -2
- package/es/constants/language/datetime/zh.js +4 -2
- package/es/index.css +4666 -4639
- package/es/index.d.ts +1 -0
- package/es/index.js +1 -0
- package/es/index.less +18 -17
- package/es/style/theme.less +3 -3
- package/lib/components/AutoComplete/style.css +17 -17
- package/lib/components/Button/style.css +69 -69
- package/lib/components/Button/style.less +1 -1
- package/lib/components/Card/style.css +11 -11
- package/lib/components/CheckTransformList/style.css +19 -19
- package/lib/components/Checkbox/index.js +9 -1
- package/lib/components/CheckboxList/style.css +5 -5
- package/lib/components/Collapse/style.css +1 -1
- package/lib/components/DateTimePicker/Base/index.d.ts +3 -0
- package/lib/components/DateTimePicker/Base/index.js +51 -6
- package/lib/components/DateTimePicker/Base/style.css +67 -61
- package/lib/components/DateTimePicker/Base/style.less +7 -0
- package/lib/components/DateTimePicker/DisplayInput/index.js +3 -1
- package/lib/components/DateTimePicker/DisplayInput/style.css +14 -14
- package/lib/components/DateTimePicker/constants.d.ts +7 -1
- package/lib/components/DateTimePicker/constants.js +1 -0
- package/lib/components/DateTimePicker/time.d.ts +1 -0
- package/lib/components/DateTimePicker/time.js +1 -0
- package/lib/components/DateTimePicker/transform.js +4 -2
- package/lib/components/Drawer/index.d.ts +1 -1
- package/lib/components/FileResumable/index.js +2 -3
- package/lib/components/FileResumable/style.css +8 -8
- package/lib/components/FlameGraph/customTooltip.d.ts +22 -0
- package/lib/components/FlameGraph/customTooltip.js +114 -0
- package/lib/components/FlameGraph/index.d.ts +16 -0
- package/lib/components/FlameGraph/index.js +117 -0
- package/lib/components/FlameGraph/style.css +8 -0
- package/lib/components/FlameGraph/style.less +14 -0
- package/lib/components/Input/style.css +14 -14
- package/lib/components/Menu/Option.d.ts +1 -1
- package/lib/components/Menu/Option.js +17 -25
- package/lib/components/Menu/style.css +23 -23
- package/lib/components/Modal/style.css +1 -1
- package/lib/components/NameExplainTooltip/style.css +1 -1
- package/lib/components/OptionList/InlineOptionList/style.css +1 -1
- package/lib/components/OptionList/OptionItem/style.css +2 -2
- package/lib/components/OptionList/PopoverOptionList/style.css +3 -3
- package/lib/components/OptionList/style.css +6 -6
- package/lib/components/RadioGroup/style.css +35 -32
- package/lib/components/RadioGroup/style.less +4 -0
- package/lib/components/RangeInput/style.css +29 -29
- package/lib/components/Selector/style.css +17 -17
- package/lib/components/Spin/style.css +2 -2
- package/lib/components/Steps/style.css +16 -16
- package/lib/components/Table/ColumnSetting/index.d.ts +1 -0
- package/lib/components/Table/ColumnSetting/index.js +19 -14
- package/lib/components/Table/ColumnTag/style.css +4 -4
- package/lib/components/Table/EmptyText.d.ts +7 -0
- package/lib/components/Table/EmptyText.js +27 -0
- package/lib/components/Table/ResizableTitle/index.js +12 -2
- package/lib/components/Table/index.d.ts +11 -83
- package/lib/components/Table/index.js +118 -289
- package/lib/components/Table/style.css +54 -44
- package/lib/components/Table/style.less +23 -4
- package/lib/components/Table/type.d.ts +63 -0
- package/lib/components/Table/type.js +8 -0
- package/lib/components/Table/util.d.ts +59 -0
- package/lib/components/Table/util.js +233 -0
- package/lib/components/Tabs/style.css +10 -10
- package/lib/components/TagList/Tag/style.css +5 -5
- package/lib/components/TagList/TagSwitch/style.css +1 -1
- package/lib/components/TagList/style.css +6 -6
- package/lib/components/Timeline/TimelineItem/style.css +1 -1
- package/lib/components/TreeSelector/style.css +21 -21
- package/lib/constants/language/datetime/en.js +4 -2
- package/lib/constants/language/datetime/type.d.ts +4 -2
- package/lib/constants/language/datetime/zh.js +4 -2
- package/lib/index.css +6603 -6576
- package/lib/index.d.ts +1 -0
- package/lib/index.js +3 -1
- package/lib/index.less +22 -21
- package/lib/style/theme.less +3 -3
- package/package.json +8 -5
|
@@ -427,9 +427,9 @@
|
|
|
427
427
|
cursor: auto;
|
|
428
428
|
}
|
|
429
429
|
.ant-select-focused:not(.ant-select-disabled).ant-select:not(.ant-select-customize-input) .ant-select-selector {
|
|
430
|
-
border-color: #
|
|
431
|
-
-webkit-box-shadow: 0 0 0 2px rgba(
|
|
432
|
-
box-shadow: 0 0 0 2px rgba(
|
|
430
|
+
border-color: #6b90ff;
|
|
431
|
+
-webkit-box-shadow: 0 0 0 2px rgba(67, 107, 255, 0.2);
|
|
432
|
+
box-shadow: 0 0 0 2px rgba(67, 107, 255, 0.2);
|
|
433
433
|
border-right-width: 1px;
|
|
434
434
|
outline: 0;
|
|
435
435
|
}
|
|
@@ -460,7 +460,7 @@
|
|
|
460
460
|
-webkit-appearance: none;
|
|
461
461
|
}
|
|
462
462
|
.ant-select:not(.ant-select-disabled):hover .ant-select-selector {
|
|
463
|
-
border-color: #
|
|
463
|
+
border-color: #436bff;
|
|
464
464
|
border-right-width: 1px;
|
|
465
465
|
}
|
|
466
466
|
.ant-select-selection-item {
|
|
@@ -685,15 +685,15 @@
|
|
|
685
685
|
flex: none;
|
|
686
686
|
}
|
|
687
687
|
.ant-select-item-option-active:not(.ant-select-item-option-disabled) {
|
|
688
|
-
background-color: rgba(
|
|
688
|
+
background-color: rgba(67, 107, 255, 0.05);
|
|
689
689
|
}
|
|
690
690
|
.ant-select-item-option-selected:not(.ant-select-item-option-disabled) {
|
|
691
691
|
color: rgba(0, 0, 0, 0.65);
|
|
692
692
|
font-weight: 600;
|
|
693
|
-
background-color: rgba(
|
|
693
|
+
background-color: rgba(67, 107, 255, 0.05);
|
|
694
694
|
}
|
|
695
695
|
.ant-select-item-option-selected:not(.ant-select-item-option-disabled) .ant-select-item-option-state {
|
|
696
|
-
color: #
|
|
696
|
+
color: #436bff;
|
|
697
697
|
}
|
|
698
698
|
.ant-select-item-option-disabled {
|
|
699
699
|
color: rgba(0, 0, 0, 0.25);
|
|
@@ -865,7 +865,7 @@
|
|
|
865
865
|
.ant-checkbox-wrapper:hover .ant-checkbox-inner,
|
|
866
866
|
.ant-checkbox:hover .ant-checkbox-inner,
|
|
867
867
|
.ant-checkbox-input:focus + .ant-checkbox-inner {
|
|
868
|
-
border-color: #
|
|
868
|
+
border-color: #436bff;
|
|
869
869
|
}
|
|
870
870
|
.ant-checkbox-checked::after {
|
|
871
871
|
position: absolute;
|
|
@@ -873,7 +873,7 @@
|
|
|
873
873
|
left: 0;
|
|
874
874
|
width: 100%;
|
|
875
875
|
height: 100%;
|
|
876
|
-
border: 1px solid #
|
|
876
|
+
border: 1px solid #436bff;
|
|
877
877
|
border-radius: 2px;
|
|
878
878
|
visibility: hidden;
|
|
879
879
|
-webkit-animation: antCheckboxEffect 0.36s ease-in-out;
|
|
@@ -944,8 +944,8 @@
|
|
|
944
944
|
content: ' ';
|
|
945
945
|
}
|
|
946
946
|
.ant-checkbox-checked .ant-checkbox-inner {
|
|
947
|
-
background-color: #
|
|
948
|
-
border-color: #
|
|
947
|
+
background-color: #436bff;
|
|
948
|
+
border-color: #436bff;
|
|
949
949
|
}
|
|
950
950
|
.ant-checkbox-disabled {
|
|
951
951
|
cursor: not-allowed;
|
|
@@ -1050,7 +1050,7 @@
|
|
|
1050
1050
|
left: 50%;
|
|
1051
1051
|
width: 8px;
|
|
1052
1052
|
height: 8px;
|
|
1053
|
-
background-color: #
|
|
1053
|
+
background-color: #436bff;
|
|
1054
1054
|
border: 0;
|
|
1055
1055
|
-webkit-transform: translate(-50%, -50%) scale(1);
|
|
1056
1056
|
transform: translate(-50%, -50%) scale(1);
|
|
@@ -1135,11 +1135,11 @@
|
|
|
1135
1135
|
color: #d9d9d9;
|
|
1136
1136
|
}
|
|
1137
1137
|
.pandora-sdk-selector-dropdown .ant-select-item-option-selected {
|
|
1138
|
-
color: #
|
|
1138
|
+
color: #436bff;
|
|
1139
1139
|
font-weight: 400;
|
|
1140
1140
|
}
|
|
1141
1141
|
.pandora-sdk-selector-dropdown .ant-select-item-option:hover {
|
|
1142
|
-
color: #
|
|
1142
|
+
color: #436bff;
|
|
1143
1143
|
}
|
|
1144
1144
|
.pandora-sdk-selector-dropdown .ant-select-item-group {
|
|
1145
1145
|
color: #d9d9d9;
|
|
@@ -1153,7 +1153,7 @@
|
|
|
1153
1153
|
text-overflow: unset;
|
|
1154
1154
|
}
|
|
1155
1155
|
.pandora-sdk-selector-dropdown .pandora-sdk-selector-create-option {
|
|
1156
|
-
color: #
|
|
1156
|
+
color: #436bff;
|
|
1157
1157
|
cursor: default;
|
|
1158
1158
|
}
|
|
1159
1159
|
.pandora-sdk-selector-dropdown .pandora-sdk-selector-create-option::before,
|
|
@@ -1161,10 +1161,10 @@
|
|
|
1161
1161
|
content: none;
|
|
1162
1162
|
}
|
|
1163
1163
|
.pandora-sdk-selector-dropdown .pandora-sdk-selector-create-option a {
|
|
1164
|
-
color: #
|
|
1164
|
+
color: #436bff;
|
|
1165
1165
|
}
|
|
1166
1166
|
.pandora-sdk-selector-dropdown .ant-select-item-option-selected:not(.ant-select-item-option-disabled) .ant-select-item-option-state .anticon-check.anticon {
|
|
1167
|
-
color: #
|
|
1167
|
+
color: #436bff;
|
|
1168
1168
|
}
|
|
1169
1169
|
.pandora-sdk-selector-create-lint {
|
|
1170
1170
|
display: block;
|
|
@@ -78,8 +78,8 @@
|
|
|
78
78
|
}
|
|
79
79
|
.ant-btn:hover,
|
|
80
80
|
.ant-btn:focus {
|
|
81
|
-
color: #
|
|
82
|
-
border-color: #
|
|
81
|
+
color: #6b90ff;
|
|
82
|
+
border-color: #6b90ff;
|
|
83
83
|
background: #ffffff;
|
|
84
84
|
}
|
|
85
85
|
.ant-btn:hover > a:only-child,
|
|
@@ -97,8 +97,8 @@
|
|
|
97
97
|
content: '';
|
|
98
98
|
}
|
|
99
99
|
.ant-btn:active {
|
|
100
|
-
color: #
|
|
101
|
-
border-color: #
|
|
100
|
+
color: #2e4dd9;
|
|
101
|
+
border-color: #2e4dd9;
|
|
102
102
|
background: #ffffff;
|
|
103
103
|
}
|
|
104
104
|
.ant-btn:active > a:only-child {
|
|
@@ -119,7 +119,7 @@
|
|
|
119
119
|
.ant-btn[disabled]:active {
|
|
120
120
|
color: #eeeeee;
|
|
121
121
|
border-color: #e5e5e5;
|
|
122
|
-
background: rgba(
|
|
122
|
+
background: rgba(67, 107, 255, 0.7);
|
|
123
123
|
text-shadow: none;
|
|
124
124
|
-webkit-box-shadow: none;
|
|
125
125
|
box-shadow: none;
|
|
@@ -153,8 +153,8 @@
|
|
|
153
153
|
}
|
|
154
154
|
.ant-btn-primary {
|
|
155
155
|
color: #ffffff;
|
|
156
|
-
border-color: #
|
|
157
|
-
background: #
|
|
156
|
+
border-color: #436bff;
|
|
157
|
+
background: #436bff;
|
|
158
158
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
|
|
159
159
|
-webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
|
|
160
160
|
box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
|
|
@@ -174,8 +174,8 @@
|
|
|
174
174
|
.ant-btn-primary:hover,
|
|
175
175
|
.ant-btn-primary:focus {
|
|
176
176
|
color: #ffffff;
|
|
177
|
-
border-color: #
|
|
178
|
-
background: #
|
|
177
|
+
border-color: #6b90ff;
|
|
178
|
+
background: #6b90ff;
|
|
179
179
|
}
|
|
180
180
|
.ant-btn-primary:hover > a:only-child,
|
|
181
181
|
.ant-btn-primary:focus > a:only-child {
|
|
@@ -193,8 +193,8 @@
|
|
|
193
193
|
}
|
|
194
194
|
.ant-btn-primary:active {
|
|
195
195
|
color: #ffffff;
|
|
196
|
-
border-color: #
|
|
197
|
-
background: #
|
|
196
|
+
border-color: #2e4dd9;
|
|
197
|
+
background: #2e4dd9;
|
|
198
198
|
}
|
|
199
199
|
.ant-btn-primary:active > a:only-child {
|
|
200
200
|
color: currentcolor;
|
|
@@ -214,7 +214,7 @@
|
|
|
214
214
|
.ant-btn-primary[disabled]:active {
|
|
215
215
|
color: #eeeeee;
|
|
216
216
|
border-color: #e5e5e5;
|
|
217
|
-
background: rgba(
|
|
217
|
+
background: rgba(67, 107, 255, 0.7);
|
|
218
218
|
text-shadow: none;
|
|
219
219
|
-webkit-box-shadow: none;
|
|
220
220
|
box-shadow: none;
|
|
@@ -238,21 +238,21 @@
|
|
|
238
238
|
content: '';
|
|
239
239
|
}
|
|
240
240
|
.ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child) {
|
|
241
|
-
border-right-color: #
|
|
242
|
-
border-left-color: #
|
|
241
|
+
border-right-color: #6b90ff;
|
|
242
|
+
border-left-color: #6b90ff;
|
|
243
243
|
}
|
|
244
244
|
.ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child):disabled {
|
|
245
245
|
border-color: #e5e5e5;
|
|
246
246
|
}
|
|
247
247
|
.ant-btn-group .ant-btn-primary:first-child:not(:last-child) {
|
|
248
|
-
border-right-color: #
|
|
248
|
+
border-right-color: #6b90ff;
|
|
249
249
|
}
|
|
250
250
|
.ant-btn-group .ant-btn-primary:first-child:not(:last-child)[disabled] {
|
|
251
251
|
border-right-color: #e5e5e5;
|
|
252
252
|
}
|
|
253
253
|
.ant-btn-group .ant-btn-primary:last-child:not(:first-child),
|
|
254
254
|
.ant-btn-group .ant-btn-primary + .ant-btn-primary {
|
|
255
|
-
border-left-color: #
|
|
255
|
+
border-left-color: #6b90ff;
|
|
256
256
|
}
|
|
257
257
|
.ant-btn-group .ant-btn-primary:last-child:not(:first-child)[disabled],
|
|
258
258
|
.ant-btn-group .ant-btn-primary + .ant-btn-primary[disabled] {
|
|
@@ -277,8 +277,8 @@
|
|
|
277
277
|
}
|
|
278
278
|
.ant-btn-ghost:hover,
|
|
279
279
|
.ant-btn-ghost:focus {
|
|
280
|
-
color: #
|
|
281
|
-
border-color: #
|
|
280
|
+
color: #6b90ff;
|
|
281
|
+
border-color: #6b90ff;
|
|
282
282
|
background: transparent;
|
|
283
283
|
}
|
|
284
284
|
.ant-btn-ghost:hover > a:only-child,
|
|
@@ -296,8 +296,8 @@
|
|
|
296
296
|
content: '';
|
|
297
297
|
}
|
|
298
298
|
.ant-btn-ghost:active {
|
|
299
|
-
color: #
|
|
300
|
-
border-color: #
|
|
299
|
+
color: #2e4dd9;
|
|
300
|
+
border-color: #2e4dd9;
|
|
301
301
|
background: transparent;
|
|
302
302
|
}
|
|
303
303
|
.ant-btn-ghost:active > a:only-child {
|
|
@@ -318,7 +318,7 @@
|
|
|
318
318
|
.ant-btn-ghost[disabled]:active {
|
|
319
319
|
color: #eeeeee;
|
|
320
320
|
border-color: #e5e5e5;
|
|
321
|
-
background: rgba(
|
|
321
|
+
background: rgba(67, 107, 255, 0.7);
|
|
322
322
|
text-shadow: none;
|
|
323
323
|
-webkit-box-shadow: none;
|
|
324
324
|
box-shadow: none;
|
|
@@ -361,8 +361,8 @@
|
|
|
361
361
|
}
|
|
362
362
|
.ant-btn-dashed:hover,
|
|
363
363
|
.ant-btn-dashed:focus {
|
|
364
|
-
color: #
|
|
365
|
-
border-color: #
|
|
364
|
+
color: #6b90ff;
|
|
365
|
+
border-color: #6b90ff;
|
|
366
366
|
background: #ffffff;
|
|
367
367
|
}
|
|
368
368
|
.ant-btn-dashed:hover > a:only-child,
|
|
@@ -380,8 +380,8 @@
|
|
|
380
380
|
content: '';
|
|
381
381
|
}
|
|
382
382
|
.ant-btn-dashed:active {
|
|
383
|
-
color: #
|
|
384
|
-
border-color: #
|
|
383
|
+
color: #2e4dd9;
|
|
384
|
+
border-color: #2e4dd9;
|
|
385
385
|
background: #ffffff;
|
|
386
386
|
}
|
|
387
387
|
.ant-btn-dashed:active > a:only-child {
|
|
@@ -402,7 +402,7 @@
|
|
|
402
402
|
.ant-btn-dashed[disabled]:active {
|
|
403
403
|
color: #eeeeee;
|
|
404
404
|
border-color: #e5e5e5;
|
|
405
|
-
background: rgba(
|
|
405
|
+
background: rgba(67, 107, 255, 0.7);
|
|
406
406
|
text-shadow: none;
|
|
407
407
|
-webkit-box-shadow: none;
|
|
408
408
|
box-shadow: none;
|
|
@@ -488,7 +488,7 @@
|
|
|
488
488
|
.ant-btn-danger[disabled]:active {
|
|
489
489
|
color: #eeeeee;
|
|
490
490
|
border-color: #e5e5e5;
|
|
491
|
-
background: rgba(
|
|
491
|
+
background: rgba(67, 107, 255, 0.7);
|
|
492
492
|
text-shadow: none;
|
|
493
493
|
-webkit-box-shadow: none;
|
|
494
494
|
box-shadow: none;
|
|
@@ -512,7 +512,7 @@
|
|
|
512
512
|
content: '';
|
|
513
513
|
}
|
|
514
514
|
.ant-btn-link {
|
|
515
|
-
color: #
|
|
515
|
+
color: #436bff;
|
|
516
516
|
border-color: transparent;
|
|
517
517
|
background: transparent;
|
|
518
518
|
-webkit-box-shadow: none;
|
|
@@ -532,8 +532,8 @@
|
|
|
532
532
|
}
|
|
533
533
|
.ant-btn-link:hover,
|
|
534
534
|
.ant-btn-link:focus {
|
|
535
|
-
color: #
|
|
536
|
-
border-color: #
|
|
535
|
+
color: #6b90ff;
|
|
536
|
+
border-color: #6b90ff;
|
|
537
537
|
background: transparent;
|
|
538
538
|
}
|
|
539
539
|
.ant-btn-link:hover > a:only-child,
|
|
@@ -551,8 +551,8 @@
|
|
|
551
551
|
content: '';
|
|
552
552
|
}
|
|
553
553
|
.ant-btn-link:active {
|
|
554
|
-
color: #
|
|
555
|
-
border-color: #
|
|
554
|
+
color: #2e4dd9;
|
|
555
|
+
border-color: #2e4dd9;
|
|
556
556
|
background: transparent;
|
|
557
557
|
}
|
|
558
558
|
.ant-btn-link:active > a:only-child {
|
|
@@ -573,7 +573,7 @@
|
|
|
573
573
|
.ant-btn-link[disabled]:active {
|
|
574
574
|
color: #eeeeee;
|
|
575
575
|
border-color: #e5e5e5;
|
|
576
|
-
background: rgba(
|
|
576
|
+
background: rgba(67, 107, 255, 0.7);
|
|
577
577
|
text-shadow: none;
|
|
578
578
|
-webkit-box-shadow: none;
|
|
579
579
|
box-shadow: none;
|
|
@@ -654,8 +654,8 @@
|
|
|
654
654
|
}
|
|
655
655
|
.ant-btn-text:hover,
|
|
656
656
|
.ant-btn-text:focus {
|
|
657
|
-
color: #
|
|
658
|
-
border-color: #
|
|
657
|
+
color: #6b90ff;
|
|
658
|
+
border-color: #6b90ff;
|
|
659
659
|
background: transparent;
|
|
660
660
|
}
|
|
661
661
|
.ant-btn-text:hover > a:only-child,
|
|
@@ -673,8 +673,8 @@
|
|
|
673
673
|
content: '';
|
|
674
674
|
}
|
|
675
675
|
.ant-btn-text:active {
|
|
676
|
-
color: #
|
|
677
|
-
border-color: #
|
|
676
|
+
color: #2e4dd9;
|
|
677
|
+
border-color: #2e4dd9;
|
|
678
678
|
background: transparent;
|
|
679
679
|
}
|
|
680
680
|
.ant-btn-text:active > a:only-child {
|
|
@@ -695,7 +695,7 @@
|
|
|
695
695
|
.ant-btn-text[disabled]:active {
|
|
696
696
|
color: #eeeeee;
|
|
697
697
|
border-color: #e5e5e5;
|
|
698
|
-
background: rgba(
|
|
698
|
+
background: rgba(67, 107, 255, 0.7);
|
|
699
699
|
text-shadow: none;
|
|
700
700
|
-webkit-box-shadow: none;
|
|
701
701
|
box-shadow: none;
|
|
@@ -818,7 +818,7 @@
|
|
|
818
818
|
.ant-btn-dangerous[disabled]:active {
|
|
819
819
|
color: #eeeeee;
|
|
820
820
|
border-color: #e5e5e5;
|
|
821
|
-
background: rgba(
|
|
821
|
+
background: rgba(67, 107, 255, 0.7);
|
|
822
822
|
text-shadow: none;
|
|
823
823
|
-webkit-box-shadow: none;
|
|
824
824
|
box-shadow: none;
|
|
@@ -904,7 +904,7 @@
|
|
|
904
904
|
.ant-btn-dangerous.ant-btn-primary[disabled]:active {
|
|
905
905
|
color: #eeeeee;
|
|
906
906
|
border-color: #e5e5e5;
|
|
907
|
-
background: rgba(
|
|
907
|
+
background: rgba(67, 107, 255, 0.7);
|
|
908
908
|
text-shadow: none;
|
|
909
909
|
-webkit-box-shadow: none;
|
|
910
910
|
box-shadow: none;
|
|
@@ -948,8 +948,8 @@
|
|
|
948
948
|
}
|
|
949
949
|
.ant-btn-dangerous.ant-btn-link:hover,
|
|
950
950
|
.ant-btn-dangerous.ant-btn-link:focus {
|
|
951
|
-
color: #
|
|
952
|
-
border-color: #
|
|
951
|
+
color: #6b90ff;
|
|
952
|
+
border-color: #6b90ff;
|
|
953
953
|
background: transparent;
|
|
954
954
|
}
|
|
955
955
|
.ant-btn-dangerous.ant-btn-link:hover > a:only-child,
|
|
@@ -967,8 +967,8 @@
|
|
|
967
967
|
content: '';
|
|
968
968
|
}
|
|
969
969
|
.ant-btn-dangerous.ant-btn-link:active {
|
|
970
|
-
color: #
|
|
971
|
-
border-color: #
|
|
970
|
+
color: #2e4dd9;
|
|
971
|
+
border-color: #2e4dd9;
|
|
972
972
|
background: transparent;
|
|
973
973
|
}
|
|
974
974
|
.ant-btn-dangerous.ant-btn-link:active > a:only-child {
|
|
@@ -989,7 +989,7 @@
|
|
|
989
989
|
.ant-btn-dangerous.ant-btn-link[disabled]:active {
|
|
990
990
|
color: #eeeeee;
|
|
991
991
|
border-color: #e5e5e5;
|
|
992
|
-
background: rgba(
|
|
992
|
+
background: rgba(67, 107, 255, 0.7);
|
|
993
993
|
text-shadow: none;
|
|
994
994
|
-webkit-box-shadow: none;
|
|
995
995
|
box-shadow: none;
|
|
@@ -1099,8 +1099,8 @@
|
|
|
1099
1099
|
}
|
|
1100
1100
|
.ant-btn-dangerous.ant-btn-text:hover,
|
|
1101
1101
|
.ant-btn-dangerous.ant-btn-text:focus {
|
|
1102
|
-
color: #
|
|
1103
|
-
border-color: #
|
|
1102
|
+
color: #6b90ff;
|
|
1103
|
+
border-color: #6b90ff;
|
|
1104
1104
|
background: transparent;
|
|
1105
1105
|
}
|
|
1106
1106
|
.ant-btn-dangerous.ant-btn-text:hover > a:only-child,
|
|
@@ -1118,8 +1118,8 @@
|
|
|
1118
1118
|
content: '';
|
|
1119
1119
|
}
|
|
1120
1120
|
.ant-btn-dangerous.ant-btn-text:active {
|
|
1121
|
-
color: #
|
|
1122
|
-
border-color: #
|
|
1121
|
+
color: #2e4dd9;
|
|
1122
|
+
border-color: #2e4dd9;
|
|
1123
1123
|
background: transparent;
|
|
1124
1124
|
}
|
|
1125
1125
|
.ant-btn-dangerous.ant-btn-text:active > a:only-child {
|
|
@@ -1140,7 +1140,7 @@
|
|
|
1140
1140
|
.ant-btn-dangerous.ant-btn-text[disabled]:active {
|
|
1141
1141
|
color: #eeeeee;
|
|
1142
1142
|
border-color: #e5e5e5;
|
|
1143
|
-
background: rgba(
|
|
1143
|
+
background: rgba(67, 107, 255, 0.7);
|
|
1144
1144
|
text-shadow: none;
|
|
1145
1145
|
-webkit-box-shadow: none;
|
|
1146
1146
|
box-shadow: none;
|
|
@@ -1505,12 +1505,12 @@ a.ant-btn-icon-only > .anticon {
|
|
|
1505
1505
|
}
|
|
1506
1506
|
.ant-btn.ant-btn-background-ghost:hover,
|
|
1507
1507
|
.ant-btn.ant-btn-background-ghost:focus {
|
|
1508
|
-
color: #
|
|
1509
|
-
border-color: #
|
|
1508
|
+
color: #6b90ff;
|
|
1509
|
+
border-color: #6b90ff;
|
|
1510
1510
|
}
|
|
1511
1511
|
.ant-btn.ant-btn-background-ghost:active {
|
|
1512
|
-
color: #
|
|
1513
|
-
border-color: #
|
|
1512
|
+
color: #2e4dd9;
|
|
1513
|
+
border-color: #2e4dd9;
|
|
1514
1514
|
}
|
|
1515
1515
|
.ant-btn.ant-btn-background-ghost[disabled] {
|
|
1516
1516
|
color: rgba(0, 0, 0, 0.25);
|
|
@@ -1518,8 +1518,8 @@ a.ant-btn-icon-only > .anticon {
|
|
|
1518
1518
|
border-color: #e5e5e5;
|
|
1519
1519
|
}
|
|
1520
1520
|
.ant-btn-background-ghost.ant-btn-primary {
|
|
1521
|
-
color: #
|
|
1522
|
-
border-color: #
|
|
1521
|
+
color: #436bff;
|
|
1522
|
+
border-color: #436bff;
|
|
1523
1523
|
text-shadow: none;
|
|
1524
1524
|
}
|
|
1525
1525
|
.ant-btn-background-ghost.ant-btn-primary > a:only-child {
|
|
@@ -1536,8 +1536,8 @@ a.ant-btn-icon-only > .anticon {
|
|
|
1536
1536
|
}
|
|
1537
1537
|
.ant-btn-background-ghost.ant-btn-primary:hover,
|
|
1538
1538
|
.ant-btn-background-ghost.ant-btn-primary:focus {
|
|
1539
|
-
color: #
|
|
1540
|
-
border-color: #
|
|
1539
|
+
color: #6b90ff;
|
|
1540
|
+
border-color: #6b90ff;
|
|
1541
1541
|
}
|
|
1542
1542
|
.ant-btn-background-ghost.ant-btn-primary:hover > a:only-child,
|
|
1543
1543
|
.ant-btn-background-ghost.ant-btn-primary:focus > a:only-child {
|
|
@@ -1554,8 +1554,8 @@ a.ant-btn-icon-only > .anticon {
|
|
|
1554
1554
|
content: '';
|
|
1555
1555
|
}
|
|
1556
1556
|
.ant-btn-background-ghost.ant-btn-primary:active {
|
|
1557
|
-
color: #
|
|
1558
|
-
border-color: #
|
|
1557
|
+
color: #2e4dd9;
|
|
1558
|
+
border-color: #2e4dd9;
|
|
1559
1559
|
}
|
|
1560
1560
|
.ant-btn-background-ghost.ant-btn-primary:active > a:only-child {
|
|
1561
1561
|
color: currentcolor;
|
|
@@ -1575,7 +1575,7 @@ a.ant-btn-icon-only > .anticon {
|
|
|
1575
1575
|
.ant-btn-background-ghost.ant-btn-primary[disabled]:active {
|
|
1576
1576
|
color: #eeeeee;
|
|
1577
1577
|
border-color: #e5e5e5;
|
|
1578
|
-
background: rgba(
|
|
1578
|
+
background: rgba(67, 107, 255, 0.7);
|
|
1579
1579
|
text-shadow: none;
|
|
1580
1580
|
-webkit-box-shadow: none;
|
|
1581
1581
|
box-shadow: none;
|
|
@@ -1656,7 +1656,7 @@ a.ant-btn-icon-only > .anticon {
|
|
|
1656
1656
|
.ant-btn-background-ghost.ant-btn-danger[disabled]:active {
|
|
1657
1657
|
color: #eeeeee;
|
|
1658
1658
|
border-color: #e5e5e5;
|
|
1659
|
-
background: rgba(
|
|
1659
|
+
background: rgba(67, 107, 255, 0.7);
|
|
1660
1660
|
text-shadow: none;
|
|
1661
1661
|
-webkit-box-shadow: none;
|
|
1662
1662
|
box-shadow: none;
|
|
@@ -1737,7 +1737,7 @@ a.ant-btn-icon-only > .anticon {
|
|
|
1737
1737
|
.ant-btn-background-ghost.ant-btn-dangerous[disabled]:active {
|
|
1738
1738
|
color: #eeeeee;
|
|
1739
1739
|
border-color: #e5e5e5;
|
|
1740
|
-
background: rgba(
|
|
1740
|
+
background: rgba(67, 107, 255, 0.7);
|
|
1741
1741
|
text-shadow: none;
|
|
1742
1742
|
-webkit-box-shadow: none;
|
|
1743
1743
|
box-shadow: none;
|
|
@@ -1818,7 +1818,7 @@ a.ant-btn-icon-only > .anticon {
|
|
|
1818
1818
|
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:active {
|
|
1819
1819
|
color: #eeeeee;
|
|
1820
1820
|
border-color: #e5e5e5;
|
|
1821
|
-
background: rgba(
|
|
1821
|
+
background: rgba(67, 107, 255, 0.7);
|
|
1822
1822
|
text-shadow: none;
|
|
1823
1823
|
-webkit-box-shadow: none;
|
|
1824
1824
|
box-shadow: none;
|
|
@@ -1950,7 +1950,7 @@ a.ant-btn-sm {
|
|
|
1950
1950
|
display: inline-block;
|
|
1951
1951
|
width: 1px;
|
|
1952
1952
|
height: calc(100% + 1px * 2);
|
|
1953
|
-
background-color: #
|
|
1953
|
+
background-color: #6b90ff;
|
|
1954
1954
|
content: ' ';
|
|
1955
1955
|
}
|
|
1956
1956
|
.ant-btn-compact-item-rtl.ant-btn-compact-first-item.ant-btn-compact-item-rtl:not(.ant-btn-compact-last-item) {
|
|
@@ -2004,7 +2004,7 @@ a.ant-btn-sm {
|
|
|
2004
2004
|
display: inline-block;
|
|
2005
2005
|
width: calc(100% + 1px * 2);
|
|
2006
2006
|
height: 1px;
|
|
2007
|
-
background-color: #
|
|
2007
|
+
background-color: #6b90ff;
|
|
2008
2008
|
content: ' ';
|
|
2009
2009
|
}
|
|
2010
2010
|
.ant-btn-rtl {
|
|
@@ -2012,13 +2012,13 @@ a.ant-btn-sm {
|
|
|
2012
2012
|
}
|
|
2013
2013
|
.ant-btn-group-rtl.ant-btn-group .ant-btn-primary:last-child:not(:first-child),
|
|
2014
2014
|
.ant-btn-group-rtl.ant-btn-group .ant-btn-primary + .ant-btn-primary {
|
|
2015
|
-
border-right-color: #
|
|
2015
|
+
border-right-color: #6b90ff;
|
|
2016
2016
|
border-left-color: #e5e5e5;
|
|
2017
2017
|
}
|
|
2018
2018
|
.ant-btn-group-rtl.ant-btn-group .ant-btn-primary:last-child:not(:first-child)[disabled],
|
|
2019
2019
|
.ant-btn-group-rtl.ant-btn-group .ant-btn-primary + .ant-btn-primary[disabled] {
|
|
2020
2020
|
border-right-color: #e5e5e5;
|
|
2021
|
-
border-left-color: #
|
|
2021
|
+
border-left-color: #6b90ff;
|
|
2022
2022
|
}
|
|
2023
2023
|
.ant-btn-rtl.ant-btn > .ant-btn-loading-icon .anticon {
|
|
2024
2024
|
padding-right: 0;
|
|
@@ -2062,7 +2062,7 @@ a.ant-btn-sm {
|
|
|
2062
2062
|
}
|
|
2063
2063
|
.pandora-sdk-button.pandora-sdk-size-small {
|
|
2064
2064
|
font-size: 12px;
|
|
2065
|
-
padding:
|
|
2065
|
+
padding: 0px 7px;
|
|
2066
2066
|
}
|
|
2067
2067
|
.pandora-sdk-button.pandora-sdk-size-mini {
|
|
2068
2068
|
font-size: 10px;
|
|
@@ -192,7 +192,7 @@
|
|
|
192
192
|
cursor: pointer;
|
|
193
193
|
}
|
|
194
194
|
.ant-card-actions > li > span:hover {
|
|
195
|
-
color: #
|
|
195
|
+
color: #436bff;
|
|
196
196
|
-webkit-transition: color 0.3s;
|
|
197
197
|
transition: color 0.3s;
|
|
198
198
|
}
|
|
@@ -207,7 +207,7 @@
|
|
|
207
207
|
}
|
|
208
208
|
.ant-card-actions > li > span a:not(.ant-btn):hover,
|
|
209
209
|
.ant-card-actions > li > span > .anticon:hover {
|
|
210
|
-
color: #
|
|
210
|
+
color: #436bff;
|
|
211
211
|
}
|
|
212
212
|
.ant-card-actions > li > span > .anticon {
|
|
213
213
|
font-size: 16px;
|
|
@@ -691,10 +691,10 @@
|
|
|
691
691
|
cursor: pointer;
|
|
692
692
|
}
|
|
693
693
|
.ant-tabs-dropdown-menu-item-remove:hover {
|
|
694
|
-
color: #
|
|
694
|
+
color: #436bff;
|
|
695
695
|
}
|
|
696
696
|
.ant-tabs-dropdown-menu-item:hover {
|
|
697
|
-
background: rgba(
|
|
697
|
+
background: rgba(67, 107, 255, 0.05);
|
|
698
698
|
}
|
|
699
699
|
.ant-tabs-dropdown-menu-item-disabled,
|
|
700
700
|
.ant-tabs-dropdown-menu-item-disabled:hover {
|
|
@@ -713,7 +713,7 @@
|
|
|
713
713
|
}
|
|
714
714
|
.ant-tabs-card > .ant-tabs-nav .ant-tabs-tab-active,
|
|
715
715
|
.ant-tabs-card > div > .ant-tabs-nav .ant-tabs-tab-active {
|
|
716
|
-
color: #
|
|
716
|
+
color: #436bff;
|
|
717
717
|
background: #ffffff;
|
|
718
718
|
}
|
|
719
719
|
.ant-tabs-card > .ant-tabs-nav .ant-tabs-ink-bar,
|
|
@@ -880,13 +880,13 @@
|
|
|
880
880
|
}
|
|
881
881
|
.ant-tabs > .ant-tabs-nav .ant-tabs-nav-add:hover,
|
|
882
882
|
.ant-tabs > div > .ant-tabs-nav .ant-tabs-nav-add:hover {
|
|
883
|
-
color: #
|
|
883
|
+
color: #436bff;
|
|
884
884
|
}
|
|
885
885
|
.ant-tabs > .ant-tabs-nav .ant-tabs-nav-add:active,
|
|
886
886
|
.ant-tabs > div > .ant-tabs-nav .ant-tabs-nav-add:active,
|
|
887
887
|
.ant-tabs > .ant-tabs-nav .ant-tabs-nav-add:focus,
|
|
888
888
|
.ant-tabs > div > .ant-tabs-nav .ant-tabs-nav-add:focus {
|
|
889
|
-
color: #
|
|
889
|
+
color: #436bff;
|
|
890
890
|
}
|
|
891
891
|
.ant-tabs-extra-content {
|
|
892
892
|
-webkit-box-flex: 0;
|
|
@@ -901,7 +901,7 @@
|
|
|
901
901
|
}
|
|
902
902
|
.ant-tabs-ink-bar {
|
|
903
903
|
position: absolute;
|
|
904
|
-
background: #
|
|
904
|
+
background: #436bff;
|
|
905
905
|
pointer-events: none;
|
|
906
906
|
}
|
|
907
907
|
.ant-tabs-tab {
|
|
@@ -923,7 +923,7 @@
|
|
|
923
923
|
.ant-tabs-tab-remove:focus,
|
|
924
924
|
.ant-tabs-tab-btn:active,
|
|
925
925
|
.ant-tabs-tab-remove:active {
|
|
926
|
-
color: #
|
|
926
|
+
color: #436bff;
|
|
927
927
|
}
|
|
928
928
|
.ant-tabs-tab-btn {
|
|
929
929
|
outline: none;
|
|
@@ -949,10 +949,10 @@
|
|
|
949
949
|
color: #333;
|
|
950
950
|
}
|
|
951
951
|
.ant-tabs-tab:hover {
|
|
952
|
-
color: #
|
|
952
|
+
color: #436bff;
|
|
953
953
|
}
|
|
954
954
|
.ant-tabs-tab.ant-tabs-tab-active .ant-tabs-tab-btn {
|
|
955
|
-
color: #
|
|
955
|
+
color: #436bff;
|
|
956
956
|
text-shadow: 0 0 0.25px currentcolor;
|
|
957
957
|
}
|
|
958
958
|
.ant-tabs-tab.ant-tabs-tab-disabled {
|