@kdcloudjs/kdesign 1.7.68-stable.1 → 1.7.68-stable.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.
@@ -3580,7 +3580,7 @@
3580
3580
  }
3581
3581
 
3582
3582
  &-transparent {
3583
- flex: 0 0 60px;
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
  }
@@ -7624,6 +7642,10 @@ textarea {
7624
7642
  position: relative;
7625
7643
  z-index: @modal-z-index-dialog;
7626
7644
 
7645
+ &-ie {
7646
+ position: absolute;
7647
+ }
7648
+
7627
7649
  &-show {
7628
7650
  animation: kdModalEffect calc(@transition-duration - 0.1s) @ease both;
7629
7651
  }
@@ -10583,19 +10605,19 @@ textarea {
10583
10605
  max-width: 100%;
10584
10606
  cursor: default;
10585
10607
  user-select: none;
10586
- &-small {
10608
+ &.@{select-prefix-cls}-selection-item-small {
10587
10609
  height: 20px;
10588
10610
  line-height: 18px;
10589
10611
  font-size: 12px;
10590
10612
  }
10591
10613
 
10592
- &-middle {
10614
+ &.@{select-prefix-cls}-selection-item-middle {
10593
10615
  font-size: 12px;
10594
10616
  height: 20px;
10595
10617
  line-height: 18px;
10596
10618
  }
10597
10619
 
10598
- &-large {
10620
+ &.@{select-prefix-cls}-selection-item-large {
10599
10621
  font-size: 14px;
10600
10622
  line-height: 22px;
10601
10623
  height: 22px;
@@ -12670,8 +12692,8 @@ input,
12670
12692
  textarea,
12671
12693
  select,
12672
12694
  button {
12673
- font-family: 'Microsoft YaHei', 'PingFangSC-Regular', 'Helvetica Neue', Helvetica, Arial, 'Hiragino Sans GB',
12674
- 'WenQuanYi Micro Hei', sans-serif;
12695
+ font-family: 'Roboto', 'San Francisco', 'Helvetica Neue', Helvetica, Arial, 'PingFang SC', 'Hiragina Sans GB',
12696
+ 'WenQuanYi Micro Hei', 'microsoft yahei ui', 'microsoft yahei', sans-serif;
12675
12697
  }
12676
12698
 
12677
12699
  body {
package/dist/kdesign.css CHANGED
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  *
3
- * @kdcloudjs/kdesign v1.7.68-stable.0
3
+ * @kdcloudjs/kdesign v1.7.68-stable.2
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: 'Microsoft YaHei', 'PingFangSC-Regular', 'Helvetica Neue', Helvetica, Arial, 'Hiragino Sans GB', 'WenQuanYi Micro Hei', sans-serif;
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 0 60px;
6712
- flex: 0 0 60px;
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
  }
@@ -12314,6 +12331,9 @@ textarea {
12314
12331
  position: relative;
12315
12332
  z-index: var(--kd-c-modal-z-index, var(--kd-g-z-index-dialog, 1050));
12316
12333
  }
12334
+ .kd-modal-container-ie {
12335
+ position: absolute;
12336
+ }
12317
12337
  .kd-modal-container-show {
12318
12338
  -webkit-animation: kdModalEffect calc(0.3s - 0.1s) cubic-bezier(0.4, 0, 0.6, 1) both;
12319
12339
  animation: kdModalEffect calc(0.3s - 0.1s) cubic-bezier(0.4, 0, 0.6, 1) both;
@@ -16251,17 +16271,17 @@ textarea {
16251
16271
  -ms-user-select: none;
16252
16272
  user-select: none;
16253
16273
  }
16254
- .kd-select .kd-select-selection-item-small {
16274
+ .kd-select .kd-select-selection-item.kd-select-selection-item-small {
16255
16275
  height: 20px;
16256
16276
  line-height: 18px;
16257
16277
  font-size: 12px;
16258
16278
  }
16259
- .kd-select .kd-select-selection-item-middle {
16279
+ .kd-select .kd-select-selection-item.kd-select-selection-item-middle {
16260
16280
  font-size: 12px;
16261
16281
  height: 20px;
16262
16282
  line-height: 18px;
16263
16283
  }
16264
- .kd-select .kd-select-selection-item-large {
16284
+ .kd-select .kd-select-selection-item.kd-select-selection-item-large {
16265
16285
  font-size: 14px;
16266
16286
  line-height: 22px;
16267
16287
  height: 22px;