@kdcloudjs/kdesign 1.7.68-stable.1 → 1.7.68-stable.2
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 +21 -3
- package/dist/kdesign.css +21 -4
- package/dist/kdesign.css.map +1 -1
- package/dist/kdesign.js +5 -3
- package/dist/kdesign.js.map +1 -1
- package/dist/kdesign.min.css +2 -2
- package/dist/kdesign.min.js +2 -2
- package/dist/kdesign.min.js.map +1 -1
- package/es/color-picker/color-picker-panel.js +3 -2
- package/es/color-picker/style/index.css +19 -2
- package/es/color-picker/style/index.less +19 -1
- package/es/style/core/reset.less +2 -2
- package/es/style/index.css +1 -1
- package/lib/color-picker/color-picker-panel.js +3 -2
- package/lib/color-picker/style/index.css +19 -2
- package/lib/color-picker/style/index.less +19 -1
- package/lib/style/core/reset.less +2 -2
- package/lib/style/index.css +1 -1
- package/package.json +1 -1
|
@@ -3580,7 +3580,7 @@
|
|
|
3580
3580
|
}
|
|
3581
3581
|
|
|
3582
3582
|
&-transparent {
|
|
3583
|
-
flex: 0
|
|
3583
|
+
flex: 0 1 60px;
|
|
3584
3584
|
height: 28px;
|
|
3585
3585
|
margin-left: 8px;
|
|
3586
3586
|
text-align: center;
|
|
@@ -3595,6 +3595,24 @@
|
|
|
3595
3595
|
grid-row-gap: 8px;
|
|
3596
3596
|
margin-top: 12px;
|
|
3597
3597
|
|
|
3598
|
+
&-ie11 {
|
|
3599
|
+
display: flex;
|
|
3600
|
+
flex-wrap: wrap;
|
|
3601
|
+
|
|
3602
|
+
li {
|
|
3603
|
+
margin-right: 8px;
|
|
3604
|
+
margin-top: 8px;
|
|
3605
|
+
|
|
3606
|
+
&:nth-child(12n) {
|
|
3607
|
+
margin-right: 0;
|
|
3608
|
+
}
|
|
3609
|
+
|
|
3610
|
+
&:nth-child(-n+12) {
|
|
3611
|
+
margin-top: 0;
|
|
3612
|
+
}
|
|
3613
|
+
}
|
|
3614
|
+
}
|
|
3615
|
+
|
|
3598
3616
|
&-unset-color {
|
|
3599
3617
|
margin-top: 0;
|
|
3600
3618
|
}
|
|
@@ -12670,8 +12688,8 @@ input,
|
|
|
12670
12688
|
textarea,
|
|
12671
12689
|
select,
|
|
12672
12690
|
button {
|
|
12673
|
-
font-family: '
|
|
12674
|
-
'WenQuanYi Micro Hei', sans-serif;
|
|
12691
|
+
font-family: 'Roboto', 'San Francisco', 'Helvetica Neue', Helvetica, Arial, 'PingFang SC', 'Hiragina Sans GB',
|
|
12692
|
+
'WenQuanYi Micro Hei', 'microsoft yahei ui', 'microsoft yahei', sans-serif;
|
|
12675
12693
|
}
|
|
12676
12694
|
|
|
12677
12695
|
body {
|
package/dist/kdesign.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @kdcloudjs/kdesign v1.7.68-stable.
|
|
3
|
+
* @kdcloudjs/kdesign v1.7.68-stable.1
|
|
4
4
|
*
|
|
5
5
|
* Copyright 2020-present, Kingdee, Inc.
|
|
6
6
|
* All rights reserved.
|
|
@@ -1924,7 +1924,7 @@ input,
|
|
|
1924
1924
|
textarea,
|
|
1925
1925
|
select,
|
|
1926
1926
|
button {
|
|
1927
|
-
font-family: '
|
|
1927
|
+
font-family: 'Roboto', 'San Francisco', 'Helvetica Neue', Helvetica, Arial, 'PingFang SC', 'Hiragina Sans GB', 'WenQuanYi Micro Hei', 'microsoft yahei ui', 'microsoft yahei', sans-serif;
|
|
1928
1928
|
}
|
|
1929
1929
|
body {
|
|
1930
1930
|
-webkit-box-sizing: border-box;
|
|
@@ -6708,8 +6708,8 @@ template {
|
|
|
6708
6708
|
}
|
|
6709
6709
|
.kd-color-picker-pop .kd-color-picker-panel-container-transparent {
|
|
6710
6710
|
-webkit-box-flex: 0;
|
|
6711
|
-
-ms-flex: 0
|
|
6712
|
-
flex: 0
|
|
6711
|
+
-ms-flex: 0 1 60px;
|
|
6712
|
+
flex: 0 1 60px;
|
|
6713
6713
|
height: 28px;
|
|
6714
6714
|
margin-left: 8px;
|
|
6715
6715
|
text-align: center;
|
|
@@ -6722,6 +6722,23 @@ template {
|
|
|
6722
6722
|
grid-row-gap: 8px;
|
|
6723
6723
|
margin-top: 12px;
|
|
6724
6724
|
}
|
|
6725
|
+
.kd-color-picker-pop .kd-color-picker-panel-colorDivContainer-ie11 {
|
|
6726
|
+
display: -webkit-box;
|
|
6727
|
+
display: -ms-flexbox;
|
|
6728
|
+
display: flex;
|
|
6729
|
+
-ms-flex-wrap: wrap;
|
|
6730
|
+
flex-wrap: wrap;
|
|
6731
|
+
}
|
|
6732
|
+
.kd-color-picker-pop .kd-color-picker-panel-colorDivContainer-ie11 li {
|
|
6733
|
+
margin-right: 8px;
|
|
6734
|
+
margin-top: 8px;
|
|
6735
|
+
}
|
|
6736
|
+
.kd-color-picker-pop .kd-color-picker-panel-colorDivContainer-ie11 li:nth-child(12n) {
|
|
6737
|
+
margin-right: 0;
|
|
6738
|
+
}
|
|
6739
|
+
.kd-color-picker-pop .kd-color-picker-panel-colorDivContainer-ie11 li:nth-child(-n+12) {
|
|
6740
|
+
margin-top: 0;
|
|
6741
|
+
}
|
|
6725
6742
|
.kd-color-picker-pop .kd-color-picker-panel-colorDivContainer-unset-color {
|
|
6726
6743
|
margin-top: 0;
|
|
6727
6744
|
}
|