@clayui/css 3.160.0 → 3.162.0

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 (99) hide show
  1. package/lib/css/atlas.css +1716 -1586
  2. package/lib/css/atlas.css.map +1 -1
  3. package/lib/css/base.css +1416 -1287
  4. package/lib/css/base.css.map +1 -1
  5. package/lib/css/cadmin.css +79 -12
  6. package/lib/css/cadmin.css.map +1 -1
  7. package/lib/images/icons/arrow-key-down.svg +9 -0
  8. package/lib/images/icons/arrow-key-left.svg +9 -0
  9. package/lib/images/icons/arrow-key-right.svg +9 -0
  10. package/lib/images/icons/arrow-key-up.svg +9 -0
  11. package/lib/images/icons/books-brush.svg +9 -0
  12. package/lib/images/icons/icons.svg +1 -1
  13. package/package.json +1 -1
  14. package/src/images/icons/arrow-key-down.svg +9 -0
  15. package/src/images/icons/arrow-key-left.svg +9 -0
  16. package/src/images/icons/arrow-key-right.svg +9 -0
  17. package/src/images/icons/arrow-key-up.svg +9 -0
  18. package/src/images/icons/books-brush.svg +9 -0
  19. package/src/images/icons/icons.svg +1 -1
  20. package/src/scss/_components.scss +2 -0
  21. package/src/scss/_license-text.scss +1 -1
  22. package/src/scss/atlas/_variables.scss +6 -4
  23. package/src/scss/atlas/variables/_forms.scss +3 -1
  24. package/src/scss/atlas/variables/_globals.scss +10 -10
  25. package/src/scss/atlas/variables/_reorder.scss +1 -1
  26. package/src/scss/atlas-custom-properties/_variables.scss +66 -0
  27. package/src/scss/atlas-custom-properties/variables/_alerts.scss +1205 -0
  28. package/src/scss/atlas-custom-properties/variables/_application-bar.scss +60 -0
  29. package/src/scss/atlas-custom-properties/variables/_aspect-ratio.scss +26 -0
  30. package/src/scss/atlas-custom-properties/variables/_badges.scss +341 -0
  31. package/src/scss/atlas-custom-properties/variables/_breadcrumbs.scss +193 -0
  32. package/src/scss/atlas-custom-properties/variables/_buttons.scss +1442 -0
  33. package/src/scss/atlas-custom-properties/variables/_c-root.scss +343 -0
  34. package/src/scss/atlas-custom-properties/variables/_cards.scss +1212 -0
  35. package/src/scss/atlas-custom-properties/variables/_clay-color.scss +617 -0
  36. package/src/scss/atlas-custom-properties/variables/_custom-forms.scss +1096 -0
  37. package/src/scss/atlas-custom-properties/variables/_date-picker.scss +619 -0
  38. package/src/scss/atlas-custom-properties/variables/_drilldown.scss +244 -0
  39. package/src/scss/atlas-custom-properties/variables/_dropdowns.scss +1229 -0
  40. package/src/scss/atlas-custom-properties/variables/_dual-listbox.scss +72 -0
  41. package/src/scss/atlas-custom-properties/variables/_empty-state.scss +102 -0
  42. package/src/scss/atlas-custom-properties/variables/_forms.scss +2305 -0
  43. package/src/scss/atlas-custom-properties/variables/_globals-z-index.scss +48 -0
  44. package/src/scss/atlas-custom-properties/variables/_globals.scss +844 -0
  45. package/src/scss/atlas-custom-properties/variables/_icons.scss +71 -0
  46. package/src/scss/atlas-custom-properties/variables/_images.scss +9 -0
  47. package/src/scss/atlas-custom-properties/variables/_labels.scss +1374 -0
  48. package/src/scss/atlas-custom-properties/variables/_links.scss +466 -0
  49. package/src/scss/atlas-custom-properties/variables/_list-group.scss +488 -0
  50. package/src/scss/atlas-custom-properties/variables/_loaders.scss +226 -0
  51. package/src/scss/atlas-custom-properties/variables/_management-bar.scss +151 -0
  52. package/src/scss/atlas-custom-properties/variables/_menubar.scss +778 -0
  53. package/src/scss/atlas-custom-properties/variables/_modals.scss +645 -0
  54. package/src/scss/atlas-custom-properties/variables/_multi-step-nav.scss +354 -0
  55. package/src/scss/atlas-custom-properties/variables/_navbar.scss +198 -0
  56. package/src/scss/atlas-custom-properties/variables/_navigation-bar.scss +449 -0
  57. package/src/scss/atlas-custom-properties/variables/_navs.scss +553 -0
  58. package/src/scss/atlas-custom-properties/variables/_pagination.scss +1064 -0
  59. package/src/scss/atlas-custom-properties/variables/_panels.scss +554 -0
  60. package/src/scss/atlas-custom-properties/variables/_popovers.scss +533 -0
  61. package/src/scss/atlas-custom-properties/variables/_progress-bars.scss +149 -0
  62. package/src/scss/atlas-custom-properties/variables/_quick-action.scss +28 -0
  63. package/src/scss/atlas-custom-properties/variables/_range.scss +262 -0
  64. package/src/scss/atlas-custom-properties/variables/_reorder.scss +91 -0
  65. package/src/scss/atlas-custom-properties/variables/_resizer.scss +37 -0
  66. package/src/scss/atlas-custom-properties/variables/_sheets.scss +301 -0
  67. package/src/scss/atlas-custom-properties/variables/_side-navigation.scss +2 -0
  68. package/src/scss/atlas-custom-properties/variables/_sidebar.scss +547 -0
  69. package/src/scss/atlas-custom-properties/variables/_slideout.scss +369 -0
  70. package/src/scss/atlas-custom-properties/variables/_stickers.scss +576 -0
  71. package/src/scss/atlas-custom-properties/variables/_tables.scss +1292 -0
  72. package/src/scss/atlas-custom-properties/variables/_tbar.scss +570 -0
  73. package/src/scss/atlas-custom-properties/variables/_time.scss +133 -0
  74. package/src/scss/atlas-custom-properties/variables/_timelines.scss +50 -0
  75. package/src/scss/atlas-custom-properties/variables/_toggle-switch.scss +702 -0
  76. package/src/scss/atlas-custom-properties/variables/_tooltip.scss +321 -0
  77. package/src/scss/atlas-custom-properties/variables/_treeview.scss +367 -0
  78. package/src/scss/atlas-custom-properties/variables/_type.scss +195 -0
  79. package/src/scss/atlas-custom-properties/variables/_utilities.scss +933 -0
  80. package/src/scss/cadmin/components/_focus-ring.scss +74 -0
  81. package/src/scss/cadmin/components/_forms.scss +2 -0
  82. package/src/scss/cadmin/components/_menubar.scss +8 -0
  83. package/src/scss/cadmin/components/_resizer.scss +19 -4
  84. package/src/scss/cadmin/variables/_breadcrumbs.scss +3 -1
  85. package/src/scss/cadmin/variables/_forms.scss +3 -1
  86. package/src/scss/cadmin/variables/_reorder.scss +1 -0
  87. package/src/scss/cadmin/variables/_resizer.scss +16 -3
  88. package/src/scss/cadmin.scss +1 -0
  89. package/src/scss/components/_focus-ring.scss +64 -0
  90. package/src/scss/components/_forms.scss +2 -0
  91. package/src/scss/components/_keyboard-arrows-indicator.scss +82 -0
  92. package/src/scss/components/_menubar.scss +8 -0
  93. package/src/scss/components/_resizer.scss +15 -4
  94. package/src/scss/functions/_global-functions.scss +6 -4
  95. package/src/scss/functions/_lx-icons-generated.scss +10 -0
  96. package/src/scss/variables/_breadcrumbs.scss +4 -2
  97. package/src/scss/variables/_forms.scss +2 -0
  98. package/src/scss/variables/_globals.scss +8 -8
  99. package/src/scss/variables/_resizer.scss +16 -3
