@clayui/css 3.62.1 → 3.65.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 (66) hide show
  1. package/lib/css/atlas.css +34 -45
  2. package/lib/css/atlas.css.map +1 -1
  3. package/lib/css/base.css +35 -45
  4. package/lib/css/base.css.map +1 -1
  5. package/lib/css/bootstrap.css.map +1 -1
  6. package/lib/css/cadmin.css +76 -25
  7. package/lib/css/cadmin.css.map +1 -1
  8. package/lib/images/icons/hierarchy.svg +10 -0
  9. package/lib/images/icons/icons.svg +1 -1
  10. package/lib/images/icons/no-bot.svg +10 -0
  11. package/package.json +3 -2
  12. package/src/images/icons/hierarchy.svg +10 -0
  13. package/src/images/icons/no-bot.svg +10 -0
  14. package/src/scss/_license-text.scss +1 -1
  15. package/src/scss/atlas/variables/_alerts.scss +1 -0
  16. package/src/scss/atlas/variables/_forms.scss +22 -0
  17. package/src/scss/atlas/variables/_globals.scss +1 -1
  18. package/src/scss/cadmin/components/_alerts.scss +26 -6
  19. package/src/scss/cadmin/components/_aspect-ratio.scss +29 -14
  20. package/src/scss/cadmin/components/_badges.scss +26 -6
  21. package/src/scss/cadmin/components/_buttons.scss +129 -63
  22. package/src/scss/cadmin/components/_grid.scss +13 -16
  23. package/src/scss/cadmin/components/_labels.scss +52 -12
  24. package/src/scss/cadmin/components/_loaders.scss +7 -13
  25. package/src/scss/cadmin/components/_popovers.scss +12 -4
  26. package/src/scss/cadmin/components/_print.scss +3 -3
  27. package/src/scss/cadmin/components/_reboot.scss +3 -3
  28. package/src/scss/cadmin/components/_stickers.scss +52 -12
  29. package/src/scss/cadmin/components/_treeview.scss +20 -0
  30. package/src/scss/cadmin/components/_utilities-functional-important.scss +49 -62
  31. package/src/scss/cadmin/components/_utilities.scss +7 -6
  32. package/src/scss/cadmin/variables/_alerts.scss +2 -0
  33. package/src/scss/cadmin/variables/_buttons.scss +23 -0
  34. package/src/scss/cadmin/variables/_forms.scss +13 -10
  35. package/src/scss/cadmin/variables/_globals.scss +25 -1
  36. package/src/scss/cadmin/variables/_treeview.scss +12 -0
  37. package/src/scss/cadmin/variables/_utilities.scss +309 -0
  38. package/src/scss/components/_alerts.scss +25 -5
  39. package/src/scss/components/_aspect-ratio.scss +29 -14
  40. package/src/scss/components/_badges.scss +25 -5
  41. package/src/scss/components/_buttons.scss +98 -70
  42. package/src/scss/components/_grid.scss +9 -11
  43. package/src/scss/components/_labels.scss +50 -10
  44. package/src/scss/components/_loaders.scss +7 -13
  45. package/src/scss/components/_popovers.scss +12 -4
  46. package/src/scss/components/_print.scss +3 -3
  47. package/src/scss/components/_reboot.scss +3 -3
  48. package/src/scss/components/_sidebar.scss +3 -1
  49. package/src/scss/components/_stickers.scss +50 -10
  50. package/src/scss/components/_treeview.scss +12 -0
  51. package/src/scss/components/_utilities-functional-important.scss +40 -18
  52. package/src/scss/components/_utilities.scss +7 -6
  53. package/src/scss/functions/_global-functions.scss +9 -9
  54. package/src/scss/functions/_lx-icons-generated.scss +4 -0
  55. package/src/scss/functions/_type-conversion-functions.scss +6 -6
  56. package/src/scss/mixins/_globals.scss +2 -0
  57. package/src/scss/mixins/_utilities.scss +6 -6
  58. package/src/scss/variables/_alerts.scss +3 -0
  59. package/src/scss/variables/_forms.scss +3 -0
  60. package/src/scss/variables/_globals.scss +25 -1
  61. package/src/scss/variables/_treeview.scss +12 -0
  62. package/src/scss/variables/_utilities.scss +22 -0
  63. package/CHANGELOG.md +0 -2004
  64. package/LICENSES/BSD-3-Clause.txt +0 -30
  65. package/LICENSES/LicenseRef-MIT-Bootstrap.txt +0 -22
  66. package/LICENSES/MIT.txt +0 -19
package/lib/css/base.css CHANGED
@@ -1,6 +1,6 @@
1
1
  @charset "UTF-8";
2
2
  /**
3
- * Clay 3.62.1
3
+ * Clay 3.65.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>
@@ -46,9 +46,9 @@
46
46
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
47
47
  }
48
48
 
49
- /* REUSE-Snippet-Begin
49
+ /* SPDX-SnippetBegin
50
50
  * SPDX-License-Identifier: MIT
51
- * SPDX-FileCopyrightText: © 2016 Nicolas Gallagher and Jonathan Neal <https://github.com/necolas/normalize.css>
51
+ * SPDX-SnippetCopyrightText: © 2016 Nicolas Gallagher and Jonathan Neal <https://github.com/necolas/normalize.css>
52
52
  */
