@qn-pandora/pandora-component 4.0.2 → 4.0.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/CHANGELOG.json +20 -0
- package/CHANGELOG.md +9 -1
- package/es/components/AutoComplete/index.js +21 -1
- package/es/components/DateTimePicker/transform.d.ts +4 -1
- package/es/components/DateTimePicker/transform.js +2 -2
- package/es/components/Drawer/index.d.ts +30 -2
- package/es/components/Drawer/index.js +165 -5
- package/es/components/Drawer/style.css +18 -1
- package/es/components/Drawer/style.less +23 -1
- package/es/components/Selector/SelectorWidthChildren.d.ts +15 -0
- package/es/components/Selector/SelectorWidthChildren.js +59 -0
- package/es/components/Selector/index.d.ts +2 -0
- package/es/components/Selector/index.js +17 -3
- package/es/components/TreeSelector/index.js +1 -1
- package/es/index.css +1084 -1067
- package/es/index.d.ts +1 -0
- package/es/index.js +1 -0
- package/es/index.less +15 -15
- package/lib/components/AutoComplete/index.js +21 -1
- package/lib/components/DateTimePicker/transform.d.ts +4 -1
- package/lib/components/DateTimePicker/transform.js +2 -0
- package/lib/components/Drawer/index.d.ts +30 -2
- package/lib/components/Drawer/index.js +164 -12
- package/lib/components/Drawer/style.css +18 -1
- package/lib/components/Drawer/style.less +23 -1
- package/lib/components/Selector/SelectorWidthChildren.d.ts +15 -0
- package/lib/components/Selector/SelectorWidthChildren.js +72 -0
- package/lib/components/Selector/index.d.ts +2 -0
- package/lib/components/Selector/index.js +16 -2
- package/lib/components/TreeSelector/index.js +1 -1
- package/lib/index.css +949 -932
- package/lib/index.d.ts +1 -0
- package/lib/index.js +2 -0
- package/lib/index.less +11 -11
- package/package.json +3 -3
package/es/index.css
CHANGED
@@ -8,6 +8,25 @@
|
|
8
8
|
/* stylelint-disable no-duplicate-selectors */
|
9
9
|
/* stylelint-disable */
|
10
10
|
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
11
|
+
.ant-select-auto-complete {
|
12
|
+
-webkit-box-sizing: border-box;
|
13
|
+
box-sizing: border-box;
|
14
|
+
margin: 0;
|
15
|
+
padding: 0;
|
16
|
+
color: rgba(0, 0, 0, 0.85);
|
17
|
+
font-size: 14px;
|
18
|
+
font-variant: tabular-nums;
|
19
|
+
line-height: 1.5715;
|
20
|
+
list-style: none;
|
21
|
+
-webkit-font-feature-settings: 'tnum';
|
22
|
+
font-feature-settings: 'tnum';
|
23
|
+
}
|
24
|
+
.ant-select-auto-complete .ant-select-clear {
|
25
|
+
right: 13px;
|
26
|
+
}
|
27
|
+
.pandora-sdk-auto-complete .ant-input {
|
28
|
+
border: 0px;
|
29
|
+
}
|
11
30
|
.ant-breadcrumb {
|
12
31
|
-webkit-box-sizing: border-box;
|
13
32
|
box-sizing: border-box;
|
@@ -83,25 +102,6 @@
|
|
83
102
|
.pandora-sdk-breadcrumb a {
|
84
103
|
text-decoration: none;
|
85
104
|
}
|
86
|
-
.ant-select-auto-complete {
|
87
|
-
-webkit-box-sizing: border-box;
|
88
|
-
box-sizing: border-box;
|
89
|
-
margin: 0;
|
90
|
-
padding: 0;
|
91
|
-
color: rgba(0, 0, 0, 0.85);
|
92
|
-
font-size: 14px;
|
93
|
-
font-variant: tabular-nums;
|
94
|
-
line-height: 1.5715;
|
95
|
-
list-style: none;
|
96
|
-
-webkit-font-feature-settings: 'tnum';
|
97
|
-
font-feature-settings: 'tnum';
|
98
|
-
}
|
99
|
-
.ant-select-auto-complete .ant-select-clear {
|
100
|
-
right: 13px;
|
101
|
-
}
|
102
|
-
.pandora-sdk-auto-complete .ant-input {
|
103
|
-
border: 0px;
|
104
|
-
}
|
105
105
|
.ant-card {
|
106
106
|
-webkit-box-sizing: border-box;
|
107
107
|
box-sizing: border-box;
|
@@ -3345,14 +3345,6 @@ a.ant-btn-sm {
|
|
3345
3345
|
.ant-checkbox-inner::after {
|
3346
3346
|
left: 20%;
|
3347
3347
|
}
|
3348
|
-
.pandora-sdk-checkbox-item {
|
3349
|
-
white-space: nowrap;
|
3350
|
-
width: 100%;
|
3351
|
-
}
|
3352
|
-
.pandora-sdk-checkbox-item.ant-checkbox-wrapper {
|
3353
|
-
margin-left: 0;
|
3354
|
-
line-height: 25px;
|
3355
|
-
}
|
3356
3348
|
.ant-divider {
|
3357
3349
|
-webkit-box-sizing: border-box;
|
3358
3350
|
box-sizing: border-box;
|
@@ -4284,61 +4276,13 @@ textarea.ant-input {
|
|
4284
4276
|
.pandora-sdk-check-transform .pandora-sdk-check-transform-checkBox .pandora-sdk-check-transform-checkbox-group {
|
4285
4277
|
line-height: 40px;
|
4286
4278
|
}
|
4287
|
-
.pandora-sdk-
|
4288
|
-
|
4289
|
-
|
4290
|
-
cursor: pointer;
|
4291
|
-
color: rgba(0, 0, 0, 0.85);
|
4292
|
-
background-color: #f4f5f7;
|
4293
|
-
border: 1px solid #d9d9d9;
|
4294
|
-
}
|
4295
|
-
.pandora-sdk-collapsible-panel > .panel-header > .icon {
|
4296
|
-
position: absolute;
|
4297
|
-
left: 16px;
|
4298
|
-
top: 50%;
|
4299
|
-
-webkit-transform: translateY(-50%);
|
4300
|
-
transform: translateY(-50%);
|
4301
|
-
}
|
4302
|
-
.pandora-sdk-collapsible-panel > .panel-header > .icon > i {
|
4303
|
-
color: inherit;
|
4304
|
-
}
|
4305
|
-
.pandora-sdk-collapsible-panel > .panel-header > .icon > i > svg {
|
4306
|
-
-webkit-transition: -webkit-transform 0.2s linear;
|
4307
|
-
transition: -webkit-transform 0.2s linear;
|
4308
|
-
transition: transform 0.2s linear;
|
4309
|
-
transition: transform 0.2s linear, -webkit-transform 0.2s linear;
|
4310
|
-
}
|
4311
|
-
.pandora-sdk-collapsible-panel > .panel-header.disabled-header {
|
4312
|
-
cursor: not-allowed;
|
4313
|
-
}
|
4314
|
-
.pandora-sdk-collapsible-panel > .panel-content-box {
|
4315
|
-
overflow-y: hidden;
|
4316
|
-
padding: 0;
|
4317
|
-
margin: 0;
|
4318
|
-
border: none;
|
4319
|
-
}
|
4320
|
-
.pandora-sdk-collapsible-panel > .panel-content-box > div > .panel-content {
|
4321
|
-
padding: 8px 16px;
|
4322
|
-
color: rgba(0, 0, 0, 0.85);
|
4323
|
-
background-color: #fff;
|
4324
|
-
border: 1px solid #d9d9d9;
|
4325
|
-
border-top: none;
|
4326
|
-
overflow-x: auto;
|
4327
|
-
}
|
4328
|
-
.pandora-sdk-collapsible-panel.no-border > .panel-header,
|
4329
|
-
.pandora-sdk-collapsible-panel.no-border > .panel-content-box > div > .panel-content {
|
4330
|
-
border: none;
|
4331
|
-
}
|
4332
|
-
.pandora-sdk-collapsible-panel.icon-right > .panel-header {
|
4333
|
-
padding: 12px 40px 12px 16px;
|
4334
|
-
}
|
4335
|
-
.pandora-sdk-collapsible-panel.icon-right > .panel-header > :local(.icon) {
|
4336
|
-
left: unset;
|
4337
|
-
right: 16px;
|
4279
|
+
.pandora-sdk-checkbox-item {
|
4280
|
+
white-space: nowrap;
|
4281
|
+
width: 100%;
|
4338
4282
|
}
|
4339
|
-
.pandora-sdk-
|
4340
|
-
|
4341
|
-
|
4283
|
+
.pandora-sdk-checkbox-item.ant-checkbox-wrapper {
|
4284
|
+
margin-left: 0;
|
4285
|
+
line-height: 25px;
|
4342
4286
|
}
|
4343
4287
|
.ant-collapse {
|
4344
4288
|
-webkit-box-sizing: border-box;
|
@@ -4544,6 +4488,62 @@ textarea.ant-input {
|
|
4544
4488
|
.pandora-sdk-collapse-dashed > .ant-collapse-item > .ant-collapse-content {
|
4545
4489
|
border: none;
|
4546
4490
|
}
|
4491
|
+
.pandora-sdk-collapsible-panel > .panel-header {
|
4492
|
+
position: relative;
|
4493
|
+
padding: 12px 16px 12px 40px;
|
4494
|
+
cursor: pointer;
|
4495
|
+
color: rgba(0, 0, 0, 0.85);
|
4496
|
+
background-color: #f4f5f7;
|
4497
|
+
border: 1px solid #d9d9d9;
|
4498
|
+
}
|
4499
|
+
.pandora-sdk-collapsible-panel > .panel-header > .icon {
|
4500
|
+
position: absolute;
|
4501
|
+
left: 16px;
|
4502
|
+
top: 50%;
|
4503
|
+
-webkit-transform: translateY(-50%);
|
4504
|
+
transform: translateY(-50%);
|
4505
|
+
}
|
4506
|
+
.pandora-sdk-collapsible-panel > .panel-header > .icon > i {
|
4507
|
+
color: inherit;
|
4508
|
+
}
|
4509
|
+
.pandora-sdk-collapsible-panel > .panel-header > .icon > i > svg {
|
4510
|
+
-webkit-transition: -webkit-transform 0.2s linear;
|
4511
|
+
transition: -webkit-transform 0.2s linear;
|
4512
|
+
transition: transform 0.2s linear;
|
4513
|
+
transition: transform 0.2s linear, -webkit-transform 0.2s linear;
|
4514
|
+
}
|
4515
|
+
.pandora-sdk-collapsible-panel > .panel-header.disabled-header {
|
4516
|
+
cursor: not-allowed;
|
4517
|
+
}
|
4518
|
+
.pandora-sdk-collapsible-panel > .panel-content-box {
|
4519
|
+
overflow-y: hidden;
|
4520
|
+
padding: 0;
|
4521
|
+
margin: 0;
|
4522
|
+
border: none;
|
4523
|
+
}
|
4524
|
+
.pandora-sdk-collapsible-panel > .panel-content-box > div > .panel-content {
|
4525
|
+
padding: 8px 16px;
|
4526
|
+
color: rgba(0, 0, 0, 0.85);
|
4527
|
+
background-color: #fff;
|
4528
|
+
border: 1px solid #d9d9d9;
|
4529
|
+
border-top: none;
|
4530
|
+
overflow-x: auto;
|
4531
|
+
}
|
4532
|
+
.pandora-sdk-collapsible-panel.no-border > .panel-header,
|
4533
|
+
.pandora-sdk-collapsible-panel.no-border > .panel-content-box > div > .panel-content {
|
4534
|
+
border: none;
|
4535
|
+
}
|
4536
|
+
.pandora-sdk-collapsible-panel.icon-right > .panel-header {
|
4537
|
+
padding: 12px 40px 12px 16px;
|
4538
|
+
}
|
4539
|
+
.pandora-sdk-collapsible-panel.icon-right > .panel-header > :local(.icon) {
|
4540
|
+
left: unset;
|
4541
|
+
right: 16px;
|
4542
|
+
}
|
4543
|
+
.pandora-sdk-collapsible-panel.hide-arrow > .panel-header {
|
4544
|
+
padding-left: 16px;
|
4545
|
+
padding-right: 16px;
|
4546
|
+
}
|
4547
4547
|
.ant-drawer {
|
4548
4548
|
position: fixed;
|
4549
4549
|
z-index: 1000;
|
@@ -4795,7 +4795,7 @@ textarea.ant-input {
|
|
4795
4795
|
}
|
4796
4796
|
.pandora-sdk-drawer .ant-drawer-content-wrapper {
|
4797
4797
|
width: 50%;
|
4798
|
-
min-width:
|
4798
|
+
min-width: 300px;
|
4799
4799
|
}
|
4800
4800
|
.pandora-sdk-drawer .ant-drawer-content > div {
|
4801
4801
|
position: relative;
|
@@ -4805,6 +4805,23 @@ textarea.ant-input {
|
|
4805
4805
|
height: 60px;
|
4806
4806
|
line-height: 60px;
|
4807
4807
|
}
|
4808
|
+
.pandora-sdk-drawer-no-mask .ant-drawer-content-wrapper {
|
4809
|
+
width: 100%;
|
4810
|
+
}
|
4811
|
+
.pandora-sdk-scroll-handler {
|
4812
|
+
position: absolute;
|
4813
|
+
width: 5px;
|
4814
|
+
padding: 4px 0 0;
|
4815
|
+
top: 0;
|
4816
|
+
left: 0;
|
4817
|
+
bottom: 0;
|
4818
|
+
z-index: 100;
|
4819
|
+
cursor: ew-resize;
|
4820
|
+
}
|
4821
|
+
.pandora-sdk-drawer-right-close-icon {
|
4822
|
+
margin-left: 8px;
|
4823
|
+
font-size: 16px;
|
4824
|
+
}
|
4808
4825
|
.ant-popover {
|
4809
4826
|
-webkit-box-sizing: border-box;
|
4810
4827
|
box-sizing: border-box;
|
@@ -5141,6 +5158,23 @@ textarea.ant-input {
|
|
5141
5158
|
.ant-input-group-addon {
|
5142
5159
|
color: #666;
|
5143
5160
|
}
|
5161
|
+
.pandora-sdk-key-value-label,
|
5162
|
+
.pandora-sdk-key-value-value {
|
5163
|
+
display: inline-block;
|
5164
|
+
overflow: hidden;
|
5165
|
+
text-overflow: ellipsis;
|
5166
|
+
white-space: nowrap;
|
5167
|
+
line-height: 1.8;
|
5168
|
+
vertical-align: middle;
|
5169
|
+
}
|
5170
|
+
.pandora-sdk-key-value-label {
|
5171
|
+
color: #666;
|
5172
|
+
width: 30%;
|
5173
|
+
}
|
5174
|
+
.pandora-sdk-key-value-value {
|
5175
|
+
color: #333;
|
5176
|
+
width: 70%;
|
5177
|
+
}
|
5144
5178
|
.ant-menu-item-danger.ant-menu-item {
|
5145
5179
|
color: #ff4d4f;
|
5146
5180
|
}
|
@@ -6126,23 +6160,6 @@ textarea.ant-input {
|
|
6126
6160
|
.ant-menu-horizontal > .ant-menu-item .pandora-sdk-menu-item-a {
|
6127
6161
|
color: #333;
|
6128
6162
|
}
|
6129
|
-
.pandora-sdk-key-value-label,
|
6130
|
-
.pandora-sdk-key-value-value {
|
6131
|
-
display: inline-block;
|
6132
|
-
overflow: hidden;
|
6133
|
-
text-overflow: ellipsis;
|
6134
|
-
white-space: nowrap;
|
6135
|
-
line-height: 1.8;
|
6136
|
-
vertical-align: middle;
|
6137
|
-
}
|
6138
|
-
.pandora-sdk-key-value-label {
|
6139
|
-
color: #666;
|
6140
|
-
width: 30%;
|
6141
|
-
}
|
6142
|
-
.pandora-sdk-key-value-value {
|
6143
|
-
color: #333;
|
6144
|
-
width: 70%;
|
6145
|
-
}
|
6146
6163
|
.ant-modal {
|
6147
6164
|
-webkit-box-sizing: border-box;
|
6148
6165
|
box-sizing: border-box;
|
@@ -6424,6 +6441,15 @@ textarea.ant-input {
|
|
6424
6441
|
.pandora-sdk-modal .ant-modal-footer .ant-btn-primary {
|
6425
6442
|
color: #d9d9d9;
|
6426
6443
|
}
|
6444
|
+
.pandora-sdk-name-explain-icon {
|
6445
|
+
color: inherit;
|
6446
|
+
-webkit-transition: color 0.3s;
|
6447
|
+
transition: color 0.3s;
|
6448
|
+
}
|
6449
|
+
.pandora-sdk-name-explain-icon:hover,
|
6450
|
+
.pandora-sdk-name-explain-icon .ant-tooltip-open {
|
6451
|
+
color: #2c6dd2;
|
6452
|
+
}
|
6427
6453
|
.ant-tooltip {
|
6428
6454
|
-webkit-box-sizing: border-box;
|
6429
6455
|
box-sizing: border-box;
|
@@ -6697,420 +6723,17 @@ textarea.ant-input {
|
|
6697
6723
|
max-height: 200px;
|
6698
6724
|
overflow: auto;
|
6699
6725
|
}
|
6700
|
-
.
|
6701
|
-
color: inherit;
|
6702
|
-
-webkit-transition: color 0.3s;
|
6703
|
-
transition: color 0.3s;
|
6704
|
-
}
|
6705
|
-
.pandora-sdk-name-explain-icon:hover,
|
6706
|
-
.pandora-sdk-name-explain-icon .ant-tooltip-open {
|
6707
|
-
color: #2c6dd2;
|
6708
|
-
}
|
6709
|
-
.ant-radio-group {
|
6726
|
+
.ant-input-number {
|
6710
6727
|
-webkit-box-sizing: border-box;
|
6711
6728
|
box-sizing: border-box;
|
6712
|
-
margin: 0;
|
6713
|
-
padding: 0;
|
6714
|
-
color: rgba(0, 0, 0, 0.85);
|
6715
|
-
font-size: 14px;
|
6716
6729
|
font-variant: tabular-nums;
|
6717
|
-
line-height: 1.5715;
|
6718
6730
|
list-style: none;
|
6719
6731
|
-webkit-font-feature-settings: 'tnum';
|
6720
6732
|
font-feature-settings: 'tnum';
|
6721
|
-
|
6722
|
-
|
6723
|
-
|
6724
|
-
|
6725
|
-
z-index: 1;
|
6726
|
-
}
|
6727
|
-
.ant-radio-group > .ant-badge:not(:first-child) > .ant-radio-button-wrapper {
|
6728
|
-
border-left: none;
|
6729
|
-
}
|
6730
|
-
.ant-radio-wrapper {
|
6731
|
-
-webkit-box-sizing: border-box;
|
6732
|
-
box-sizing: border-box;
|
6733
|
-
margin: 0;
|
6734
|
-
padding: 0;
|
6735
|
-
color: rgba(0, 0, 0, 0.85);
|
6736
|
-
font-size: 14px;
|
6737
|
-
font-variant: tabular-nums;
|
6738
|
-
line-height: 1.5715;
|
6739
|
-
list-style: none;
|
6740
|
-
-webkit-font-feature-settings: 'tnum';
|
6741
|
-
font-feature-settings: 'tnum';
|
6742
|
-
position: relative;
|
6743
|
-
display: -webkit-inline-box;
|
6744
|
-
display: -ms-inline-flexbox;
|
6745
|
-
display: inline-flex;
|
6746
|
-
-webkit-box-align: baseline;
|
6747
|
-
-ms-flex-align: baseline;
|
6748
|
-
align-items: baseline;
|
6749
|
-
margin-right: 8px;
|
6750
|
-
cursor: pointer;
|
6751
|
-
}
|
6752
|
-
.ant-radio-wrapper::after {
|
6753
|
-
display: inline-block;
|
6754
|
-
width: 0;
|
6755
|
-
overflow: hidden;
|
6756
|
-
content: '\a0';
|
6757
|
-
}
|
6758
|
-
.ant-radio {
|
6759
|
-
-webkit-box-sizing: border-box;
|
6760
|
-
box-sizing: border-box;
|
6761
|
-
margin: 0;
|
6762
|
-
padding: 0;
|
6763
|
-
color: rgba(0, 0, 0, 0.85);
|
6764
|
-
font-size: 14px;
|
6765
|
-
font-variant: tabular-nums;
|
6766
|
-
line-height: 1.5715;
|
6767
|
-
list-style: none;
|
6768
|
-
-webkit-font-feature-settings: 'tnum';
|
6769
|
-
font-feature-settings: 'tnum';
|
6770
|
-
position: relative;
|
6771
|
-
top: 0.2em;
|
6772
|
-
display: inline-block;
|
6773
|
-
outline: none;
|
6774
|
-
cursor: pointer;
|
6775
|
-
}
|
6776
|
-
.ant-radio-wrapper:hover .ant-radio,
|
6777
|
-
.ant-radio:hover .ant-radio-inner,
|
6778
|
-
.ant-radio-input:focus + .ant-radio-inner {
|
6779
|
-
border-color: #1890ff;
|
6780
|
-
}
|
6781
|
-
.ant-radio-input:focus + .ant-radio-inner {
|
6782
|
-
-webkit-box-shadow: 0 0 0 3px #e6f7ff;
|
6783
|
-
box-shadow: 0 0 0 3px #e6f7ff;
|
6784
|
-
}
|
6785
|
-
.ant-radio-checked::after {
|
6786
|
-
position: absolute;
|
6787
|
-
top: 0;
|
6788
|
-
left: 0;
|
6789
|
-
width: 100%;
|
6790
|
-
height: 100%;
|
6791
|
-
border: 1px solid #1890ff;
|
6792
|
-
border-radius: 50%;
|
6793
|
-
visibility: hidden;
|
6794
|
-
-webkit-animation: antRadioEffect 0.36s ease-in-out;
|
6795
|
-
animation: antRadioEffect 0.36s ease-in-out;
|
6796
|
-
-webkit-animation-fill-mode: both;
|
6797
|
-
animation-fill-mode: both;
|
6798
|
-
content: '';
|
6799
|
-
}
|
6800
|
-
.ant-radio:hover::after,
|
6801
|
-
.ant-radio-wrapper:hover .ant-radio::after {
|
6802
|
-
visibility: visible;
|
6803
|
-
}
|
6804
|
-
.ant-radio-inner {
|
6805
|
-
position: relative;
|
6806
|
-
top: 0;
|
6807
|
-
left: 0;
|
6808
|
-
display: block;
|
6809
|
-
width: 16px;
|
6810
|
-
height: 16px;
|
6811
|
-
background-color: #fff;
|
6812
|
-
border-color: #d9d9d9;
|
6813
|
-
border-style: solid;
|
6814
|
-
border-width: 1px;
|
6815
|
-
border-radius: 50%;
|
6816
|
-
-webkit-transition: all 0.3s;
|
6817
|
-
transition: all 0.3s;
|
6818
|
-
}
|
6819
|
-
.ant-radio-inner::after {
|
6820
|
-
position: absolute;
|
6821
|
-
top: 3px;
|
6822
|
-
left: 3px;
|
6823
|
-
display: block;
|
6824
|
-
width: 8px;
|
6825
|
-
height: 8px;
|
6826
|
-
background-color: #1890ff;
|
6827
|
-
border-top: 0;
|
6828
|
-
border-left: 0;
|
6829
|
-
border-radius: 8px;
|
6830
|
-
-webkit-transform: scale(0);
|
6831
|
-
transform: scale(0);
|
6832
|
-
opacity: 0;
|
6833
|
-
-webkit-transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
|
6834
|
-
transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
|
6835
|
-
content: ' ';
|
6836
|
-
}
|
6837
|
-
.ant-radio-input {
|
6838
|
-
position: absolute;
|
6839
|
-
top: 0;
|
6840
|
-
right: 0;
|
6841
|
-
bottom: 0;
|
6842
|
-
left: 0;
|
6843
|
-
z-index: 1;
|
6844
|
-
cursor: pointer;
|
6845
|
-
opacity: 0;
|
6846
|
-
}
|
6847
|
-
.ant-radio-checked .ant-radio-inner {
|
6848
|
-
border-color: #1890ff;
|
6849
|
-
}
|
6850
|
-
.ant-radio-checked .ant-radio-inner::after {
|
6851
|
-
-webkit-transform: scale(1);
|
6852
|
-
transform: scale(1);
|
6853
|
-
opacity: 1;
|
6854
|
-
-webkit-transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
|
6855
|
-
transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
|
6856
|
-
}
|
6857
|
-
.ant-radio-disabled {
|
6858
|
-
cursor: not-allowed;
|
6859
|
-
}
|
6860
|
-
.ant-radio-disabled .ant-radio-inner {
|
6861
|
-
background-color: #f5f5f5;
|
6862
|
-
border-color: #d9d9d9 !important;
|
6863
|
-
cursor: not-allowed;
|
6864
|
-
}
|
6865
|
-
.ant-radio-disabled .ant-radio-inner::after {
|
6866
|
-
background-color: rgba(0, 0, 0, 0.2);
|
6867
|
-
}
|
6868
|
-
.ant-radio-disabled .ant-radio-input {
|
6869
|
-
cursor: not-allowed;
|
6870
|
-
}
|
6871
|
-
.ant-radio-disabled + span {
|
6872
|
-
color: rgba(0, 0, 0, 0.25);
|
6873
|
-
cursor: not-allowed;
|
6874
|
-
}
|
6875
|
-
span.ant-radio + * {
|
6876
|
-
padding-right: 8px;
|
6877
|
-
padding-left: 8px;
|
6878
|
-
}
|
6879
|
-
.ant-radio-button-wrapper {
|
6880
|
-
position: relative;
|
6881
|
-
display: inline-block;
|
6882
|
-
height: 32px;
|
6883
|
-
margin: 0;
|
6884
|
-
padding: 0 15px;
|
6885
|
-
color: rgba(0, 0, 0, 0.85);
|
6886
|
-
font-size: 14px;
|
6887
|
-
line-height: 30px;
|
6888
|
-
background: #fff;
|
6889
|
-
border: 1px solid #d9d9d9;
|
6890
|
-
border-top-width: 1.02px;
|
6891
|
-
border-left-width: 0;
|
6892
|
-
cursor: pointer;
|
6893
|
-
-webkit-transition: color 0.3s, background 0.3s, border-color 0.3s, -webkit-box-shadow 0.3s;
|
6894
|
-
transition: color 0.3s, background 0.3s, border-color 0.3s, -webkit-box-shadow 0.3s;
|
6895
|
-
transition: color 0.3s, background 0.3s, border-color 0.3s, box-shadow 0.3s;
|
6896
|
-
transition: color 0.3s, background 0.3s, border-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
|
6897
|
-
}
|
6898
|
-
.ant-radio-button-wrapper a {
|
6899
|
-
color: rgba(0, 0, 0, 0.85);
|
6900
|
-
}
|
6901
|
-
.ant-radio-button-wrapper > .ant-radio-button {
|
6902
|
-
position: absolute;
|
6903
|
-
top: 0;
|
6904
|
-
left: 0;
|
6905
|
-
z-index: -1;
|
6906
|
-
width: 100%;
|
6907
|
-
height: 100%;
|
6908
|
-
}
|
6909
|
-
.ant-radio-group-large .ant-radio-button-wrapper {
|
6910
|
-
height: 40px;
|
6911
|
-
font-size: 16px;
|
6912
|
-
line-height: 38px;
|
6913
|
-
}
|
6914
|
-
.ant-radio-group-small .ant-radio-button-wrapper {
|
6915
|
-
height: 24px;
|
6916
|
-
padding: 0 7px;
|
6917
|
-
line-height: 22px;
|
6918
|
-
}
|
6919
|
-
.ant-radio-button-wrapper:not(:first-child)::before {
|
6920
|
-
position: absolute;
|
6921
|
-
top: -1px;
|
6922
|
-
left: -1px;
|
6923
|
-
display: block;
|
6924
|
-
-webkit-box-sizing: content-box;
|
6925
|
-
box-sizing: content-box;
|
6926
|
-
width: 1px;
|
6927
|
-
height: 100%;
|
6928
|
-
padding: 1px 0;
|
6929
|
-
background-color: #d9d9d9;
|
6930
|
-
-webkit-transition: background-color 0.3s;
|
6931
|
-
transition: background-color 0.3s;
|
6932
|
-
content: '';
|
6933
|
-
}
|
6934
|
-
.ant-radio-button-wrapper:first-child {
|
6935
|
-
border-left: 1px solid #d9d9d9;
|
6936
|
-
border-radius: 2px 0 0 2px;
|
6937
|
-
}
|
6938
|
-
.ant-radio-button-wrapper:last-child {
|
6939
|
-
border-radius: 0 2px 2px 0;
|
6940
|
-
}
|
6941
|
-
.ant-radio-button-wrapper:first-child:last-child {
|
6942
|
-
border-radius: 2px;
|
6943
|
-
}
|
6944
|
-
.ant-radio-button-wrapper:hover {
|
6945
|
-
position: relative;
|
6946
|
-
color: #1890ff;
|
6947
|
-
}
|
6948
|
-
.ant-radio-button-wrapper:focus-within {
|
6949
|
-
-webkit-box-shadow: 0 0 0 3px #e6f7ff;
|
6950
|
-
box-shadow: 0 0 0 3px #e6f7ff;
|
6951
|
-
}
|
6952
|
-
.ant-radio-button-wrapper .ant-radio-inner,
|
6953
|
-
.ant-radio-button-wrapper input[type='checkbox'],
|
6954
|
-
.ant-radio-button-wrapper input[type='radio'] {
|
6955
|
-
width: 0;
|
6956
|
-
height: 0;
|
6957
|
-
opacity: 0;
|
6958
|
-
pointer-events: none;
|
6959
|
-
}
|
6960
|
-
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled) {
|
6961
|
-
z-index: 1;
|
6962
|
-
color: #1890ff;
|
6963
|
-
background: #fff;
|
6964
|
-
border-color: #1890ff;
|
6965
|
-
}
|
6966
|
-
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled)::before {
|
6967
|
-
background-color: #1890ff;
|
6968
|
-
}
|
6969
|
-
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):first-child {
|
6970
|
-
border-color: #1890ff;
|
6971
|
-
}
|
6972
|
-
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover {
|
6973
|
-
color: #40a9ff;
|
6974
|
-
border-color: #40a9ff;
|
6975
|
-
}
|
6976
|
-
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover::before {
|
6977
|
-
background-color: #40a9ff;
|
6978
|
-
}
|
6979
|
-
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active {
|
6980
|
-
color: #096dd9;
|
6981
|
-
border-color: #096dd9;
|
6982
|
-
}
|
6983
|
-
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active::before {
|
6984
|
-
background-color: #096dd9;
|
6985
|
-
}
|
6986
|
-
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):focus-within {
|
6987
|
-
-webkit-box-shadow: 0 0 0 3px #e6f7ff;
|
6988
|
-
box-shadow: 0 0 0 3px #e6f7ff;
|
6989
|
-
}
|
6990
|
-
.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled) {
|
6991
|
-
color: #fff;
|
6992
|
-
background: #1890ff;
|
6993
|
-
border-color: #1890ff;
|
6994
|
-
}
|
6995
|
-
.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover {
|
6996
|
-
color: #fff;
|
6997
|
-
background: #40a9ff;
|
6998
|
-
border-color: #40a9ff;
|
6999
|
-
}
|
7000
|
-
.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active {
|
7001
|
-
color: #fff;
|
7002
|
-
background: #096dd9;
|
7003
|
-
border-color: #096dd9;
|
7004
|
-
}
|
7005
|
-
.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):focus-within {
|
7006
|
-
-webkit-box-shadow: 0 0 0 3px #e6f7ff;
|
7007
|
-
box-shadow: 0 0 0 3px #e6f7ff;
|
7008
|
-
}
|
7009
|
-
.ant-radio-button-wrapper-disabled {
|
7010
|
-
color: rgba(0, 0, 0, 0.25);
|
7011
|
-
background-color: #f5f5f5;
|
7012
|
-
border-color: #d9d9d9;
|
7013
|
-
cursor: not-allowed;
|
7014
|
-
}
|
7015
|
-
.ant-radio-button-wrapper-disabled:first-child,
|
7016
|
-
.ant-radio-button-wrapper-disabled:hover {
|
7017
|
-
color: rgba(0, 0, 0, 0.25);
|
7018
|
-
background-color: #f5f5f5;
|
7019
|
-
border-color: #d9d9d9;
|
7020
|
-
}
|
7021
|
-
.ant-radio-button-wrapper-disabled:first-child {
|
7022
|
-
border-left-color: #d9d9d9;
|
7023
|
-
}
|
7024
|
-
.ant-radio-button-wrapper-disabled.ant-radio-button-wrapper-checked {
|
7025
|
-
color: rgba(0, 0, 0, 0.25);
|
7026
|
-
background-color: #e6e6e6;
|
7027
|
-
border-color: #d9d9d9;
|
7028
|
-
-webkit-box-shadow: none;
|
7029
|
-
box-shadow: none;
|
7030
|
-
}
|
7031
|
-
@-webkit-keyframes antRadioEffect {
|
7032
|
-
0% {
|
7033
|
-
-webkit-transform: scale(1);
|
7034
|
-
transform: scale(1);
|
7035
|
-
opacity: 0.5;
|
7036
|
-
}
|
7037
|
-
100% {
|
7038
|
-
-webkit-transform: scale(1.6);
|
7039
|
-
transform: scale(1.6);
|
7040
|
-
opacity: 0;
|
7041
|
-
}
|
7042
|
-
}
|
7043
|
-
@keyframes antRadioEffect {
|
7044
|
-
0% {
|
7045
|
-
-webkit-transform: scale(1);
|
7046
|
-
transform: scale(1);
|
7047
|
-
opacity: 0.5;
|
7048
|
-
}
|
7049
|
-
100% {
|
7050
|
-
-webkit-transform: scale(1.6);
|
7051
|
-
transform: scale(1.6);
|
7052
|
-
opacity: 0;
|
7053
|
-
}
|
7054
|
-
}
|
7055
|
-
.ant-radio-group.ant-radio-group-rtl {
|
7056
|
-
direction: rtl;
|
7057
|
-
}
|
7058
|
-
.ant-radio-wrapper.ant-radio-wrapper-rtl {
|
7059
|
-
margin-right: 0;
|
7060
|
-
margin-left: 8px;
|
7061
|
-
direction: rtl;
|
7062
|
-
}
|
7063
|
-
.ant-radio-button-wrapper.ant-radio-button-wrapper-rtl {
|
7064
|
-
border-right-width: 0;
|
7065
|
-
border-left-width: 1px;
|
7066
|
-
}
|
7067
|
-
.ant-radio-button-wrapper.ant-radio-button-wrapper-rtl.ant-radio-button-wrapper:not(:first-child)::before {
|
7068
|
-
right: -1px;
|
7069
|
-
left: 0;
|
7070
|
-
}
|
7071
|
-
.ant-radio-button-wrapper.ant-radio-button-wrapper-rtl.ant-radio-button-wrapper:first-child {
|
7072
|
-
border-right: 1px solid #d9d9d9;
|
7073
|
-
border-radius: 0 2px 2px 0;
|
7074
|
-
}
|
7075
|
-
.ant-radio-button-wrapper-checked:not([class*=' ant-radio-button-wrapper-disabled']).ant-radio-button-wrapper:first-child {
|
7076
|
-
border-right-color: #40a9ff;
|
7077
|
-
}
|
7078
|
-
.ant-radio-button-wrapper.ant-radio-button-wrapper-rtl.ant-radio-button-wrapper:last-child {
|
7079
|
-
border-radius: 2px 0 0 2px;
|
7080
|
-
}
|
7081
|
-
.ant-radio-button-wrapper.ant-radio-button-wrapper-rtl.ant-radio-button-wrapper-disabled:first-child {
|
7082
|
-
border-right-color: #d9d9d9;
|
7083
|
-
}
|
7084
|
-
.pandora-sdk-solid-radio-group .ant-radio-button-wrapper {
|
7085
|
-
padding: 0 12px;
|
7086
|
-
}
|
7087
|
-
.pandora-sdk-solid-radio-group .ant-radio-button-wrapper:not(.pandora-sdk-solid-radio-group .ant-radio-button-wrapper-checked) {
|
7088
|
-
border-color: #d9d9d9;
|
7089
|
-
}
|
7090
|
-
.pandora-sdk-solid-radio-group .ant-radio:not(.pandora-sdk-solid-radio-group .ant-radio-checked) .ant-radio-inner {
|
7091
|
-
border-color: #d9d9d9;
|
7092
|
-
}
|
7093
|
-
.pandora-sdk-solid-radio-group .ant-radio .ant-radio-inner {
|
7094
|
-
-webkit-box-sizing: border-box;
|
7095
|
-
box-sizing: border-box;
|
7096
|
-
}
|
7097
|
-
.pandora-sdk-solid-radio-group .ant-radio .ant-radio-checked .ant-radio-inner {
|
7098
|
-
border-color: #2c6dd2;
|
7099
|
-
}
|
7100
|
-
.pandora-sdk-solid-radio-group .ant-radio .ant-radio-checked .ant-radio-inner::after {
|
7101
|
-
background-color: #2c6dd2;
|
7102
|
-
}
|
7103
|
-
.ant-input-number {
|
7104
|
-
-webkit-box-sizing: border-box;
|
7105
|
-
box-sizing: border-box;
|
7106
|
-
font-variant: tabular-nums;
|
7107
|
-
list-style: none;
|
7108
|
-
-webkit-font-feature-settings: 'tnum';
|
7109
|
-
font-feature-settings: 'tnum';
|
7110
|
-
position: relative;
|
7111
|
-
width: 100%;
|
7112
|
-
min-width: 0;
|
7113
|
-
padding: 4px 11px;
|
6733
|
+
position: relative;
|
6734
|
+
width: 100%;
|
6735
|
+
min-width: 0;
|
6736
|
+
padding: 4px 11px;
|
7114
6737
|
color: rgba(0, 0, 0, 0.85);
|
7115
6738
|
font-size: 14px;
|
7116
6739
|
line-height: 1.5715;
|
@@ -7327,526 +6950,920 @@ textarea.ant-input-number {
|
|
7327
6950
|
-webkit-box-shadow: none;
|
7328
6951
|
box-shadow: none;
|
7329
6952
|
}
|
7330
|
-
.ant-input-number-group > .ant-input-number:first-child,
|
7331
|
-
.ant-input-number-group-addon:first-child {
|
7332
|
-
border-top-right-radius: 0;
|
7333
|
-
border-bottom-right-radius: 0;
|
6953
|
+
.ant-input-number-group > .ant-input-number:first-child,
|
6954
|
+
.ant-input-number-group-addon:first-child {
|
6955
|
+
border-top-right-radius: 0;
|
6956
|
+
border-bottom-right-radius: 0;
|
6957
|
+
}
|
6958
|
+
.ant-input-number-group > .ant-input-number:first-child .ant-select .ant-select-selector,
|
6959
|
+
.ant-input-number-group-addon:first-child .ant-select .ant-select-selector {
|
6960
|
+
border-top-right-radius: 0;
|
6961
|
+
border-bottom-right-radius: 0;
|
6962
|
+
}
|
6963
|
+
.ant-input-number-group > .ant-input-number-affix-wrapper:not(:first-child) .ant-input-number {
|
6964
|
+
border-top-left-radius: 0;
|
6965
|
+
border-bottom-left-radius: 0;
|
6966
|
+
}
|
6967
|
+
.ant-input-number-group > .ant-input-number-affix-wrapper:not(:last-child) .ant-input-number {
|
6968
|
+
border-top-right-radius: 0;
|
6969
|
+
border-bottom-right-radius: 0;
|
6970
|
+
}
|
6971
|
+
.ant-input-number-group-addon:first-child {
|
6972
|
+
border-right: 0;
|
6973
|
+
}
|
6974
|
+
.ant-input-number-group-addon:last-child {
|
6975
|
+
border-left: 0;
|
6976
|
+
}
|
6977
|
+
.ant-input-number-group > .ant-input-number:last-child,
|
6978
|
+
.ant-input-number-group-addon:last-child {
|
6979
|
+
border-top-left-radius: 0;
|
6980
|
+
border-bottom-left-radius: 0;
|
6981
|
+
}
|
6982
|
+
.ant-input-number-group > .ant-input-number:last-child .ant-select .ant-select-selector,
|
6983
|
+
.ant-input-number-group-addon:last-child .ant-select .ant-select-selector {
|
6984
|
+
border-top-left-radius: 0;
|
6985
|
+
border-bottom-left-radius: 0;
|
6986
|
+
}
|
6987
|
+
.ant-input-number-group-lg .ant-input-number,
|
6988
|
+
.ant-input-number-group-lg > .ant-input-number-group-addon {
|
6989
|
+
padding: 6.5px 11px;
|
6990
|
+
font-size: 16px;
|
6991
|
+
}
|
6992
|
+
.ant-input-number-group-sm .ant-input-number,
|
6993
|
+
.ant-input-number-group-sm > .ant-input-number-group-addon {
|
6994
|
+
padding: 0px 7px;
|
6995
|
+
}
|
6996
|
+
.ant-input-number-group-lg .ant-select-single .ant-select-selector {
|
6997
|
+
height: 40px;
|
6998
|
+
}
|
6999
|
+
.ant-input-number-group-sm .ant-select-single .ant-select-selector {
|
7000
|
+
height: 24px;
|
7001
|
+
}
|
7002
|
+
.ant-input-number-group .ant-input-number-affix-wrapper:not(:last-child) {
|
7003
|
+
border-top-right-radius: 0;
|
7004
|
+
border-bottom-right-radius: 0;
|
7005
|
+
}
|
7006
|
+
.ant-input-search .ant-input-number-group .ant-input-number-affix-wrapper:not(:last-child) {
|
7007
|
+
border-top-left-radius: 2px;
|
7008
|
+
border-bottom-left-radius: 2px;
|
7009
|
+
}
|
7010
|
+
.ant-input-number-group .ant-input-number-affix-wrapper:not(:first-child),
|
7011
|
+
.ant-input-search .ant-input-number-group .ant-input-number-affix-wrapper:not(:first-child) {
|
7012
|
+
border-top-left-radius: 0;
|
7013
|
+
border-bottom-left-radius: 0;
|
7014
|
+
}
|
7015
|
+
.ant-input-number-group.ant-input-number-group-compact {
|
7016
|
+
display: block;
|
7017
|
+
}
|
7018
|
+
.ant-input-number-group.ant-input-number-group-compact::before {
|
7019
|
+
display: table;
|
7020
|
+
content: '';
|
7021
|
+
}
|
7022
|
+
.ant-input-number-group.ant-input-number-group-compact::after {
|
7023
|
+
display: table;
|
7024
|
+
clear: both;
|
7025
|
+
content: '';
|
7026
|
+
}
|
7027
|
+
.ant-input-number-group.ant-input-number-group-compact-addon:not(:first-child):not(:last-child),
|
7028
|
+
.ant-input-number-group.ant-input-number-group-compact-wrap:not(:first-child):not(:last-child),
|
7029
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-input-number:not(:first-child):not(:last-child) {
|
7030
|
+
border-right-width: 1px;
|
7031
|
+
}
|
7032
|
+
.ant-input-number-group.ant-input-number-group-compact-addon:not(:first-child):not(:last-child):hover,
|
7033
|
+
.ant-input-number-group.ant-input-number-group-compact-wrap:not(:first-child):not(:last-child):hover,
|
7034
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-input-number:not(:first-child):not(:last-child):hover {
|
7035
|
+
z-index: 1;
|
7036
|
+
}
|
7037
|
+
.ant-input-number-group.ant-input-number-group-compact-addon:not(:first-child):not(:last-child):focus,
|
7038
|
+
.ant-input-number-group.ant-input-number-group-compact-wrap:not(:first-child):not(:last-child):focus,
|
7039
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-input-number:not(:first-child):not(:last-child):focus {
|
7040
|
+
z-index: 1;
|
7041
|
+
}
|
7042
|
+
.ant-input-number-group.ant-input-number-group-compact > * {
|
7043
|
+
display: inline-block;
|
7044
|
+
float: none;
|
7045
|
+
vertical-align: top;
|
7046
|
+
border-radius: 0;
|
7047
|
+
}
|
7048
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-input-number-affix-wrapper {
|
7049
|
+
display: -webkit-inline-box;
|
7050
|
+
display: -ms-inline-flexbox;
|
7051
|
+
display: inline-flex;
|
7052
|
+
}
|
7053
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-picker-range {
|
7054
|
+
display: -webkit-inline-box;
|
7055
|
+
display: -ms-inline-flexbox;
|
7056
|
+
display: inline-flex;
|
7057
|
+
}
|
7058
|
+
.ant-input-number-group.ant-input-number-group-compact > *:not(:last-child) {
|
7059
|
+
margin-right: -1px;
|
7060
|
+
border-right-width: 1px;
|
7061
|
+
}
|
7062
|
+
.ant-input-number-group.ant-input-number-group-compact .ant-input-number {
|
7063
|
+
float: none;
|
7064
|
+
}
|
7065
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-select > .ant-select-selector,
|
7066
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-select-auto-complete .ant-input,
|
7067
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker .ant-input,
|
7068
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-input-group-wrapper .ant-input {
|
7069
|
+
border-right-width: 1px;
|
7070
|
+
border-radius: 0;
|
7071
|
+
}
|
7072
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-select > .ant-select-selector:hover,
|
7073
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-select-auto-complete .ant-input:hover,
|
7074
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker .ant-input:hover,
|
7075
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-input-group-wrapper .ant-input:hover {
|
7076
|
+
z-index: 1;
|
7077
|
+
}
|
7078
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-select > .ant-select-selector:focus,
|
7079
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-select-auto-complete .ant-input:focus,
|
7080
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker .ant-input:focus,
|
7081
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-input-group-wrapper .ant-input:focus {
|
7082
|
+
z-index: 1;
|
7083
|
+
}
|
7084
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-select-focused {
|
7085
|
+
z-index: 1;
|
7086
|
+
}
|
7087
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-select > .ant-select-arrow {
|
7088
|
+
z-index: 1;
|
7089
|
+
}
|
7090
|
+
.ant-input-number-group.ant-input-number-group-compact > *:first-child,
|
7091
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-select:first-child > .ant-select-selector,
|
7092
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-select-auto-complete:first-child .ant-input,
|
7093
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker:first-child .ant-input {
|
7094
|
+
border-top-left-radius: 2px;
|
7095
|
+
border-bottom-left-radius: 2px;
|
7096
|
+
}
|
7097
|
+
.ant-input-number-group.ant-input-number-group-compact > *:last-child,
|
7098
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-select:last-child > .ant-select-selector,
|
7099
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker:last-child .ant-input,
|
7100
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker-focused:last-child .ant-input {
|
7101
|
+
border-right-width: 1px;
|
7102
|
+
border-top-right-radius: 2px;
|
7103
|
+
border-bottom-right-radius: 2px;
|
7104
|
+
}
|
7105
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-select-auto-complete .ant-input {
|
7106
|
+
vertical-align: top;
|
7107
|
+
}
|
7108
|
+
.ant-input-number-group.ant-input-number-group-compact .ant-input-group-wrapper + .ant-input-group-wrapper {
|
7109
|
+
margin-left: -1px;
|
7110
|
+
}
|
7111
|
+
.ant-input-number-group.ant-input-number-group-compact .ant-input-group-wrapper + .ant-input-group-wrapper .ant-input-affix-wrapper {
|
7112
|
+
border-radius: 0;
|
7113
|
+
}
|
7114
|
+
.ant-input-number-group.ant-input-number-group-compact .ant-input-group-wrapper:not(:last-child).ant-input-search > .ant-input-group > .ant-input-group-addon > .ant-input-search-button {
|
7115
|
+
border-radius: 0;
|
7116
|
+
}
|
7117
|
+
.ant-input-number-group.ant-input-number-group-compact .ant-input-group-wrapper:not(:last-child).ant-input-search > .ant-input-group > .ant-input {
|
7118
|
+
border-radius: 2px 0 0 2px;
|
7119
|
+
}
|
7120
|
+
.ant-input-number-group > .ant-input-number-rtl:first-child,
|
7121
|
+
.ant-input-number-group-rtl .ant-input-number-group-addon:first-child {
|
7122
|
+
border-radius: 0 2px 2px 0;
|
7123
|
+
}
|
7124
|
+
.ant-input-number-group-rtl .ant-input-number-group-addon:first-child {
|
7125
|
+
border-right: 1px solid #d9d9d9;
|
7126
|
+
border-left: 0;
|
7127
|
+
}
|
7128
|
+
.ant-input-number-group-rtl .ant-input-number-group-addon:last-child {
|
7129
|
+
border-right: 0;
|
7130
|
+
border-left: 1px solid #d9d9d9;
|
7131
|
+
}
|
7132
|
+
.ant-input-number-group-rtl.ant-input-number-group > .ant-input-number:last-child,
|
7133
|
+
.ant-input-number-group-rtl.ant-input-number-group-addon:last-child {
|
7134
|
+
border-radius: 2px 0 0 2px;
|
7135
|
+
}
|
7136
|
+
.ant-input-number-group-rtl.ant-input-number-group .ant-input-number-affix-wrapper:not(:first-child) {
|
7137
|
+
border-radius: 2px 0 0 2px;
|
7138
|
+
}
|
7139
|
+
.ant-input-number-group-rtl.ant-input-number-group .ant-input-number-affix-wrapper:not(:last-child) {
|
7140
|
+
border-radius: 0 2px 2px 0;
|
7141
|
+
}
|
7142
|
+
.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > *:not(:last-child) {
|
7143
|
+
margin-right: 0;
|
7144
|
+
margin-left: -1px;
|
7145
|
+
border-left-width: 1px;
|
7146
|
+
}
|
7147
|
+
.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > *:first-child,
|
7148
|
+
.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > .ant-select:first-child > .ant-select-selector,
|
7149
|
+
.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > .ant-select-auto-complete:first-child .ant-input,
|
7150
|
+
.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker:first-child .ant-input {
|
7151
|
+
border-radius: 0 2px 2px 0;
|
7152
|
+
}
|
7153
|
+
.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > *:last-child,
|
7154
|
+
.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > .ant-select:last-child > .ant-select-selector,
|
7155
|
+
.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > .ant-select-auto-complete:last-child .ant-input,
|
7156
|
+
.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker:last-child .ant-input,
|
7157
|
+
.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker-focused:last-child .ant-input {
|
7158
|
+
border-left-width: 1px;
|
7159
|
+
border-radius: 2px 0 0 2px;
|
7160
|
+
}
|
7161
|
+
.ant-input-number-group.ant-input-number-group-compact .ant-input-group-wrapper-rtl + .ant-input-group-wrapper-rtl {
|
7162
|
+
margin-right: -1px;
|
7163
|
+
margin-left: 0;
|
7164
|
+
}
|
7165
|
+
.ant-input-number-group.ant-input-number-group-compact .ant-input-group-wrapper-rtl:not(:last-child).ant-input-search > .ant-input-group > .ant-input {
|
7166
|
+
border-radius: 0 2px 2px 0;
|
7167
|
+
}
|
7168
|
+
.ant-input-number-group-wrapper {
|
7169
|
+
display: inline-block;
|
7170
|
+
text-align: start;
|
7171
|
+
vertical-align: top;
|
7172
|
+
}
|
7173
|
+
.ant-input-number-handler {
|
7174
|
+
position: relative;
|
7175
|
+
display: block;
|
7176
|
+
width: 100%;
|
7177
|
+
height: 50%;
|
7178
|
+
overflow: hidden;
|
7179
|
+
color: rgba(0, 0, 0, 0.45);
|
7180
|
+
font-weight: bold;
|
7181
|
+
line-height: 0;
|
7182
|
+
text-align: center;
|
7183
|
+
border-left: 1px solid #d9d9d9;
|
7184
|
+
-webkit-transition: all 0.1s linear;
|
7185
|
+
transition: all 0.1s linear;
|
7186
|
+
}
|
7187
|
+
.ant-input-number-handler:active {
|
7188
|
+
background: #f4f4f4;
|
7334
7189
|
}
|
7335
|
-
.ant-input-number-
|
7336
|
-
.ant-input-number-
|
7337
|
-
|
7338
|
-
border-bottom-right-radius: 0;
|
7190
|
+
.ant-input-number-handler:hover .ant-input-number-handler-up-inner,
|
7191
|
+
.ant-input-number-handler:hover .ant-input-number-handler-down-inner {
|
7192
|
+
color: #40a9ff;
|
7339
7193
|
}
|
7340
|
-
.ant-input-number-
|
7341
|
-
|
7342
|
-
|
7194
|
+
.ant-input-number-handler-up-inner,
|
7195
|
+
.ant-input-number-handler-down-inner {
|
7196
|
+
display: inline-block;
|
7197
|
+
color: inherit;
|
7198
|
+
font-style: normal;
|
7199
|
+
line-height: 0;
|
7200
|
+
text-align: center;
|
7201
|
+
text-transform: none;
|
7202
|
+
vertical-align: -0.125em;
|
7203
|
+
text-rendering: optimizeLegibility;
|
7204
|
+
-webkit-font-smoothing: antialiased;
|
7205
|
+
-moz-osx-font-smoothing: grayscale;
|
7206
|
+
position: absolute;
|
7207
|
+
right: 4px;
|
7208
|
+
width: 12px;
|
7209
|
+
height: 12px;
|
7210
|
+
color: rgba(0, 0, 0, 0.45);
|
7211
|
+
line-height: 12px;
|
7212
|
+
-webkit-transition: all 0.1s linear;
|
7213
|
+
transition: all 0.1s linear;
|
7214
|
+
-webkit-user-select: none;
|
7215
|
+
-moz-user-select: none;
|
7216
|
+
-ms-user-select: none;
|
7217
|
+
user-select: none;
|
7343
7218
|
}
|
7344
|
-
.ant-input-number-
|
7345
|
-
|
7346
|
-
|
7219
|
+
.ant-input-number-handler-up-inner > *,
|
7220
|
+
.ant-input-number-handler-down-inner > * {
|
7221
|
+
line-height: 1;
|
7347
7222
|
}
|
7348
|
-
.ant-input-number-
|
7349
|
-
|
7223
|
+
.ant-input-number-handler-up-inner svg,
|
7224
|
+
.ant-input-number-handler-down-inner svg {
|
7225
|
+
display: inline-block;
|
7350
7226
|
}
|
7351
|
-
.ant-input-number-
|
7352
|
-
|
7227
|
+
.ant-input-number-handler-up-inner::before,
|
7228
|
+
.ant-input-number-handler-down-inner::before {
|
7229
|
+
display: none;
|
7353
7230
|
}
|
7354
|
-
.ant-input-number-
|
7355
|
-
.ant-input-number-
|
7356
|
-
|
7357
|
-
|
7231
|
+
.ant-input-number-handler-up-inner .ant-input-number-handler-up-inner-icon,
|
7232
|
+
.ant-input-number-handler-up-inner .ant-input-number-handler-down-inner-icon,
|
7233
|
+
.ant-input-number-handler-down-inner .ant-input-number-handler-up-inner-icon,
|
7234
|
+
.ant-input-number-handler-down-inner .ant-input-number-handler-down-inner-icon {
|
7235
|
+
display: block;
|
7358
7236
|
}
|
7359
|
-
.ant-input-number
|
7360
|
-
|
7361
|
-
border-
|
7362
|
-
border-bottom-left-radius: 0;
|
7237
|
+
.ant-input-number:hover {
|
7238
|
+
border-color: #40a9ff;
|
7239
|
+
border-right-width: 1px !important;
|
7363
7240
|
}
|
7364
|
-
.ant-input-number
|
7365
|
-
|
7366
|
-
|
7367
|
-
|
7241
|
+
.ant-input-number:hover + .ant-form-item-children-icon {
|
7242
|
+
opacity: 0;
|
7243
|
+
-webkit-transition: opacity 0.24s linear 0.24s;
|
7244
|
+
transition: opacity 0.24s linear 0.24s;
|
7368
7245
|
}
|
7369
|
-
.ant-input-number-
|
7370
|
-
|
7371
|
-
|
7246
|
+
.ant-input-number-focused {
|
7247
|
+
border-color: #40a9ff;
|
7248
|
+
-webkit-box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
|
7249
|
+
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
|
7250
|
+
border-right-width: 1px !important;
|
7251
|
+
outline: 0;
|
7372
7252
|
}
|
7373
|
-
.ant-input-
|
7374
|
-
|
7253
|
+
.ant-input-rtl .ant-input-number-focused {
|
7254
|
+
border-right-width: 0;
|
7255
|
+
border-left-width: 1px !important;
|
7375
7256
|
}
|
7376
|
-
.ant-input-number-
|
7377
|
-
|
7257
|
+
.ant-input-number-disabled {
|
7258
|
+
color: rgba(0, 0, 0, 0.25);
|
7259
|
+
background-color: #f5f5f5;
|
7260
|
+
border-color: #d9d9d9;
|
7261
|
+
-webkit-box-shadow: none;
|
7262
|
+
box-shadow: none;
|
7263
|
+
cursor: not-allowed;
|
7264
|
+
opacity: 1;
|
7378
7265
|
}
|
7379
|
-
.ant-input-number-
|
7380
|
-
border-
|
7381
|
-
border-
|
7266
|
+
.ant-input-number-disabled:hover {
|
7267
|
+
border-color: #d9d9d9;
|
7268
|
+
border-right-width: 1px !important;
|
7382
7269
|
}
|
7383
|
-
.ant-input-
|
7384
|
-
|
7385
|
-
border-bottom-left-radius: 2px;
|
7270
|
+
.ant-input-number-disabled .ant-input-number-input {
|
7271
|
+
cursor: not-allowed;
|
7386
7272
|
}
|
7387
|
-
.ant-input-number-
|
7388
|
-
|
7389
|
-
border-top-left-radius: 0;
|
7390
|
-
border-bottom-left-radius: 0;
|
7273
|
+
.ant-input-number-disabled .ant-input-number-handler-wrap {
|
7274
|
+
display: none;
|
7391
7275
|
}
|
7392
|
-
.ant-input-number-
|
7393
|
-
display:
|
7276
|
+
.ant-input-number-readonly .ant-input-number-handler-wrap {
|
7277
|
+
display: none;
|
7394
7278
|
}
|
7395
|
-
.ant-input-number-
|
7396
|
-
|
7397
|
-
|
7279
|
+
.ant-input-number-input {
|
7280
|
+
width: 100%;
|
7281
|
+
height: 30px;
|
7282
|
+
padding: 0 11px;
|
7283
|
+
text-align: left;
|
7284
|
+
background-color: transparent;
|
7285
|
+
border: 0;
|
7286
|
+
border-radius: 2px;
|
7287
|
+
outline: 0;
|
7288
|
+
-webkit-transition: all 0.3s linear;
|
7289
|
+
transition: all 0.3s linear;
|
7290
|
+
-webkit-appearance: textfield !important;
|
7291
|
+
-moz-appearance: textfield !important;
|
7292
|
+
appearance: textfield !important;
|
7293
|
+
/* stylelint-disable-next-line selector-no-vendor-prefix */
|
7398
7294
|
}
|
7399
|
-
.ant-input-number-
|
7400
|
-
|
7401
|
-
clear: both;
|
7402
|
-
content: '';
|
7295
|
+
.ant-input-number-input::-moz-placeholder {
|
7296
|
+
opacity: 1;
|
7403
7297
|
}
|
7404
|
-
.ant-input-number-
|
7405
|
-
|
7406
|
-
|
7407
|
-
|
7298
|
+
.ant-input-number-input::-webkit-input-placeholder {
|
7299
|
+
color: #bfbfbf;
|
7300
|
+
-webkit-user-select: none;
|
7301
|
+
user-select: none;
|
7408
7302
|
}
|
7409
|
-
.ant-input-number-
|
7410
|
-
|
7411
|
-
|
7412
|
-
|
7303
|
+
.ant-input-number-input::-ms-input-placeholder {
|
7304
|
+
color: #bfbfbf;
|
7305
|
+
-ms-user-select: none;
|
7306
|
+
user-select: none;
|
7413
7307
|
}
|
7414
|
-
.ant-input-number-
|
7415
|
-
|
7416
|
-
|
7417
|
-
|
7308
|
+
.ant-input-number-input::placeholder {
|
7309
|
+
color: #bfbfbf;
|
7310
|
+
-webkit-user-select: none;
|
7311
|
+
-moz-user-select: none;
|
7312
|
+
-ms-user-select: none;
|
7313
|
+
user-select: none;
|
7418
7314
|
}
|
7419
|
-
.ant-input-number-
|
7420
|
-
|
7421
|
-
float: none;
|
7422
|
-
vertical-align: top;
|
7423
|
-
border-radius: 0;
|
7315
|
+
.ant-input-number-input:placeholder-shown {
|
7316
|
+
text-overflow: ellipsis;
|
7424
7317
|
}
|
7425
|
-
.ant-input-number-
|
7426
|
-
|
7427
|
-
|
7428
|
-
|
7318
|
+
.ant-input-number-input[type='number']::-webkit-inner-spin-button,
|
7319
|
+
.ant-input-number-input[type='number']::-webkit-outer-spin-button {
|
7320
|
+
margin: 0;
|
7321
|
+
/* stylelint-disable-next-line property-no-vendor-prefix */
|
7322
|
+
-webkit-appearance: none;
|
7323
|
+
appearance: none;
|
7429
7324
|
}
|
7430
|
-
.ant-input-number-
|
7431
|
-
|
7432
|
-
|
7433
|
-
display: inline-flex;
|
7325
|
+
.ant-input-number-lg {
|
7326
|
+
padding: 0;
|
7327
|
+
font-size: 16px;
|
7434
7328
|
}
|
7435
|
-
.ant-input-number-
|
7436
|
-
|
7437
|
-
border-right-width: 1px;
|
7329
|
+
.ant-input-number-lg input {
|
7330
|
+
height: 38px;
|
7438
7331
|
}
|
7439
|
-
.ant-input-number-
|
7440
|
-
|
7332
|
+
.ant-input-number-sm {
|
7333
|
+
padding: 0;
|
7441
7334
|
}
|
7442
|
-
.ant-input-number-
|
7443
|
-
|
7444
|
-
|
7445
|
-
.ant-input-number-group.ant-input-number-group-compact > .ant-input-group-wrapper .ant-input {
|
7446
|
-
border-right-width: 1px;
|
7447
|
-
border-radius: 0;
|
7335
|
+
.ant-input-number-sm input {
|
7336
|
+
height: 22px;
|
7337
|
+
padding: 0 7px;
|
7448
7338
|
}
|
7449
|
-
.ant-input-number-
|
7450
|
-
|
7451
|
-
|
7452
|
-
|
7453
|
-
|
7339
|
+
.ant-input-number-handler-wrap {
|
7340
|
+
position: absolute;
|
7341
|
+
top: 0;
|
7342
|
+
right: 0;
|
7343
|
+
width: 22px;
|
7344
|
+
height: 100%;
|
7345
|
+
background: #fff;
|
7346
|
+
border-radius: 0 2px 2px 0;
|
7347
|
+
opacity: 0;
|
7348
|
+
-webkit-transition: opacity 0.24s linear 0.1s;
|
7349
|
+
transition: opacity 0.24s linear 0.1s;
|
7454
7350
|
}
|
7455
|
-
.ant-input-number-
|
7456
|
-
.ant-input-number-
|
7457
|
-
|
7458
|
-
|
7459
|
-
|
7351
|
+
.ant-input-number-handler-wrap .ant-input-number-handler .ant-input-number-handler-up-inner,
|
7352
|
+
.ant-input-number-handler-wrap .ant-input-number-handler .ant-input-number-handler-down-inner {
|
7353
|
+
display: -webkit-box;
|
7354
|
+
display: -ms-flexbox;
|
7355
|
+
display: flex;
|
7356
|
+
-webkit-box-align: center;
|
7357
|
+
-ms-flex-align: center;
|
7358
|
+
align-items: center;
|
7359
|
+
-webkit-box-pack: center;
|
7360
|
+
-ms-flex-pack: center;
|
7361
|
+
justify-content: center;
|
7362
|
+
min-width: auto;
|
7363
|
+
margin-right: 0;
|
7364
|
+
font-size: 7px;
|
7460
7365
|
}
|
7461
|
-
.ant-input-number-
|
7462
|
-
|
7366
|
+
.ant-input-number-borderless .ant-input-number-handler-wrap {
|
7367
|
+
border-left-width: 0;
|
7463
7368
|
}
|
7464
|
-
.ant-input-number-
|
7465
|
-
|
7369
|
+
.ant-input-number-handler-wrap:hover .ant-input-number-handler {
|
7370
|
+
height: 40%;
|
7466
7371
|
}
|
7467
|
-
.ant-input-number
|
7468
|
-
.ant-input-number-
|
7469
|
-
|
7470
|
-
.ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker:first-child .ant-input {
|
7471
|
-
border-top-left-radius: 2px;
|
7472
|
-
border-bottom-left-radius: 2px;
|
7372
|
+
.ant-input-number:hover .ant-input-number-handler-wrap,
|
7373
|
+
.ant-input-number-focused .ant-input-number-handler-wrap {
|
7374
|
+
opacity: 1;
|
7473
7375
|
}
|
7474
|
-
.ant-input-number-
|
7475
|
-
.ant-input-number-group.ant-input-number-group-compact > .ant-select:last-child > .ant-select-selector,
|
7476
|
-
.ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker:last-child .ant-input,
|
7477
|
-
.ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker-focused:last-child .ant-input {
|
7478
|
-
border-right-width: 1px;
|
7376
|
+
.ant-input-number-handler-up {
|
7479
7377
|
border-top-right-radius: 2px;
|
7378
|
+
cursor: pointer;
|
7379
|
+
}
|
7380
|
+
.ant-input-number-handler-up-inner {
|
7381
|
+
top: 50%;
|
7382
|
+
margin-top: -5px;
|
7383
|
+
text-align: center;
|
7384
|
+
}
|
7385
|
+
.ant-input-number-handler-up:hover {
|
7386
|
+
height: 60% !important;
|
7387
|
+
}
|
7388
|
+
.ant-input-number-handler-down {
|
7389
|
+
top: 0;
|
7390
|
+
border-top: 1px solid #d9d9d9;
|
7480
7391
|
border-bottom-right-radius: 2px;
|
7392
|
+
cursor: pointer;
|
7481
7393
|
}
|
7482
|
-
.ant-input-number-
|
7483
|
-
|
7394
|
+
.ant-input-number-handler-down-inner {
|
7395
|
+
top: 50%;
|
7396
|
+
text-align: center;
|
7397
|
+
-webkit-transform: translateY(-50%);
|
7398
|
+
transform: translateY(-50%);
|
7484
7399
|
}
|
7485
|
-
.ant-input-number-
|
7486
|
-
|
7400
|
+
.ant-input-number-handler-down:hover {
|
7401
|
+
height: 60% !important;
|
7487
7402
|
}
|
7488
|
-
.ant-input-number-
|
7489
|
-
border-
|
7403
|
+
.ant-input-number-borderless .ant-input-number-handler-down {
|
7404
|
+
border-top-width: 0;
|
7490
7405
|
}
|
7491
|
-
.ant-input-number-
|
7492
|
-
|
7406
|
+
.ant-input-number-handler-up-disabled,
|
7407
|
+
.ant-input-number-handler-down-disabled {
|
7408
|
+
cursor: not-allowed;
|
7493
7409
|
}
|
7494
|
-
.ant-input-number-
|
7495
|
-
|
7410
|
+
.ant-input-number-handler-up-disabled:hover .ant-input-number-handler-up-inner,
|
7411
|
+
.ant-input-number-handler-down-disabled:hover .ant-input-number-handler-down-inner {
|
7412
|
+
color: rgba(0, 0, 0, 0.25);
|
7496
7413
|
}
|
7497
|
-
.ant-input-number-
|
7498
|
-
|
7499
|
-
|
7414
|
+
.ant-input-number-borderless {
|
7415
|
+
-webkit-box-shadow: none;
|
7416
|
+
box-shadow: none;
|
7500
7417
|
}
|
7501
|
-
.ant-input-number-
|
7502
|
-
|
7503
|
-
border-left: 0;
|
7418
|
+
.ant-input-number-out-of-range input {
|
7419
|
+
color: #ff4d4f;
|
7504
7420
|
}
|
7505
|
-
.ant-input-number-
|
7506
|
-
|
7507
|
-
border-left: 1px solid #d9d9d9;
|
7421
|
+
.ant-input-number-rtl {
|
7422
|
+
direction: rtl;
|
7508
7423
|
}
|
7509
|
-
.ant-input-number-
|
7510
|
-
|
7511
|
-
border-
|
7424
|
+
.ant-input-number-rtl .ant-input-number-handler {
|
7425
|
+
border-right: 1px solid #d9d9d9;
|
7426
|
+
border-left: 0;
|
7512
7427
|
}
|
7513
|
-
.ant-input-number-
|
7514
|
-
|
7428
|
+
.ant-input-number-rtl .ant-input-number-handler-wrap {
|
7429
|
+
right: auto;
|
7430
|
+
left: 0;
|
7515
7431
|
}
|
7516
|
-
.ant-input-number-
|
7517
|
-
border-
|
7432
|
+
.ant-input-number-rtl.ant-input-number-borderless .ant-input-number-handler-wrap {
|
7433
|
+
border-right-width: 0;
|
7518
7434
|
}
|
7519
|
-
.ant-input-number-
|
7520
|
-
|
7521
|
-
margin-left: -1px;
|
7522
|
-
border-left-width: 1px;
|
7435
|
+
.ant-input-number-rtl .ant-input-number-handler-up {
|
7436
|
+
border-top-right-radius: 0;
|
7523
7437
|
}
|
7524
|
-
.ant-input-number-
|
7525
|
-
|
7526
|
-
.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > .ant-select-auto-complete:first-child .ant-input,
|
7527
|
-
.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker:first-child .ant-input {
|
7528
|
-
border-radius: 0 2px 2px 0;
|
7438
|
+
.ant-input-number-rtl .ant-input-number-handler-down {
|
7439
|
+
border-bottom-right-radius: 0;
|
7529
7440
|
}
|
7530
|
-
.ant-input-number-
|
7531
|
-
|
7532
|
-
|
7533
|
-
.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker:last-child .ant-input,
|
7534
|
-
.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker-focused:last-child .ant-input {
|
7535
|
-
border-left-width: 1px;
|
7536
|
-
border-radius: 2px 0 0 2px;
|
7441
|
+
.ant-input-number-rtl .ant-input-number-input {
|
7442
|
+
direction: ltr;
|
7443
|
+
text-align: right;
|
7537
7444
|
}
|
7538
|
-
.
|
7539
|
-
|
7540
|
-
margin-left: 0;
|
7445
|
+
.pandora-sdk-range-input {
|
7446
|
+
position: relative;
|
7541
7447
|
}
|
7542
|
-
.
|
7543
|
-
|
7448
|
+
.pandora-sdk-range-input .pandora-sdk-range-input-symbol {
|
7449
|
+
display: inline-block;
|
7450
|
+
width: 40px;
|
7451
|
+
line-height: 40px;
|
7452
|
+
text-align: center;
|
7544
7453
|
}
|
7545
|
-
.
|
7454
|
+
.pandora-sdk-range-input .pandora-sdk-range-input-input {
|
7455
|
+
width: calc(50% - 20px);
|
7456
|
+
text-align: center;
|
7546
7457
|
display: inline-block;
|
7547
|
-
text-align: start;
|
7548
|
-
vertical-align: top;
|
7549
7458
|
}
|
7550
|
-
.
|
7551
|
-
|
7552
|
-
|
7459
|
+
.pandora-sdk-range-input .pandora-sdk-range-input-error {
|
7460
|
+
color: #ff4d4f;
|
7461
|
+
line-height: 24px;
|
7462
|
+
font-size: 12px;
|
7463
|
+
}
|
7464
|
+
.pandora-sdk-range-input .ant-input-number {
|
7553
7465
|
width: 100%;
|
7554
|
-
height: 50%;
|
7555
|
-
overflow: hidden;
|
7556
|
-
color: rgba(0, 0, 0, 0.45);
|
7557
|
-
font-weight: bold;
|
7558
|
-
line-height: 0;
|
7559
|
-
text-align: center;
|
7560
|
-
border-left: 1px solid #d9d9d9;
|
7561
|
-
-webkit-transition: all 0.1s linear;
|
7562
|
-
transition: all 0.1s linear;
|
7563
7466
|
}
|
7564
|
-
.
|
7565
|
-
|
7467
|
+
.pandora-sdk-range-input input::-webkit-outer-spin-button,
|
7468
|
+
.pandora-sdk-range-input input::-webkit-inner-spin-button {
|
7469
|
+
-webkit-appearance: none;
|
7566
7470
|
}
|
7567
|
-
.
|
7568
|
-
|
7569
|
-
color: #40a9ff;
|
7471
|
+
.pandora-sdk-range-input input[type='number'] {
|
7472
|
+
-moz-appearance: textfield;
|
7570
7473
|
}
|
7571
|
-
.ant-
|
7572
|
-
|
7474
|
+
.ant-radio-group {
|
7475
|
+
-webkit-box-sizing: border-box;
|
7476
|
+
box-sizing: border-box;
|
7477
|
+
margin: 0;
|
7478
|
+
padding: 0;
|
7479
|
+
color: rgba(0, 0, 0, 0.85);
|
7480
|
+
font-size: 14px;
|
7481
|
+
font-variant: tabular-nums;
|
7482
|
+
line-height: 1.5715;
|
7483
|
+
list-style: none;
|
7484
|
+
-webkit-font-feature-settings: 'tnum';
|
7485
|
+
font-feature-settings: 'tnum';
|
7573
7486
|
display: inline-block;
|
7574
|
-
|
7575
|
-
font-style: normal;
|
7576
|
-
line-height: 0;
|
7577
|
-
text-align: center;
|
7578
|
-
text-transform: none;
|
7579
|
-
vertical-align: -0.125em;
|
7580
|
-
text-rendering: optimizeLegibility;
|
7581
|
-
-webkit-font-smoothing: antialiased;
|
7582
|
-
-moz-osx-font-smoothing: grayscale;
|
7583
|
-
position: absolute;
|
7584
|
-
right: 4px;
|
7585
|
-
width: 12px;
|
7586
|
-
height: 12px;
|
7587
|
-
color: rgba(0, 0, 0, 0.45);
|
7588
|
-
line-height: 12px;
|
7589
|
-
-webkit-transition: all 0.1s linear;
|
7590
|
-
transition: all 0.1s linear;
|
7591
|
-
-webkit-user-select: none;
|
7592
|
-
-moz-user-select: none;
|
7593
|
-
-ms-user-select: none;
|
7594
|
-
user-select: none;
|
7487
|
+
font-size: 0;
|
7595
7488
|
}
|
7596
|
-
.ant-
|
7597
|
-
|
7598
|
-
line-height: 1;
|
7489
|
+
.ant-radio-group .ant-badge-count {
|
7490
|
+
z-index: 1;
|
7599
7491
|
}
|
7600
|
-
.ant-
|
7601
|
-
|
7492
|
+
.ant-radio-group > .ant-badge:not(:first-child) > .ant-radio-button-wrapper {
|
7493
|
+
border-left: none;
|
7494
|
+
}
|
7495
|
+
.ant-radio-wrapper {
|
7496
|
+
-webkit-box-sizing: border-box;
|
7497
|
+
box-sizing: border-box;
|
7498
|
+
margin: 0;
|
7499
|
+
padding: 0;
|
7500
|
+
color: rgba(0, 0, 0, 0.85);
|
7501
|
+
font-size: 14px;
|
7502
|
+
font-variant: tabular-nums;
|
7503
|
+
line-height: 1.5715;
|
7504
|
+
list-style: none;
|
7505
|
+
-webkit-font-feature-settings: 'tnum';
|
7506
|
+
font-feature-settings: 'tnum';
|
7507
|
+
position: relative;
|
7508
|
+
display: -webkit-inline-box;
|
7509
|
+
display: -ms-inline-flexbox;
|
7510
|
+
display: inline-flex;
|
7511
|
+
-webkit-box-align: baseline;
|
7512
|
+
-ms-flex-align: baseline;
|
7513
|
+
align-items: baseline;
|
7514
|
+
margin-right: 8px;
|
7515
|
+
cursor: pointer;
|
7516
|
+
}
|
7517
|
+
.ant-radio-wrapper::after {
|
7518
|
+
display: inline-block;
|
7519
|
+
width: 0;
|
7520
|
+
overflow: hidden;
|
7521
|
+
content: '\a0';
|
7522
|
+
}
|
7523
|
+
.ant-radio {
|
7524
|
+
-webkit-box-sizing: border-box;
|
7525
|
+
box-sizing: border-box;
|
7526
|
+
margin: 0;
|
7527
|
+
padding: 0;
|
7528
|
+
color: rgba(0, 0, 0, 0.85);
|
7529
|
+
font-size: 14px;
|
7530
|
+
font-variant: tabular-nums;
|
7531
|
+
line-height: 1.5715;
|
7532
|
+
list-style: none;
|
7533
|
+
-webkit-font-feature-settings: 'tnum';
|
7534
|
+
font-feature-settings: 'tnum';
|
7535
|
+
position: relative;
|
7536
|
+
top: 0.2em;
|
7602
7537
|
display: inline-block;
|
7538
|
+
outline: none;
|
7539
|
+
cursor: pointer;
|
7540
|
+
}
|
7541
|
+
.ant-radio-wrapper:hover .ant-radio,
|
7542
|
+
.ant-radio:hover .ant-radio-inner,
|
7543
|
+
.ant-radio-input:focus + .ant-radio-inner {
|
7544
|
+
border-color: #1890ff;
|
7545
|
+
}
|
7546
|
+
.ant-radio-input:focus + .ant-radio-inner {
|
7547
|
+
-webkit-box-shadow: 0 0 0 3px #e6f7ff;
|
7548
|
+
box-shadow: 0 0 0 3px #e6f7ff;
|
7603
7549
|
}
|
7604
|
-
.ant-
|
7605
|
-
|
7606
|
-
|
7550
|
+
.ant-radio-checked::after {
|
7551
|
+
position: absolute;
|
7552
|
+
top: 0;
|
7553
|
+
left: 0;
|
7554
|
+
width: 100%;
|
7555
|
+
height: 100%;
|
7556
|
+
border: 1px solid #1890ff;
|
7557
|
+
border-radius: 50%;
|
7558
|
+
visibility: hidden;
|
7559
|
+
-webkit-animation: antRadioEffect 0.36s ease-in-out;
|
7560
|
+
animation: antRadioEffect 0.36s ease-in-out;
|
7561
|
+
-webkit-animation-fill-mode: both;
|
7562
|
+
animation-fill-mode: both;
|
7563
|
+
content: '';
|
7607
7564
|
}
|
7608
|
-
.ant-
|
7609
|
-
.ant-
|
7610
|
-
|
7611
|
-
|
7565
|
+
.ant-radio:hover::after,
|
7566
|
+
.ant-radio-wrapper:hover .ant-radio::after {
|
7567
|
+
visibility: visible;
|
7568
|
+
}
|
7569
|
+
.ant-radio-inner {
|
7570
|
+
position: relative;
|
7571
|
+
top: 0;
|
7572
|
+
left: 0;
|
7612
7573
|
display: block;
|
7574
|
+
width: 16px;
|
7575
|
+
height: 16px;
|
7576
|
+
background-color: #fff;
|
7577
|
+
border-color: #d9d9d9;
|
7578
|
+
border-style: solid;
|
7579
|
+
border-width: 1px;
|
7580
|
+
border-radius: 50%;
|
7581
|
+
-webkit-transition: all 0.3s;
|
7582
|
+
transition: all 0.3s;
|
7613
7583
|
}
|
7614
|
-
.ant-
|
7615
|
-
|
7616
|
-
|
7584
|
+
.ant-radio-inner::after {
|
7585
|
+
position: absolute;
|
7586
|
+
top: 3px;
|
7587
|
+
left: 3px;
|
7588
|
+
display: block;
|
7589
|
+
width: 8px;
|
7590
|
+
height: 8px;
|
7591
|
+
background-color: #1890ff;
|
7592
|
+
border-top: 0;
|
7593
|
+
border-left: 0;
|
7594
|
+
border-radius: 8px;
|
7595
|
+
-webkit-transform: scale(0);
|
7596
|
+
transform: scale(0);
|
7597
|
+
opacity: 0;
|
7598
|
+
-webkit-transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
|
7599
|
+
transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
|
7600
|
+
content: ' ';
|
7617
7601
|
}
|
7618
|
-
.ant-input
|
7602
|
+
.ant-radio-input {
|
7603
|
+
position: absolute;
|
7604
|
+
top: 0;
|
7605
|
+
right: 0;
|
7606
|
+
bottom: 0;
|
7607
|
+
left: 0;
|
7608
|
+
z-index: 1;
|
7609
|
+
cursor: pointer;
|
7619
7610
|
opacity: 0;
|
7620
|
-
-webkit-transition: opacity 0.24s linear 0.24s;
|
7621
|
-
transition: opacity 0.24s linear 0.24s;
|
7622
7611
|
}
|
7623
|
-
.ant-
|
7624
|
-
border-color: #
|
7625
|
-
-webkit-box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
|
7626
|
-
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
|
7627
|
-
border-right-width: 1px !important;
|
7628
|
-
outline: 0;
|
7612
|
+
.ant-radio-checked .ant-radio-inner {
|
7613
|
+
border-color: #1890ff;
|
7629
7614
|
}
|
7630
|
-
.ant-
|
7631
|
-
|
7632
|
-
|
7615
|
+
.ant-radio-checked .ant-radio-inner::after {
|
7616
|
+
-webkit-transform: scale(1);
|
7617
|
+
transform: scale(1);
|
7618
|
+
opacity: 1;
|
7619
|
+
-webkit-transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
|
7620
|
+
transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
|
7633
7621
|
}
|
7634
|
-
.ant-
|
7635
|
-
|
7622
|
+
.ant-radio-disabled {
|
7623
|
+
cursor: not-allowed;
|
7624
|
+
}
|
7625
|
+
.ant-radio-disabled .ant-radio-inner {
|
7636
7626
|
background-color: #f5f5f5;
|
7637
|
-
border-color: #d9d9d9;
|
7638
|
-
-webkit-box-shadow: none;
|
7639
|
-
box-shadow: none;
|
7627
|
+
border-color: #d9d9d9 !important;
|
7640
7628
|
cursor: not-allowed;
|
7641
|
-
opacity: 1;
|
7642
7629
|
}
|
7643
|
-
.ant-
|
7644
|
-
|
7645
|
-
border-right-width: 1px !important;
|
7630
|
+
.ant-radio-disabled .ant-radio-inner::after {
|
7631
|
+
background-color: rgba(0, 0, 0, 0.2);
|
7646
7632
|
}
|
7647
|
-
.ant-
|
7633
|
+
.ant-radio-disabled .ant-radio-input {
|
7648
7634
|
cursor: not-allowed;
|
7649
7635
|
}
|
7650
|
-
.ant-
|
7651
|
-
|
7636
|
+
.ant-radio-disabled + span {
|
7637
|
+
color: rgba(0, 0, 0, 0.25);
|
7638
|
+
cursor: not-allowed;
|
7652
7639
|
}
|
7653
|
-
.ant-
|
7654
|
-
|
7640
|
+
span.ant-radio + * {
|
7641
|
+
padding-right: 8px;
|
7642
|
+
padding-left: 8px;
|
7655
7643
|
}
|
7656
|
-
.ant-
|
7657
|
-
|
7658
|
-
|
7659
|
-
|
7660
|
-
|
7661
|
-
|
7662
|
-
|
7663
|
-
|
7664
|
-
|
7665
|
-
|
7666
|
-
|
7667
|
-
-
|
7668
|
-
|
7669
|
-
|
7670
|
-
|
7644
|
+
.ant-radio-button-wrapper {
|
7645
|
+
position: relative;
|
7646
|
+
display: inline-block;
|
7647
|
+
height: 32px;
|
7648
|
+
margin: 0;
|
7649
|
+
padding: 0 15px;
|
7650
|
+
color: rgba(0, 0, 0, 0.85);
|
7651
|
+
font-size: 14px;
|
7652
|
+
line-height: 30px;
|
7653
|
+
background: #fff;
|
7654
|
+
border: 1px solid #d9d9d9;
|
7655
|
+
border-top-width: 1.02px;
|
7656
|
+
border-left-width: 0;
|
7657
|
+
cursor: pointer;
|
7658
|
+
-webkit-transition: color 0.3s, background 0.3s, border-color 0.3s, -webkit-box-shadow 0.3s;
|
7659
|
+
transition: color 0.3s, background 0.3s, border-color 0.3s, -webkit-box-shadow 0.3s;
|
7660
|
+
transition: color 0.3s, background 0.3s, border-color 0.3s, box-shadow 0.3s;
|
7661
|
+
transition: color 0.3s, background 0.3s, border-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
|
7671
7662
|
}
|
7672
|
-
.ant-
|
7673
|
-
|
7663
|
+
.ant-radio-button-wrapper a {
|
7664
|
+
color: rgba(0, 0, 0, 0.85);
|
7674
7665
|
}
|
7675
|
-
.ant-
|
7676
|
-
|
7677
|
-
|
7678
|
-
|
7666
|
+
.ant-radio-button-wrapper > .ant-radio-button {
|
7667
|
+
position: absolute;
|
7668
|
+
top: 0;
|
7669
|
+
left: 0;
|
7670
|
+
z-index: -1;
|
7671
|
+
width: 100%;
|
7672
|
+
height: 100%;
|
7679
7673
|
}
|
7680
|
-
.ant-
|
7681
|
-
|
7682
|
-
-
|
7683
|
-
|
7674
|
+
.ant-radio-group-large .ant-radio-button-wrapper {
|
7675
|
+
height: 40px;
|
7676
|
+
font-size: 16px;
|
7677
|
+
line-height: 38px;
|
7684
7678
|
}
|
7685
|
-
.ant-
|
7686
|
-
|
7687
|
-
|
7688
|
-
|
7689
|
-
-ms-user-select: none;
|
7690
|
-
user-select: none;
|
7679
|
+
.ant-radio-group-small .ant-radio-button-wrapper {
|
7680
|
+
height: 24px;
|
7681
|
+
padding: 0 7px;
|
7682
|
+
line-height: 22px;
|
7691
7683
|
}
|
7692
|
-
.ant-
|
7693
|
-
|
7684
|
+
.ant-radio-button-wrapper:not(:first-child)::before {
|
7685
|
+
position: absolute;
|
7686
|
+
top: -1px;
|
7687
|
+
left: -1px;
|
7688
|
+
display: block;
|
7689
|
+
-webkit-box-sizing: content-box;
|
7690
|
+
box-sizing: content-box;
|
7691
|
+
width: 1px;
|
7692
|
+
height: 100%;
|
7693
|
+
padding: 1px 0;
|
7694
|
+
background-color: #d9d9d9;
|
7695
|
+
-webkit-transition: background-color 0.3s;
|
7696
|
+
transition: background-color 0.3s;
|
7697
|
+
content: '';
|
7694
7698
|
}
|
7695
|
-
.ant-
|
7696
|
-
|
7697
|
-
|
7698
|
-
/* stylelint-disable-next-line property-no-vendor-prefix */
|
7699
|
-
-webkit-appearance: none;
|
7700
|
-
appearance: none;
|
7699
|
+
.ant-radio-button-wrapper:first-child {
|
7700
|
+
border-left: 1px solid #d9d9d9;
|
7701
|
+
border-radius: 2px 0 0 2px;
|
7701
7702
|
}
|
7702
|
-
.ant-
|
7703
|
-
|
7704
|
-
font-size: 16px;
|
7703
|
+
.ant-radio-button-wrapper:last-child {
|
7704
|
+
border-radius: 0 2px 2px 0;
|
7705
7705
|
}
|
7706
|
-
.ant-
|
7707
|
-
|
7706
|
+
.ant-radio-button-wrapper:first-child:last-child {
|
7707
|
+
border-radius: 2px;
|
7708
7708
|
}
|
7709
|
-
.ant-
|
7710
|
-
|
7709
|
+
.ant-radio-button-wrapper:hover {
|
7710
|
+
position: relative;
|
7711
|
+
color: #1890ff;
|
7711
7712
|
}
|
7712
|
-
.ant-
|
7713
|
-
|
7714
|
-
|
7713
|
+
.ant-radio-button-wrapper:focus-within {
|
7714
|
+
-webkit-box-shadow: 0 0 0 3px #e6f7ff;
|
7715
|
+
box-shadow: 0 0 0 3px #e6f7ff;
|
7715
7716
|
}
|
7716
|
-
.ant-
|
7717
|
-
|
7718
|
-
|
7719
|
-
|
7720
|
-
|
7721
|
-
height: 100%;
|
7722
|
-
background: #fff;
|
7723
|
-
border-radius: 0 2px 2px 0;
|
7717
|
+
.ant-radio-button-wrapper .ant-radio-inner,
|
7718
|
+
.ant-radio-button-wrapper input[type='checkbox'],
|
7719
|
+
.ant-radio-button-wrapper input[type='radio'] {
|
7720
|
+
width: 0;
|
7721
|
+
height: 0;
|
7724
7722
|
opacity: 0;
|
7725
|
-
-
|
7726
|
-
transition: opacity 0.24s linear 0.1s;
|
7723
|
+
pointer-events: none;
|
7727
7724
|
}
|
7728
|
-
.ant-
|
7729
|
-
|
7730
|
-
|
7731
|
-
|
7732
|
-
|
7733
|
-
-webkit-box-align: center;
|
7734
|
-
-ms-flex-align: center;
|
7735
|
-
align-items: center;
|
7736
|
-
-webkit-box-pack: center;
|
7737
|
-
-ms-flex-pack: center;
|
7738
|
-
justify-content: center;
|
7739
|
-
min-width: auto;
|
7740
|
-
margin-right: 0;
|
7741
|
-
font-size: 7px;
|
7725
|
+
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled) {
|
7726
|
+
z-index: 1;
|
7727
|
+
color: #1890ff;
|
7728
|
+
background: #fff;
|
7729
|
+
border-color: #1890ff;
|
7742
7730
|
}
|
7743
|
-
.ant-
|
7744
|
-
|
7731
|
+
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled)::before {
|
7732
|
+
background-color: #1890ff;
|
7745
7733
|
}
|
7746
|
-
.ant-
|
7747
|
-
|
7734
|
+
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):first-child {
|
7735
|
+
border-color: #1890ff;
|
7748
7736
|
}
|
7749
|
-
.ant-
|
7750
|
-
|
7751
|
-
|
7737
|
+
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover {
|
7738
|
+
color: #40a9ff;
|
7739
|
+
border-color: #40a9ff;
|
7752
7740
|
}
|
7753
|
-
.ant-
|
7754
|
-
|
7755
|
-
cursor: pointer;
|
7741
|
+
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover::before {
|
7742
|
+
background-color: #40a9ff;
|
7756
7743
|
}
|
7757
|
-
.ant-
|
7758
|
-
|
7759
|
-
|
7760
|
-
text-align: center;
|
7744
|
+
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active {
|
7745
|
+
color: #096dd9;
|
7746
|
+
border-color: #096dd9;
|
7761
7747
|
}
|
7762
|
-
.ant-
|
7763
|
-
|
7748
|
+
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active::before {
|
7749
|
+
background-color: #096dd9;
|
7764
7750
|
}
|
7765
|
-
.ant-
|
7766
|
-
|
7767
|
-
|
7768
|
-
border-bottom-right-radius: 2px;
|
7769
|
-
cursor: pointer;
|
7751
|
+
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):focus-within {
|
7752
|
+
-webkit-box-shadow: 0 0 0 3px #e6f7ff;
|
7753
|
+
box-shadow: 0 0 0 3px #e6f7ff;
|
7770
7754
|
}
|
7771
|
-
.ant-
|
7772
|
-
|
7773
|
-
|
7774
|
-
-
|
7775
|
-
transform: translateY(-50%);
|
7755
|
+
.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled) {
|
7756
|
+
color: #fff;
|
7757
|
+
background: #1890ff;
|
7758
|
+
border-color: #1890ff;
|
7776
7759
|
}
|
7777
|
-
.ant-
|
7778
|
-
|
7760
|
+
.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover {
|
7761
|
+
color: #fff;
|
7762
|
+
background: #40a9ff;
|
7763
|
+
border-color: #40a9ff;
|
7779
7764
|
}
|
7780
|
-
.ant-
|
7781
|
-
|
7765
|
+
.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active {
|
7766
|
+
color: #fff;
|
7767
|
+
background: #096dd9;
|
7768
|
+
border-color: #096dd9;
|
7782
7769
|
}
|
7783
|
-
.ant-
|
7784
|
-
|
7770
|
+
.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):focus-within {
|
7771
|
+
-webkit-box-shadow: 0 0 0 3px #e6f7ff;
|
7772
|
+
box-shadow: 0 0 0 3px #e6f7ff;
|
7773
|
+
}
|
7774
|
+
.ant-radio-button-wrapper-disabled {
|
7775
|
+
color: rgba(0, 0, 0, 0.25);
|
7776
|
+
background-color: #f5f5f5;
|
7777
|
+
border-color: #d9d9d9;
|
7785
7778
|
cursor: not-allowed;
|
7786
7779
|
}
|
7787
|
-
.ant-
|
7788
|
-
.ant-
|
7780
|
+
.ant-radio-button-wrapper-disabled:first-child,
|
7781
|
+
.ant-radio-button-wrapper-disabled:hover {
|
7789
7782
|
color: rgba(0, 0, 0, 0.25);
|
7783
|
+
background-color: #f5f5f5;
|
7784
|
+
border-color: #d9d9d9;
|
7790
7785
|
}
|
7791
|
-
.ant-
|
7786
|
+
.ant-radio-button-wrapper-disabled:first-child {
|
7787
|
+
border-left-color: #d9d9d9;
|
7788
|
+
}
|
7789
|
+
.ant-radio-button-wrapper-disabled.ant-radio-button-wrapper-checked {
|
7790
|
+
color: rgba(0, 0, 0, 0.25);
|
7791
|
+
background-color: #e6e6e6;
|
7792
|
+
border-color: #d9d9d9;
|
7792
7793
|
-webkit-box-shadow: none;
|
7793
7794
|
box-shadow: none;
|
7794
7795
|
}
|
7795
|
-
|
7796
|
-
|
7796
|
+
@-webkit-keyframes antRadioEffect {
|
7797
|
+
0% {
|
7798
|
+
-webkit-transform: scale(1);
|
7799
|
+
transform: scale(1);
|
7800
|
+
opacity: 0.5;
|
7801
|
+
}
|
7802
|
+
100% {
|
7803
|
+
-webkit-transform: scale(1.6);
|
7804
|
+
transform: scale(1.6);
|
7805
|
+
opacity: 0;
|
7806
|
+
}
|
7797
7807
|
}
|
7798
|
-
|
7799
|
-
|
7808
|
+
@keyframes antRadioEffect {
|
7809
|
+
0% {
|
7810
|
+
-webkit-transform: scale(1);
|
7811
|
+
transform: scale(1);
|
7812
|
+
opacity: 0.5;
|
7813
|
+
}
|
7814
|
+
100% {
|
7815
|
+
-webkit-transform: scale(1.6);
|
7816
|
+
transform: scale(1.6);
|
7817
|
+
opacity: 0;
|
7818
|
+
}
|
7800
7819
|
}
|
7801
|
-
.ant-
|
7802
|
-
|
7803
|
-
border-left: 0;
|
7820
|
+
.ant-radio-group.ant-radio-group-rtl {
|
7821
|
+
direction: rtl;
|
7804
7822
|
}
|
7805
|
-
.ant-
|
7806
|
-
right:
|
7807
|
-
left:
|
7823
|
+
.ant-radio-wrapper.ant-radio-wrapper-rtl {
|
7824
|
+
margin-right: 0;
|
7825
|
+
margin-left: 8px;
|
7826
|
+
direction: rtl;
|
7808
7827
|
}
|
7809
|
-
.ant-
|
7828
|
+
.ant-radio-button-wrapper.ant-radio-button-wrapper-rtl {
|
7810
7829
|
border-right-width: 0;
|
7830
|
+
border-left-width: 1px;
|
7811
7831
|
}
|
7812
|
-
.ant-
|
7813
|
-
|
7832
|
+
.ant-radio-button-wrapper.ant-radio-button-wrapper-rtl.ant-radio-button-wrapper:not(:first-child)::before {
|
7833
|
+
right: -1px;
|
7834
|
+
left: 0;
|
7814
7835
|
}
|
7815
|
-
.ant-
|
7816
|
-
border-
|
7836
|
+
.ant-radio-button-wrapper.ant-radio-button-wrapper-rtl.ant-radio-button-wrapper:first-child {
|
7837
|
+
border-right: 1px solid #d9d9d9;
|
7838
|
+
border-radius: 0 2px 2px 0;
|
7817
7839
|
}
|
7818
|
-
.ant-
|
7819
|
-
|
7820
|
-
text-align: right;
|
7840
|
+
.ant-radio-button-wrapper-checked:not([class*=' ant-radio-button-wrapper-disabled']).ant-radio-button-wrapper:first-child {
|
7841
|
+
border-right-color: #40a9ff;
|
7821
7842
|
}
|
7822
|
-
.
|
7823
|
-
|
7843
|
+
.ant-radio-button-wrapper.ant-radio-button-wrapper-rtl.ant-radio-button-wrapper:last-child {
|
7844
|
+
border-radius: 2px 0 0 2px;
|
7824
7845
|
}
|
7825
|
-
.
|
7826
|
-
|
7827
|
-
width: 40px;
|
7828
|
-
line-height: 40px;
|
7829
|
-
text-align: center;
|
7846
|
+
.ant-radio-button-wrapper.ant-radio-button-wrapper-rtl.ant-radio-button-wrapper-disabled:first-child {
|
7847
|
+
border-right-color: #d9d9d9;
|
7830
7848
|
}
|
7831
|
-
.pandora-sdk-
|
7832
|
-
|
7833
|
-
text-align: center;
|
7834
|
-
display: inline-block;
|
7849
|
+
.pandora-sdk-solid-radio-group .ant-radio-button-wrapper {
|
7850
|
+
padding: 0 12px;
|
7835
7851
|
}
|
7836
|
-
.pandora-sdk-
|
7837
|
-
color: #
|
7838
|
-
line-height: 24px;
|
7839
|
-
font-size: 12px;
|
7852
|
+
.pandora-sdk-solid-radio-group .ant-radio-button-wrapper:not(.pandora-sdk-solid-radio-group .ant-radio-button-wrapper-checked) {
|
7853
|
+
border-color: #d9d9d9;
|
7840
7854
|
}
|
7841
|
-
.pandora-sdk-
|
7842
|
-
|
7855
|
+
.pandora-sdk-solid-radio-group .ant-radio:not(.pandora-sdk-solid-radio-group .ant-radio-checked) .ant-radio-inner {
|
7856
|
+
border-color: #d9d9d9;
|
7843
7857
|
}
|
7844
|
-
.pandora-sdk-
|
7845
|
-
|
7846
|
-
|
7858
|
+
.pandora-sdk-solid-radio-group .ant-radio .ant-radio-inner {
|
7859
|
+
-webkit-box-sizing: border-box;
|
7860
|
+
box-sizing: border-box;
|
7847
7861
|
}
|
7848
|
-
.pandora-sdk-
|
7849
|
-
-
|
7862
|
+
.pandora-sdk-solid-radio-group .ant-radio .ant-radio-checked .ant-radio-inner {
|
7863
|
+
border-color: #2c6dd2;
|
7864
|
+
}
|
7865
|
+
.pandora-sdk-solid-radio-group .ant-radio .ant-radio-checked .ant-radio-inner::after {
|
7866
|
+
background-color: #2c6dd2;
|
7850
7867
|
}
|
7851
7868
|
.ant-select-single .ant-select-selector {
|
7852
7869
|
display: -webkit-box;
|
@@ -11438,53 +11455,6 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
11438
11455
|
.ant-empty .ant-empty-description {
|
11439
11456
|
color: #bfbfbf;
|
11440
11457
|
}
|
11441
|
-
.pandora-sdk-tabs .pandora-sdk-tabs-tab {
|
11442
|
-
position: relative;
|
11443
|
-
}
|
11444
|
-
.pandora-sdk-tabs .pandora-sdk-tabs-active .pandora-sdk-tabs-refresh-icon {
|
11445
|
-
opacity: 1;
|
11446
|
-
pointer-events: auto;
|
11447
|
-
}
|
11448
|
-
.pandora-sdk-tabs span.anticon.anticon-reload.pandora-sdk-tabs-refresh-icon {
|
11449
|
-
margin-right: 0;
|
11450
|
-
}
|
11451
|
-
.pandora-sdk-tabs .pandora-sdk-tabs-refresh-icon {
|
11452
|
-
margin-left: 8px;
|
11453
|
-
font-size: 12px;
|
11454
|
-
color: #d9d9d9;
|
11455
|
-
-webkit-transition: color 0.5s, opacity 0.2s;
|
11456
|
-
transition: color 0.5s, opacity 0.2s;
|
11457
|
-
pointer-events: none;
|
11458
|
-
opacity: 0;
|
11459
|
-
position: absolute;
|
11460
|
-
top: 50%;
|
11461
|
-
-webkit-transform: translateY(-50%);
|
11462
|
-
transform: translateY(-50%);
|
11463
|
-
}
|
11464
|
-
.pandora-sdk-tabs .pandora-sdk-tabs-refresh-icon:hover {
|
11465
|
-
color: #2c6dd2;
|
11466
|
-
}
|
11467
|
-
.pandora-sdk-timeline-container {
|
11468
|
-
list-style: none;
|
11469
|
-
margin: 0;
|
11470
|
-
line-height: 1.5;
|
11471
|
-
font-size: 14px;
|
11472
|
-
color: rgba(0, 0, 0, 0.65);
|
11473
|
-
-webkit-box-sizing: border-box;
|
11474
|
-
box-sizing: border-box;
|
11475
|
-
padding: 0;
|
11476
|
-
}
|
11477
|
-
.pandora-sdk-timeline-container .pandora-sdk-icon {
|
11478
|
-
margin: 0 8px;
|
11479
|
-
color: inherit;
|
11480
|
-
vertical-align: middle;
|
11481
|
-
font-size: 14px;
|
11482
|
-
-webkit-transition: 0.3s;
|
11483
|
-
transition: 0.3s;
|
11484
|
-
}
|
11485
|
-
.pandora-sdk-timeline-container .pandora-sdk-icon:hover {
|
11486
|
-
color: #7a869a;
|
11487
|
-
}
|
11488
11458
|
.ant-tag {
|
11489
11459
|
-webkit-box-sizing: border-box;
|
11490
11460
|
box-sizing: border-box;
|
@@ -11749,8 +11719,34 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
11749
11719
|
overflow: auto;
|
11750
11720
|
padding: 8px;
|
11751
11721
|
}
|
11752
|
-
.pandora-sdk-popover > div {
|
11753
|
-
margin: 4px;
|
11722
|
+
.pandora-sdk-popover > div {
|
11723
|
+
margin: 4px;
|
11724
|
+
}
|
11725
|
+
.pandora-sdk-tabs .pandora-sdk-tabs-tab {
|
11726
|
+
position: relative;
|
11727
|
+
}
|
11728
|
+
.pandora-sdk-tabs .pandora-sdk-tabs-active .pandora-sdk-tabs-refresh-icon {
|
11729
|
+
opacity: 1;
|
11730
|
+
pointer-events: auto;
|
11731
|
+
}
|
11732
|
+
.pandora-sdk-tabs span.anticon.anticon-reload.pandora-sdk-tabs-refresh-icon {
|
11733
|
+
margin-right: 0;
|
11734
|
+
}
|
11735
|
+
.pandora-sdk-tabs .pandora-sdk-tabs-refresh-icon {
|
11736
|
+
margin-left: 8px;
|
11737
|
+
font-size: 12px;
|
11738
|
+
color: #d9d9d9;
|
11739
|
+
-webkit-transition: color 0.5s, opacity 0.2s;
|
11740
|
+
transition: color 0.5s, opacity 0.2s;
|
11741
|
+
pointer-events: none;
|
11742
|
+
opacity: 0;
|
11743
|
+
position: absolute;
|
11744
|
+
top: 50%;
|
11745
|
+
-webkit-transform: translateY(-50%);
|
11746
|
+
transform: translateY(-50%);
|
11747
|
+
}
|
11748
|
+
.pandora-sdk-tabs .pandora-sdk-tabs-refresh-icon:hover {
|
11749
|
+
color: #2c6dd2;
|
11754
11750
|
}
|
11755
11751
|
.pandora-sdk-transfer-container {
|
11756
11752
|
display: -webkit-box;
|
@@ -11770,6 +11766,27 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
11770
11766
|
-ms-flex-preferred-size: 200px;
|
11771
11767
|
flex-basis: 200px;
|
11772
11768
|
}
|
11769
|
+
.pandora-sdk-timeline-container {
|
11770
|
+
list-style: none;
|
11771
|
+
margin: 0;
|
11772
|
+
line-height: 1.5;
|
11773
|
+
font-size: 14px;
|
11774
|
+
color: rgba(0, 0, 0, 0.65);
|
11775
|
+
-webkit-box-sizing: border-box;
|
11776
|
+
box-sizing: border-box;
|
11777
|
+
padding: 0;
|
11778
|
+
}
|
11779
|
+
.pandora-sdk-timeline-container .pandora-sdk-icon {
|
11780
|
+
margin: 0 8px;
|
11781
|
+
color: inherit;
|
11782
|
+
vertical-align: middle;
|
11783
|
+
font-size: 14px;
|
11784
|
+
-webkit-transition: 0.3s;
|
11785
|
+
transition: 0.3s;
|
11786
|
+
}
|
11787
|
+
.pandora-sdk-timeline-container .pandora-sdk-icon:hover {
|
11788
|
+
color: #7a869a;
|
11789
|
+
}
|
11773
11790
|
@-webkit-keyframes ant-tree-node-fx-do-not-use {
|
11774
11791
|
0% {
|
11775
11792
|
opacity: 0;
|
@@ -18266,6 +18283,29 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
18266
18283
|
.pandora-sdk-card-search-input i {
|
18267
18284
|
color: #bfbfbf;
|
18268
18285
|
}
|
18286
|
+
.pandora-sdk-datetime-mobile-picker-title .pandora-sdk-datetime-mobile-picker-title-div-containter {
|
18287
|
+
width: 32px;
|
18288
|
+
margin: 0 auto;
|
18289
|
+
margin-top: 10px;
|
18290
|
+
margin-bottom: 5px;
|
18291
|
+
}
|
18292
|
+
.pandora-sdk-datetime-mobile-picker-title .pandora-sdk-datetime-mobile-picker-title-div-containter .pandora-sdk-datetime-mobile-picker-title-div {
|
18293
|
+
border-radius: 2px;
|
18294
|
+
border: 2px solid #939393;
|
18295
|
+
}
|
18296
|
+
.pandora-sdk-datetime-mobile-picker {
|
18297
|
+
border-radius: 12px;
|
18298
|
+
}
|
18299
|
+
.pandora-sdk-datetime-mobile-picker .am-picker-popup-header-left {
|
18300
|
+
visibility: hidden;
|
18301
|
+
}
|
18302
|
+
.pandora-sdk-datetime-mobile-picker .am-picker-popup-content .am-picker-popup-body .am-picker-popup-header {
|
18303
|
+
border-bottom: none;
|
18304
|
+
background-image: none;
|
18305
|
+
background-position: unset;
|
18306
|
+
background-size: unset;
|
18307
|
+
position: initial;
|
18308
|
+
}
|
18269
18309
|
.ant-picker {
|
18270
18310
|
-webkit-box-sizing: border-box;
|
18271
18311
|
box-sizing: border-box;
|
@@ -19549,45 +19589,10 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
19549
19589
|
.pandora-sdk-selector .pandora-sdk-datetime-pick-quarter-content .pandora-sdk-selector {
|
19550
19590
|
margin-left: 18px;
|
19551
19591
|
}
|
19552
|
-
.pandora-sdk-datetime-mobile-picker-title .pandora-sdk-datetime-mobile-picker-title-div-containter {
|
19553
|
-
width: 32px;
|
19554
|
-
margin: 0 auto;
|
19555
|
-
margin-top: 10px;
|
19556
|
-
margin-bottom: 5px;
|
19557
|
-
}
|
19558
|
-
.pandora-sdk-datetime-mobile-picker-title .pandora-sdk-datetime-mobile-picker-title-div-containter .pandora-sdk-datetime-mobile-picker-title-div {
|
19559
|
-
border-radius: 2px;
|
19560
|
-
border: 2px solid #939393;
|
19561
|
-
}
|
19562
|
-
.pandora-sdk-datetime-mobile-picker {
|
19563
|
-
border-radius: 12px;
|
19564
|
-
}
|
19565
|
-
.pandora-sdk-datetime-mobile-picker .am-picker-popup-header-left {
|
19566
|
-
visibility: hidden;
|
19567
|
-
}
|
19568
|
-
.pandora-sdk-datetime-mobile-picker .am-picker-popup-content .am-picker-popup-body .am-picker-popup-header {
|
19569
|
-
border-bottom: none;
|
19570
|
-
background-image: none;
|
19571
|
-
background-position: unset;
|
19572
|
-
background-size: unset;
|
19573
|
-
position: initial;
|
19574
|
-
}
|
19575
19592
|
.pandora-sdk-datetime-pick-input .ant-input-suffix {
|
19576
19593
|
pointer-events: none;
|
19577
19594
|
color: #7a869a;
|
19578
19595
|
}
|
19579
|
-
.pandora-sdk-popover-inline-list {
|
19580
|
-
display: inline-block;
|
19581
|
-
vertical-align: middle;
|
19582
|
-
}
|
19583
|
-
.pandora-sdk-popover-inline-list .pandora-sdk-popover-inline-item {
|
19584
|
-
display: inline-block;
|
19585
|
-
height: 100%;
|
19586
|
-
margin-right: 12px;
|
19587
|
-
}
|
19588
|
-
.pandora-sdk-popover-inline-list .pandora-sdk-popover-inline-item i {
|
19589
|
-
color: #2c6dd2;
|
19590
|
-
}
|
19591
19596
|
.pandora-sdk-item {
|
19592
19597
|
color: #2c6dd2;
|
19593
19598
|
cursor: pointer;
|
@@ -19610,6 +19615,18 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
19610
19615
|
color: inherit;
|
19611
19616
|
cursor: inherit;
|
19612
19617
|
}
|
19618
|
+
.pandora-sdk-popover-inline-list {
|
19619
|
+
display: inline-block;
|
19620
|
+
vertical-align: middle;
|
19621
|
+
}
|
19622
|
+
.pandora-sdk-popover-inline-list .pandora-sdk-popover-inline-item {
|
19623
|
+
display: inline-block;
|
19624
|
+
height: 100%;
|
19625
|
+
margin-right: 12px;
|
19626
|
+
}
|
19627
|
+
.pandora-sdk-popover-inline-list .pandora-sdk-popover-inline-item i {
|
19628
|
+
color: #2c6dd2;
|
19629
|
+
}
|
19613
19630
|
.pandora-sdk-popover-item {
|
19614
19631
|
display: inline-block;
|
19615
19632
|
line-height: 18px;
|
@@ -19678,50 +19695,6 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
19678
19695
|
flex-wrap: wrap;
|
19679
19696
|
width: 400px;
|
19680
19697
|
}
|
19681
|
-
.pandora-sdk-timeline-item {
|
19682
|
-
font-size: 14px;
|
19683
|
-
list-style: none;
|
19684
|
-
margin: 0;
|
19685
|
-
position: relative;
|
19686
|
-
padding: 0 0 20px;
|
19687
|
-
min-height: 50px;
|
19688
|
-
}
|
19689
|
-
.pandora-sdk-timeline-item .pandora-sdk-timeline-item-tail {
|
19690
|
-
position: absolute;
|
19691
|
-
top: 0.75em;
|
19692
|
-
height: 100%;
|
19693
|
-
border-left: 2px solid #d9d9d9;
|
19694
|
-
}
|
19695
|
-
.pandora-sdk-timeline-item .pandora-sdk-timeline-item-head {
|
19696
|
-
position: absolute;
|
19697
|
-
-webkit-transform: translateX(-4px);
|
19698
|
-
transform: translateX(-4px);
|
19699
|
-
}
|
19700
|
-
.pandora-sdk-timeline-item .pandora-sdk-timeline-item-head-dot {
|
19701
|
-
display: inline-block;
|
19702
|
-
-webkit-box-sizing: border-box;
|
19703
|
-
box-sizing: border-box;
|
19704
|
-
width: 10px;
|
19705
|
-
height: 10px;
|
19706
|
-
background-color: #2c6dd2;
|
19707
|
-
border-radius: 100px;
|
19708
|
-
border: 2px solid transparent;
|
19709
|
-
}
|
19710
|
-
.pandora-sdk-timeline-item .pandora-sdk-timeline-item-content {
|
19711
|
-
text-align: left;
|
19712
|
-
color: #333;
|
19713
|
-
text-overflow: ellipsis;
|
19714
|
-
display: -webkit-box;
|
19715
|
-
-webkit-line-clamp: 3;
|
19716
|
-
-webkit-box-orient: vertical;
|
19717
|
-
}
|
19718
|
-
.pandora-sdk-timeline-item .pandora-sdk-timeline-item-time {
|
19719
|
-
margin-right: 18px;
|
19720
|
-
position: absolute;
|
19721
|
-
text-align: right;
|
19722
|
-
font-size: 14px;
|
19723
|
-
color: #333;
|
19724
|
-
}
|
19725
19698
|
.pandora-sdk-switch {
|
19726
19699
|
display: inline-block;
|
19727
19700
|
margin: 4px;
|
@@ -19814,21 +19787,6 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
19814
19787
|
.pandora-sdk-root.pandora-sdk-grey {
|
19815
19788
|
background: #ebecf0;
|
19816
19789
|
}
|
19817
|
-
.pandora-sdk-transfer-list {
|
19818
|
-
overflow: hidden;
|
19819
|
-
}
|
19820
|
-
.pandora-sdk-transfer-list .pandora-sdk-transfer-title {
|
19821
|
-
margin-bottom: 10px;
|
19822
|
-
}
|
19823
|
-
.pandora-sdk-transfer-list .pandora-sdk-transfer-search {
|
19824
|
-
margin-bottom: 10px;
|
19825
|
-
}
|
19826
|
-
.pandora-sdk-transfer-list .pandora-sdk-transfer-mb10 {
|
19827
|
-
margin-bottom: 10px;
|
19828
|
-
}
|
19829
|
-
.pandora-sdk-search-icon {
|
19830
|
-
color: inherit;
|
19831
|
-
}
|
19832
19790
|
.pandora-sdk-transfer-list-body {
|
19833
19791
|
height: 300px;
|
19834
19792
|
overflow-y: scroll;
|
@@ -19845,33 +19803,64 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
19845
19803
|
.pandora-sdk-transfer-list-body .pandora-sdk-transfer-mb10 {
|
19846
19804
|
margin-bottom: 10px;
|
19847
19805
|
}
|
19848
|
-
.pandora-sdk-
|
19849
|
-
|
19850
|
-
display: -ms-flexbox;
|
19851
|
-
display: flex;
|
19852
|
-
-webkit-box-pack: justify;
|
19853
|
-
-ms-flex-pack: justify;
|
19854
|
-
justify-content: space-between;
|
19855
|
-
font-size: 12px;
|
19856
|
-
color: #42526e;
|
19857
|
-
cursor: pointer;
|
19858
|
-
padding-bottom: 16px;
|
19859
|
-
border-bottom: 1px solid #d9d9d9;
|
19806
|
+
.pandora-sdk-transfer-list {
|
19807
|
+
overflow: hidden;
|
19860
19808
|
}
|
19861
|
-
.pandora-sdk-
|
19809
|
+
.pandora-sdk-transfer-list .pandora-sdk-transfer-title {
|
19810
|
+
margin-bottom: 10px;
|
19811
|
+
}
|
19812
|
+
.pandora-sdk-transfer-list .pandora-sdk-transfer-search {
|
19813
|
+
margin-bottom: 10px;
|
19814
|
+
}
|
19815
|
+
.pandora-sdk-transfer-list .pandora-sdk-transfer-mb10 {
|
19816
|
+
margin-bottom: 10px;
|
19817
|
+
}
|
19818
|
+
.pandora-sdk-search-icon {
|
19819
|
+
color: inherit;
|
19820
|
+
}
|
19821
|
+
.pandora-sdk-timeline-item {
|
19862
19822
|
font-size: 14px;
|
19823
|
+
list-style: none;
|
19824
|
+
margin: 0;
|
19825
|
+
position: relative;
|
19826
|
+
padding: 0 0 20px;
|
19827
|
+
min-height: 50px;
|
19863
19828
|
}
|
19864
|
-
.pandora-sdk-
|
19865
|
-
|
19829
|
+
.pandora-sdk-timeline-item .pandora-sdk-timeline-item-tail {
|
19830
|
+
position: absolute;
|
19831
|
+
top: 0.75em;
|
19832
|
+
height: 100%;
|
19833
|
+
border-left: 2px solid #d9d9d9;
|
19866
19834
|
}
|
19867
|
-
.pandora-sdk-
|
19868
|
-
|
19835
|
+
.pandora-sdk-timeline-item .pandora-sdk-timeline-item-head {
|
19836
|
+
position: absolute;
|
19837
|
+
-webkit-transform: translateX(-4px);
|
19838
|
+
transform: translateX(-4px);
|
19869
19839
|
}
|
19870
|
-
.pandora-sdk-
|
19871
|
-
|
19840
|
+
.pandora-sdk-timeline-item .pandora-sdk-timeline-item-head-dot {
|
19841
|
+
display: inline-block;
|
19842
|
+
-webkit-box-sizing: border-box;
|
19843
|
+
box-sizing: border-box;
|
19844
|
+
width: 10px;
|
19845
|
+
height: 10px;
|
19846
|
+
background-color: #2c6dd2;
|
19847
|
+
border-radius: 100px;
|
19848
|
+
border: 2px solid transparent;
|
19872
19849
|
}
|
19873
|
-
.pandora-sdk-
|
19874
|
-
|
19850
|
+
.pandora-sdk-timeline-item .pandora-sdk-timeline-item-content {
|
19851
|
+
text-align: left;
|
19852
|
+
color: #333;
|
19853
|
+
text-overflow: ellipsis;
|
19854
|
+
display: -webkit-box;
|
19855
|
+
-webkit-line-clamp: 3;
|
19856
|
+
-webkit-box-orient: vertical;
|
19857
|
+
}
|
19858
|
+
.pandora-sdk-timeline-item .pandora-sdk-timeline-item-time {
|
19859
|
+
margin-right: 18px;
|
19860
|
+
position: absolute;
|
19861
|
+
text-align: right;
|
19862
|
+
font-size: 14px;
|
19863
|
+
color: #333;
|
19875
19864
|
}
|
19876
19865
|
.pandora-sdk-datetime-mobile-pick-range-preset-head {
|
19877
19866
|
display: -webkit-box;
|
@@ -19909,3 +19898,31 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
19909
19898
|
border-radius: 2px;
|
19910
19899
|
border: 2px solid #939393;
|
19911
19900
|
}
|
19901
|
+
.pandora-sdk-panel-title {
|
19902
|
+
display: -webkit-box;
|
19903
|
+
display: -ms-flexbox;
|
19904
|
+
display: flex;
|
19905
|
+
-webkit-box-pack: justify;
|
19906
|
+
-ms-flex-pack: justify;
|
19907
|
+
justify-content: space-between;
|
19908
|
+
font-size: 12px;
|
19909
|
+
color: #42526e;
|
19910
|
+
cursor: pointer;
|
19911
|
+
padding-bottom: 16px;
|
19912
|
+
border-bottom: 1px solid #d9d9d9;
|
19913
|
+
}
|
19914
|
+
.pandora-sdk-panel-title .icon {
|
19915
|
+
font-size: 14px;
|
19916
|
+
}
|
19917
|
+
.pandora-sdk-panel-content {
|
19918
|
+
padding: 20px 0 0 0;
|
19919
|
+
}
|
19920
|
+
.pandora-sdk-panel-hidden {
|
19921
|
+
display: none;
|
19922
|
+
}
|
19923
|
+
.pandora-sdk-panel {
|
19924
|
+
margin-bottom: 20px;
|
19925
|
+
}
|
19926
|
+
.pandora-sdk-panel-disable {
|
19927
|
+
cursor: default;
|
19928
|
+
}
|