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.
package/dist/rsuite.css CHANGED
@@ -14087,6 +14087,10 @@ textarea.rs-inline-edit-sm .rs-plaintext {
14087
14087
  color: #8f1300;
14088
14088
  color: var(--rs-red-900);
14089
14089
  }
14090
+ .rs-stat-trend-equal {
14091
+ color: #004299;
14092
+ color: var(--rs-primary-900);
14093
+ }
14090
14094
  .rs-stat-trend-default {
14091
14095
  padding: 2px 6px;
14092
14096
  }
@@ -14098,6 +14102,10 @@ textarea.rs-inline-edit-sm .rs-plaintext {
14098
14102
  background-color: #fccfcf;
14099
14103
  background-color: var(--rs-red-100);
14100
14104
  }
14105
+ .rs-stat-trend-default.rs-stat-trend-equal {
14106
+ background-color: #cce9ff;
14107
+ background-color: var(--rs-primary-100);
14108
+ }
14101
14109
  .rs-stat-trend-subtle.rs-stat-trend-up {
14102
14110
  color: #37ab3c;
14103
14111
  color: var(--rs-green-600);
@@ -14106,6 +14114,10 @@ textarea.rs-inline-edit-sm .rs-plaintext {
14106
14114
  color: #eb3626;
14107
14115
  color: var(--rs-red-600);
14108
14116
  }
14117
+ .rs-stat-trend-subtle.rs-stat-trend-equal {
14118
+ color: #2589f5;
14119
+ color: var(--rs-primary-600);
14120
+ }
14109
14121
  .rs-stat-help-text {
14110
14122
  color: #717273;
14111
14123
  color: var(--rs-text-secondary);
@@ -14538,6 +14550,12 @@ textarea.rs-inline-edit-sm .rs-plaintext {
14538
14550
  .rs-table-cell-header .rs-table-cell-content {
14539
14551
  padding: 10px 10px;
14540
14552
  line-height: 1.66666667;
14553
+ display: -webkit-box;
14554
+ display: -ms-flexbox;
14555
+ display: flex;
14556
+ -webkit-box-align: center;
14557
+ -ms-flex-align: center;
14558
+ align-items: center;
14541
14559
  }
14542
14560
  .rs-table-cell-header-sort-wrapper {
14543
14561
  cursor: pointer;
@@ -14549,6 +14567,13 @@ textarea.rs-inline-edit-sm .rs-plaintext {
14549
14567
  color: var(--rs-table-sort);
14550
14568
  font-size: 16px;
14551
14569
  line-height: 1.66666667;
14570
+ display: -webkit-box;
14571
+ display: -ms-flexbox;
14572
+ display: flex;
14573
+ }
14574
+ .rs-table-cell-header-icon-sort:where([data-sort='asc']) {
14575
+ -webkit-transform: rotate(180deg);
14576
+ transform: rotate(180deg);
14552
14577
  }
14553
14578
  .rs-table-cell-rowspan {
14554
14579
  border-bottom: 1px solid #f2f2f5 !important;
@@ -14701,6 +14726,14 @@ textarea.rs-inline-edit-sm .rs-plaintext {
14701
14726
  cursor: pointer;
14702
14727
  outline: none;
14703
14728
  font-size: 16px;
14729
+ -webkit-transition: -webkit-transform 0.3s ease;
14730
+ transition: -webkit-transform 0.3s ease;
14731
+ transition: transform 0.3s ease;
14732
+ transition: transform 0.3s ease, -webkit-transform 0.3s ease;
14733
+ }
14734
+ .rs-table-cell-expand-icon:where([data-expanded='true']) {
14735
+ -webkit-transform: rotate(90deg);
14736
+ transform: rotate(90deg);
14704
14737
  }
14705
14738
  .rs-table-scrollbar {
14706
14739
  background-color: #e5e5ea;