53
53
  *,
54
54
  *::before,
@@ -296,7 +296,7 @@ template {
296
296
  display: none !important;
297
297
  }
298
298
 
299
- /* REUSE-Snippet-End */
299
+ /* SPDX-SnippetEnd */
300
300
  h1,
301
301
  h2,
302
302
  h3,
@@ -2011,8 +2011,8 @@ input[type=button].btn-block {
2011
2011
  .container {
2012
2012
  margin-left: auto;
2013
2013
  margin-right: auto;
2014
- padding-left: 15px;
2015
- padding-right: 15px;
2014
+ padding-left: calc(30px * 0.5);
2015
+ padding-right: calc(30px * 0.5);
2016
2016
  width: 100%;
2017
2017
  }
2018
2018
  @media (min-width: 576px) {
@@ -2039,8 +2039,8 @@ input[type=button].btn-block {
2039
2039
  .container-xl, .container-lg, .container-md, .container-sm, .container-fluid {
2040
2040
  margin-left: auto;
2041
2041
  margin-right: auto;
2042
- padding-left: 15px;
2043
- padding-right: 15px;
2042
+ padding-left: calc(30px * 0.5);
2043
+ padding-right: calc(30px * 0.5);
2044
2044
  width: 100%;
2045
2045
  }
2046
2046
 
@@ -3346,6 +3346,8 @@ input[type=button].btn-block {
3346
3346
  }
3347
3347
  .alert-indicator {
3348
3348
  font-size: 1.25rem;
3349
+ line-height: 1;
3350
+ vertical-align: 8%;
3349
3351
  }
3350
3352
  .alert-indicator + .lead {
3351
3353
  margin-left: 0.3125rem;
@@ -3429,6 +3431,7 @@ input[type=button].btn-block {
3429
3431
  }
3430
3432
 
3431
3433
  .autofit-row.alert-autofit-row {
3434
+ align-items: baseline;
3432
3435
  margin-left: -0.5rem;
3433
3436
  margin-right: -0.5rem;
3434
3437
  width: auto;
@@ -7148,6 +7151,7 @@ div.form-control-sm {
7148
7151
  flex-wrap: wrap;
7149
7152
  height: auto;
7150
7153
  padding-bottom: 0.25rem;
7154
+ padding-left: 0.5rem;
7151
7155
  padding-right: 0.5rem;
7152
7156
  padding-top: 0.25rem;
7153
7157
  }
@@ -7214,6 +7218,7 @@ div.form-control-sm {
7214
7218
  color: #495057;
7215
7219
  flex-grow: 1;
7216
7220
  margin-bottom: 0.125rem;
7221
+ margin-left: 0.25rem;
7217
7222
  margin-top: 0.125rem;
7218
7223
  min-height: 1.5rem;
7219
7224
  padding: 0;
@@ -7464,6 +7469,7 @@ textarea.form-control-lg,
7464
7469
  }
7465
7470
  .form-group-sm .input-group .form-control-tag-group .form-control-inset, .input-group-sm .form-control-tag-group .form-control-inset, .form-group-sm .form-control-tag-group.input-group .form-control-inset, .form-control-tag-group.input-group-sm .form-control-inset, .form-control-tag-group-sm.form-control .form-control-inset {
7466
7471
  margin-bottom: 0.125rem;
7472
+ margin-left: 0.25rem;
7467
7473
  margin-top: 0.1875rem;
7468
7474
  }
7469
7475
  .form-group {
@@ -9332,29 +9338,14 @@ label.custom-control-label {
9332
9338
 
9333
9339
  .was-validated .form-control:valid, .form-control.is-valid {
9334
9340
  border-color: #28a745;
9335
- background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
9336
- background-position: right 9px center;
9337
- background-repeat: no-repeat;
9338
- background-size: 18px 18px 18px 18px;
9339
- padding-right: 36px;
9340
9341
  }
9341
9342
  .was-validated .form-control:valid:focus, .form-control.is-valid:focus {
9342
9343
  border-color: #28a745;
9343
9344
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
9344
9345
  }
9345
9346
 
9346
- .was-validated textarea.form-control:valid, textarea.form-control.is-valid {
9347
- background-position: top 9px right 9px;
9348
- padding-right: 36px;
9349
- }
9350
-
9351
9347
  .was-validated .custom-select:valid, .custom-select.is-valid {
9352
9348
  border-color: #28a745;
9353
- background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='4'%20height='5'%20viewBox='0%200%204%205'%3E%3Cpath%20fill='%23343a40'%20d='M2%200L0%202h4zm0%205L0%203h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/18px 18px;
9354
- padding-right: calc(
9355
- (1em * 0.75) + (2 * 0.375rem * 0.75) + 0.75rem +
9356
- 1rem
9357
- );
9358
9349
  }
9359
9350
  .was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
9360
9351
  border-color: #28a745;
@@ -9427,29 +9418,14 @@ label.custom-control-label {
9427
9418
 
9428
9419
  .was-validated .form-control:invalid, .form-control.is-invalid {
9429
9420
  border-color: #dc3545;
9430
- background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
9431
- background-position: right 9px center;
9432
- background-repeat: no-repeat;
9433
- background-size: 18px 18px 18px 18px;
9434
- padding-right: 36px;
9435
9421
  }
9436
9422
  .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
9437
9423
  border-color: #dc3545;
9438
9424
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
9439
9425
  }
9440
9426
 
9441
- .was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
9442
- background-position: top 9px right 9px;
9443
- padding-right: 36px;
9444
- }
9445
-
9446
9427
  .was-validated .custom-select:invalid, .custom-select.is-invalid {
9447
9428
  border-color: #dc3545;
9448
- background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='4'%20height='5'%20viewBox='0%200%204%205'%3E%3Cpath%20fill='%23343a40'%20d='M2%200L0%202h4zm0%205L0%203h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/18px 18px;
9449
- padding-right: calc(
9450
- (1em * 0.75) + (2 * 0.375rem * 0.75) + 0.75rem +
9451
- 1rem
9452
- );
9453
9429
  }
9454
9430
  .was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
9455
9431
  border-color: #dc3545;
@@ -20226,6 +20202,10 @@ caption {
20226
20202
  background-color: transparent;
20227
20203
  color: rgba(108, 117, 125, 0.5);
20228
20204
  }
20205
+ .treeview-light .treeview-link.treeview-no-hover:hover {
20206
+ background-color: transparent;
20207
+ color: #6c757d;
20208
+ }
20229
20209
  .treeview-dark .component-expander {
20230
20210
  color: #a9afb5;
20231
20211
  }
@@ -20250,6 +20230,10 @@ caption {
20250
20230
  background-color: transparent;
20251
20231
  color: rgba(169, 175, 181, 0.5);
20252
20232
  }
20233
+ .treeview-dark .treeview-link.treeview-no-hover:hover {
20234
+ background-color: transparent;
20235
+ color: #a9afb5;
20236
+ }
20253
20237
  .treeview-dark .component-action {
20254
20238
  color: #a9afb5;
20255
20239
  }
@@ -20537,13 +20521,19 @@ ul.autofit-row {
20537
20521
  }
20538
20522
 
20539
20523
  .inline-scroller {
20524
+ -webkit-overflow-scrolling: touch;
20540
20525
  list-style: none;
20541
20526
  margin: 0;
20542
20527
  max-height: 125px;
20543
20528
  overflow: auto;
20544
- -webkit-overflow-scrolling: touch;
20545
20529
  padding: 0;
20546
20530
  }
20531
+ .inline-scroller:focus {
20532
+ outline: 0;
20533
+ }
20534
+ .inline-scroller:focus-visible {
20535
+ box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
20536
+ }
20547
20537
 
20548
20538
  .inline-item {
20549
20539
  align-items: center;
@@ -24283,9 +24273,9 @@ button.bg-dark:focus {
24283
24273
  display: inline-flex !important;
24284
24274
  }
24285
24275
  }
24286
- /* REUSE-Snippet-Begin
24276
+ /* SPDX-SnippetBegin
24287
24277
  * SPDX-License-Identifier: MIT
24288
- * SPDX-Copyright: © 2012 Nicolas Gallagher <https://github.com/suitcss/components-flex-embed>
24278
+ * SPDX-SnippetCopyrightText: © 2012 Nicolas Gallagher <https://github.com/suitcss/components-flex-embed>
24289
24279
  */
24290
24280
  .embed-responsive {
24291
24281
  display: block;
@@ -24344,7 +24334,7 @@ button.bg-dark:focus {
24344
24334
  );
24345
24335
  }
24346
24336
 
24347
- /* REUSE-Snippet-End */
24337
+ /* SPDX-SnippetEnd */
24348
24338
  .flex-row {
24349
24339
  flex-direction: row !important;
24350
24340
  }
@@ -28949,9 +28939,9 @@ a.text-dark:hover, a.text-dark:focus {
28949
28939
  .loading-animation-light {
28950
28940
  color: #fff;
28951
28941
  }
28952
- /* REUSE-Snippet-Begin
28942
+ /* SPDX-SnippetBegin
28953
28943
  * SPDX-License-Identifier: MIT
28954
- * SPDX-FileCopyrightText: © 2018 HTML5 Boilerplate <https://github.com/h5bp/main.css>
28944
+ * SPDX-SnippetCopyrightText: © 2018 HTML5 Boilerplate <https://github.com/h5bp/main.css>
28955
28945
  */
28956
28946
  @media print {
28957
28947
  *,
@@ -29047,6 +29037,6 @@ h3 {
29047
29037
  color: inherit;
29048
29038
  }
29049
29039
  }
29050
- /* REUSE-Snippet-End */
29040
+ /* SPDX-SnippetEnd */
29051
29041
 
29052
29042
  /*# sourceMappingURL=base.css.map */