@kdcloudjs/kdesign 1.8.30 → 1.8.32
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/dist/kdesign-complete.less +798 -83
- package/dist/kdesign.css +578 -7
- package/dist/kdesign.css.map +1 -1
- package/dist/kdesign.js +166 -93
- package/dist/kdesign.js.map +1 -1
- package/dist/kdesign.min.css +3 -3
- package/dist/kdesign.min.js +5 -5
- package/dist/kdesign.min.js.map +1 -1
- package/es/anchor/anchor.js +7 -5
- package/es/anchor/style/index.css +14 -0
- package/es/anchor/style/index.less +15 -0
- package/es/button/button.js +4 -2
- package/es/button/group.js +5 -3
- package/es/button/style/index.css +32 -0
- package/es/button/style/index.less +42 -1
- package/es/checkbox/checkbox.js +5 -3
- package/es/checkbox/group.js +4 -2
- package/es/checkbox/style/index.css +38 -1
- package/es/checkbox/style/index.less +56 -15
- package/es/city-picker/city-picker.js +32 -14
- package/es/city-picker/option.js +7 -2
- package/es/city-picker/style/index.css +54 -0
- package/es/city-picker/style/index.less +67 -0
- package/es/collapse/collapse.js +4 -2
- package/es/collapse/style/index.css +24 -0
- package/es/collapse/style/index.less +26 -0
- package/es/color-picker/color-picker.js +6 -4
- package/es/color-picker/style/index.css +129 -4
- package/es/color-picker/style/index.less +174 -29
- package/es/config-provider/compDefaultProps.d.ts +0 -1
- package/es/config-provider/compDefaultProps.js +0 -5
- package/es/dropdown/dropdown.js +5 -2
- package/es/dropdown/menu.js +4 -2
- package/es/dropdown/style/index.css +3 -0
- package/es/dropdown/style/index.less +4 -0
- package/es/image/preview.js +6 -4
- package/es/image/style/index.css +11 -0
- package/es/image/style/index.less +20 -4
- package/es/input/ClearableLabeledInput.d.ts +1 -0
- package/es/input/ClearableLabeledInput.js +6 -4
- package/es/input/TextArea.js +7 -4
- package/es/input/input.js +6 -3
- package/es/input/style/index.css +48 -0
- package/es/input/style/index.less +55 -0
- package/es/link/link.js +4 -2
- package/es/link/style/index.css +11 -0
- package/es/link/style/index.less +14 -0
- package/es/menu/menu.js +4 -2
- package/es/menu/menuItem.js +5 -3
- package/es/menu/style/index.css +10 -0
- package/es/menu/style/index.less +33 -22
- package/es/menu/subMenu.js +6 -4
- package/es/modal/modal.js +4 -2
- package/es/modal/style/index.css +7 -0
- package/es/modal/style/index.less +14 -0
- package/es/qr-code/qr-code.js +4 -2
- package/es/qr-code/style/index.css +3 -0
- package/es/qr-code/style/index.less +7 -3
- package/es/radio/group.js +4 -2
- package/es/radio/radio.js +4 -2
- package/es/radio/style/index.css +38 -0
- package/es/radio/style/index.less +46 -0
- package/es/select/option.js +4 -2
- package/es/select/select.js +8 -6
- package/es/select/style/index.css +61 -0
- package/es/select/style/index.less +87 -0
- package/es/steps/Steps.js +4 -2
- package/es/steps/style/index.css +35 -0
- package/es/steps/style/index.less +59 -5
- package/es/switch/style/index.css +9 -0
- package/es/switch/style/index.less +9 -2
- package/es/switch/switch.js +4 -2
- package/es/tag/style/index.css +7 -0
- package/es/tag/style/index.less +8 -0
- package/es/tag/tag.js +4 -2
- package/es/tree/style/index.css +19 -0
- package/es/tree/style/index.less +27 -0
- package/es/tree/tree.js +4 -2
- package/es/tree/treeNode.js +3 -2
- package/es/upload/style/index.css +24 -1
- package/es/upload/style/index.less +40 -2
- package/es/upload/upload.js +4 -2
- package/lib/anchor/anchor.js +7 -5
- package/lib/anchor/style/index.css +14 -0
- package/lib/anchor/style/index.less +15 -0
- package/lib/button/button.js +4 -2
- package/lib/button/group.js +5 -3
- package/lib/button/style/index.css +32 -0
- package/lib/button/style/index.less +42 -1
- package/lib/checkbox/checkbox.js +5 -3
- package/lib/checkbox/group.js +4 -2
- package/lib/checkbox/style/index.css +38 -1
- package/lib/checkbox/style/index.less +56 -15
- package/lib/city-picker/city-picker.js +32 -14
- package/lib/city-picker/option.js +7 -2
- package/lib/city-picker/style/index.css +54 -0
- package/lib/city-picker/style/index.less +67 -0
- package/lib/collapse/collapse.js +4 -2
- package/lib/collapse/style/index.css +24 -0
- package/lib/collapse/style/index.less +26 -0
- package/lib/color-picker/color-picker.js +6 -4
- package/lib/color-picker/style/index.css +129 -4
- package/lib/color-picker/style/index.less +174 -29
- package/lib/config-provider/compDefaultProps.d.ts +0 -1
- package/lib/config-provider/compDefaultProps.js +0 -5
- package/lib/dropdown/dropdown.js +5 -2
- package/lib/dropdown/menu.js +4 -2
- package/lib/dropdown/style/index.css +3 -0
- package/lib/dropdown/style/index.less +4 -0
- package/lib/image/preview.js +6 -4
- package/lib/image/style/index.css +11 -0
- package/lib/image/style/index.less +20 -4
- package/lib/input/ClearableLabeledInput.d.ts +1 -0
- package/lib/input/ClearableLabeledInput.js +6 -4
- package/lib/input/TextArea.js +7 -4
- package/lib/input/input.js +6 -3
- package/lib/input/style/index.css +48 -0
- package/lib/input/style/index.less +55 -0
- package/lib/link/link.js +4 -2
- package/lib/link/style/index.css +11 -0
- package/lib/link/style/index.less +14 -0
- package/lib/menu/menu.js +4 -2
- package/lib/menu/menuItem.js +5 -3
- package/lib/menu/style/index.css +10 -0
- package/lib/menu/style/index.less +33 -22
- package/lib/menu/subMenu.js +6 -4
- package/lib/modal/modal.js +4 -2
- package/lib/modal/style/index.css +7 -0
- package/lib/modal/style/index.less +14 -0
- package/lib/qr-code/qr-code.js +4 -2
- package/lib/qr-code/style/index.css +3 -0
- package/lib/qr-code/style/index.less +7 -3
- package/lib/radio/group.js +4 -2
- package/lib/radio/radio.js +4 -2
- package/lib/radio/style/index.css +38 -0
- package/lib/radio/style/index.less +46 -0
- package/lib/select/option.js +4 -2
- package/lib/select/select.js +8 -6
- package/lib/select/style/index.css +61 -0
- package/lib/select/style/index.less +87 -0
- package/lib/steps/Steps.js +4 -2
- package/lib/steps/style/index.css +35 -0
- package/lib/steps/style/index.less +59 -5
- package/lib/switch/style/index.css +9 -0
- package/lib/switch/style/index.less +9 -2
- package/lib/switch/switch.js +4 -2
- package/lib/tag/style/index.css +7 -0
- package/lib/tag/style/index.less +8 -0
- package/lib/tag/tag.js +4 -2
- package/lib/tree/style/index.css +19 -0
- package/lib/tree/style/index.less +27 -0
- package/lib/tree/tree.js +4 -2
- package/lib/tree/treeNode.js +3 -2
- package/lib/upload/style/index.css +24 -1
- package/lib/upload/style/index.less +40 -2
- package/lib/upload/upload.js +4 -2
- package/package.json +1 -1
package/dist/kdesign.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @kdcloudjs/kdesign v1.8.
|
|
3
|
+
* @kdcloudjs/kdesign v1.8.32
|
|
4
4
|
*
|
|
5
5
|
* Copyright 2020-present, Kingdee, Inc.
|
|
6
6
|
* All rights reserved.
|
|
@@ -3096,6 +3096,20 @@ template {
|
|
|
3096
3096
|
-webkit-transition: all calc(var(--kd-c-anchor-duration-duration, var(--kd-g-duration, 0.3s)) - 0.1s) cubic-bezier(0.4, 0, 0.6, 1);
|
|
3097
3097
|
transition: all calc(var(--kd-c-anchor-duration-duration, var(--kd-g-duration, 0.3s)) - 0.1s) cubic-bezier(0.4, 0, 0.6, 1);
|
|
3098
3098
|
}
|
|
3099
|
+
.kd-anchor-rtl {
|
|
3100
|
+
direction: rtl;
|
|
3101
|
+
}
|
|
3102
|
+
.kd-anchor-rtl .kd-anchor {
|
|
3103
|
+
padding-right: var(--kd-c-anchor-spacing-horizontal, 7px);
|
|
3104
|
+
padding-left: 0;
|
|
3105
|
+
}
|
|
3106
|
+
.kd-anchor-rtl .kd-anchor-line {
|
|
3107
|
+
right: var(--kd-c-anchor-spacing-horizontal, 7px);
|
|
3108
|
+
left: auto;
|
|
3109
|
+
}
|
|
3110
|
+
.kd-anchor-rtl .kd-anchor-link {
|
|
3111
|
+
text-align: right;
|
|
3112
|
+
}
|
|
3099
3113
|
|
|
3100
3114
|
/* ----------- color ——————---- start */
|
|
3101
3115
|
/* ----------- color ——————---- end */
|
|
@@ -4466,6 +4480,38 @@ template {
|
|
|
4466
4480
|
-webkit-transition: all calc(0.3s - 0.1s) cubic-bezier(0.4, 0, 0.6, 1);
|
|
4467
4481
|
transition: all calc(0.3s - 0.1s) cubic-bezier(0.4, 0, 0.6, 1);
|
|
4468
4482
|
}
|
|
4483
|
+
.kd-btn-rtl {
|
|
4484
|
+
direction: rtl;
|
|
4485
|
+
}
|
|
4486
|
+
.kd-btn-rtl .kd-btn-iconWrapper-left {
|
|
4487
|
+
float: right;
|
|
4488
|
+
margin-left: 4px;
|
|
4489
|
+
}
|
|
4490
|
+
.kd-btn-rtl .kd-btn-iconWrapper-right {
|
|
4491
|
+
float: left;
|
|
4492
|
+
margin-right: 4px;
|
|
4493
|
+
}
|
|
4494
|
+
.kd-btn-rtl .kd-btn-group-basic-icon {
|
|
4495
|
+
margin-right: 5px;
|
|
4496
|
+
margin-left: 0;
|
|
4497
|
+
}
|
|
4498
|
+
.kd-btn-rtl .btn-space {
|
|
4499
|
+
margin-left: 0;
|
|
4500
|
+
}
|
|
4501
|
+
.kd-btn-rtl-similar .kd-btn-group-trigger .kd-btn {
|
|
4502
|
+
border-top-left-radius: var(--kd-c-button-radius-border, var(--kd-g-radius-border, 2px));
|
|
4503
|
+
border-bottom-left-radius: var(--kd-c-button-radius-border, var(--kd-g-radius-border, 2px));
|
|
4504
|
+
border-top-right-radius: 0;
|
|
4505
|
+
border-bottom-right-radius: 0;
|
|
4506
|
+
margin-right: -1px;
|
|
4507
|
+
}
|
|
4508
|
+
.kd-btn-rtl-similar > .kd-btn:first-child {
|
|
4509
|
+
border-top-right-radius: var(--kd-c-button-radius-border, var(--kd-g-radius-border, 2px));
|
|
4510
|
+
border-bottom-right-radius: var(--kd-c-button-radius-border, var(--kd-g-radius-border, 2px));
|
|
4511
|
+
}
|
|
4512
|
+
.kd-btn-group-rtl {
|
|
4513
|
+
direction: rtl;
|
|
4514
|
+
}
|
|
4469
4515
|
|
|
4470
4516
|
/* ----------- color ——————---- start */
|
|
4471
4517
|
/* ----------- color ——————---- end */
|
|
@@ -5881,7 +5927,7 @@ template {
|
|
|
5881
5927
|
-webkit-transform: translate(-50%, -50%) scale(1);
|
|
5882
5928
|
transform: translate(-50%, -50%) scale(1);
|
|
5883
5929
|
opacity: 1;
|
|
5884
|
-
content:
|
|
5930
|
+
content: ' ';
|
|
5885
5931
|
}
|
|
5886
5932
|
.kd-checkbox-default.checked .kd-checkbox-children {
|
|
5887
5933
|
color: var(--kd-c-checkbox-color-text-primary, #212121);
|
|
@@ -5889,6 +5935,43 @@ template {
|
|
|
5889
5935
|
.kd-checkbox-default-indeterminate .kd-checkbox-children {
|
|
5890
5936
|
color: var(--kd-c-checkbox-color-text-primary, #212121);
|
|
5891
5937
|
}
|
|
5938
|
+
.kd-checkbox-rtl {
|
|
5939
|
+
direction: rtl;
|
|
5940
|
+
}
|
|
5941
|
+
.kd-checkbox-rtl.kd-checkbox-default .kd-checkbox-default-margin {
|
|
5942
|
+
margin-right: 0;
|
|
5943
|
+
margin-left: var(--kd-c-checkbox-default-input-spacing-margin-right, 4px);
|
|
5944
|
+
}
|
|
5945
|
+
.kd-checkbox-group-rtl {
|
|
5946
|
+
direction: rtl;
|
|
5947
|
+
}
|
|
5948
|
+
.kd-checkbox-group-rtl.kd-checkbox-group {
|
|
5949
|
+
text-align: right;
|
|
5950
|
+
}
|
|
5951
|
+
.kd-checkbox-group-rtl.kd-checkbox-group > .kd-checkbox-rtl:not(:last-child) {
|
|
5952
|
+
margin-left: var(--kd-c-checkbox-group-spacing-margin-right, 12px);
|
|
5953
|
+
margin-right: 0;
|
|
5954
|
+
}
|
|
5955
|
+
.kd-checkbox-group-rtl.kd-checkbox-group .kd-checkbox {
|
|
5956
|
+
margin-left: var(--kd-c-checkbox-group-spacing-margin-right, 12px);
|
|
5957
|
+
margin-right: 0;
|
|
5958
|
+
}
|
|
5959
|
+
.kd-checkbox-group-rtl .kd-checkbox-square-triangle,
|
|
5960
|
+
.kd-checkbox-group-rtl .kd-checkbox-square-triangle-checked {
|
|
5961
|
+
position: absolute;
|
|
5962
|
+
content: '';
|
|
5963
|
+
height: 0;
|
|
5964
|
+
width: 0;
|
|
5965
|
+
right: auto;
|
|
5966
|
+
left: 0;
|
|
5967
|
+
bottom: 0;
|
|
5968
|
+
border-style: solid;
|
|
5969
|
+
border-width: 0 var(--kd-c-checkbox-square-triangle-sizing-width, 18px) var(--kd-c-checkbox-square-triangle-sizing-height, 18px) 0;
|
|
5970
|
+
border-top-color: transparent;
|
|
5971
|
+
border-right-color: transparent;
|
|
5972
|
+
border-left-color: transparent;
|
|
5973
|
+
border-bottom-color: var(--kd-c-checkbox-color-border-active, var(--kd-g-color-theme, #5582f3));
|
|
5974
|
+
}
|
|
5892
5975
|
|
|
5893
5976
|
/* ----------- color ——————---- start */
|
|
5894
5977
|
/* ----------- color ——————---- end */
|
|
@@ -6385,6 +6468,60 @@ template {
|
|
|
6385
6468
|
white-space: nowrap;
|
|
6386
6469
|
text-overflow: ellipsis;
|
|
6387
6470
|
}
|
|
6471
|
+
.kd-city-picker-rtl {
|
|
6472
|
+
direction: rtl;
|
|
6473
|
+
}
|
|
6474
|
+
.kd-city-picker-rtl.kd-city-picker .kd-city-picker-description {
|
|
6475
|
+
text-align: right;
|
|
6476
|
+
}
|
|
6477
|
+
.kd-city-picker-rtl.kd-city-picker .kd-city-picker-selector .kd-city-picker-wrapper {
|
|
6478
|
+
padding-right: 0;
|
|
6479
|
+
padding-left: 24px;
|
|
6480
|
+
}
|
|
6481
|
+
.kd-city-picker-rtl.kd-city-picker .kd-city-picker-placeholder {
|
|
6482
|
+
position: absolute;
|
|
6483
|
+
left: 24px;
|
|
6484
|
+
right: 0;
|
|
6485
|
+
top: 0;
|
|
6486
|
+
bottom: 0;
|
|
6487
|
+
}
|
|
6488
|
+
.kd-city-picker-rtl.kd-city-picker .kd-city-picker-bordered {
|
|
6489
|
+
padding-right: var(--kd-c-city-picker-bordered-spacing-padding-left, 8px) !important;
|
|
6490
|
+
padding-left: auto !important;
|
|
6491
|
+
}
|
|
6492
|
+
.kd-city-picker-rtl.kd-city-picker .kd-city-picker-bordered .kd-city-picker-suffix {
|
|
6493
|
+
padding-right: 8px;
|
|
6494
|
+
padding-left: auto;
|
|
6495
|
+
}
|
|
6496
|
+
.kd-city-picker-rtl.kd-city-picker .kd-city-picker-bordered .kd-city-picker-placeholder {
|
|
6497
|
+
padding-right: var(--kd-c-city-picker-bordered-spacing-padding-left, 8px);
|
|
6498
|
+
}
|
|
6499
|
+
.kd-city-picker-rtl.kd-city-picker .kd-city-picker-suffix {
|
|
6500
|
+
left: 0;
|
|
6501
|
+
right: auto;
|
|
6502
|
+
top: 0;
|
|
6503
|
+
bottom: 0;
|
|
6504
|
+
position: absolute;
|
|
6505
|
+
display: -webkit-box;
|
|
6506
|
+
display: -ms-flexbox;
|
|
6507
|
+
display: flex;
|
|
6508
|
+
margin-right: 8px;
|
|
6509
|
+
}
|
|
6510
|
+
.kd-city-picker-rtl.kd-city-picker .kd-city-picker-disabled.kd-city-picker-bordered {
|
|
6511
|
+
padding-right: auto;
|
|
6512
|
+
padding-left: var(--kd-c-city-picker-bordered-spacing-padding-left, 8px);
|
|
6513
|
+
}
|
|
6514
|
+
.kd-city-picker-rtl.kd-city-picker .kd-city-picker-content-item {
|
|
6515
|
+
position: absolute;
|
|
6516
|
+
right: 0;
|
|
6517
|
+
left: auto;
|
|
6518
|
+
}
|
|
6519
|
+
.kd-city-picker-rtl.kd-city-picker .kd-city-picker-content-info {
|
|
6520
|
+
text-align: left;
|
|
6521
|
+
overflow: hidden;
|
|
6522
|
+
white-space: nowrap;
|
|
6523
|
+
text-overflow: ellipsis;
|
|
6524
|
+
}
|
|
6388
6525
|
|
|
6389
6526
|
/* ----------- color ——————---- start */
|
|
6390
6527
|
/* ----------- color ——————---- end */
|
|
@@ -6841,6 +6978,30 @@ template {
|
|
|
6841
6978
|
cursor: not-allowed !important;
|
|
6842
6979
|
color: var(--kd-c-collapse-color-disabled, raba(178, 178, 178, 1));
|
|
6843
6980
|
}
|
|
6981
|
+
.kd-collapse-rtl {
|
|
6982
|
+
direction: rtl;
|
|
6983
|
+
}
|
|
6984
|
+
.kd-collapse-rtl .kd-collapse-panel-top {
|
|
6985
|
+
padding: 8px 28px 8px 50px;
|
|
6986
|
+
}
|
|
6987
|
+
.kd-collapse-rtl .kd-collapse-panel-icon {
|
|
6988
|
+
margin-left: var(--kd-c-collapse-spacing-margin-right, 6px);
|
|
6989
|
+
margin-right: 0;
|
|
6990
|
+
}
|
|
6991
|
+
.kd-collapse-rtl .kd-collapse-panel-animation-expand {
|
|
6992
|
+
-webkit-transform: rotate(180deg);
|
|
6993
|
+
transform: rotate(180deg);
|
|
6994
|
+
}
|
|
6995
|
+
.kd-collapse-rtl .kd-collapse-panel-children > div {
|
|
6996
|
+
text-align: right;
|
|
6997
|
+
}
|
|
6998
|
+
.kd-collapse-rtl .kd-collapse-panel-children-hide > div {
|
|
6999
|
+
text-align: right;
|
|
7000
|
+
}
|
|
7001
|
+
.kd-collapse-rtl .kd-collapse-panel-middle {
|
|
7002
|
+
margin-right: 22px;
|
|
7003
|
+
margin-left: 0;
|
|
7004
|
+
}
|
|
6844
7005
|
|
|
6845
7006
|
/* ----------- color ——————---- start */
|
|
6846
7007
|
/* ----------- color ——————---- end */
|
|
@@ -7046,7 +7207,7 @@ template {
|
|
|
7046
7207
|
box-sizing: border-box;
|
|
7047
7208
|
width: var(--kd-c-color-picker-panel-sizing-width, 304px);
|
|
7048
7209
|
padding: 4px 12px 16px;
|
|
7049
|
-
background: #
|
|
7210
|
+
background: #ffffff;
|
|
7050
7211
|
-webkit-box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.15);
|
|
7051
7212
|
box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.15);
|
|
7052
7213
|
border-radius: 2px;
|
|
@@ -7250,7 +7411,7 @@ template {
|
|
|
7250
7411
|
position: absolute;
|
|
7251
7412
|
width: 64px !important;
|
|
7252
7413
|
min-width: unset !important;
|
|
7253
|
-
background: #
|
|
7414
|
+
background: #ffffff;
|
|
7254
7415
|
right: 0;
|
|
7255
7416
|
left: unset !important;
|
|
7256
7417
|
-webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2);
|
|
@@ -7354,7 +7515,7 @@ template {
|
|
|
7354
7515
|
.kd-color-picker-pop .kd-color-picker-panel-historical-color-box-container-ie11 li:nth-child(12n) {
|
|
7355
7516
|
margin-right: 0;
|
|
7356
7517
|
}
|
|
7357
|
-
.kd-color-picker-pop .kd-color-picker-panel-historical-color-box-container-ie11 li:nth-child(-n+12) {
|
|
7518
|
+
.kd-color-picker-pop .kd-color-picker-panel-historical-color-box-container-ie11 li:nth-child(-n + 12) {
|
|
7358
7519
|
margin-top: 0;
|
|
7359
7520
|
}
|
|
7360
7521
|
.kd-color-picker-pop .kd-color-picker-panel-historical-color-box-container li {
|
|
@@ -7415,7 +7576,7 @@ template {
|
|
|
7415
7576
|
.kd-color-picker-pop .kd-color-picker-panel-color-box-container-ie11 li:nth-child(12n) {
|
|
7416
7577
|
margin-right: 0;
|
|
7417
7578
|
}
|
|
7418
|
-
.kd-color-picker-pop .kd-color-picker-panel-color-box-container-ie11 li:nth-child(-n+12) {
|
|
7579
|
+
.kd-color-picker-pop .kd-color-picker-panel-color-box-container-ie11 li:nth-child(-n + 12) {
|
|
7419
7580
|
margin-top: 0;
|
|
7420
7581
|
}
|
|
7421
7582
|
.kd-color-picker-pop .kd-color-picker-panel-color-box-container li {
|
|
@@ -7449,6 +7610,131 @@ template {
|
|
|
7449
7610
|
.kd-color-picker-pop .kd-color-picker-panel-color-box-container li:hover .square {
|
|
7450
7611
|
display: block;
|
|
7451
7612
|
}
|
|
7613
|
+
.kd-color-picker-rtl {
|
|
7614
|
+
direction: rtl;
|
|
7615
|
+
}
|
|
7616
|
+
.kd-color-picker-rtl .kd-color-picker-input .kd-input-prefix {
|
|
7617
|
+
margin-right: auto;
|
|
7618
|
+
margin-left: 3px;
|
|
7619
|
+
}
|
|
7620
|
+
.kd-color-picker-rtl.kd-color-picker-pop .kd-color-picker-panel {
|
|
7621
|
+
-webkit-transform-origin: top left;
|
|
7622
|
+
transform-origin: top left;
|
|
7623
|
+
}
|
|
7624
|
+
.kd-color-picker-rtl.kd-color-picker-pop .kd-color-picker-panel-clear-box {
|
|
7625
|
+
margin-left: 4px;
|
|
7626
|
+
}
|
|
7627
|
+
.kd-color-picker-rtl.kd-color-picker-pop .kd-color-picker-panel-switch span {
|
|
7628
|
+
vertical-align: middle;
|
|
7629
|
+
margin-right: 9px;
|
|
7630
|
+
}
|
|
7631
|
+
.kd-color-picker-rtl.kd-color-picker-pop .kd-color-picker-panel-container {
|
|
7632
|
+
display: -webkit-box;
|
|
7633
|
+
display: -ms-flexbox;
|
|
7634
|
+
display: flex;
|
|
7635
|
+
-ms-flex-wrap: nowrap;
|
|
7636
|
+
flex-wrap: nowrap;
|
|
7637
|
+
}
|
|
7638
|
+
.kd-color-picker-rtl.kd-color-picker-pop .kd-color-picker-panel-container-select {
|
|
7639
|
+
margin-left: 8px;
|
|
7640
|
+
margin-right: 0;
|
|
7641
|
+
}
|
|
7642
|
+
.kd-color-picker-rtl.kd-color-picker-pop .kd-color-picker-panel-container-select .kd-select-bordered {
|
|
7643
|
+
border-radius: 2px;
|
|
7644
|
+
width: var(--kd-c-color-picker-panel-select-sizing-width, 212px);
|
|
7645
|
+
height: var(--kd-c-color-picker-panel-select-sizing-height, 28px);
|
|
7646
|
+
min-height: 28px;
|
|
7647
|
+
padding: 0 28px 0 0;
|
|
7648
|
+
}
|
|
7649
|
+
.kd-color-picker-rtl.kd-color-picker-pop .kd-color-picker-panel-container-select .active-option {
|
|
7650
|
+
background-color: var(--kd-c-color-picker-panel-option-color-background-selected, var(--kd-g-color-theme-3, #e3eeff));
|
|
7651
|
+
}
|
|
7652
|
+
.kd-color-picker-rtl.kd-color-picker-pop .kd-color-picker-panel-container-input {
|
|
7653
|
+
height: 28px;
|
|
7654
|
+
-webkit-box-flex: 1;
|
|
7655
|
+
-ms-flex: 1 1 auto;
|
|
7656
|
+
flex: 1 1 auto;
|
|
7657
|
+
padding: 0 8px;
|
|
7658
|
+
}
|
|
7659
|
+
.kd-color-picker-rtl.kd-color-picker-pop .kd-color-picker-panel-container-input-group {
|
|
7660
|
+
display: -webkit-box;
|
|
7661
|
+
display: -ms-flexbox;
|
|
7662
|
+
display: flex;
|
|
7663
|
+
-webkit-box-align: center;
|
|
7664
|
+
-ms-flex-align: center;
|
|
7665
|
+
align-items: center;
|
|
7666
|
+
}
|
|
7667
|
+
.kd-color-picker-rtl.kd-color-picker-pop .kd-color-picker-panel-container-input-group-item {
|
|
7668
|
+
height: 28px;
|
|
7669
|
+
-webkit-box-flex: 1;
|
|
7670
|
+
-ms-flex: 1;
|
|
7671
|
+
flex: 1;
|
|
7672
|
+
}
|
|
7673
|
+
.kd-color-picker-rtl.kd-color-picker-pop .kd-color-picker-panel-container-input-group-item.active {
|
|
7674
|
+
z-index: 2;
|
|
7675
|
+
}
|
|
7676
|
+
.kd-color-picker-rtl.kd-color-picker-pop .kd-color-picker-panel-container-input-group-item:first-child {
|
|
7677
|
+
border-top-right-radius: 0;
|
|
7678
|
+
border-bottom-right-radius: 0;
|
|
7679
|
+
z-index: 1;
|
|
7680
|
+
}
|
|
7681
|
+
.kd-color-picker-rtl.kd-color-picker-pop .kd-color-picker-panel-container-input-group-item:nth-child(2) {
|
|
7682
|
+
margin-right: -1px;
|
|
7683
|
+
margin-left: -1px;
|
|
7684
|
+
border-radius: 0;
|
|
7685
|
+
}
|
|
7686
|
+
.kd-color-picker-rtl.kd-color-picker-pop .kd-color-picker-panel-container-input-group-item:nth-child(2):hover {
|
|
7687
|
+
z-index: 1;
|
|
7688
|
+
}
|
|
7689
|
+
.kd-color-picker-rtl.kd-color-picker-pop .kd-color-picker-panel-container-input-group-item:last-child {
|
|
7690
|
+
border-top-left-radius: 0;
|
|
7691
|
+
border-bottom-left-radius: 0;
|
|
7692
|
+
}
|
|
7693
|
+
.kd-color-picker-rtl.kd-color-picker-pop .kd-color-picker-panel-container-transparent {
|
|
7694
|
+
-webkit-box-flex: 0;
|
|
7695
|
+
-ms-flex: 0 0 54px;
|
|
7696
|
+
flex: 0 0 54px;
|
|
7697
|
+
height: 28px;
|
|
7698
|
+
margin-right: 8px;
|
|
7699
|
+
margin-left: 0;
|
|
7700
|
+
padding: 0;
|
|
7701
|
+
text-align: center;
|
|
7702
|
+
font-size: var(--kd-c-color-picker-panel-alpha-font-size, var(--kd-g-font-size-middle, 14px));
|
|
7703
|
+
}
|
|
7704
|
+
.kd-color-picker-rtl.kd-color-picker-pop .kd-color-picker-panel-historical-color-box-title {
|
|
7705
|
+
font-size: 12px;
|
|
7706
|
+
color: #666666;
|
|
7707
|
+
line-height: 18px;
|
|
7708
|
+
font-weight: 400;
|
|
7709
|
+
margin-bottom: 8px;
|
|
7710
|
+
}
|
|
7711
|
+
.kd-color-picker-rtl.kd-color-picker-pop .kd-color-picker-panel-historical-color-box-container {
|
|
7712
|
+
display: grid;
|
|
7713
|
+
grid-template-columns: repeat(12, 1fr);
|
|
7714
|
+
grid-column-gap: 8px;
|
|
7715
|
+
grid-row-gap: 8px;
|
|
7716
|
+
}
|
|
7717
|
+
.kd-color-picker-rtl.kd-color-picker-pop .kd-color-picker-panel-historical-color-box-container-ie11 {
|
|
7718
|
+
display: -webkit-box;
|
|
7719
|
+
display: -ms-flexbox;
|
|
7720
|
+
display: flex;
|
|
7721
|
+
-ms-flex-wrap: wrap;
|
|
7722
|
+
flex-wrap: wrap;
|
|
7723
|
+
}
|
|
7724
|
+
.kd-color-picker-rtl.kd-color-picker-pop .kd-color-picker-panel-historical-color-box-container-ie11 li {
|
|
7725
|
+
margin-right: 8px;
|
|
7726
|
+
margin-top: 8px;
|
|
7727
|
+
}
|
|
7728
|
+
.kd-color-picker-rtl.kd-color-picker-pop .kd-color-picker-panel-historical-color-box-container-ie11 li:nth-child(12n) {
|
|
7729
|
+
margin-right: 0;
|
|
7730
|
+
}
|
|
7731
|
+
.kd-color-picker-rtl.kd-color-picker-pop .kd-color-picker-panel-historical-color-box-container-ie11 li:nth-child(-n + 12) {
|
|
7732
|
+
margin-top: 0;
|
|
7733
|
+
}
|
|
7734
|
+
.kd-color-picker-rtl .kd-color-picker-panel-chrome > div:last-child .flexbox-fix:first-child > div:first-child > div {
|
|
7735
|
+
margin-right: 4px !important;
|
|
7736
|
+
margin-left: 0 !important;
|
|
7737
|
+
}
|
|
7452
7738
|
|
|
7453
7739
|
/* ----------- color ——————---- start */
|
|
7454
7740
|
/* ----------- color ——————---- end */
|
|
@@ -9090,6 +9376,9 @@ template {
|
|
|
9090
9376
|
-webkit-line-clamp: 2;
|
|
9091
9377
|
-webkit-box-orient: vertical;
|
|
9092
9378
|
}
|
|
9379
|
+
.kd-dropdown .kd-dropdown-menu-rtl {
|
|
9380
|
+
direction: rtl;
|
|
9381
|
+
}
|
|
9093
9382
|
|
|
9094
9383
|
/* ----------- color ——————---- start */
|
|
9095
9384
|
/* ----------- color ——————---- end */
|
|
@@ -11309,6 +11598,17 @@ template {
|
|
|
11309
11598
|
margin-right: 2px;
|
|
11310
11599
|
font-size: 18px;
|
|
11311
11600
|
}
|
|
11601
|
+
.kd-image-rtl {
|
|
11602
|
+
direction: rtl;
|
|
11603
|
+
}
|
|
11604
|
+
.kd-image-rtl .kd-image-preview-close {
|
|
11605
|
+
left: 18px;
|
|
11606
|
+
right: auto;
|
|
11607
|
+
}
|
|
11608
|
+
.kd-image-rtl .kd-image-preview-action i:not(:first-child) {
|
|
11609
|
+
margin-right: 20px;
|
|
11610
|
+
margin-left: 0;
|
|
11611
|
+
}
|
|
11312
11612
|
|
|
11313
11613
|
/* ----------- color ——————---- start */
|
|
11314
11614
|
/* ----------- color ——————---- end */
|
|
@@ -12169,6 +12469,54 @@ textarea {
|
|
|
12169
12469
|
.kd-input-error:not(.kd-input-disabled):not(.kd-input-wrapper-disabled):not( .kd-input-group-addon-disabled) {
|
|
12170
12470
|
border-color: var(--kd-c-input-color-error, var(--kd-g-color-error, #fb2323));
|
|
12171
12471
|
}
|
|
12472
|
+
.kd-input-rtl {
|
|
12473
|
+
direction: rtl;
|
|
12474
|
+
}
|
|
12475
|
+
.kd-input-rtl.kd-input-group .kd-input-group-addon:first-child {
|
|
12476
|
+
border-top-left-radius: 0;
|
|
12477
|
+
border-bottom-left-radius: 0;
|
|
12478
|
+
border-top-right-radius: var(--kd-c-input-radius-border, var(--kd-g-radius-border, 2px));
|
|
12479
|
+
border-bottom-right-radius: var(--kd-c-input-radius-border, var(--kd-g-radius-border, 2px));
|
|
12480
|
+
border-left: none;
|
|
12481
|
+
border-right: 1px solid var(--kd-c-input-color-border-disabled, var(--kd-g-color-border-strong, #d9d9d9));
|
|
12482
|
+
}
|
|
12483
|
+
.kd-input-rtl.kd-input-group .kd-input-group-addon:last-child {
|
|
12484
|
+
border-top-right-radius: 0;
|
|
12485
|
+
border-bottom-right-radius: 0;
|
|
12486
|
+
border-top-left-radius: var(--kd-c-input-radius-border, var(--kd-g-radius-border, 2px));
|
|
12487
|
+
border-bottom-left-radius: var(--kd-c-input-radius-border, var(--kd-g-radius-border, 2px));
|
|
12488
|
+
border-right: none;
|
|
12489
|
+
border-left: 1px solid var(--kd-c-input-color-border-disabled, var(--kd-g-color-border-strong, #d9d9d9));
|
|
12490
|
+
}
|
|
12491
|
+
.kd-input-rtl.kd-input-wrapper .kd-input-prefix {
|
|
12492
|
+
margin-right: 0;
|
|
12493
|
+
margin-left: calc(var(--kd-c-input-spacing-padding-vertical-small, 3px) * 2);
|
|
12494
|
+
}
|
|
12495
|
+
.kd-input-rtl.kd-input-wrapper .kd-input-suffix {
|
|
12496
|
+
margin-left: 0;
|
|
12497
|
+
margin-right: calc(var(--kd-c-input-spacing-padding-vertical-small, 3px) * 2);
|
|
12498
|
+
}
|
|
12499
|
+
.kd-input-rtl.kd-input-wrapper .kd-input-clear-icon-rightSpace {
|
|
12500
|
+
margin-left: 4px;
|
|
12501
|
+
margin-right: 0;
|
|
12502
|
+
}
|
|
12503
|
+
.kd-input-rtl .kd-input-textarea-mark {
|
|
12504
|
+
right: auto;
|
|
12505
|
+
left: 2px;
|
|
12506
|
+
}
|
|
12507
|
+
.kd-input-rtl .kd-input-textarea-mark-inner {
|
|
12508
|
+
top: auto;
|
|
12509
|
+
left: 8px;
|
|
12510
|
+
right: auto;
|
|
12511
|
+
}
|
|
12512
|
+
.kd-input-rtl .kd-input-textarea-clear-icon {
|
|
12513
|
+
left: 8px;
|
|
12514
|
+
right: auto;
|
|
12515
|
+
}
|
|
12516
|
+
.kd-input-rtl.kd-input-allowClear-spacing {
|
|
12517
|
+
padding-right: var(--kd-c-input-spacing-padding-horizontal-small, 9px);
|
|
12518
|
+
padding-left: 20px;
|
|
12519
|
+
}
|
|
12172
12520
|
|
|
12173
12521
|
/* ----------- color ——————---- start */
|
|
12174
12522
|
/* ----------- color ——————---- end */
|
|
@@ -12575,6 +12923,17 @@ textarea {
|
|
|
12575
12923
|
display: inline-block;
|
|
12576
12924
|
margin-left: var(--kd-c-link-suffix-horizontal, 4px);
|
|
12577
12925
|
}
|
|
12926
|
+
.kd-link-rtl {
|
|
12927
|
+
direction: rtl;
|
|
12928
|
+
}
|
|
12929
|
+
.kd-link-rtl .kd-link-prefix {
|
|
12930
|
+
margin-right: 0;
|
|
12931
|
+
margin-left: var(--kd-c-link-prefix-horizontal, 4px);
|
|
12932
|
+
}
|
|
12933
|
+
.kd-link-rtl .kd-link-suffix {
|
|
12934
|
+
margin-left: 0;
|
|
12935
|
+
margin-right: var(--kd-c-link-suffix-horizontal, 4px);
|
|
12936
|
+
}
|
|
12578
12937
|
|
|
12579
12938
|
/* ----------- color ——————---- start */
|
|
12580
12939
|
/* ----------- color ——————---- end */
|
|
@@ -13205,6 +13564,16 @@ textarea {
|
|
|
13205
13564
|
color: var(--kd-c-menu-light-color-text-active, var(--kd-g-color-theme, #5582f3));
|
|
13206
13565
|
border: none;
|
|
13207
13566
|
}
|
|
13567
|
+
.kd-menu-rtl {
|
|
13568
|
+
direction: rtl;
|
|
13569
|
+
}
|
|
13570
|
+
.kd-menu-rtl .kd-menu-submenu {
|
|
13571
|
+
direction: rtl;
|
|
13572
|
+
}
|
|
13573
|
+
.kd-menu-rtl .kd-menu-submenu .kd-menu-submenu-title .kd-menu-submenu-arrow {
|
|
13574
|
+
margin-left: 0;
|
|
13575
|
+
margin-right: auto;
|
|
13576
|
+
}
|
|
13208
13577
|
|
|
13209
13578
|
/* ----------- color ——————---- start */
|
|
13210
13579
|
/* ----------- color ——————---- end */
|
|
@@ -13775,6 +14144,13 @@ textarea {
|
|
|
13775
14144
|
.kd-modal-showline .kd-modal-footer {
|
|
13776
14145
|
border-top: var(--kd-c-modal-sizing-border, 1px) solid var(--kd-c-modal-color-border, var(--kd-g-color-border-strong-2, #d9d9d9));
|
|
13777
14146
|
}
|
|
14147
|
+
.kd-modal-rtl {
|
|
14148
|
+
direction: rtl;
|
|
14149
|
+
}
|
|
14150
|
+
.kd-modal-rtl .kd-modal-container-box .kd-modal-footer .kd-modal-cancel-node .kd-modal-margin-btn {
|
|
14151
|
+
margin-left: var(--kd-c-modal-footer-button-spacing, 12px);
|
|
14152
|
+
margin-right: 0;
|
|
14153
|
+
}
|
|
13778
14154
|
|
|
13779
14155
|
/* ----------- color ——————---- start */
|
|
13780
14156
|
/* ----------- color ——————---- end */
|
|
@@ -15944,6 +16320,9 @@ textarea {
|
|
|
15944
16320
|
.kd-qrcode-borderless {
|
|
15945
16321
|
border: none;
|
|
15946
16322
|
}
|
|
16323
|
+
.kd-qrcode-rtl {
|
|
16324
|
+
direction: rtl;
|
|
16325
|
+
}
|
|
15947
16326
|
|
|
15948
16327
|
/* ----------- color ——————---- start */
|
|
15949
16328
|
/* ----------- color ——————---- end */
|
|
@@ -16401,6 +16780,44 @@ textarea {
|
|
|
16401
16780
|
display: block;
|
|
16402
16781
|
line-height: 1.5;
|
|
16403
16782
|
}
|
|
16783
|
+
.kd-radio-rtl {
|
|
16784
|
+
direction: rtl;
|
|
16785
|
+
}
|
|
16786
|
+
.kd-radio-button-rtl {
|
|
16787
|
+
direction: rtl;
|
|
16788
|
+
}
|
|
16789
|
+
.kd-radio-button-rtl.kd-radio-button {
|
|
16790
|
+
border: var(--kd-c-radio-radius-border-width, 1px) solid var(--kd-c-radio-color-border, var(--kd-g-color-border-strong, #d9d9d9));
|
|
16791
|
+
border-right: none;
|
|
16792
|
+
}
|
|
16793
|
+
.kd-radio-button-rtl.kd-radio-button.kd-radio-button:first-child {
|
|
16794
|
+
border-radius: 0 2px 2px 0;
|
|
16795
|
+
border-right: var(--kd-c-radio-radius-border-width, 1px) solid var(--kd-c-radio-color-border, var(--kd-g-color-border-strong, #d9d9d9));
|
|
16796
|
+
}
|
|
16797
|
+
.kd-radio-button-rtl.kd-radio-button.kd-radio-button:first-child::before {
|
|
16798
|
+
content: none;
|
|
16799
|
+
}
|
|
16800
|
+
.kd-radio-button-rtl.kd-radio-button.kd-radio-button:last-child {
|
|
16801
|
+
border-radius: 2px 0 0 2px;
|
|
16802
|
+
}
|
|
16803
|
+
.kd-radio-square-rtl {
|
|
16804
|
+
direction: rtl;
|
|
16805
|
+
}
|
|
16806
|
+
.kd-radio-square-rtl.kd-radio-square {
|
|
16807
|
+
margin-left: var(--kd-c-radio-spacing-margin-right, 8px);
|
|
16808
|
+
margin-right: 0;
|
|
16809
|
+
}
|
|
16810
|
+
.kd-radio-square-rtl.kd-radio-square.kd-radio-square::after {
|
|
16811
|
+
left: calc(-1 * (var(--kd-c-radio-square-sizing-height, 32px) - 10px) / 2);
|
|
16812
|
+
right: auto;
|
|
16813
|
+
}
|
|
16814
|
+
.kd-radio-square-rtl.kd-radio-square.kd-radio-square-checked::after {
|
|
16815
|
+
left: calc(-1 * (var(--kd-c-radio-square-sizing-height, 32px) - 10px) / 2);
|
|
16816
|
+
right: auto;
|
|
16817
|
+
}
|
|
16818
|
+
.kd-radio-group-rtl {
|
|
16819
|
+
direction: rtl;
|
|
16820
|
+
}
|
|
16404
16821
|
|
|
16405
16822
|
/* ----------- color ——————---- start */
|
|
16406
16823
|
/* ----------- color ——————---- end */
|
|
@@ -18050,6 +18467,67 @@ textarea {
|
|
|
18050
18467
|
-webkit-transition: all calc(0.3s - 0.1s) cubic-bezier(0.4, 0, 0.6, 1);
|
|
18051
18468
|
transition: all calc(0.3s - 0.1s) cubic-bezier(0.4, 0, 0.6, 1);
|
|
18052
18469
|
}
|
|
18470
|
+
.kd-select-rtl {
|
|
18471
|
+
direction: rtl;
|
|
18472
|
+
}
|
|
18473
|
+
.kd-select-rtl .kd-select-selector .kd-select-wrapper {
|
|
18474
|
+
padding: 1px 0 1px 28px;
|
|
18475
|
+
}
|
|
18476
|
+
.kd-select-rtl .kd-select-selector .kd-select-wrapper .kd-select-suffix {
|
|
18477
|
+
position: absolute;
|
|
18478
|
+
right: auto;
|
|
18479
|
+
left: 0;
|
|
18480
|
+
margin-left: 0;
|
|
18481
|
+
margin-right: 8px;
|
|
18482
|
+
}
|
|
18483
|
+
.kd-select-rtl .kd-select-selector .kd-select-wrapper .kd-select-placeholder {
|
|
18484
|
+
right: 0;
|
|
18485
|
+
left: 28px;
|
|
18486
|
+
}
|
|
18487
|
+
.kd-select-rtl .kd-select-selector .kd-select-wrapper.kd-select-single .kd-select-selection-search {
|
|
18488
|
+
padding-left: auto;
|
|
18489
|
+
position: absolute;
|
|
18490
|
+
left: 28px;
|
|
18491
|
+
right: 0;
|
|
18492
|
+
height: 100%;
|
|
18493
|
+
top: 0;
|
|
18494
|
+
bottom: 0;
|
|
18495
|
+
}
|
|
18496
|
+
.kd-select-rtl .kd-select-selector .kd-select-multiple .kd-select-selection-tag .kd-tag {
|
|
18497
|
+
margin: 2px 0 2px 8px;
|
|
18498
|
+
}
|
|
18499
|
+
.kd-select-rtl .kd-select-selector .kd-select-multiple .kd-select-selection-tag .kd-tag-closeWrapper {
|
|
18500
|
+
margin-right: 4px;
|
|
18501
|
+
margin-left: 0;
|
|
18502
|
+
}
|
|
18503
|
+
.kd-select-rtl .kd-select-selector .kd-select-bordered {
|
|
18504
|
+
padding-left: auto !important;
|
|
18505
|
+
padding-right: var(--kd-c-select-bordered-spacing-padding-left, 8px) !important;
|
|
18506
|
+
}
|
|
18507
|
+
.kd-select-rtl .kd-select-selector .kd-select-bordered .kd-select-suffix {
|
|
18508
|
+
padding-left: 8px;
|
|
18509
|
+
}
|
|
18510
|
+
.kd-select-rtl .kd-select-selector .kd-select-bordered.kd-select-single .kd-select-selection-search {
|
|
18511
|
+
padding-right: var(--kd-c-select-bordered-spacing-padding-left, 8px);
|
|
18512
|
+
}
|
|
18513
|
+
.kd-select-rtl .kd-select-selector .kd-select-bordered .kd-select-placeholder {
|
|
18514
|
+
padding-right: var(--kd-c-select-bordered-spacing-padding-left, 8px);
|
|
18515
|
+
}
|
|
18516
|
+
.kd-select-rtl .kd-select-dropdown .kd-select-multiple-footer-hadSelected {
|
|
18517
|
+
padding-right: 12px;
|
|
18518
|
+
padding-left: 0;
|
|
18519
|
+
}
|
|
18520
|
+
.kd-select-rtl .kd-select-dropdown .kd-select-multiple-footer .kd-checkbox-default-margin {
|
|
18521
|
+
margin-right: 0;
|
|
18522
|
+
margin-left: 4px;
|
|
18523
|
+
}
|
|
18524
|
+
.kd-select-item-rtl {
|
|
18525
|
+
direction: rtl;
|
|
18526
|
+
}
|
|
18527
|
+
.kd-select-item-rtl.kd-select-item .kd-select-item-option-content .kd-checkbox-default-margin {
|
|
18528
|
+
margin-right: 0;
|
|
18529
|
+
margin-left: 4px;
|
|
18530
|
+
}
|
|
18053
18531
|
|
|
18054
18532
|
/* ----------- color ——————---- start */
|
|
18055
18533
|
/* ----------- color ——————---- end */
|
|
@@ -19917,6 +20395,41 @@ textarea {
|
|
|
19917
20395
|
text-align: left;
|
|
19918
20396
|
margin-top: 1px;
|
|
19919
20397
|
}
|
|
20398
|
+
.kd-steps-rtl {
|
|
20399
|
+
direction: rtl;
|
|
20400
|
+
}
|
|
20401
|
+
.kd-steps-rtl .kd-steps-item:first-child .kd-steps-item-iconContainer::before {
|
|
20402
|
+
display: none;
|
|
20403
|
+
}
|
|
20404
|
+
.kd-steps-rtl.kd-steps-horizontal:first-child {
|
|
20405
|
+
padding-right: 0;
|
|
20406
|
+
}
|
|
20407
|
+
.kd-steps-rtl.kd-steps-horizontal:last-child {
|
|
20408
|
+
padding-right: 0;
|
|
20409
|
+
padding-left: 0;
|
|
20410
|
+
}
|
|
20411
|
+
.kd-steps-rtl.kd-steps-horizontal .kd-steps-item .kd-steps-item-container .kd-steps-item-iconContainer::after {
|
|
20412
|
+
display: none;
|
|
20413
|
+
}
|
|
20414
|
+
.kd-steps-rtl.kd-steps-horizontal .kd-steps-item .kd-steps-item-container .kd-steps-item-iconContainer::before {
|
|
20415
|
+
content: '';
|
|
20416
|
+
width: calc(100% + 35px);
|
|
20417
|
+
height: var(--kd-c-steps-line-sizing-height, 1px);
|
|
20418
|
+
border-bottom: 1px dashed var(--kd-c-steps-color-wait, #999);
|
|
20419
|
+
border-left: 1px dashed var(--kd-c-steps-color-wait, #999);
|
|
20420
|
+
position: absolute;
|
|
20421
|
+
left: 50%;
|
|
20422
|
+
top: calc(50% - var(--kd-c-steps-line-sizing-height, 1px) / 2);
|
|
20423
|
+
-webkit-transition: width var(--kd-c-steps-motion-duration, var(--kd-g-duration, 0.3s)) cubic-bezier(0.48, 0.04, 0.52, 0.96), background-color var(--kd-c-steps-motion-duration, var(--kd-g-duration, 0.3s)) cubic-bezier(0.48, 0.04, 0.52, 0.96);
|
|
20424
|
+
transition: width var(--kd-c-steps-motion-duration, var(--kd-g-duration, 0.3s)) cubic-bezier(0.48, 0.04, 0.52, 0.96), background-color var(--kd-c-steps-motion-duration, var(--kd-g-duration, 0.3s)) cubic-bezier(0.48, 0.04, 0.52, 0.96);
|
|
20425
|
+
}
|
|
20426
|
+
.kd-steps-rtl.kd-steps-vertical .kd-steps-item-iconContainer {
|
|
20427
|
+
margin-left: 4px;
|
|
20428
|
+
margin-right: 0;
|
|
20429
|
+
}
|
|
20430
|
+
.kd-steps-rtl.kd-steps-vertical .kd-steps-item-content {
|
|
20431
|
+
text-align: right;
|
|
20432
|
+
}
|
|
19920
20433
|
|
|
19921
20434
|
/* ----------- color ——————---- start */
|
|
19922
20435
|
/* ----------- color ——————---- end */
|
|
@@ -20137,6 +20650,15 @@ textarea {
|
|
|
20137
20650
|
.kd-switch-size-large .kd-switch-inner {
|
|
20138
20651
|
margin: var(--kd-c-switch-inner-spacing-margin-large, 0 5px 0 21px);
|
|
20139
20652
|
}
|
|
20653
|
+
.kd-switch-rtl {
|
|
20654
|
+
direction: rtl;
|
|
20655
|
+
-webkit-transform: rotateY(180deg);
|
|
20656
|
+
transform: rotateY(180deg);
|
|
20657
|
+
}
|
|
20658
|
+
.kd-switch-rtl .kd-switch-inner {
|
|
20659
|
+
-webkit-transform: rotateY(180deg);
|
|
20660
|
+
transform: rotateY(180deg);
|
|
20661
|
+
}
|
|
20140
20662
|
|
|
20141
20663
|
/* ----------- color ——————---- start */
|
|
20142
20664
|
/* ----------- color ——————---- end */
|
|
@@ -21330,6 +21852,13 @@ textarea {
|
|
|
21330
21852
|
cursor: pointer;
|
|
21331
21853
|
font-size: 12px;
|
|
21332
21854
|
}
|
|
21855
|
+
.kd-tag-rtl {
|
|
21856
|
+
direction: rtl;
|
|
21857
|
+
}
|
|
21858
|
+
.kd-tag-rtl .kd-tag-closeWrapper {
|
|
21859
|
+
margin-right: 4px;
|
|
21860
|
+
margin-left: 0;
|
|
21861
|
+
}
|
|
21333
21862
|
|
|
21334
21863
|
/* ----------- color ——————---- start */
|
|
21335
21864
|
/* ----------- color ——————---- end */
|
|
@@ -23019,6 +23548,25 @@ textarea {
|
|
|
23019
23548
|
-ms-flex-align: center;
|
|
23020
23549
|
align-items: center;
|
|
23021
23550
|
}
|
|
23551
|
+
.kd-tree-rtl {
|
|
23552
|
+
direction: rtl;
|
|
23553
|
+
}
|
|
23554
|
+
.kd-tree-rtl .kd-tree-root .kd-tree-node-item .kd-tree-node-root .kd-tree-node-indent {
|
|
23555
|
+
margin-right: 0;
|
|
23556
|
+
margin-left: 6px;
|
|
23557
|
+
}
|
|
23558
|
+
.kd-tree-rtl .kd-tree-root .kd-tree-node-item .kd-tree-node-root .kd-tree-node-title-wrap {
|
|
23559
|
+
padding-right: 4px;
|
|
23560
|
+
padding-left: 0;
|
|
23561
|
+
}
|
|
23562
|
+
.kd-tree-rtl .kd-tree-root .kd-tree-node-item .kd-tree-node-root .kd-tree-node-title-wrap .kd-checkbox-default-margin {
|
|
23563
|
+
margin-right: 0;
|
|
23564
|
+
margin-left: 4px;
|
|
23565
|
+
}
|
|
23566
|
+
.kd-tree-rtl .kd-tree-root .kd-tree-node-item .kd-tree-node-root .kd-tree-node-animation-expand {
|
|
23567
|
+
-webkit-transform: rotate(-90deg);
|
|
23568
|
+
transform: rotate(-90deg);
|
|
23569
|
+
}
|
|
23022
23570
|
|
|
23023
23571
|
/* ----------- color ——————---- start */
|
|
23024
23572
|
/* ----------- color ——————---- end */
|
|
@@ -23424,7 +23972,7 @@ h3.kd-typography,
|
|
|
23424
23972
|
opacity: 0;
|
|
23425
23973
|
overflow: hidden;
|
|
23426
23974
|
}
|
|
23427
|
-
.kd-upload-input input[type=
|
|
23975
|
+
.kd-upload-input input[type='file'] {
|
|
23428
23976
|
position: absolute;
|
|
23429
23977
|
top: -20%;
|
|
23430
23978
|
left: 0;
|
|
@@ -23646,6 +24194,29 @@ h3.kd-typography,
|
|
|
23646
24194
|
color: var(--kd-c-upload-panel-button-color, #0E5FD8);
|
|
23647
24195
|
font-size: var(--kd-c-upload-picture-action-font-size, var(--kd-g-font-size-small, 12px));
|
|
23648
24196
|
}
|
|
24197
|
+
.kd-upload-rtl {
|
|
24198
|
+
direction: rtl;
|
|
24199
|
+
}
|
|
24200
|
+
.kd-upload-rtl.kd-upload .kd-upload-text-list-item-name {
|
|
24201
|
+
margin: 0 var(--kd-c-upload-text-list-item-name-padding-left, 4px) 0 var(--kd-c-upload-text-list-item-name-padding-right, 8px);
|
|
24202
|
+
}
|
|
24203
|
+
.kd-upload-rtl.kd-upload .kd-upload-text-list-item-action {
|
|
24204
|
+
left: 0;
|
|
24205
|
+
right: auto;
|
|
24206
|
+
-webkit-transform: translateX(-5px);
|
|
24207
|
+
transform: translateX(-5px);
|
|
24208
|
+
}
|
|
24209
|
+
.kd-upload-rtl.kd-upload .kd-upload-text-list-item-action a:not(:first-child) {
|
|
24210
|
+
margin-right: 20px;
|
|
24211
|
+
margin-left: 0;
|
|
24212
|
+
}
|
|
24213
|
+
.kd-upload-rtl.kd-upload .kd-upload-picture-list-item {
|
|
24214
|
+
margin: 0 0 28px 28px;
|
|
24215
|
+
}
|
|
24216
|
+
.kd-upload-rtl.kd-upload .kd-upload-picture-list-item-error a:not(:first-child) {
|
|
24217
|
+
margin-right: 10px;
|
|
24218
|
+
margin-left: auto;
|
|
24219
|
+
}
|
|
23649
24220
|
|
|
23650
24221
|
|
|
23651
24222
|
/*# sourceMappingURL=kdesign.css.map*/
|