cloud-business 0.1.104-4 → 0.1.104-6
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 +20 -160
- 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
|
@@ -6124,6 +6124,9 @@ input::-webkit-search-cancel-button {
|
|
|
6124
6124
|
opacity: 0.9;
|
|
6125
6125
|
z-index: 3;
|
|
6126
6126
|
}
|
|
6127
|
+
.newCloud-table-box.newCloud-table-use-custom-scroll .newCloud-table-header colgroup col:not(:last-child) {
|
|
6128
|
+
display: table-column !important;
|
|
6129
|
+
}
|
|
6127
6130
|
.newCloud-table-box.newCloud-table-use-custom-scroll.newCloud-table-bordered.newCloud-table-support-resize .newCloud-table-resizeable:hover {
|
|
6128
6131
|
background: var(--shuyunBlue1);
|
|
6129
6132
|
z-index: 1;
|
|
@@ -6166,6 +6169,20 @@ input::-webkit-search-cancel-button {
|
|
|
6166
6169
|
.newCloud-table-box.newCloud-table-no-scroll .newCloud-table-container {
|
|
6167
6170
|
height: auto;
|
|
6168
6171
|
}
|
|
6172
|
+
.newCloud-table-box.newCloud-table-no-scroll.newCloud-table-empty .newCloud-table-placeholder {
|
|
6173
|
+
visibility: hidden;
|
|
6174
|
+
}
|
|
6175
|
+
.newCloud-table-no-scroll-empty {
|
|
6176
|
+
position: absolute;
|
|
6177
|
+
top: calc(50% + 20px);
|
|
6178
|
+
left: 50%;
|
|
6179
|
+
transform: translate(-50%, -50%);
|
|
6180
|
+
display: flex;
|
|
6181
|
+
flex-direction: column;
|
|
6182
|
+
justify-content: center;
|
|
6183
|
+
align-items: center;
|
|
6184
|
+
color: rgba(0, 0, 0, 0.45);
|
|
6185
|
+
}
|
|
6169
6186
|
.newCloud-table-tooltip {
|
|
6170
6187
|
min-width: 236px;
|
|
6171
6188
|
overflow: auto;
|
|
@@ -6206,6 +6223,9 @@ input::-webkit-search-cancel-button {
|
|
|
6206
6223
|
color: rgba(0, 0, 0, 0.45);
|
|
6207
6224
|
background: #fafafa;
|
|
6208
6225
|
}
|
|
6226
|
+
.newCloud-table-config-icon:hover {
|
|
6227
|
+
color: var(--shuyunBlue4);
|
|
6228
|
+
}
|
|
6209
6229
|
.newCloud-table-drag-line {
|
|
6210
6230
|
border: 1px solid var(--shuyunBlue4) !important;
|
|
6211
6231
|
}
|
|
@@ -8382,163 +8402,6 @@ input::-webkit-search-cancel-button {
|
|
|
8382
8402
|
pointer-events: none;
|
|
8383
8403
|
}
|
|
8384
8404
|
|
|
8385
|
-
/* 不要在此引入normalize.less及其他放置公用无需编译的css */
|
|
8386
|
-
/* 不要在此引入animation.less及其他放置公用无需编译的css */
|
|
8387
|
-
.newCloud-notification {
|
|
8388
|
-
display: flex;
|
|
8389
|
-
align-items: baseline;
|
|
8390
|
-
gap: 9px;
|
|
8391
|
-
padding: 20px;
|
|
8392
|
-
background: #FFFFFF;
|
|
8393
|
-
box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1), 0 0 1px 0 rgba(0, 0, 0, 0.3);
|
|
8394
|
-
border-radius: 12px;
|
|
8395
|
-
}
|
|
8396
|
-
.newCloud-notification.small {
|
|
8397
|
-
border-radius: 3px;
|
|
8398
|
-
}
|
|
8399
|
-
.newCloud-notification.middle {
|
|
8400
|
-
border-radius: 6px;
|
|
8401
|
-
}
|
|
8402
|
-
.newCloud-notification.light-theme {
|
|
8403
|
-
color: white;
|
|
8404
|
-
}
|
|
8405
|
-
.newCloud-notification.light-theme .info-icon {
|
|
8406
|
-
color: white!important;
|
|
8407
|
-
}
|
|
8408
|
-
.newCloud-notification.light-theme header,
|
|
8409
|
-
.newCloud-notification.light-theme main,
|
|
8410
|
-
.newCloud-notification.light-theme header i.close-icon {
|
|
8411
|
-
color: white;
|
|
8412
|
-
}
|
|
8413
|
-
.newCloud-notification-content {
|
|
8414
|
-
flex: 1;
|
|
8415
|
-
}
|
|
8416
|
-
.newCloud-notification .info-icon {
|
|
8417
|
-
position: relative;
|
|
8418
|
-
top: 2px;
|
|
8419
|
-
font-size: 20px;
|
|
8420
|
-
}
|
|
8421
|
-
.newCloud-notification .info-icon.info {
|
|
8422
|
-
color: #496BF5;
|
|
8423
|
-
}
|
|
8424
|
-
.newCloud-notification .info-icon.success {
|
|
8425
|
-
color: #21BA45;
|
|
8426
|
-
}
|
|
8427
|
-
.newCloud-notification .info-icon.fail {
|
|
8428
|
-
color: #E74949;
|
|
8429
|
-
}
|
|
8430
|
-
.newCloud-notification .info-icon.warn {
|
|
8431
|
-
color: #FD830A;
|
|
8432
|
-
}
|
|
8433
|
-
.newCloud-notification header {
|
|
8434
|
-
display: flex;
|
|
8435
|
-
align-items: center;
|
|
8436
|
-
justify-content: space-between;
|
|
8437
|
-
height: 24px;
|
|
8438
|
-
line-height: 24px;
|
|
8439
|
-
font-size: 16px;
|
|
8440
|
-
font-weight: 500;
|
|
8441
|
-
color: rgba(0, 0, 0, 0.85);
|
|
8442
|
-
margin-bottom: 8px;
|
|
8443
|
-
}
|
|
8444
|
-
.newCloud-notification header i.close-icon {
|
|
8445
|
-
font-size: 16px;
|
|
8446
|
-
color: #D8D8D8;
|
|
8447
|
-
cursor: pointer;
|
|
8448
|
-
}
|
|
8449
|
-
.newCloud-notification main {
|
|
8450
|
-
line-height: 20px;
|
|
8451
|
-
font-size: 14px;
|
|
8452
|
-
font-weight: 400;
|
|
8453
|
-
color: rgba(0, 0, 0, 0.65);
|
|
8454
|
-
overflow: hidden;
|
|
8455
|
-
text-overflow: ellipsis;
|
|
8456
|
-
display: -webkit-box;
|
|
8457
|
-
-webkit-line-clamp: 3;
|
|
8458
|
-
-webkit-box-orient: vertical;
|
|
8459
|
-
}
|
|
8460
|
-
.newCloud-notification footer {
|
|
8461
|
-
display: flex;
|
|
8462
|
-
align-items: center;
|
|
8463
|
-
flex-direction: row-reverse;
|
|
8464
|
-
gap: 16px;
|
|
8465
|
-
margin-top: 20px;
|
|
8466
|
-
}
|
|
8467
|
-
|
|
8468
|
-
/* 不要在此引入normalize.less及其他放置公用无需编译的css */
|
|
8469
|
-
/* 不要在此引入animation.less及其他放置公用无需编译的css */
|
|
8470
|
-
.newCloud-notification-container {
|
|
8471
|
-
z-index: 1100;
|
|
8472
|
-
position: fixed;
|
|
8473
|
-
}
|
|
8474
|
-
.newCloud-notification-container .newCloud-notification-wrapper {
|
|
8475
|
-
position: absolute;
|
|
8476
|
-
width: 360px;
|
|
8477
|
-
transition: all 300ms;
|
|
8478
|
-
margin-bottom: 20px;
|
|
8479
|
-
}
|
|
8480
|
-
.newCloud-notification-container .newCloud-notification-wrapper.fade-out {
|
|
8481
|
-
opacity: 0;
|
|
8482
|
-
}
|
|
8483
|
-
.newCloud-notification-container.top-left {
|
|
8484
|
-
top: 20px;
|
|
8485
|
-
}
|
|
8486
|
-
.newCloud-notification-container.top-left .newCloud-notification-wrapper {
|
|
8487
|
-
left: -360px;
|
|
8488
|
-
}
|
|
8489
|
-
.newCloud-notification-container.top-left .newCloud-notification-wrapper.fade-in {
|
|
8490
|
-
left: 20px;
|
|
8491
|
-
}
|
|
8492
|
-
.newCloud-notification-container.top-right {
|
|
8493
|
-
top: 20px;
|
|
8494
|
-
right: 0;
|
|
8495
|
-
}
|
|
8496
|
-
.newCloud-notification-container.top-right .newCloud-notification-wrapper {
|
|
8497
|
-
right: -360px;
|
|
8498
|
-
}
|
|
8499
|
-
.newCloud-notification-container.top-right .newCloud-notification-wrapper.fade-in {
|
|
8500
|
-
right: 20px;
|
|
8501
|
-
}
|
|
8502
|
-
.newCloud-notification-container.bottom-left {
|
|
8503
|
-
bottom: 114px;
|
|
8504
|
-
}
|
|
8505
|
-
.newCloud-notification-container.bottom-left .newCloud-notification-wrapper {
|
|
8506
|
-
left: -360px;
|
|
8507
|
-
}
|
|
8508
|
-
.newCloud-notification-container.bottom-left .newCloud-notification-wrapper.fade-in {
|
|
8509
|
-
left: 20px;
|
|
8510
|
-
}
|
|
8511
|
-
.newCloud-notification-container.bottom-right {
|
|
8512
|
-
bottom: 114px;
|
|
8513
|
-
right: 20px;
|
|
8514
|
-
}
|
|
8515
|
-
.newCloud-notification-container.bottom-right .newCloud-notification-wrapper {
|
|
8516
|
-
right: -360px;
|
|
8517
|
-
}
|
|
8518
|
-
.newCloud-notification-container.bottom-right .newCloud-notification-wrapper.fade-in {
|
|
8519
|
-
right: 0;
|
|
8520
|
-
}
|
|
8521
|
-
.newCloud-notification-container.top {
|
|
8522
|
-
top: 20px;
|
|
8523
|
-
left: calc(50% - 360px / 2);
|
|
8524
|
-
}
|
|
8525
|
-
.newCloud-notification-container.top .newCloud-notification-wrapper {
|
|
8526
|
-
top: -114px;
|
|
8527
|
-
}
|
|
8528
|
-
.newCloud-notification-container.top .newCloud-notification-wrapper.fade-in {
|
|
8529
|
-
top: 0!important;
|
|
8530
|
-
}
|
|
8531
|
-
.newCloud-notification-container.bottom {
|
|
8532
|
-
bottom: 0;
|
|
8533
|
-
left: calc(50% - 360px / 2);
|
|
8534
|
-
}
|
|
8535
|
-
.newCloud-notification-container.bottom .newCloud-notification-wrapper {
|
|
8536
|
-
bottom: -114px;
|
|
8537
|
-
}
|
|
8538
|
-
.newCloud-notification-container.bottom .newCloud-notification-wrapper.fade-in {
|
|
8539
|
-
bottom: 0!important;
|
|
8540
|
-
}
|
|
8541
|
-
|
|
8542
8405
|
/* 不要在此引入normalize.less及其他放置公用无需编译的css */
|
|
8543
8406
|
/* 不要在此引入animation.less及其他放置公用无需编译的css */
|
|
8544
8407
|
.newCloud-breadcrumbs {
|
|
@@ -18633,9 +18496,6 @@ body {
|
|
|
18633
18496
|
-webkit-line-clamp: 2;
|
|
18634
18497
|
-webkit-box-orient: vertical;
|
|
18635
18498
|
}
|
|
18636
|
-
.newCloud-goods-selector-pro-table-container .newCloud-table-box:not(.newCloud-table-empty) {
|
|
18637
|
-
height: calc(100% - 44px);
|
|
18638
|
-
}
|
|
18639
18499
|
.newCloud-table td .newCloud-checkbox-disabled .newCloud-checkbox-inner {
|
|
18640
18500
|
border-color: #d9d9d9 !important;
|
|
18641
18501
|
}
|