cloud-business 0.1.87-3 → 0.1.87-5
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 +206 -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,15 @@ body {
|
|
|
13453
13574
|
--shuyunBlue6: #003775;
|
|
13454
13575
|
--shuyunBlue7: #002147;
|
|
13455
13576
|
}
|
|
13577
|
+
.customer-view-new-top-div {
|
|
13578
|
+
width: calc(100% - 1080px);
|
|
13579
|
+
height: 100%;
|
|
13580
|
+
position: fixed;
|
|
13581
|
+
left: 0;
|
|
13582
|
+
top: 0;
|
|
13583
|
+
right: 1080px;
|
|
13584
|
+
bottom: 0;
|
|
13585
|
+
}
|
|
13456
13586
|
.newCloud-drawer1-content {
|
|
13457
13587
|
padding: 0 !important;
|
|
13458
13588
|
width: 100% !important;
|
|
@@ -13518,6 +13648,15 @@ body {
|
|
|
13518
13648
|
--shuyunBlue6: #003775;
|
|
13519
13649
|
--shuyunBlue7: #002147;
|
|
13520
13650
|
}
|
|
13651
|
+
.customer-view-new-top-div {
|
|
13652
|
+
width: calc(100% - 1080px);
|
|
13653
|
+
height: 100%;
|
|
13654
|
+
position: fixed;
|
|
13655
|
+
left: 0;
|
|
13656
|
+
top: 0;
|
|
13657
|
+
right: 1080px;
|
|
13658
|
+
bottom: 0;
|
|
13659
|
+
}
|
|
13521
13660
|
.newCloud-drawer1-content {
|
|
13522
13661
|
padding: 0 !important;
|
|
13523
13662
|
width: 100% !important;
|
|
@@ -13746,6 +13885,15 @@ body {
|
|
|
13746
13885
|
--shuyunBlue6: #003775;
|
|
13747
13886
|
--shuyunBlue7: #002147;
|
|
13748
13887
|
}
|
|
13888
|
+
.customer-view-new-top-div {
|
|
13889
|
+
width: calc(100% - 1080px);
|
|
13890
|
+
height: 100%;
|
|
13891
|
+
position: fixed;
|
|
13892
|
+
left: 0;
|
|
13893
|
+
top: 0;
|
|
13894
|
+
right: 1080px;
|
|
13895
|
+
bottom: 0;
|
|
13896
|
+
}
|
|
13749
13897
|
.newCloud-drawer1-content {
|
|
13750
13898
|
padding: 0 !important;
|
|
13751
13899
|
width: 100% !important;
|
|
@@ -14065,11 +14213,17 @@ body {
|
|
|
14065
14213
|
box-sizing: border-box;
|
|
14066
14214
|
}
|
|
14067
14215
|
.grid-area-new .customer-order-area-new .shop-filter {
|
|
14216
|
+
position: relative;
|
|
14068
14217
|
font-size: 14px;
|
|
14069
14218
|
margin-bottom: 16px;
|
|
14070
14219
|
padding-left: 16px;
|
|
14071
14220
|
margin-top: 16px;
|
|
14072
14221
|
}
|
|
14222
|
+
.grid-area-new .customer-order-area-new .shop-filter .shop-filter-flag {
|
|
14223
|
+
position: absolute;
|
|
14224
|
+
right: 16px;
|
|
14225
|
+
top: 0;
|
|
14226
|
+
}
|
|
14073
14227
|
.grid-area-new .customer-order-area-new .empty-order {
|
|
14074
14228
|
position: absolute;
|
|
14075
14229
|
top: calc((100% - 90px)/2);
|
|
@@ -14105,13 +14259,6 @@ body {
|
|
|
14105
14259
|
position: relative;
|
|
14106
14260
|
flex: none;
|
|
14107
14261
|
}
|
|
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
14262
|
.grid-area-new .customer-order-area-new .order-table-title {
|
|
14116
14263
|
display: flex;
|
|
14117
14264
|
font-size: 14px;
|
|
@@ -14462,6 +14609,15 @@ body {
|
|
|
14462
14609
|
--shuyunBlue6: #003775;
|
|
14463
14610
|
--shuyunBlue7: #002147;
|
|
14464
14611
|
}
|
|
14612
|
+
.customer-view-new-top-div {
|
|
14613
|
+
width: calc(100% - 1080px);
|
|
14614
|
+
height: 100%;
|
|
14615
|
+
position: fixed;
|
|
14616
|
+
left: 0;
|
|
14617
|
+
top: 0;
|
|
14618
|
+
right: 1080px;
|
|
14619
|
+
bottom: 0;
|
|
14620
|
+
}
|
|
14465
14621
|
.newCloud-drawer1-content {
|
|
14466
14622
|
padding: 0 !important;
|
|
14467
14623
|
width: 100% !important;
|
|
@@ -14619,6 +14775,12 @@ body {
|
|
|
14619
14775
|
color: var(--shuyunBlue4);
|
|
14620
14776
|
line-height: 20px;
|
|
14621
14777
|
}
|
|
14778
|
+
.customer-card-container-new .right-card-info .info-title .test {
|
|
14779
|
+
right: 130px;
|
|
14780
|
+
}
|
|
14781
|
+
.customer-card-container-new .right-card-info .info-title .test2 {
|
|
14782
|
+
right: 230px;
|
|
14783
|
+
}
|
|
14622
14784
|
.customer-card-container-new .right-card-info .info-context {
|
|
14623
14785
|
display: flex;
|
|
14624
14786
|
flex-flow: row wrap;
|
|
@@ -14647,6 +14809,15 @@ body {
|
|
|
14647
14809
|
--shuyunBlue6: #003775;
|
|
14648
14810
|
--shuyunBlue7: #002147;
|
|
14649
14811
|
}
|
|
14812
|
+
.customer-view-new-top-div {
|
|
14813
|
+
width: calc(100% - 1080px);
|
|
14814
|
+
height: 100%;
|
|
14815
|
+
position: fixed;
|
|
14816
|
+
left: 0;
|
|
14817
|
+
top: 0;
|
|
14818
|
+
right: 1080px;
|
|
14819
|
+
bottom: 0;
|
|
14820
|
+
}
|
|
14650
14821
|
.newCloud-drawer1-content {
|
|
14651
14822
|
padding: 0 !important;
|
|
14652
14823
|
width: 100% !important;
|
|
@@ -14791,7 +14962,7 @@ body {
|
|
|
14791
14962
|
line-height: 20px;
|
|
14792
14963
|
cursor: pointer;
|
|
14793
14964
|
}
|
|
14794
|
-
.customer-label-area-new .customer-label-content .common-block .common-block-title .opt .newCloud-icon-edit {
|
|
14965
|
+
.customer-label-area-new .customer-label-content .common-block .common-block-title .opt .newCloud-icon-edit-2 {
|
|
14795
14966
|
font-size: 14px;
|
|
14796
14967
|
padding-right: 2px;
|
|
14797
14968
|
}
|
|
@@ -14968,8 +15139,16 @@ body {
|
|
|
14968
15139
|
font-size: 14px;
|
|
14969
15140
|
}
|
|
14970
15141
|
.customer-label-area-new .customer-label-content .custom-module-new .common-title-right span {
|
|
14971
|
-
padding-right:
|
|
15142
|
+
padding-right: 13px;
|
|
14972
15143
|
cursor: pointer;
|
|
15144
|
+
font-size: 14px;
|
|
15145
|
+
color: rgba(0, 0, 0, 0.45);
|
|
15146
|
+
}
|
|
15147
|
+
.customer-label-area-new .customer-label-content .custom-module-new .common-title-right .newCloud-icon {
|
|
15148
|
+
font-size: 14px;
|
|
15149
|
+
}
|
|
15150
|
+
.customer-label-area-new .customer-label-content .custom-module-new .common-title-right .active-icon {
|
|
15151
|
+
color: var(--shuyunBlue4) !important;
|
|
14973
15152
|
}
|
|
14974
15153
|
.customer-label-area-new .customer-label-content .custom-module-new .common-block-info {
|
|
14975
15154
|
display: block;
|