cloud-business 0.1.114-3 → 0.1.114-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 +199 -5
- package/cloud-business.js +1897 -1531
- package/cloud-business.min.css +1 -1
- package/cloud-business.min.js +30 -21
- package/package.json +1 -1
package/cloud-business.css
CHANGED
|
@@ -4450,7 +4450,7 @@ input::-webkit-search-cancel-button {
|
|
|
4450
4450
|
.newCloud-input-addon {
|
|
4451
4451
|
position: relative;
|
|
4452
4452
|
padding: 0 8px;
|
|
4453
|
-
color:
|
|
4453
|
+
color: rgba(0, 0, 0, 0.65);
|
|
4454
4454
|
font-size: 14px;
|
|
4455
4455
|
line-height: 1;
|
|
4456
4456
|
text-align: center;
|
|
@@ -5066,8 +5066,7 @@ input::-webkit-search-cancel-button {
|
|
|
5066
5066
|
}
|
|
5067
5067
|
.newCloud-pagination ul {
|
|
5068
5068
|
display: flex;
|
|
5069
|
-
-
|
|
5070
|
-
padding-inline-start: 0;
|
|
5069
|
+
padding-inline-start: 0;
|
|
5071
5070
|
}
|
|
5072
5071
|
.newCloud-pagination ul li {
|
|
5073
5072
|
min-width: 32px;
|
|
@@ -7693,6 +7692,46 @@ input::-webkit-search-cancel-button {
|
|
|
7693
7692
|
.newCloud-input-number .newCloud-input-number-input::placeholder {
|
|
7694
7693
|
color: rgba(0, 0, 0, 0.25);
|
|
7695
7694
|
}
|
|
7695
|
+
.newCloud-input-number-add-on-container {
|
|
7696
|
+
display: flex;
|
|
7697
|
+
align-items: center;
|
|
7698
|
+
}
|
|
7699
|
+
.newCloud-input-number-add-on-container .add-on {
|
|
7700
|
+
padding: 0 12px;
|
|
7701
|
+
color: rgba(0, 0, 0, 0.65);
|
|
7702
|
+
font-size: 14px;
|
|
7703
|
+
text-align: center;
|
|
7704
|
+
background-color: #fafafa;
|
|
7705
|
+
border: 1px solid #e8e8e8;
|
|
7706
|
+
height: 32px;
|
|
7707
|
+
line-height: 30px;
|
|
7708
|
+
box-sizing: border-box;
|
|
7709
|
+
}
|
|
7710
|
+
.newCloud-input-number-add-on-container .newCloud-input-number {
|
|
7711
|
+
width: 100%;
|
|
7712
|
+
}
|
|
7713
|
+
.newCloud-input-number-add-on-container.newCloud-input-number-add-before .add-on {
|
|
7714
|
+
border-right: none;
|
|
7715
|
+
border-radius: 2px 0 0 2px;
|
|
7716
|
+
}
|
|
7717
|
+
.newCloud-input-number-add-on-container.newCloud-input-number-add-before .newCloud-input-number {
|
|
7718
|
+
border-radius: 0 2px 2px 0;
|
|
7719
|
+
}
|
|
7720
|
+
.newCloud-input-number-add-on-container.newCloud-input-number-add-after .add-on {
|
|
7721
|
+
border-left: none;
|
|
7722
|
+
border-radius: 0 2px 2px 0;
|
|
7723
|
+
}
|
|
7724
|
+
.newCloud-input-number-add-on-container.newCloud-input-number-add-after .newCloud-input-number {
|
|
7725
|
+
border-radius: 2px 0 0 2px;
|
|
7726
|
+
}
|
|
7727
|
+
.newCloud-input-number-add-on-container.small .add-on {
|
|
7728
|
+
height: 28px;
|
|
7729
|
+
line-height: 26px;
|
|
7730
|
+
}
|
|
7731
|
+
.newCloud-input-number-add-on-container.large .add-on {
|
|
7732
|
+
height: 36px;
|
|
7733
|
+
line-height: 34px;
|
|
7734
|
+
}
|
|
7696
7735
|
|
|
7697
7736
|
/* 不要在此引入normalize.less及其他放置公用无需编译的css */
|
|
7698
7737
|
/* 不要在此引入animation.less及其他放置公用无需编译的css */
|
|
@@ -8400,6 +8439,163 @@ input::-webkit-search-cancel-button {
|
|
|
8400
8439
|
pointer-events: none;
|
|
8401
8440
|
}
|
|
8402
8441
|
|
|
8442
|
+
/* 不要在此引入normalize.less及其他放置公用无需编译的css */
|
|
8443
|
+
/* 不要在此引入animation.less及其他放置公用无需编译的css */
|
|
8444
|
+
.newCloud-notification {
|
|
8445
|
+
display: flex;
|
|
8446
|
+
align-items: baseline;
|
|
8447
|
+
gap: 9px;
|
|
8448
|
+
padding: 20px;
|
|
8449
|
+
background: #FFFFFF;
|
|
8450
|
+
box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1), 0 0 1px 0 rgba(0, 0, 0, 0.3);
|
|
8451
|
+
border-radius: 12px;
|
|
8452
|
+
}
|
|
8453
|
+
.newCloud-notification.small {
|
|
8454
|
+
border-radius: 3px;
|
|
8455
|
+
}
|
|
8456
|
+
.newCloud-notification.middle {
|
|
8457
|
+
border-radius: 6px;
|
|
8458
|
+
}
|
|
8459
|
+
.newCloud-notification.light-theme {
|
|
8460
|
+
color: white;
|
|
8461
|
+
}
|
|
8462
|
+
.newCloud-notification.light-theme .info-icon {
|
|
8463
|
+
color: white!important;
|
|
8464
|
+
}
|
|
8465
|
+
.newCloud-notification.light-theme header,
|
|
8466
|
+
.newCloud-notification.light-theme main,
|
|
8467
|
+
.newCloud-notification.light-theme header i.close-icon {
|
|
8468
|
+
color: white;
|
|
8469
|
+
}
|
|
8470
|
+
.newCloud-notification-content {
|
|
8471
|
+
flex: 1;
|
|
8472
|
+
}
|
|
8473
|
+
.newCloud-notification .info-icon {
|
|
8474
|
+
position: relative;
|
|
8475
|
+
top: 2px;
|
|
8476
|
+
font-size: 20px;
|
|
8477
|
+
}
|
|
8478
|
+
.newCloud-notification .info-icon.info {
|
|
8479
|
+
color: #496BF5;
|
|
8480
|
+
}
|
|
8481
|
+
.newCloud-notification .info-icon.success {
|
|
8482
|
+
color: #21BA45;
|
|
8483
|
+
}
|
|
8484
|
+
.newCloud-notification .info-icon.fail {
|
|
8485
|
+
color: #E74949;
|
|
8486
|
+
}
|
|
8487
|
+
.newCloud-notification .info-icon.warn {
|
|
8488
|
+
color: #FD830A;
|
|
8489
|
+
}
|
|
8490
|
+
.newCloud-notification header {
|
|
8491
|
+
display: flex;
|
|
8492
|
+
align-items: center;
|
|
8493
|
+
justify-content: space-between;
|
|
8494
|
+
height: 24px;
|
|
8495
|
+
line-height: 24px;
|
|
8496
|
+
font-size: 16px;
|
|
8497
|
+
font-weight: 500;
|
|
8498
|
+
color: rgba(0, 0, 0, 0.85);
|
|
8499
|
+
margin-bottom: 8px;
|
|
8500
|
+
}
|
|
8501
|
+
.newCloud-notification header i.close-icon {
|
|
8502
|
+
font-size: 16px;
|
|
8503
|
+
color: #D8D8D8;
|
|
8504
|
+
cursor: pointer;
|
|
8505
|
+
}
|
|
8506
|
+
.newCloud-notification main {
|
|
8507
|
+
line-height: 20px;
|
|
8508
|
+
font-size: 14px;
|
|
8509
|
+
font-weight: 400;
|
|
8510
|
+
color: rgba(0, 0, 0, 0.65);
|
|
8511
|
+
overflow: hidden;
|
|
8512
|
+
text-overflow: ellipsis;
|
|
8513
|
+
display: -webkit-box;
|
|
8514
|
+
-webkit-line-clamp: 3;
|
|
8515
|
+
-webkit-box-orient: vertical;
|
|
8516
|
+
}
|
|
8517
|
+
.newCloud-notification footer {
|
|
8518
|
+
display: flex;
|
|
8519
|
+
align-items: center;
|
|
8520
|
+
flex-direction: row-reverse;
|
|
8521
|
+
gap: 16px;
|
|
8522
|
+
margin-top: 20px;
|
|
8523
|
+
}
|
|
8524
|
+
|
|
8525
|
+
/* 不要在此引入normalize.less及其他放置公用无需编译的css */
|
|
8526
|
+
/* 不要在此引入animation.less及其他放置公用无需编译的css */
|
|
8527
|
+
.newCloud-notification-container {
|
|
8528
|
+
z-index: 1100;
|
|
8529
|
+
position: fixed;
|
|
8530
|
+
}
|
|
8531
|
+
.newCloud-notification-container .newCloud-notification-wrapper {
|
|
8532
|
+
position: absolute;
|
|
8533
|
+
width: 360px;
|
|
8534
|
+
transition: all 300ms;
|
|
8535
|
+
margin-bottom: 20px;
|
|
8536
|
+
}
|
|
8537
|
+
.newCloud-notification-container .newCloud-notification-wrapper.fade-out {
|
|
8538
|
+
opacity: 0;
|
|
8539
|
+
}
|
|
8540
|
+
.newCloud-notification-container.top-left {
|
|
8541
|
+
top: 20px;
|
|
8542
|
+
}
|
|
8543
|
+
.newCloud-notification-container.top-left .newCloud-notification-wrapper {
|
|
8544
|
+
left: -360px;
|
|
8545
|
+
}
|
|
8546
|
+
.newCloud-notification-container.top-left .newCloud-notification-wrapper.fade-in {
|
|
8547
|
+
left: 20px;
|
|
8548
|
+
}
|
|
8549
|
+
.newCloud-notification-container.top-right {
|
|
8550
|
+
top: 20px;
|
|
8551
|
+
right: 0;
|
|
8552
|
+
}
|
|
8553
|
+
.newCloud-notification-container.top-right .newCloud-notification-wrapper {
|
|
8554
|
+
right: -360px;
|
|
8555
|
+
}
|
|
8556
|
+
.newCloud-notification-container.top-right .newCloud-notification-wrapper.fade-in {
|
|
8557
|
+
right: 20px;
|
|
8558
|
+
}
|
|
8559
|
+
.newCloud-notification-container.bottom-left {
|
|
8560
|
+
bottom: 114px;
|
|
8561
|
+
}
|
|
8562
|
+
.newCloud-notification-container.bottom-left .newCloud-notification-wrapper {
|
|
8563
|
+
left: -360px;
|
|
8564
|
+
}
|
|
8565
|
+
.newCloud-notification-container.bottom-left .newCloud-notification-wrapper.fade-in {
|
|
8566
|
+
left: 20px;
|
|
8567
|
+
}
|
|
8568
|
+
.newCloud-notification-container.bottom-right {
|
|
8569
|
+
bottom: 114px;
|
|
8570
|
+
right: 20px;
|
|
8571
|
+
}
|
|
8572
|
+
.newCloud-notification-container.bottom-right .newCloud-notification-wrapper {
|
|
8573
|
+
right: -360px;
|
|
8574
|
+
}
|
|
8575
|
+
.newCloud-notification-container.bottom-right .newCloud-notification-wrapper.fade-in {
|
|
8576
|
+
right: 0;
|
|
8577
|
+
}
|
|
8578
|
+
.newCloud-notification-container.top {
|
|
8579
|
+
top: 20px;
|
|
8580
|
+
left: calc(50% - 360px / 2);
|
|
8581
|
+
}
|
|
8582
|
+
.newCloud-notification-container.top .newCloud-notification-wrapper {
|
|
8583
|
+
top: -114px;
|
|
8584
|
+
}
|
|
8585
|
+
.newCloud-notification-container.top .newCloud-notification-wrapper.fade-in {
|
|
8586
|
+
top: 0!important;
|
|
8587
|
+
}
|
|
8588
|
+
.newCloud-notification-container.bottom {
|
|
8589
|
+
bottom: 0;
|
|
8590
|
+
left: calc(50% - 360px / 2);
|
|
8591
|
+
}
|
|
8592
|
+
.newCloud-notification-container.bottom .newCloud-notification-wrapper {
|
|
8593
|
+
bottom: -114px;
|
|
8594
|
+
}
|
|
8595
|
+
.newCloud-notification-container.bottom .newCloud-notification-wrapper.fade-in {
|
|
8596
|
+
bottom: 0!important;
|
|
8597
|
+
}
|
|
8598
|
+
|
|
8403
8599
|
/* 不要在此引入normalize.less及其他放置公用无需编译的css */
|
|
8404
8600
|
/* 不要在此引入animation.less及其他放置公用无需编译的css */
|
|
8405
8601
|
.newCloud-breadcrumbs {
|
|
@@ -10769,7 +10965,6 @@ body {
|
|
|
10769
10965
|
}
|
|
10770
10966
|
.cloud-goods-selector-pro .goods-table-wrap .cloud-table-lite-warp {
|
|
10771
10967
|
flex-grow: 1;
|
|
10772
|
-
scrollbar-width: thin;
|
|
10773
10968
|
}
|
|
10774
10969
|
.cloud-goods-selector-pro .goods-table-wrap .cloud-table-lite-warp .cloud-table-lite-main .cloud-checkbox-inner:after {
|
|
10775
10970
|
box-sizing: content-box !important;
|
|
@@ -17988,7 +18183,6 @@ body {
|
|
|
17988
18183
|
}
|
|
17989
18184
|
.cloud-goods-selector-pro-new .newCloud-goods-table-wrap .newCloud-table-lite-warp {
|
|
17990
18185
|
flex-grow: 1;
|
|
17991
|
-
scrollbar-width: thin;
|
|
17992
18186
|
}
|
|
17993
18187
|
.cloud-goods-selector-pro-new .newCloud-goods-table-wrap .newCloud-table-lite-warp .newCloud-table-lite-main .cloud-checkbox-inner:after {
|
|
17994
18188
|
box-sizing: content-box !important;
|