@@ -1,6 +1,6 @@
1
1
  @charset "UTF-8";
2
2
  /**
3
- * Clay 3.160.0
3
+ * Clay 3.162.0
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.160.0
19
+ * Clay 3.162.0
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>
@@ -2145,15 +2145,29 @@ html:not(#__):not(#___) .cadmin .c-horizontal-resizer {
2145
2145
  position: absolute;
2146
2146
  right: 0px;
2147
2147
  top: 0px;
2148
- width: 0.5rem;
2148
+ width: 0.75rem;
2149
2149
  z-index: 10;
2150
2150
  }
2151
- html:not(#__):not(#___) .cadmin .c-horizontal-resizer:hover {
2151
+ html:not(#__):not(#___) .cadmin .c-horizontal-resizer::before {
2152
+ bottom: 0px;
2153
+ content: "";
2154
+ left: 0.25rem;
2155
+ position: absolute;
2156
+ right: 0.25rem;
2157
+ top: 0px;
2158
+ }
2159
+ html:not(#__):not(#___) .cadmin .c-horizontal-resizer:hover::before {
2152
2160
  background-color: rgb(86.99, 144.8295081967, 255);
2153
2161
  }
2154
- html:not(#__):not(#___) .cadmin .c-horizontal-resizer:focus {
2162
+ html:not(#__):not(#___) .cadmin .c-horizontal-resizer:focus-visible::before {
2155
2163
  background-color: rgb(86.99, 144.8295081967, 255);
2156
2164
  }
2165
+ html:not(#__):not(#___) .cadmin .c-horizontal-resizer-end {
2166
+ left: 0px;
2167
+ margin-left: -0.25rem;
2168
+ margin-right: 0px;
2169
+ right: auto;
2170
+ }
2157
2171
  html:not(#__):not(#___) .cadmin .fade, html:not(#__):not(#___) .cadmin.fade {
2158
2172
  transition: opacity 0.15s linear;
2159
2173
  }
@@ -4175,7 +4189,6 @@ html:not(#__):not(#___) .cadmin .clay-dark.badge-translucent.badge-danger, html:
4175
4189
  color: rgb(243.998755, 137.005245, 137.005245);
4176
4190
  }
4177
4191
  html:not(#__):not(#___) .cadmin .breadcrumb-bar {
4178
- align-items: center;
4179
4192
  display: flex;
4180
4193
  }
4181
4194
  html:not(#__):not(#___) .cadmin .breadcrumb {
@@ -4192,6 +4205,7 @@ html:not(#__):not(#___) .cadmin .breadcrumb-link {
4192
4205
  border-radius: 1px;
4193
4206
  color: #6b6c7e;
4194
4207
  display: block;
4208
+ line-height: 1.5rem;
4195
4209
  text-decoration: none;
4196
4210
  transition: box-shadow 0.15s ease-in-out;
4197
4211
  }
@@ -4224,6 +4238,8 @@ html:not(#__):not(#___) .cadmin .breadcrumb-link > .breadcrumb-text-truncate:hov
4224
4238
  }
4225
4239
  html:not(#__):not(#___) .cadmin .breadcrumb-toggle {
4226
4240
  color: #6b6c7e;
4241
+ flex-shrink: 0;
4242
+ margin-top: 9.5px;
4227
4243
  }
4228
4244
  html:not(#__):not(#___) .cadmin .breadcrumb-item {
4229
4245
  font-size: 14px;
@@ -7529,7 +7545,9 @@ html:not(#__):not(#___) .cadmin .form-group-sm {
7529
7545
  margin-bottom: 16px;
7530
7546
  }
7531
7547
  html:not(#__):not(#___) .cadmin .form-group-sm label {
7532
- margin-bottom: 3px;
7548
+ font-size: 12px;
7549
+ line-height: 1.5;
7550
+ margin-bottom: 2px;
7533
7551
  }
7534
7552
  html:not(#__):not(#___) .cadmin .form-group-sm div.form-control,
7535
7553
  html:not(#__):not(#___) .cadmin .form-group-sm .form-control[contenteditable] {
@@ -8293,6 +8311,7 @@ html:not(#__):not(#___) .c-prefers-focus .cadmin .clay-reorder .form-control-ins
8293
8311
  html:not(#__):not(#___) .cadmin .clay-reorder .form-control-inset:focus + .clay-reorder-underlay, html:not(#__):not(#___) .cadmin .clay-reorder .form-control-inset.focus + .clay-reorder-underlay {
8294
8312
  background-color: rgb(239.99, 245.1573770492, 255);
8295
8313
  border-color: rgb(127.994, 171.7173770492, 255);
8314
+ box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgb(86.99, 144.8295081967, 255);
8296
8315
  }
8297
8316
  html:not(#__):not(#___) .cadmin .clay-reorder .form-control-inset + .clay-reorder-underlay {
8298
8317
  bottom: 0px;
@@ -12694,6 +12713,9 @@ html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent
12694
12713
  box-shadow: none;
12695
12714
  }
12696
12715
  }
12716
+ html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link * {
12717
+ letter-spacing: normal;
12718
+ }
12697
12719
  @media (min-width: 768px) {
12698
12720
  html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-decorated .nav {
12699
12721
  border-left-color: #e7e7ed;
@@ -12948,6 +12970,9 @@ html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent
12948
12970
  box-shadow: none;
12949
12971
  }
12950
12972
  }
12973
+ html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link * {
12974
+ letter-spacing: normal;
12975
+ }
12951
12976
  @media (min-width: 992px) {
12952
12977
  html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-decorated .nav {
12953
12978
  border-left-color: #e7e7ed;
@@ -18529,7 +18554,7 @@ html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .toggle-switch-check ~
18529
18554
 
18530
18555
  html:not(#__):not(#___) .cadmin .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-handle::after {
18531
18556
  content: attr(data-label-off);
18532
- margin-left: 56px;
18557
+ margin-left: calc(48px + 8px);
18533
18558
  transition: background-color 100ms ease-in, border-color 100ms ease-in, box-shadow 150ms ease-in-out, color 100ms ease-in, left 100ms ease-in, opacity 100ms ease-in, right 100ms ease-in;
18534
18559
  }
18535
18560
  @media (prefers-reduced-motion: reduce) {
@@ -18650,7 +18675,7 @@ html:not(#__):not(#___) .cadmin .toggle-switch-check:checked ~ .toggle-switch-ba
18650
18675
  min-width: 40px;
18651
18676
  }
18652
18677
  html:not(#__):not(#___) .cadmin .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-handle::after {
18653
- margin-left: 48px;
18678
+ margin-left: calc(40px + 8px);
18654
18679
  }
18655
18680
  html:not(#__):not(#___) .cadmin .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-icon {
18656
18681
  font-size: 10px;
@@ -18672,7 +18697,7 @@ html:not(#__):not(#___) .cadmin .toggle-switch-check:checked ~ .toggle-switch-ba
18672
18697
  left: calc(40px - 4px - 16px);
18673
18698
  }
18674
18699
  html:not(#__):not(#___) .cadmin .toggle-switch-check:checked ~ .toggle-switch-bar .toggle-switch-handle::after {
18675
- margin-left: 48px;
18700
+ margin-left: calc(40px + 8px);
18676
18701
  }
18677
18702
  html:not(#__):not(#___) .cadmin .toggle-switch-check:checked ~ .toggle-switch-bar .button-icon {
18678
18703
  left: calc(40px - 4px - 16px);
@@ -18703,11 +18728,11 @@ html:not(#__):not(#___) .cadmin .simple-toggle-switch {
18703
18728
  html:not(#__):not(#___) .cadmin .simple-toggle-switch .toggle-switch-label {
18704
18729
  line-height: 1;
18705
18730
  margin-bottom: 0px;
18706
- max-width: calc(100% - 56px);
18731
+ max-width: calc(100% - calc(48px + 8px));
18707
18732
  }
18708
18733
  @media (max-width: 767.98px) {
18709
18734
  html:not(#__):not(#___) .cadmin .simple-toggle-switch .toggle-switch-label {
18710
- max-width: calc(100% - 48px);
18735
+ max-width: calc(100% - calc(40px + 8px));
18711
18736
  }
18712
18737
  }
18713
18738
  html:not(#__):not(#___) .cadmin .simple-toggle-switch .toggle-switch-check + .toggle-switch-label {
@@ -28178,6 +28203,48 @@ html:not(#__):not(#___) .cadmin .loading-animation-secondary {
28178
28203
  html:not(#__):not(#___) .cadmin .loading-animation-light {
28179
28204
  color: #fff;
28180
28205
  }
28206
+ @keyframes clay-cadmin-focus-ring {
28207
+ 0%, 50% {
28208
+ box-shadow: 0 0 0 4px #fff, 0 0 0 12px rgb(178.994, 205.16, 255);
28209
+ }
28210
+ 100% {
28211
+ box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgb(86.99, 144.8295081967, 255);
28212
+ }
28213
+ }
28214
+ @media (prefers-reduced-motion: reduce) {
28215
+ @keyframes clay-cadmin-focus-ring {
28216
+ 0%, 60% {
28217
+ box-shadow: 0 0 0 4px #fff, 0 0 0 12px rgb(178.994, 205.16, 255);
28218
+ }
28219
+ 61% {
28220
+ box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgb(86.99, 144.8295081967, 255);
28221
+ }
28222
+ }
28223
+ }
28224
+ html:not(#__):not(#___) .c-prefers-focus-ring .cadmin .custom-control-input:focus-visible ~ .custom-control-label::after,
28225
+ html:not(#__):not(#___) .c-prefers-focus-ring .cadmin .toggle-switch-check:focus-visible ~ .toggle-switch-bar::before,
28226
+ html:not(#__):not(#___) .c-prefers-focus-ring .cadmin :focus-visible:not(.custom-control-input):not(.toggle-switch-check),
28227
+ html:not(#__):not(#___) .c-prefers-focus-ring .cadmin .focus {
28228
+ animation: clay-cadmin-focus-ring 1s cubic-bezier(0.2, 0, 0, 1);
28229
+ box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgb(86.99, 144.8295081967, 255);
28230
+ }
28231
+ html:not(#__):not(#___) .c-prefers-focus-ring .cadmin :focus-visible:not(.toggle-switch-check):not(.custom-control-input),
28232
+ html:not(#__):not(#___) .c-prefers-focus-ring .cadmin .focus {
28233
+ position: relative;
28234
+ z-index: 1;
28235
+ }
28236
+
28237
+ html:not(#__):not(#___) .c-prefers-focus-ring.c-tab-returning .cadmin .custom-control-input:focus-visible ~ .custom-control-label::after,
28238
+ html:not(#__):not(#___) .c-prefers-focus-ring.c-tab-returning .cadmin .toggle-switch-check:focus-visible ~ .toggle-switch-bar::before,
28239
+ html:not(#__):not(#___) .c-prefers-focus-ring.c-tab-returning .cadmin :focus-visible:not(.custom-control-input):not(.toggle-switch-check),
28240
+ html:not(#__):not(#___) .c-prefers-focus-ring.c-tab-returning .cadmin .focus,
28241
+ html:not(#__):not(#___) .c-prefers-reduced-motion.c-prefers-focus-ring .cadmin .custom-control-input:focus-visible ~ .custom-control-label::after,
28242
+ html:not(#__):not(#___) .c-prefers-reduced-motion.c-prefers-focus-ring .cadmin .toggle-switch-check:focus-visible ~ .toggle-switch-bar::before,
28243
+ html:not(#__):not(#___) .c-prefers-reduced-motion.c-prefers-focus-ring .cadmin :focus-visible:not(.custom-control-input):not(.toggle-switch-check),
28244
+ html:not(#__):not(#___) .c-prefers-reduced-motion.c-prefers-focus-ring .cadmin .focus {
28245
+ animation: none;
28246
+ }
28247
+
28181
28248
  html:not(#__):not(#___) .cadmin {
28182
28249
  /* SPDX-SnippetBegin
28183
28250
  * SPDX-License-Identifier: MIT