cloud-business 0.1.99-1 → 0.1.99-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.
@@ -261,7 +261,7 @@ li {
261
261
  @font-face {
262
262
  font-family: 'cloud-react-icon-font';
263
263
  /* Project id 2990746 */
264
- src: url('//cloud-cdn.shuyun.com/fe-publish-asset/0.0.99/libs/cloud-react/icon/font/iconfont.woff2') format('woff2'), url('//cloud-cdn.shuyun.com/fe-publish-asset/0.0.99/libs/cloud-react/icon/font/iconfont.woff') format('woff'), url('//cloud-cdn.shuyun.com/fe-publish-asset/0.0.99/libs/cloud-react/icon/font/iconfont.ttf') format('truetype');
264
+ src: url('https://cloud-cdn.shuyun.com/fe-publish-asset/0.0.99/libs/cloud-react/icon/font/iconfont.woff2') format('woff2'), url('https://cloud-cdn.shuyun.com/fe-publish-asset/0.0.99/libs/cloud-react/icon/font/iconfont.woff') format('woff'), url('https://cloud-cdn.shuyun.com/fe-publish-asset/0.0.99/libs/cloud-react/icon/font/iconfont.ttf') format('truetype');
265
265
  }
266
266
  .newCloud-icon {
267
267
  font-family: 'cloud-react-icon-font' !important;
@@ -5066,7 +5066,8 @@ input::-webkit-search-cancel-button {
5066
5066
  }
5067
5067
  .newCloud-pagination ul {
5068
5068
  display: flex;
5069
- padding-inline-start: 0;
5069
+ -webkit-padding-start: 0;
5070
+ padding-inline-start: 0;
5070
5071
  }
5071
5072
  .newCloud-pagination ul li {
5072
5073
  min-width: 32px;
@@ -5458,6 +5459,21 @@ input::-webkit-search-cancel-button {
5458
5459
  border-right: 0;
5459
5460
  border-left: 1px solid #e8e8e8;
5460
5461
  }
5462
+ .newCloud-table td.padding-32 {
5463
+ padding-right: 32px;
5464
+ }
5465
+ .newCloud-table td.padding-34 {
5466
+ padding-right: 34px;
5467
+ }
5468
+ .newCloud-table td.padding-54 {
5469
+ padding-right: 54px;
5470
+ }
5471
+ .newCloud-table td.padding-52 {
5472
+ padding-right: 52px;
5473
+ }
5474
+ .newCloud-table td.padding-74 {
5475
+ padding-right: 74px;
5476
+ }
5461
5477
  .newCloud-table tr:not(.newCloud-table-expanded-row):hover td {
5462
5478
  background: #fafafa;
5463
5479
  transition: all 0.3s;
@@ -5739,17 +5755,32 @@ input::-webkit-search-cancel-button {
5739
5755
  .newCloud-table-summary tr td {
5740
5756
  background: #fafafa;
5741
5757
  }
5758
+ .newCloud-table .title-container {
5759
+ display: flex;
5760
+ align-items: center;
5761
+ gap: 6px;
5762
+ }
5763
+ .newCloud-table .title-container.align-right {
5764
+ justify-content: end;
5765
+ }
5742
5766
  .newCloud-table .title-container .sort-icon-container {
5767
+ position: relative;
5768
+ top: -4px;
5743
5769
  display: inline-flex;
5744
5770
  flex-direction: column;
5745
5771
  align-items: center;
5746
5772
  cursor: pointer;
5747
5773
  }
5748
- .newCloud-table .title-container .sort-icon-container:hover:not(.cell-align-right):after {
5774
+ .newCloud-table .title-container .sort-icon-container .sort-up-icon {
5775
+ height: 7px;
5776
+ }
5777
+ .newCloud-table .title-container .sort-icon-container .sort-down-icon {
5778
+ height: 7px;
5779
+ }
5780
+ .newCloud-table .title-container .sort-icon-container:hover:after {
5749
5781
  position: absolute;
5750
- top: 50%;
5751
- transform: translate(0, -50%);
5752
- right: 11px;
5782
+ top: 4px;
5783
+ left: -1px;
5753
5784
  content: '';
5754
5785
  display: inline-block;
5755
5786
  width: 16px;
@@ -5757,10 +5788,6 @@ input::-webkit-search-cancel-button {
5757
5788
  background: #e8e8e8;
5758
5789
  z-index: 0;
5759
5790
  }
5760
- .newCloud-table .title-container .sort-icon-container.cell-align-right .sort-up-icon,
5761
- .newCloud-table .title-container .sort-icon-container.cell-align-right .sort-down-icon {
5762
- right: 0;
5763
- }
5764
5791
  .newCloud-table .title-container .sort-icon-container.sort-asc .sort-up-icon {
5765
5792
  color: var(--shuyunBlue4);
5766
5793
  }
@@ -5769,31 +5796,14 @@ input::-webkit-search-cancel-button {
5769
5796
  }
5770
5797
  .newCloud-table .title-container .sort-icon-container .sort-up-icon,
5771
5798
  .newCloud-table .title-container .sort-icon-container .sort-down-icon {
5772
- position: absolute;
5773
- right: 12px;
5774
5799
  font-size: 14px;
5775
5800
  color: #949494;
5776
5801
  display: inline-block;
5777
5802
  transform: scale(0.9);
5778
5803
  z-index: 1;
5779
5804
  }
5780
- .newCloud-table .title-container .sort-icon-container .sort-up-icon {
5781
- top: calc(50% - 13px);
5782
- }
5783
- .newCloud-table .title-container .sort-icon-container .sort-down-icon {
5784
- top: calc(50% - 6px);
5785
- }
5786
- .newCloud-table .title-container.filter-container .sort-icon-container:hover:not(.cell-align-right):after {
5787
- right: 35px;
5788
- }
5789
- .newCloud-table .title-container.filter-container .sort-icon-container .sort-up-icon,
5790
- .newCloud-table .title-container.filter-container .sort-icon-container .sort-down-icon {
5791
- right: 36px;
5792
- }
5793
5805
  .newCloud-table .title-container .filter-icon {
5794
- position: absolute;
5795
- right: 14px;
5796
- top: 13px;
5806
+ height: 17px;
5797
5807
  cursor: pointer;
5798
5808
  color: rgba(0, 0, 0, 0.45);
5799
5809
  }
@@ -5808,11 +5818,15 @@ input::-webkit-search-cancel-button {
5808
5818
  align-items: center;
5809
5819
  }
5810
5820
  .newCloud-table .title-with-tip .title-tip-icon {
5811
- margin: 0 4px;
5821
+ height: 17px;
5812
5822
  color: rgba(0, 0, 0, 0.25);
5813
5823
  }
5824
+ .newCloud-table .title-with-tip.title-with-tip-right {
5825
+ gap: 4px;
5826
+ }
5814
5827
  .newCloud-table .title-with-tip.title-with-tip-left {
5815
5828
  flex-direction: row-reverse;
5829
+ gap: 4px;
5816
5830
  }
5817
5831
  .newCloud-table-sticky-holder {
5818
5832
  position: sticky;
@@ -7038,11 +7052,10 @@ input::-webkit-search-cancel-button {
7038
7052
  position: fixed;
7039
7053
  background: white;
7040
7054
  transition: top 500ms, right 500ms, bottom 500ms, left 500ms;
7041
- z-index: -1;
7055
+ z-index: 1010;
7042
7056
  }
7043
7057
  .newCloud-drawer1.show {
7044
7058
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1), 0px 2px 8px 0px rgba(0, 0, 0, 0.04);
7045
- z-index: 1010;
7046
7059
  }
7047
7060
  .newCloud-drawer1.top {
7048
7061
  top: 0;