cloud-business 0.1.87-3 → 0.1.87-4
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/cloud-business.css +205 -27
- package/cloud-business.js +2 -2
- package/cloud-business.min.css +1 -1
- package/cloud-business.min.js +1 -1
- package/package.json +1 -1
package/cloud-business.css
CHANGED
|
@@ -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.
|
|
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');
|
|
265
265
|
}
|
|
266
266
|
.newCloud-icon {
|
|
267
267
|
font-family: 'cloud-react-icon-font' !important;
|
|
@@ -534,6 +534,18 @@ li {
|
|
|
534
534
|
.newCloud-icon-checkbox-blank:before {
|
|
535
535
|
content: '\e61f';
|
|
536
536
|
}
|
|
537
|
+
.newCloud-icon-arrange-3:before {
|
|
538
|
+
content: '\e66c';
|
|
539
|
+
}
|
|
540
|
+
.newCloud-icon-arrange-2:before {
|
|
541
|
+
content: '\e66e';
|
|
542
|
+
}
|
|
543
|
+
.newCloud-icon-edit-2:before {
|
|
544
|
+
content: '\e66d';
|
|
545
|
+
}
|
|
546
|
+
.newCloud-icon-warn:before {
|
|
547
|
+
content: '\e66f';
|
|
548
|
+
}
|
|
537
549
|
.newCloud-icon-close-fill {
|
|
538
550
|
position: relative;
|
|
539
551
|
color: #e5e5e5 !important;
|
|
@@ -3555,8 +3567,6 @@ input::-webkit-search-cancel-button {
|
|
|
3555
3567
|
color: rgba(0, 0, 0, 0.65);
|
|
3556
3568
|
}
|
|
3557
3569
|
|
|
3558
|
-
/* 不要在此引入normalize.less及其他放置公用无需编译的css */
|
|
3559
|
-
/* 不要在此引入animation.less及其他放置公用无需编译的css */
|
|
3560
3570
|
.newCloud-picker {
|
|
3561
3571
|
height: 32px;
|
|
3562
3572
|
background: #ffffff;
|
|
@@ -3671,6 +3681,8 @@ input::-webkit-search-cancel-button {
|
|
|
3671
3681
|
opacity: 0;
|
|
3672
3682
|
transition: opacity 0.3s, color 0.3s;
|
|
3673
3683
|
}
|
|
3684
|
+
/* 不要在此引入normalize.less及其他放置公用无需编译的css */
|
|
3685
|
+
/* 不要在此引入animation.less及其他放置公用无需编译的css */
|
|
3674
3686
|
.newCloud-picker-dropdown {
|
|
3675
3687
|
position: absolute;
|
|
3676
3688
|
box-sizing: border-box;
|
|
@@ -3741,6 +3753,34 @@ input::-webkit-search-cancel-button {
|
|
|
3741
3753
|
border-width: 0;
|
|
3742
3754
|
border-radius: 0;
|
|
3743
3755
|
}
|
|
3756
|
+
.newCloud-picker-presets {
|
|
3757
|
+
padding: 12px;
|
|
3758
|
+
}
|
|
3759
|
+
.newCloud-picker-presets ul {
|
|
3760
|
+
display: flex;
|
|
3761
|
+
flex-direction: column;
|
|
3762
|
+
gap: 8px;
|
|
3763
|
+
}
|
|
3764
|
+
.newCloud-picker-presets ul li {
|
|
3765
|
+
box-sizing: border-box;
|
|
3766
|
+
width: -moz-fit-content;
|
|
3767
|
+
width: fit-content;
|
|
3768
|
+
max-width: 76px;
|
|
3769
|
+
border-radius: 3px;
|
|
3770
|
+
padding: 2px 8px;
|
|
3771
|
+
font-size: 14px;
|
|
3772
|
+
font-weight: 400;
|
|
3773
|
+
color: rgba(0, 0, 0, 0.85);
|
|
3774
|
+
line-height: 20px;
|
|
3775
|
+
cursor: pointer;
|
|
3776
|
+
transition: background-color 0.3s;
|
|
3777
|
+
white-space: nowrap;
|
|
3778
|
+
overflow: hidden;
|
|
3779
|
+
text-overflow: ellipsis;
|
|
3780
|
+
}
|
|
3781
|
+
.newCloud-picker-presets ul li:hover {
|
|
3782
|
+
background: #F5F5F5;
|
|
3783
|
+
}
|
|
3744
3784
|
.newCloud-picker-panels {
|
|
3745
3785
|
display: flex;
|
|
3746
3786
|
justify-content: center;
|
|
@@ -3770,6 +3810,12 @@ input::-webkit-search-cancel-button {
|
|
|
3770
3810
|
.newCloud-picker-panel table {
|
|
3771
3811
|
text-align: center;
|
|
3772
3812
|
}
|
|
3813
|
+
.newCloud-picker-panel-layout {
|
|
3814
|
+
display: flex;
|
|
3815
|
+
}
|
|
3816
|
+
.newCloud-picker-panel-layout .newCloud-picker-presets {
|
|
3817
|
+
border-right: 1px solid #f5f5f5;
|
|
3818
|
+
}
|
|
3773
3819
|
.newCloud-picker-datetime-panel {
|
|
3774
3820
|
display: flex;
|
|
3775
3821
|
}
|
|
@@ -4051,8 +4097,8 @@ input::-webkit-search-cancel-button {
|
|
|
4051
4097
|
border-radius: 2px;
|
|
4052
4098
|
transition: background-color 0.3s, border 0.3s;
|
|
4053
4099
|
}
|
|
4054
|
-
.newCloud-picker-cell:hover:not(.newCloud-picker-cell-in-view) .newCloud-picker-cell-inner,
|
|
4055
|
-
.newCloud-picker-cell:hover:not(.newCloud-picker-cell-selected):not(.newCloud-picker-cell-range-start):not(.newCloud-picker-cell-range-end):not(.newCloud-picker-cell-range-hover-start):not(.newCloud-picker-cell-range-hover-end) .newCloud-picker-cell-inner {
|
|
4100
|
+
.newCloud-picker-cell:hover:not(.newCloud-picker-cell-in-view):not(.newCloud-picker-cell-week) .newCloud-picker-cell-inner,
|
|
4101
|
+
.newCloud-picker-cell:hover:not(.newCloud-picker-cell-selected):not(.newCloud-picker-cell-week):not(.newCloud-picker-cell-range-start):not(.newCloud-picker-cell-range-end):not(.newCloud-picker-cell-range-hover-start):not(.newCloud-picker-cell-range-hover-end) .newCloud-picker-cell-inner {
|
|
4056
4102
|
background-color: var(--shuyunBlue1);
|
|
4057
4103
|
}
|
|
4058
4104
|
.newCloud-picker-cell-selected.newCloud-picker-cell-in-view .newCloud-picker-cell-inner,
|
|
@@ -4066,7 +4112,10 @@ input::-webkit-search-cancel-button {
|
|
|
4066
4112
|
color: var(--shuyunBlue4);
|
|
4067
4113
|
}
|
|
4068
4114
|
.newCloud-picker-cell-week {
|
|
4069
|
-
|
|
4115
|
+
color: #D9D9D9;
|
|
4116
|
+
width: 30px;
|
|
4117
|
+
text-align: left;
|
|
4118
|
+
cursor: default;
|
|
4070
4119
|
}
|
|
4071
4120
|
.newCloud-picker-ranges {
|
|
4072
4121
|
margin-bottom: 0;
|
|
@@ -4088,15 +4137,18 @@ input::-webkit-search-cancel-button {
|
|
|
4088
4137
|
.newCloud-picker-year-panel .newCloud-picker-content {
|
|
4089
4138
|
height: 200px;
|
|
4090
4139
|
}
|
|
4091
|
-
.newCloud-picker-week-panel .newCloud-picker-
|
|
4092
|
-
.newCloud-picker-week-panel .newCloud-picker-content th[aria-label~='cell'],
|
|
4093
|
-
.newCloud-picker-week-panel .newCloud-picker-content th:first-child {
|
|
4094
|
-
display: none;
|
|
4095
|
-
}
|
|
4096
|
-
.newCloud-picker-week-panel-row:hover .newCloud-picker-cell::before {
|
|
4140
|
+
.newCloud-picker-week-panel-row:hover .newCloud-picker-cell:not(.newCloud-picker-cell-week)::before {
|
|
4097
4141
|
background: var(--shuyunBlue1);
|
|
4098
4142
|
}
|
|
4099
|
-
.newCloud-picker-week-panel-row
|
|
4143
|
+
.newCloud-picker-week-panel-row .newCloud-picker-cell:not(.newCloud-picker-cell-week):nth-child(2)::before {
|
|
4144
|
+
border-top-left-radius: 2px;
|
|
4145
|
+
border-bottom-left-radius: 2px;
|
|
4146
|
+
}
|
|
4147
|
+
.newCloud-picker-week-panel-row .newCloud-picker-cell:not(.newCloud-picker-cell-week):last-of-type::before {
|
|
4148
|
+
border-top-right-radius: 2px;
|
|
4149
|
+
border-bottom-right-radius: 2px;
|
|
4150
|
+
}
|
|
4151
|
+
.newCloud-picker-week-panel-row-selected .newCloud-picker-cell:not(.newCloud-picker-week-panel-row-selected .newCloud-picker-cell-in-view):hover .newCloud-picker-cell-inner,
|
|
4100
4152
|
.newCloud-picker-week-panel-row-selected .newCloud-picker-cell-today .newCloud-picker-cell-inner,
|
|
4101
4153
|
.newCloud-picker-week-panel-row-selected .newCloud-picker-cell-selected .newCloud-picker-cell-inner {
|
|
4102
4154
|
background: none !important;
|
|
@@ -4107,6 +4159,18 @@ input::-webkit-search-cancel-button {
|
|
|
4107
4159
|
.newCloud-picker-week-panel-row-selected .newCloud-picker-cell-selected:not(:nth-child(2)):not(:last-of-type).newCloud-picker-cell-in-view .newCloud-picker-cell-inner {
|
|
4108
4160
|
color: rgba(0, 0, 0, 0.85);
|
|
4109
4161
|
}
|
|
4162
|
+
.newCloud-picker-week-panel-row-selected .newCloud-picker-cell:nth-child(2) .newCloud-picker-cell-inner {
|
|
4163
|
+
border-top-right-radius: 0;
|
|
4164
|
+
border-bottom-right-radius: 0;
|
|
4165
|
+
}
|
|
4166
|
+
.newCloud-picker-week-panel-row-selected .newCloud-picker-cell:last-of-type .newCloud-picker-cell-inner {
|
|
4167
|
+
border-top-left-radius: 0;
|
|
4168
|
+
border-bottom-left-radius: 0;
|
|
4169
|
+
}
|
|
4170
|
+
.newCloud-picker-week-panel-row-selected .newCloud-picker-cell:nth-child(2).newCloud-picker-cell-in-view .newCloud-picker-cell-inner,
|
|
4171
|
+
.newCloud-picker-week-panel-row-selected .newCloud-picker-cell:last-of-type.newCloud-picker-cell-in-view .newCloud-picker-cell-inner {
|
|
4172
|
+
background: var(--shuyunBlue4) !important;
|
|
4173
|
+
}
|
|
4110
4174
|
.newCloud-picker-week-panel-row-selected .newCloud-picker-cell:not(.newCloud-picker-cell-week)::before {
|
|
4111
4175
|
background: var(--shuyunBlue2);
|
|
4112
4176
|
}
|
|
@@ -4271,8 +4335,12 @@ input::-webkit-search-cancel-button {
|
|
|
4271
4335
|
.newCloud-picker-range-wrapper .newCloud-picker-panel .newCloud-picker-date-panel .newCloud-picker-cell.newCloud-picker-cell-in-view.newCloud-picker-cell-range-hover.newCloud-picker-cell-in-range::before {
|
|
4272
4336
|
background-color: var(--shuyunBlue1);
|
|
4273
4337
|
}
|
|
4338
|
+
.newCloud-picker-range-wrapper .newCloud-picker-panel-container {
|
|
4339
|
+
margin-left: 0 !important;
|
|
4340
|
+
}
|
|
4274
4341
|
.newCloud-picker-range-wrapper.newCloud-picker-time-range-wrapper .newCloud-picker-panel-container {
|
|
4275
|
-
width:
|
|
4342
|
+
width: -moz-fit-content;
|
|
4343
|
+
width: fit-content;
|
|
4276
4344
|
}
|
|
4277
4345
|
.newCloud-picker-range-range-arrow {
|
|
4278
4346
|
display: none;
|
|
@@ -5266,6 +5334,12 @@ input::-webkit-search-cancel-button {
|
|
|
5266
5334
|
content: '';
|
|
5267
5335
|
pointer-events: none;
|
|
5268
5336
|
}
|
|
5337
|
+
.newCloud-table-cell-fix-left-first,
|
|
5338
|
+
.newCloud-table-cell-fix-left-last,
|
|
5339
|
+
.newCloud-table-cell-fix-right-first,
|
|
5340
|
+
.newCloud-table-cell-fix-right-last {
|
|
5341
|
+
z-index: 2;
|
|
5342
|
+
}
|
|
5269
5343
|
.newCloud-table-rtl .newCloud-table-cell-fix-right-first,
|
|
5270
5344
|
.newCloud-table-rtl .newCloud-table-cell-fix-right-last {
|
|
5271
5345
|
box-shadow: none;
|
|
@@ -5535,16 +5609,16 @@ input::-webkit-search-cancel-button {
|
|
|
5535
5609
|
position: absolute;
|
|
5536
5610
|
right: 12px;
|
|
5537
5611
|
font-size: 14px;
|
|
5538
|
-
color:
|
|
5612
|
+
color: #949494;
|
|
5539
5613
|
display: inline-block;
|
|
5540
5614
|
transform: scale(0.9);
|
|
5541
5615
|
z-index: 1;
|
|
5542
5616
|
}
|
|
5543
5617
|
.newCloud-table .title-container .sort-icon-container .sort-up-icon {
|
|
5544
|
-
top: calc(50% -
|
|
5618
|
+
top: calc(50% - 13px);
|
|
5545
5619
|
}
|
|
5546
5620
|
.newCloud-table .title-container .sort-icon-container .sort-down-icon {
|
|
5547
|
-
top: calc(50% -
|
|
5621
|
+
top: calc(50% - 6px);
|
|
5548
5622
|
}
|
|
5549
5623
|
.newCloud-table .title-container.filter-container .sort-icon-container:hover:not(.cell-align-right):after {
|
|
5550
5624
|
right: 35px;
|
|
@@ -5556,7 +5630,7 @@ input::-webkit-search-cancel-button {
|
|
|
5556
5630
|
.newCloud-table .title-container .filter-icon {
|
|
5557
5631
|
position: absolute;
|
|
5558
5632
|
right: 14px;
|
|
5559
|
-
top:
|
|
5633
|
+
top: 13px;
|
|
5560
5634
|
cursor: pointer;
|
|
5561
5635
|
color: rgba(0, 0, 0, 0.45);
|
|
5562
5636
|
}
|
|
@@ -5566,6 +5640,53 @@ input::-webkit-search-cancel-button {
|
|
|
5566
5640
|
.newCloud-table .title-container .filter-icon.has-filter-value {
|
|
5567
5641
|
color: var(--shuyunBlue4);
|
|
5568
5642
|
}
|
|
5643
|
+
.newCloud-table .title-container .title-with-tip {
|
|
5644
|
+
display: inline-flex;
|
|
5645
|
+
align-items: center;
|
|
5646
|
+
}
|
|
5647
|
+
.newCloud-table .title-container .title-with-tip .title-tip-icon {
|
|
5648
|
+
margin: 0 4px;
|
|
5649
|
+
color: rgba(0, 0, 0, 0.25);
|
|
5650
|
+
}
|
|
5651
|
+
.newCloud-table .title-container .title-with-tip.title-with-tip-left {
|
|
5652
|
+
flex-direction: row-reverse;
|
|
5653
|
+
}
|
|
5654
|
+
.newCloud-table-sticky-holder {
|
|
5655
|
+
position: sticky;
|
|
5656
|
+
z-index: 2;
|
|
5657
|
+
}
|
|
5658
|
+
.newCloud-table-sticky-scroll {
|
|
5659
|
+
position: sticky;
|
|
5660
|
+
bottom: 0;
|
|
5661
|
+
z-index: 2;
|
|
5662
|
+
display: flex;
|
|
5663
|
+
align-items: center;
|
|
5664
|
+
border-top: 1px solid #f3f3f3;
|
|
5665
|
+
opacity: 0.6;
|
|
5666
|
+
transition: transform 0.1s ease-in 0s;
|
|
5667
|
+
}
|
|
5668
|
+
.newCloud-table-sticky-scroll:hover {
|
|
5669
|
+
transform: scaleY(1.2);
|
|
5670
|
+
transform-origin: center bottom;
|
|
5671
|
+
}
|
|
5672
|
+
.newCloud-table-sticky-scroll-bar {
|
|
5673
|
+
height: 8px;
|
|
5674
|
+
background-color: #bbb;
|
|
5675
|
+
border-radius: 4px;
|
|
5676
|
+
}
|
|
5677
|
+
.newCloud-table-sticky-scroll-bar:hover {
|
|
5678
|
+
background-color: #999;
|
|
5679
|
+
}
|
|
5680
|
+
.newCloud-table-sticky-scroll-bar-active {
|
|
5681
|
+
background-color: #999;
|
|
5682
|
+
}
|
|
5683
|
+
.newCloud-table-sticky-footer {
|
|
5684
|
+
position: sticky;
|
|
5685
|
+
bottom: 0;
|
|
5686
|
+
background: white;
|
|
5687
|
+
z-index: 100;
|
|
5688
|
+
border-top: 1px solid #e8e8e8;
|
|
5689
|
+
}
|
|
5569
5690
|
.newCloud-table-sticky-holder {
|
|
5570
5691
|
position: sticky;
|
|
5571
5692
|
z-index: 2;
|
|
@@ -13453,6 +13574,16 @@ body {
|
|
|
13453
13574
|
--shuyunBlue6: #003775;
|
|
13454
13575
|
--shuyunBlue7: #002147;
|
|
13455
13576
|
}
|
|
13577
|
+
.customer-view-new-top-div {
|
|
13578
|
+
width: 100%;
|
|
13579
|
+
height: 100%;
|
|
13580
|
+
background: rgba(0, 0, 0, 0.2);
|
|
13581
|
+
position: fixed;
|
|
13582
|
+
left: 0;
|
|
13583
|
+
top: 0;
|
|
13584
|
+
right: 0;
|
|
13585
|
+
bottom: 0;
|
|
13586
|
+
}
|
|
13456
13587
|
.newCloud-drawer1-content {
|
|
13457
13588
|
padding: 0 !important;
|
|
13458
13589
|
width: 100% !important;
|
|
@@ -13518,6 +13649,16 @@ body {
|
|
|
13518
13649
|
--shuyunBlue6: #003775;
|
|
13519
13650
|
--shuyunBlue7: #002147;
|
|
13520
13651
|
}
|
|
13652
|
+
.customer-view-new-top-div {
|
|
13653
|
+
width: 100%;
|
|
13654
|
+
height: 100%;
|
|
13655
|
+
background: rgba(0, 0, 0, 0.2);
|
|
13656
|
+
position: fixed;
|
|
13657
|
+
left: 0;
|
|
13658
|
+
top: 0;
|
|
13659
|
+
right: 0;
|
|
13660
|
+
bottom: 0;
|
|
13661
|
+
}
|
|
13521
13662
|
.newCloud-drawer1-content {
|
|
13522
13663
|
padding: 0 !important;
|
|
13523
13664
|
width: 100% !important;
|
|
@@ -13746,6 +13887,16 @@ body {
|
|
|
13746
13887
|
--shuyunBlue6: #003775;
|
|
13747
13888
|
--shuyunBlue7: #002147;
|
|
13748
13889
|
}
|
|
13890
|
+
.customer-view-new-top-div {
|
|
13891
|
+
width: 100%;
|
|
13892
|
+
height: 100%;
|
|
13893
|
+
background: rgba(0, 0, 0, 0.2);
|
|
13894
|
+
position: fixed;
|
|
13895
|
+
left: 0;
|
|
13896
|
+
top: 0;
|
|
13897
|
+
right: 0;
|
|
13898
|
+
bottom: 0;
|
|
13899
|
+
}
|
|
13749
13900
|
.newCloud-drawer1-content {
|
|
13750
13901
|
padding: 0 !important;
|
|
13751
13902
|
width: 100% !important;
|
|
@@ -14065,11 +14216,17 @@ body {
|
|
|
14065
14216
|
box-sizing: border-box;
|
|
14066
14217
|
}
|
|
14067
14218
|
.grid-area-new .customer-order-area-new .shop-filter {
|
|
14219
|
+
position: relative;
|
|
14068
14220
|
font-size: 14px;
|
|
14069
14221
|
margin-bottom: 16px;
|
|
14070
14222
|
padding-left: 16px;
|
|
14071
14223
|
margin-top: 16px;
|
|
14072
14224
|
}
|
|
14225
|
+
.grid-area-new .customer-order-area-new .shop-filter .shop-filter-flag {
|
|
14226
|
+
position: absolute;
|
|
14227
|
+
right: 16px;
|
|
14228
|
+
top: 0;
|
|
14229
|
+
}
|
|
14073
14230
|
.grid-area-new .customer-order-area-new .empty-order {
|
|
14074
14231
|
position: absolute;
|
|
14075
14232
|
top: calc((100% - 90px)/2);
|
|
@@ -14105,13 +14262,6 @@ body {
|
|
|
14105
14262
|
position: relative;
|
|
14106
14263
|
flex: none;
|
|
14107
14264
|
}
|
|
14108
|
-
.grid-area-new .customer-order-area-new .table-column5 .newCloud-icon {
|
|
14109
|
-
position: absolute;
|
|
14110
|
-
right: 16px;
|
|
14111
|
-
top: 12px;
|
|
14112
|
-
cursor: pointer;
|
|
14113
|
-
color: var(--shuyunBlue4);
|
|
14114
|
-
}
|
|
14115
14265
|
.grid-area-new .customer-order-area-new .order-table-title {
|
|
14116
14266
|
display: flex;
|
|
14117
14267
|
font-size: 14px;
|
|
@@ -14462,6 +14612,16 @@ body {
|
|
|
14462
14612
|
--shuyunBlue6: #003775;
|
|
14463
14613
|
--shuyunBlue7: #002147;
|
|
14464
14614
|
}
|
|
14615
|
+
.customer-view-new-top-div {
|
|
14616
|
+
width: 100%;
|
|
14617
|
+
height: 100%;
|
|
14618
|
+
background: rgba(0, 0, 0, 0.2);
|
|
14619
|
+
position: fixed;
|
|
14620
|
+
left: 0;
|
|
14621
|
+
top: 0;
|
|
14622
|
+
right: 0;
|
|
14623
|
+
bottom: 0;
|
|
14624
|
+
}
|
|
14465
14625
|
.newCloud-drawer1-content {
|
|
14466
14626
|
padding: 0 !important;
|
|
14467
14627
|
width: 100% !important;
|
|
@@ -14647,6 +14807,16 @@ body {
|
|
|
14647
14807
|
--shuyunBlue6: #003775;
|
|
14648
14808
|
--shuyunBlue7: #002147;
|
|
14649
14809
|
}
|
|
14810
|
+
.customer-view-new-top-div {
|
|
14811
|
+
width: 100%;
|
|
14812
|
+
height: 100%;
|
|
14813
|
+
background: rgba(0, 0, 0, 0.2);
|
|
14814
|
+
position: fixed;
|
|
14815
|
+
left: 0;
|
|
14816
|
+
top: 0;
|
|
14817
|
+
right: 0;
|
|
14818
|
+
bottom: 0;
|
|
14819
|
+
}
|
|
14650
14820
|
.newCloud-drawer1-content {
|
|
14651
14821
|
padding: 0 !important;
|
|
14652
14822
|
width: 100% !important;
|
|
@@ -14791,7 +14961,7 @@ body {
|
|
|
14791
14961
|
line-height: 20px;
|
|
14792
14962
|
cursor: pointer;
|
|
14793
14963
|
}
|
|
14794
|
-
.customer-label-area-new .customer-label-content .common-block .common-block-title .opt .newCloud-icon-edit {
|
|
14964
|
+
.customer-label-area-new .customer-label-content .common-block .common-block-title .opt .newCloud-icon-edit-2 {
|
|
14795
14965
|
font-size: 14px;
|
|
14796
14966
|
padding-right: 2px;
|
|
14797
14967
|
}
|
|
@@ -14968,8 +15138,16 @@ body {
|
|
|
14968
15138
|
font-size: 14px;
|
|
14969
15139
|
}
|
|
14970
15140
|
.customer-label-area-new .customer-label-content .custom-module-new .common-title-right span {
|
|
14971
|
-
padding-right:
|
|
15141
|
+
padding-right: 13px;
|
|
14972
15142
|
cursor: pointer;
|
|
15143
|
+
font-size: 14px;
|
|
15144
|
+
color: rgba(0, 0, 0, 0.45);
|
|
15145
|
+
}
|
|
15146
|
+
.customer-label-area-new .customer-label-content .custom-module-new .common-title-right .newCloud-icon {
|
|
15147
|
+
font-size: 14px;
|
|
15148
|
+
}
|
|
15149
|
+
.customer-label-area-new .customer-label-content .custom-module-new .common-title-right .active-icon {
|
|
15150
|
+
color: var(--shuyunBlue4) !important;
|
|
14973
15151
|
}
|
|
14974
15152
|
.customer-label-area-new .customer-label-content .custom-module-new .common-block-info {
|
|
14975
15153
|
display: block;
|