rsuite 5.83.1 → 5.83.3

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.
@@ -13827,6 +13827,10 @@ textarea.rs-inline-edit-sm .rs-plaintext {
13827
13827
  color: #8f1300;
13828
13828
  color: var(--rs-red-900);
13829
13829
  }
13830
+ .rs-stat-trend-equal {
13831
+ color: #004299;
13832
+ color: var(--rs-primary-900);
13833
+ }
13830
13834
  .rs-stat-trend-default {
13831
13835
  padding: 2px 6px;
13832
13836
  }
@@ -13838,6 +13842,10 @@ textarea.rs-inline-edit-sm .rs-plaintext {
13838
13842
  background-color: #fccfcf;
13839
13843
  background-color: var(--rs-red-100);
13840
13844
  }
13845
+ .rs-stat-trend-default.rs-stat-trend-equal {
13846
+ background-color: #cce9ff;
13847
+ background-color: var(--rs-primary-100);
13848
+ }
13841
13849
  .rs-stat-trend-subtle.rs-stat-trend-up {
13842
13850
  color: #37ab3c;
13843
13851
  color: var(--rs-green-600);
@@ -13846,6 +13854,10 @@ textarea.rs-inline-edit-sm .rs-plaintext {
13846
13854
  color: #eb3626;
13847
13855
  color: var(--rs-red-600);
13848
13856
  }
13857
+ .rs-stat-trend-subtle.rs-stat-trend-equal {
13858
+ color: #2589f5;
13859
+ color: var(--rs-primary-600);
13860
+ }
13849
13861
  .rs-stat-help-text {
13850
13862
  color: #717273;
13851
13863
  color: var(--rs-text-secondary);
@@ -14278,6 +14290,12 @@ textarea.rs-inline-edit-sm .rs-plaintext {
14278
14290
  .rs-table-cell-header .rs-table-cell-content {
14279
14291
  padding: 10px 10px;
14280
14292
  line-height: 1.66666667;
14293
+ display: -webkit-box;
14294
+ display: -ms-flexbox;
14295
+ display: flex;
14296
+ -webkit-box-align: center;
14297
+ -ms-flex-align: center;
14298
+ align-items: center;
14281
14299
  }
14282
14300
  .rs-table-cell-header-sort-wrapper {
14283
14301
  cursor: pointer;
@@ -14289,6 +14307,13 @@ textarea.rs-inline-edit-sm .rs-plaintext {
14289
14307
  color: var(--rs-table-sort);
14290
14308
  font-size: 16px;
14291
14309
  line-height: 1.66666667;
14310
+ display: -webkit-box;
14311
+ display: -ms-flexbox;
14312
+ display: flex;
14313
+ }
14314
+ .rs-table-cell-header-icon-sort:where([data-sort='asc']) {
14315
+ -webkit-transform: rotate(180deg);
14316
+ transform: rotate(180deg);
14292
14317
  }
14293
14318
  .rs-table-cell-rowspan {
14294
14319
  border-bottom: 1px solid #f2f2f5 !important;
@@ -14441,6 +14466,14 @@ textarea.rs-inline-edit-sm .rs-plaintext {
14441
14466
  cursor: pointer;
14442
14467
  outline: none;
14443
14468
  font-size: 16px;
14469
+ -webkit-transition: -webkit-transform 0.3s ease;
14470
+ transition: -webkit-transform 0.3s ease;
14471
+ transition: transform 0.3s ease;
14472
+ transition: transform 0.3s ease, -webkit-transform 0.3s ease;
14473
+ }
14474
+ .rs-table-cell-expand-icon:where([data-expanded='true']) {
14475
+ -webkit-transform: rotate(90deg);
14476
+ transform: rotate(90deg);
14444
14477
  }
14445
14478
  .rs-table-scrollbar {
14446
14479
  background-color: #e5e5ea;