@clayui/css 3.147.0 → 3.149.1

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.
Files changed (40) hide show
  1. package/lib/css/atlas.css +73 -294
  2. package/lib/css/atlas.css.map +1 -1
  3. package/lib/css/base.css +72 -276
  4. package/lib/css/base.css.map +1 -1
  5. package/lib/css/cadmin.css +37 -276
  6. package/lib/css/cadmin.css.map +1 -1
  7. package/lib/images/icons/icons.svg +1 -1
  8. package/package.json +2 -2
  9. package/src/scss/_license-text.scss +1 -1
  10. package/src/scss/atlas/variables/_globals.scss +1 -0
  11. package/src/scss/atlas/variables/_navs.scss +1 -1
  12. package/src/scss/atlas/variables/_pagination.scss +5 -1
  13. package/src/scss/cadmin/components/_form-validation.scss +4 -0
  14. package/src/scss/cadmin/components/_forms.scss +19 -0
  15. package/src/scss/cadmin/components/_pagination.scss +8 -6
  16. package/src/scss/cadmin/components/_slideout.scss +0 -12
  17. package/src/scss/cadmin/components/_utilities.scss +4 -0
  18. package/src/scss/cadmin/variables/_forms.scss +22 -0
  19. package/src/scss/cadmin/variables/_globals.scss +6 -5
  20. package/src/scss/cadmin/variables/_navs.scss +1 -0
  21. package/src/scss/cadmin/variables/_pagination.scss +2 -0
  22. package/src/scss/cadmin/variables/_sidebar.scss +2 -2
  23. package/src/scss/cadmin/variables/_slideout.scss +96 -30
  24. package/src/scss/cadmin/variables/_utilities.scss +11 -0
  25. package/src/scss/components/_form-validation.scss +4 -0
  26. package/src/scss/components/_forms.scss +16 -0
  27. package/src/scss/components/_pagination.scss +8 -6
  28. package/src/scss/components/_slideout.scss +3 -11
  29. package/src/scss/components/_utilities.scss +4 -0
  30. package/src/scss/functions/_global-functions.scss +5 -1
  31. package/src/scss/mixins/_globals.scss +8 -0
  32. package/src/scss/mixins/_sidebar.scss +67 -0
  33. package/src/scss/mixins/_slideout.scss +16 -0
  34. package/src/scss/variables/_drilldown.scss +1 -1
  35. package/src/scss/variables/_forms.scss +22 -0
  36. package/src/scss/variables/_globals.scss +6 -5
  37. package/src/scss/variables/_navs.scss +1 -0
  38. package/src/scss/variables/_pagination.scss +2 -0
  39. package/src/scss/variables/_slideout.scss +96 -30
  40. package/src/scss/variables/_utilities.scss +11 -0
@@ -1,6 +1,6 @@
1
1
  @charset "UTF-8";
2
2
  /**
3
- * Clay 3.147.0
3
+ * Clay 3.149.1
4
4
  *
5
5
  * SPDX-FileCopyrightText: © 2020 Liferay, Inc. <https://liferay.com>
6
6
  * SPDX-FileCopyrightText: © 2020 Contributors to the project Clay <https://github.com/liferay/clay/graphs/contributors>
@@ -16,7 +16,7 @@
16
16
  * SPDX-License-Identifier: LicenseRef-MIT-Bootstrap
17
17
  */
