cloud-business 0.1.99-2 → 0.1.99-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.
@@ -8344,6 +8344,163 @@ input::-webkit-search-cancel-button {
8344
8344
  pointer-events: none;
8345
8345
  }
8346
8346
 
8347
+ /* 不要在此引入normalize.less及其他放置公用无需编译的css */
8348
+ /* 不要在此引入animation.less及其他放置公用无需编译的css */
8349
+ .newCloud-notification {
8350
+ display: flex;
8351
+ align-items: baseline;
8352
+ gap: 9px;
8353
+ padding: 20px;
8354
+ background: #FFFFFF;
8355
+ box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1), 0 0 1px 0 rgba(0, 0, 0, 0.3);
8356
+ border-radius: 12px;
8357
+ }
8358
+ .newCloud-notification.small {
8359
+ border-radius: 3px;
8360
+ }
8361
+ .newCloud-notification.middle {
8362
+ border-radius: 6px;
8363
+ }
8364
+ .newCloud-notification.light-theme {
8365
+ color: white;
8366
+ }
8367
+ .newCloud-notification.light-theme .info-icon {
8368
+ color: white!important;
8369
+ }
8370
+ .newCloud-notification.light-theme header,
8371
+ .newCloud-notification.light-theme main,
8372
+ .newCloud-notification.light-theme header i.close-icon {
8373
+ color: white;
8374
+ }
8375
+ .newCloud-notification-content {
8376
+ flex: 1;
8377
+ }
8378
+ .newCloud-notification .info-icon {
8379
+ position: relative;
8380
+ top: 2px;
8381
+ font-size: 20px;
8382
+ }
8383
+ .newCloud-notification .info-icon.info {
8384
+ color: #496BF5;
8385
+ }
8386
+ .newCloud-notification .info-icon.success {
8387
+ color: #21BA45;
8388
+ }
8389
+ .newCloud-notification .info-icon.fail {
8390
+ color: #E74949;
8391
+ }
8392
+ .newCloud-notification .info-icon.warn {
8393
+ color: #FD830A;
8394
+ }
8395
+ .newCloud-notification header {
8396
+ display: flex;
8397
+ align-items: center;
8398
+ justify-content: space-between;
8399
+ height: 24px;
8400
+ line-height: 24px;
8401
+ font-size: 16px;
8402
+ font-weight: 500;
8403
+ color: rgba(0, 0, 0, 0.85);
8404
+ margin-bottom: 8px;
8405
+ }
8406
+ .newCloud-notification header i.close-icon {
8407
+ font-size: 16px;
8408
+ color: #D8D8D8;
8409
+ cursor: pointer;
8410
+ }
8411
+ .newCloud-notification main {
8412
+ line-height: 20px;
8413
+ font-size: 14px;
8414
+ font-weight: 400;
8415
+ color: rgba(0, 0, 0, 0.65);
8416
+ overflow: hidden;
8417
+ text-overflow: ellipsis;
8418
+ display: -webkit-box;
8419
+ -webkit-line-clamp: 3;
8420
+ -webkit-box-orient: vertical;
8421
+ }
8422
+ .newCloud-notification footer {
8423
+ display: flex;
8424
+ align-items: center;
8425
+ flex-direction: row-reverse;
8426
+ gap: 16px;
8427
+ margin-top: 20px;
8428
+ }
8429
+
8430
+ /* 不要在此引入normalize.less及其他放置公用无需编译的css */
8431
+ /* 不要在此引入animation.less及其他放置公用无需编译的css */
8432
+ .newCloud-notification-container {
8433
+ z-index: 1100;
8434
+ position: fixed;
8435
+ }
8436
+ .newCloud-notification-container .newCloud-notification-wrapper {
8437
+ position: absolute;
8438
+ width: 360px;
8439
+ transition: all 300ms;
8440
+ margin-bottom: 20px;
8441
+ }
8442
+ .newCloud-notification-container .newCloud-notification-wrapper.fade-out {
8443
+ opacity: 0;
8444
+ }
8445
+ .newCloud-notification-container.top-left {
8446
+ top: 20px;
8447
+ }
8448
+ .newCloud-notification-container.top-left .newCloud-notification-wrapper {
8449
+ left: -360px;
8450
+ }
8451
+ .newCloud-notification-container.top-left .newCloud-notification-wrapper.fade-in {
8452
+ left: 20px;
8453
+ }
8454
+ .newCloud-notification-container.top-right {
8455
+ top: 20px;
8456
+ right: 0;
8457
+ }
8458
+ .newCloud-notification-container.top-right .newCloud-notification-wrapper {
8459
+ right: -360px;
8460
+ }
8461
+ .newCloud-notification-container.top-right .newCloud-notification-wrapper.fade-in {
8462
+ right: 20px;
8463
+ }
8464
+ .newCloud-notification-container.bottom-left {
8465
+ bottom: 114px;
8466
+ }
8467
+ .newCloud-notification-container.bottom-left .newCloud-notification-wrapper {
8468
+ left: -360px;
8469
+ }
8470
+ .newCloud-notification-container.bottom-left .newCloud-notification-wrapper.fade-in {
8471
+ left: 20px;
8472
+ }
8473
+ .newCloud-notification-container.bottom-right {
8474
+ bottom: 114px;
8475
+ right: 20px;
8476
+ }
8477
+ .newCloud-notification-container.bottom-right .newCloud-notification-wrapper {
8478
+ right: -360px;
8479
+ }
8480
+ .newCloud-notification-container.bottom-right .newCloud-notification-wrapper.fade-in {
8481
+ right: 0;
8482
+ }
8483
+ .newCloud-notification-container.top {
8484
+ top: 20px;
8485
+ left: calc(50% - 360px / 2);
8486
+ }
8487
+ .newCloud-notification-container.top .newCloud-notification-wrapper {
8488
+ top: -114px;
8489
+ }
8490
+ .newCloud-notification-container.top .newCloud-notification-wrapper.fade-in {
8491
+ top: 0!important;
8492
+ }
8493
+ .newCloud-notification-container.bottom {
8494
+ bottom: 0;
8495
+ left: calc(50% - 360px / 2);
8496
+ }
8497
+ .newCloud-notification-container.bottom .newCloud-notification-wrapper {
8498
+ bottom: -114px;
8499
+ }
8500
+ .newCloud-notification-container.bottom .newCloud-notification-wrapper.fade-in {
8501
+ bottom: 0!important;
8502
+ }
8503
+
8347
8504
  /* 不要在此引入normalize.less及其他放置公用无需编译的css */
8348
8505
  /* 不要在此引入animation.less及其他放置公用无需编译的css */
8349
8506
  .newCloud-breadcrumbs {