18
18
  /**
19
- * Clay 3.147.0
19
+ * Clay 3.149.1
20
20
  *
21
21
  * SPDX-FileCopyrightText: © 2020 Liferay, Inc. <https://liferay.com>
22
22
  * SPDX-FileCopyrightText: © 2020 Contributors to the project Clay <https://github.com/liferay/clay/graphs/contributors>
@@ -7064,10 +7064,21 @@ html:not(#__):not(#___) .cadmin label {
7064
7064
  html:not(#__):not(#___) .cadmin label[for] {
7065
7065
  cursor: pointer;
7066
7066
  }
7067
+ html:not(#__):not(#___) .cadmin label + .form-feedback-group {
7068
+ margin-bottom: 12px;
7069
+ }
7067
7070
  html:not(#__):not(#___) .cadmin label + .form-text {
7068
7071
  margin-bottom: 4px;
7069
7072
  margin-top: 0;
7070
7073
  }
7074
+ html:not(#__):not(#___) .cadmin label .form-help-text {
7075
+ color: #9b92a5;
7076
+ display: inline;
7077
+ font-size: 14px;
7078
+ font-weight: 400;
7079
+ margin-left: 8px;
7080
+ margin-top: 0;
7081
+ }
7071
7082
  html:not(#__):not(#___) .cadmin label .reference-mark {
7072
7083
  color: #b95000;
7073
7084
  font-size: 6px;
@@ -9967,6 +9978,12 @@ html:not(#__):not(#___) .cadmin .form-text.blockquote::before {
9967
9978
  top: 0;
9968
9979
  width: 2px;
9969
9980
  }
9981
+ html:not(#__):not(#___) .cadmin .form-help-text {
9982
+ color: #6b6c7e;
9983
+ display: block;
9984
+ font-size: 14px;
9985
+ margin-top: 4px;
9986
+ }
9970
9987
  html:not(#__):not(#___) .cadmin .has-error .custom-control-label,
9971
9988
  html:not(#__):not(#___) .cadmin .has-error .form-check-label {
9972
9989
  color: #da1414;
@@ -12346,6 +12363,7 @@ html:not(#__):not(#___) .cadmin .nav-tabs .nav-link {
12346
12363
  border-width: 1px;
12347
12364
  border-radius: 4px 4px 0 0;
12348
12365
  color: #6b6c7e;
12366
+ font-size: inherit;
12349
12367
  font-weight: 600;
12350
12368
  padding-bottom: 4.5px;
12351
12369
  padding-top: 4.5px;
@@ -15140,106 +15158,6 @@ html:not(#__):not(#___) .cadmin .pagination-results {
15140
15158
  overflow-wrap: break-word;
15141
15159
  word-wrap: break-word;
15142
15160
  }
15143
- html:not(#__):not(#___) .cadmin .pagination-sm .page-link {
15144
- font-size: 12px;
15145
- height: 24px;
15146
- line-height: 1;
15147
- padding-bottom: 0;
15148
- padding-right: 8px;
15149
- padding-left: 8px;
15150
- padding-top: 0;
15151
- }
15152
- html:not(#__):not(#___) .cadmin .pagination-sm .page-link > .c-inner {
15153
- margin-bottom: 0;
15154
- margin-left: -8px;
15155
- margin-right: -8px;
15156
- margin-top: 0;
15157
- }
15158
- html:not(#__):not(#___) .cadmin .pagination-sm .page-item:first-child .page-link,
15159
- html:not(#__):not(#___) .cadmin .pagination-sm .page-link-first {
15160
- border-bottom-left-radius: 5px;
15161
- border-top-left-radius: 5px;
15162
- }
15163
- html:not(#__):not(#___) .cadmin .pagination-sm .page-item:last-child .page-link,
15164
- html:not(#__):not(#___) .cadmin .pagination-sm .page-link-last {
15165
- border-bottom-right-radius: 5px;
15166
- border-top-right-radius: 5px;
15167
- }
15168
- html:not(#__):not(#___) .cadmin .pagination-sm .pagination-items-per-page {
15169
- border-radius: 5px;
15170
- }
15171
- html:not(#__):not(#___) .cadmin .pagination-sm .pagination-items-per-page > a,
15172
- html:not(#__):not(#___) .cadmin .pagination-sm .pagination-items-per-page > button {
15173
- font-size: 12px;
15174
- height: 24px;
15175
- line-height: 1;
15176
- padding-bottom: 0;
15177
- padding-left: 10px;
15178
- padding-right: 10px;
15179
- padding-top: 0;
15180
- }
15181
- html:not(#__):not(#___) .cadmin .pagination-sm .pagination-items-per-page > a > .c-inner,
15182
- html:not(#__):not(#___) .cadmin .pagination-sm .pagination-items-per-page > button > .c-inner {
15183
- margin-bottom: 0;
15184
- margin-left: -10px;
15185
- margin-right: -10px;
15186
- margin-top: 0;
15187
- }
15188
- html:not(#__):not(#___) .cadmin .pagination-sm .pagination-items-per-page + .pagination-results {
15189
- font-size: 12px;
15190
- line-height: 1;
15191
- padding: 0 10px;
15192
- }
15193
- html:not(#__):not(#___) .cadmin .pagination-lg .page-link {
15194
- font-size: 18px;
15195
- height: 44px;
15196
- line-height: 1;
15197
- padding-bottom: 0;
15198
- padding-left: 16px;
15199
- padding-right: 16px;
15200
- padding-top: 0;
15201
- }
15202
- html:not(#__):not(#___) .cadmin .pagination-lg .page-link > .c-inner {
15203
- margin-bottom: 0;
15204
- margin-left: -16px;
15205
- margin-right: -16px;
15206
- margin-top: 0;
15207
- }
15208
- html:not(#__):not(#___) .cadmin .pagination-lg .page-item:first-child .page-link,
15209
- html:not(#__):not(#___) .cadmin .pagination-lg .page-link-first {
15210
- border-bottom-left-radius: 5px;
15211
- border-top-left-radius: 5px;
15212
- }
15213
- html:not(#__):not(#___) .cadmin .pagination-lg .page-item:last-child .page-link,
15214
- html:not(#__):not(#___) .cadmin .pagination-lg .page-link-last {
15215
- border-bottom-right-radius: 5px;
15216
- border-top-right-radius: 5px;
15217
- }
15218
- html:not(#__):not(#___) .cadmin .pagination-lg .pagination-items-per-page {
15219
- border-radius: 5px;
15220
- }
15221
- html:not(#__):not(#___) .cadmin .pagination-lg .pagination-items-per-page > a,
15222
- html:not(#__):not(#___) .cadmin .pagination-lg .pagination-items-per-page > button {
15223
- font-size: 18px;
15224
- height: 44px;
15225
- line-height: 1;
15226
- padding-bottom: 0;
15227
- padding-left: 10px;
15228
- padding-right: 10px;
15229
- padding-top: 0;
15230
- }
15231
- html:not(#__):not(#___) .cadmin .pagination-lg .pagination-items-per-page > a > .c-inner,
15232
- html:not(#__):not(#___) .cadmin .pagination-lg .pagination-items-per-page > button > .c-inner {
15233
- margin-bottom: 0;
15234
- margin-left: -10px;
15235
- margin-right: -10px;
15236
- margin-top: 0;
15237
- }
15238
- html:not(#__):not(#___) .cadmin .pagination-lg .pagination-items-per-page + .pagination-results {
15239
- font-size: 18px;
15240
- line-height: 1;
15241
- padding: 0 10px;
15242
- }
15243
15161
  html:not(#__):not(#___) .cadmin .panel {
15244
15162
  background-color: #fff;
15245
15163
  border-color: transparent;
@@ -16569,7 +16487,6 @@ html:not(#__):not(#___) .cadmin .sidebar-dd {
16569
16487
  }
16570
16488
  html:not(#__):not(#___) .cadmin .sidebar-sm {
16571
16489
  font-size: 0.875rem;
16572
- font-size: 0.875rem;
16573
16490
  }
16574
16491
  html:not(#__):not(#___) .cadmin .sidebar-light {
16575
16492
  background-color: #fff;
@@ -16577,11 +16494,6 @@ html:not(#__):not(#___) .cadmin .sidebar-light {
16577
16494
  border-left-width: 0;
16578
16495
  box-shadow: -4px 0 8px -4px rgba(0, 0, 0, 0.1);
16579
16496
  color: #272833;
16580
- background-color: #fff;
16581
- border-color: #e7e7ed;
16582
- border-left-width: 0;
16583
- box-shadow: -4px 0 8px -4px rgba(0, 0, 0, 0.1);
16584
- color: #272833;
16585
16497
  }
16586
16498
  html:not(#__):not(#___) .cadmin .sidenav-start .sidebar-light,
16587
16499
  html:not(#__):not(#___) .cadmin .sidenav-left .sidebar-light {
@@ -16589,11 +16501,11 @@ html:not(#__):not(#___) .cadmin .sidenav-left .sidebar-light {
16589
16501
  }
16590
16502
 
16591
16503
  html:not(#__):not(#___) .cadmin .sidebar-light .sidebar-header {
16592
- background-color: inherit;
16504
+ background-color: #fff;
16593
16505
  border: 0px solid #e7e7ed;
16594
16506
  }
16595
16507
  html:not(#__):not(#___) .cadmin .sidebar-light .sidebar-footer {
16596
- background-color: inherit;
16508
+ background-color: #fff;
16597
16509
  border: 0px solid #e7e7ed;
16598
16510
  }
16599
16511
  html:not(#__):not(#___) .cadmin .sidebar-light .sidebar-panel {
@@ -16651,56 +16563,9 @@ html:not(#__):not(#___) .cadmin .sidebar-light .component-navigation-bar .navbar
16651
16563
  html:not(#__):not(#___) .cadmin .sidebar-light .component-navigation-bar .navbar-overlay {
16652
16564
  background-color: #fff;
16653
16565
  }
16654
- html:not(#__):not(#___) .cadmin .sidebar-light .sidebar-header {
16655
- background-color: inherit;
16656
- border: 0px solid #e7e7ed;
16657
- }
16658
- html:not(#__):not(#___) .cadmin .sidebar-light .sidebar-footer {
16659
- background-color: inherit;
16660
- border: 0px solid #e7e7ed;
16661
- }
16662
- html:not(#__):not(#___) .cadmin .sidebar-light .sidenav-start {
16663
- box-shadow: 4px 0 8px -4px rgba(0, 0, 0, 0.1);
16664
- }
16665
- html:not(#__):not(#___) .cadmin .sidebar-light .sidebar-dt {
16666
- color: #6b6c7e;
16667
- }
16668
- html:not(#__):not(#___) .cadmin .sidebar-light .sidebar-dd .href {
16669
- color: #272833;
16670
- }
16671
- html:not(#__):not(#___) .cadmin .sidebar-light .sidebar-panel {
16672
- background-color: #f1f2f5;
16673
- }
16674
- html:not(#__):not(#___) .cadmin .sidebar-light .panel-unstyled .header .link:focus {
16675
- box-shadow: 0 0 0 4px #fff, 0 0 0 6px #5791ff;
16676
- }
16677
- html:not(#__):not(#___) .cadmin .sidebar-light .sidebar-list-group .component-title {
16678
- font-size: 16px;
16679
- }
16680
- html:not(#__):not(#___) .cadmin .sidebar-light .sidebar-list-group .component-title .href {
16681
- color: #272833;
16682
- }
16683
- html:not(#__):not(#___) .cadmin .sidebar-light .component-navigation-bar {
16684
- background-color: #fff;
16685
- border-color: #cdced9;
16686
- }
16687
- html:not(#__):not(#___) .cadmin .sidebar-light .component-navigation-bar .navbar-nav .nav-link {
16688
- color: #6b6c7e;
16689
- }
16690
- html:not(#__):not(#___) .cadmin .sidebar-light .component-navigation-bar .navbar-nav .nav-link:hover {
16691
- color: #6b6c7e;
16692
- }
16693
- html:not(#__):not(#___) .cadmin .sidebar-light .component-navigation-bar .navbar-nav .nav-link:active {
16694
- color: #272833;
16695
- }
16696
- html:not(#__):not(#___) .cadmin .sidebar-light .component-navigation-bar .navbar-nav .nav-link:disabled {
16697
- color: #a7a9bc;
16698
- }
16699
16566
  html:not(#__):not(#___) .cadmin .sidebar-dark {
16700
16567
  background-color: #272833;
16701
16568
  color: #fff;
16702
- background-color: #272833;
16703
- color: #fff;
16704
16569
  }
16705
16570
  html:not(#__):not(#___) .cadmin .sidebar-dark .close {
16706
16571
  color: #a7a9bc;
@@ -16762,61 +16627,9 @@ html:not(#__):not(#___) .cadmin .sidebar-dark .nav-nested .nav-link:disabled:act
16762
16627
  html:not(#__):not(#___) .cadmin .sidebar-dark .nav-nested .nav-link[aria-expanded=true], html:not(#__):not(#___) .cadmin .sidebar-dark .nav-nested .nav-link.show {
16763
16628
  color: #fff;
16764
16629
  }
16765
- html:not(#__):not(#___) .cadmin .sidebar-dark .sidebar-header .component-title {
16766
- color: inherit;
16767
- }
16768
- html:not(#__):not(#___) .cadmin .sidebar-dark .sidebar-header .component-title .href {
16769
- color: inherit;
16770
- }
16771
- html:not(#__):not(#___) .cadmin .sidebar-dark .sidebar-header .component-subtitle {
16772
- color: inherit;
16773
- }
16774
- html:not(#__):not(#___) .cadmin .sidebar-dark .sidebar-header .component-subtitle .href {
16775
- color: inherit;
16776
- }
16777
- html:not(#__):not(#___) .cadmin .sidebar-dark .close {
16778
- color: #a7a9bc;
16779
- }
16780
- html:not(#__):not(#___) .cadmin .sidebar-dark .close:hover {
16781
- color: #fff;
16782
- }
16783
- html:not(#__):not(#___) .cadmin .sidebar-dark .nav-nested .nav-link {
16784
- border-radius: 4px;
16785
- color: #a7a9bc;
16786
- transition: box-shadow 0.15s ease-in-out;
16787
- }
16788
- @media (prefers-reduced-motion: reduce) {
16789
- html:not(#__):not(#___) .cadmin .sidebar-dark .nav-nested .nav-link {
16790
- transition: none;
16791
- }
16792
- }
16793
- html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .sidebar-dark .nav-nested .nav-link {
16794
- transition: none;
16795
- }
16796
-
16797
- html:not(#__):not(#___) .cadmin .sidebar-dark .nav-nested .nav-link:hover {
16798
- color: #fff;
16799
- }
16800
- html:not(#__):not(#___) .cadmin .sidebar-dark .nav-nested .nav-link:focus {
16801
- box-shadow: 0 0 0 2px #fff, 0 0 0 4px #5791ff;
16802
- outline: 0;
16803
- }
16804
- html:not(#__):not(#___) .cadmin .sidebar-dark .nav-nested .nav-link:active {
16805
- color: #fff;
16806
- }
16807
- html:not(#__):not(#___) .cadmin .sidebar-dark .nav-nested .nav-link:disabled {
16808
- box-shadow: none;
16809
- color: #a7a9bc;
16810
- opacity: 0.65;
16811
- }
16812
- html:not(#__):not(#___) .cadmin .sidebar-dark .nav-nested .nav-link:disabled:active {
16813
- pointer-events: none;
16814
- }
16815
16630
  html:not(#__):not(#___) .cadmin .sidebar-dark-l2 {
16816
16631
  background-color: #393a4a;
16817
16632
  color: #fff;
16818
- background-color: #393a4a;
16819
- color: #fff;
16820
16633
  }
16821
16634
  html:not(#__):not(#___) .cadmin .sidebar-dark-l2 .close {
16822
16635
  color: #a7a9bc;
@@ -16878,56 +16691,6 @@ html:not(#__):not(#___) .cadmin .sidebar-dark-l2 .nav-nested .nav-link:disabled:
16878
16691
  html:not(#__):not(#___) .cadmin .sidebar-dark-l2 .nav-nested .nav-link[aria-expanded=true], html:not(#__):not(#___) .cadmin .sidebar-dark-l2 .nav-nested .nav-link.show {
16879
16692
  color: #fff;
16880
16693
  }
16881
- html:not(#__):not(#___) .cadmin .sidebar-dark-l2 .sidebar-header .component-title {
16882
- color: inherit;
16883
- }
16884
- html:not(#__):not(#___) .cadmin .sidebar-dark-l2 .sidebar-header .component-title .href {
16885
- color: inherit;
16886
- }
16887
- html:not(#__):not(#___) .cadmin .sidebar-dark-l2 .sidebar-header .component-subtitle {
16888
- color: inherit;
16889
- }
16890
- html:not(#__):not(#___) .cadmin .sidebar-dark-l2 .sidebar-header .component-subtitle .href {
16891
- color: inherit;
16892
- }
16893
- html:not(#__):not(#___) .cadmin .sidebar-dark-l2 .close {
16894
- color: #a7a9bc;
16895
- }
16896
- html:not(#__):not(#___) .cadmin .sidebar-dark-l2 .close:hover {
16897
- color: #fff;
16898
- }
16899
- html:not(#__):not(#___) .cadmin .sidebar-dark-l2 .nav-nested .nav-link {
16900
- border-radius: 4px;
16901
- color: #a7a9bc;
16902
- transition: box-shadow 0.15s ease-in-out;
16903
- }
16904
- @media (prefers-reduced-motion: reduce) {
16905
- html:not(#__):not(#___) .cadmin .sidebar-dark-l2 .nav-nested .nav-link {
16906
- transition: none;
16907
- }
16908
- }
16909
- html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .sidebar-dark-l2 .nav-nested .nav-link {
16910
- transition: none;
16911
- }
16912
-
16913
- html:not(#__):not(#___) .cadmin .sidebar-dark-l2 .nav-nested .nav-link:hover {
16914
- color: #fff;
16915
- }
16916
- html:not(#__):not(#___) .cadmin .sidebar-dark-l2 .nav-nested .nav-link:focus {
16917
- box-shadow: 0 0 0 2px #fff, 0 0 0 4px #5791ff;
16918
- outline: 0;
16919
- }
16920
- html:not(#__):not(#___) .cadmin .sidebar-dark-l2 .nav-nested .nav-link:active {
16921
- color: #fff;
16922
- }
16923
- html:not(#__):not(#___) .cadmin .sidebar-dark-l2 .nav-nested .nav-link:disabled {
16924
- box-shadow: none;
16925
- color: #a7a9bc;
16926
- opacity: 0.65;
16927
- }
16928
- html:not(#__):not(#___) .cadmin .sidebar-dark-l2 .nav-nested .nav-link:disabled:active {
16929
- pointer-events: none;
16930
- }
16931
16694
  html:not(#__):not(#___) .cadmin .c-slideout-start .sidebar-light {
16932
16695
  box-shadow: 0.25rem 0 0.5rem -0.25rem rgba(0, 0, 0, 0.1);
16933
16696
  }
@@ -16996,10 +16759,6 @@ html:not(#__):not(#___) .cadmin .c-slideout .sidebar {
16996
16759
  flex-shrink: 0;
16997
16760
  position: relative;
16998
16761
  width: 320px;
16999
- display: none;
17000
- flex-shrink: 0;
17001
- position: relative;
17002
- width: 320px;
17003
16762
  }
17004
16763
  html:not(#__):not(#___) .cadmin .c-slideout .sidebar .sidebar-body {
17005
16764
  flex-grow: 1;
@@ -17008,12 +16767,15 @@ html:not(#__):not(#___) .cadmin .c-slideout .sidebar .sidebar-body {
17008
16767
  html:not(#__):not(#___) .cadmin .c-slideout .sidebar .sidebar-footer {
17009
16768
  border-top-width: 1px;
17010
16769
  }
17011
- html:not(#__):not(#___) .cadmin .c-slideout .sidebar .sidebar-body {
17012
- flex-grow: 1;
17013
- overflow: visible;
17014
- }
17015
- html:not(#__):not(#___) .cadmin .c-slideout .sidebar .sidebar-footer {
17016
- border-top-width: 1px;
16770
+ @supports (position: sticky) {
16771
+ @media (max-height: 700px) {
16772
+ html:not(#__):not(#___) .cadmin .c-slideout .sidebar .sidebar-header.sticky-top {
16773
+ position: static;
16774
+ }
16775
+ html:not(#__):not(#___) .cadmin .c-slideout .sidebar .sidebar-footer.sticky-bottom {
16776
+ position: static;
16777
+ }
16778
+ }
17017
16779
  }
17018
16780
  html:not(#__):not(#___) .cadmin .c-slideout .sidebar.c-slideout-show {
17019
16781
  display: flex;
@@ -17043,7 +16805,6 @@ html:not(#__):not(#___) .cadmin .c-slideout .tbar-stacked.c-slideout-transition
17043
16805
  @media (max-width: 767.98px) {
17044
16806
  html:not(#__):not(#___) .cadmin .c-slideout .sidebar {
17045
16807
  width: 280px;
17046
- width: 280px;
17047
16808
  }
17048
16809
  }
17049
16810
  html:not(#__):not(#___) .cadmin .c-slideout-start {
@@ -17057,8 +16818,6 @@ html:not(#__):not(#___) .cadmin .c-slideout-start.c-slideout-tbar-shown .sidebar
17057
16818
  html:not(#__):not(#___) .cadmin .c-slideout-start .sidebar {
17058
16819
  left: -360px;
17059
16820
  width: 320px;
17060
- left: -360px;
17061
- width: 320px;
17062
16821
  }
17063
16822
  html:not(#__):not(#___) .cadmin .c-slideout-start .sidebar.c-slideout-show {
17064
16823
  left: 0;
@@ -17076,8 +16835,6 @@ html:not(#__):not(#___) .cadmin .c-slideout-start .tbar-stacked.c-slideout-show
17076
16835
  html:not(#__):not(#___) .cadmin .c-slideout-start .sidebar {
17077
16836
  left: -320px;
17078
16837
  width: 280px;
17079
- left: -320px;
17080
- width: 280px;
17081
16838
  }
17082
16839
  html:not(#__):not(#___) .cadmin .c-slideout-start .tbar-stacked {
17083
16840
  left: -40px;
@@ -17093,7 +16850,6 @@ html:not(#__):not(#___) .cadmin .c-slideout-end.c-slideout-tbar-shown .sidebar {
17093
16850
  }
17094
16851
  html:not(#__):not(#___) .cadmin .c-slideout-end .sidebar {
17095
16852
  right: -360px;
17096
- right: -360px;
17097
16853
  }
17098
16854
  html:not(#__):not(#___) .cadmin .c-slideout-end .sidebar.c-slideout-show {
17099
16855
  right: 0;
@@ -17114,7 +16870,6 @@ html:not(#__):not(#___) .cadmin .c-slideout-end .c-horizontal-resizer {
17114
16870
  }
17115
16871
  html:not(#__):not(#___) .cadmin .c-slideout-end .sidebar {
17116
16872
  right: -320px;
17117
- right: -320px;
17118
16873
  }
17119
16874
  html:not(#__):not(#___) .cadmin .c-slideout-end .tbar-stacked {
17120
16875
  right: -40px;
@@ -19943,6 +19698,12 @@ html:not(#__):not(#___) .cadmin .c-focus-inset:focus:not(:disabled):not(.disable
19943
19698
  border-color: #5791ff;
19944
19699
  outline: 0;
19945
19700
  }
19701
+ html:not(#__):not(#___) .cadmin .c-focus-trap {
19702
+ background: inherit;
19703
+ color: inherit;
19704
+ display: contents;
19705
+ font: inherit;
19706
+ }
19946
19707
  html:not(#__):not(#___) .cadmin .autofit-row {
19947
19708
  display: flex;
19948
19709
  flex-wrap: nowrap;