liferay-frontend-theme-unstyled 6.0.75 → 6.0.76

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 (41) hide show
  1. package/css/clay/_license-text.scss +1 -1
  2. package/css/clay/atlas/variables/_labels.scss +1 -0
  3. package/css/clay/atlas/variables/_modals.scss +1 -0
  4. package/css/clay/cadmin/variables/_labels.scss +4 -5
  5. package/css/clay/cadmin/variables/_modals.scss +18 -2
  6. package/css/clay/cadmin/variables/_utilities.scss +7 -0
  7. package/css/clay/functions/_lx-icons-generated.scss +6 -0
  8. package/css/clay/mixins/_forms.scss +690 -432
  9. package/css/clay/mixins/_input-groups.scss +222 -107
  10. package/css/clay/mixins/_labels.scss +100 -48
  11. package/css/clay/mixins/_menubar.scss +131 -60
  12. package/css/clay/mixins/_modals.scss +36 -20
  13. package/css/clay/mixins/_nav.scss +86 -34
  14. package/css/clay/mixins/_navbar.scss +436 -270
  15. package/css/clay/mixins/_pagination.scss +241 -151
  16. package/css/clay/mixins/_panels.scss +86 -51
  17. package/css/clay/mixins/_popovers.scss +82 -32
  18. package/css/clay/mixins/_sheet.scss +19 -7
  19. package/css/clay/mixins/_sidebar.scss +195 -89
  20. package/css/clay/mixins/_slideout.scss +96 -46
  21. package/css/clay/mixins/_stickers.scss +86 -39
  22. package/css/clay/mixins/_tables.scss +527 -308
  23. package/css/clay/mixins/_tbar.scss +165 -87
  24. package/css/clay/mixins/_toggle-switch.scss +705 -380
  25. package/css/clay/mixins/_tooltip.scss +53 -21
  26. package/css/clay/variables/_labels.scss +4 -5
  27. package/css/clay/variables/_modals.scss +18 -2
  28. package/css/clay/variables/_utilities.scss +6 -0
  29. package/images/clay/flags-en-IE.svg +12 -0
  30. package/images/clay/flags-en-LV.svg +11 -0
  31. package/images/clay/flags-my-MM.svg +13 -0
  32. package/images/clay/icons.svg +1 -1
  33. package/images/language/my_MM.png +0 -0
  34. package/images/lexicon/flags-en-IE.svg +12 -0
  35. package/images/lexicon/flags-en-LV.svg +11 -0
  36. package/images/lexicon/flags-my-MM.svg +13 -0
  37. package/images/lexicon/icons.svg +1 -1
  38. package/images/states/cms_empty_state.svg +24 -24
  39. package/images/states/cms_empty_state_content.svg +38 -44
  40. package/images/states/cms_empty_state_picklist_options.svg +29 -0
  41. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Clay 3.133.0
2
+ * Clay 3.135.0
3
3
  *
4
4
  * SPDX-FileCopyrightText: © 2020 Liferay, Inc. <https://liferay.com>
5
5
  * SPDX-FileCopyrightText: © 2020 Contributors to the project Clay <https://github.com/liferay/clay/graphs/contributors>
@@ -63,6 +63,7 @@ $label: map-deep-merge($label, $label-base);
63
63
  $label-close: () !default;
64
64
  $label-close: map-deep-merge(
65
65
  (
66
+ margin: -5px -4px,
66
67
  disabled: (
67
68
  color: inherit,
68
69
  ),
@@ -27,6 +27,7 @@ $modal-header: map-deep-merge(
27
27
 
28
28
  $modal-title-font-size: 1.25rem !default; // 20px
29
29
  $modal-title-font-weight: $font-weight-bold !default;
30
+ $modal-title-line-height: $headings-line-height !default;
30
31
 
31
32
  // Modal Success
32
33
 
@@ -127,15 +127,14 @@ $cadmin-label-dismissible: map-merge(
127
127
  $cadmin-label-close: () !default;
128
128
  $cadmin-label-close: map-deep-merge(
129
129
  (
130
- border-radius: 1px,
130
+ border-radius: 5000px,
131
131
  color: inherit,
132
132
  display: inline-flex,
133
133
  font-size: 16px,
134
- height: auto,
135
- margin-bottom: -2px,
136
- margin-top: -2px,
134
+ height: 24px,
135
+ margin: -5px -4px,
137
136
  opacity: 1,
138
- width: auto,
137
+ width: 24px,
139
138
  hover: (
140
139
  color: inherit,
141
140
  opacity: 1,
@@ -101,6 +101,10 @@ $cadmin-modal-header: map-deep-merge(
101
101
  padding: $cadmin-modal-header-padding,
102
102
  padding-bottom: 0,
103
103
  padding-top: 0,
104
+ '.modal-title': (
105
+ margin-bottom: 0,
106
+ margin-top: 0,
107
+ ),
104
108
  mobile: (
105
109
  height: $cadmin-modal-header-height-mobile,
106
110
  ),
@@ -129,6 +133,17 @@ $cadmin-modal-body: map-deep-merge(
129
133
  overflow-wrap: break-word,
130
134
  padding: $cadmin-modal-inner-padding,
131
135
  position: relative,
136
+ '.aspect-ratio': (
137
+ margin-left: math-sign($cadmin-modal-inner-padding),
138
+ margin-right: math-sign($cadmin-modal-inner-padding),
139
+ top: math-sign($cadmin-modal-inner-padding),
140
+ ),
141
+ '.close': (
142
+ position: absolute,
143
+ right: 1rem,
144
+ top: 1rem,
145
+ z-index: 1,
146
+ ),
132
147
  '&.inline-scroller': (
133
148
  max-height: none,
134
149
  -webkit-overflow-scrolling: touch,
@@ -226,7 +241,7 @@ $cadmin-modal-item-shrink: map-deep-merge(
226
241
 
227
242
  $cadmin-modal-title-font-size: 20px !default; // 20px
228
243
  $cadmin-modal-title-font-weight: $cadmin-font-weight-bold !default;
229
- $cadmin-modal-title-line-height: $cadmin-line-height-base !default;
244
+ $cadmin-modal-title-line-height: $cadmin-headings-line-height !default;
230
245
  $cadmin-modal-title-text-align: null !default;
231
246
  $cadmin-modal-title-font-size-mobile: null !default;
232
247
 
@@ -354,7 +369,8 @@ $cadmin-modal: map-deep-merge(
354
369
  font-size: $cadmin-modal-title-font-size,
355
370
  font-weight: $cadmin-modal-title-font-weight,
356
371
  line-height: $cadmin-modal-title-line-height,
357
- margin-bottom: 0,
372
+ margin-bottom: 24px,
373
+ margin-top: 16px,
358
374
  overflow: hidden,
359
375
  text-align: $cadmin-modal-title-text-align,
360
376
  text-overflow: ellipsis,
@@ -258,6 +258,13 @@ $cadmin-bg-theme-colors: map-deep-merge(
258
258
  background-color: clay-darken($cadmin-primary, 10%) !important,
259
259
  ),
260
260
  ),
261
+ 'primary-l3': (
262
+ background-color: $cadmin-primary-l3 !important,
263
+ hover: (
264
+ background-color: clay-darken($cadmin-primary-l3, 10%)
265
+ !important,
266
+ ),
267
+ ),
261
268
  'secondary': (
262
269
  background-color: $cadmin-secondary !important,
263
270
  hover: (
@@ -374,6 +374,10 @@
374
374
 
375
375
  'en-gb': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="#B0BEC9" d="M0 64h512v384H0z"/><path fill="#0035A0" d="M16 80h480v352H16z"/><path fill="#FFF" d="M208 80h96v352h-96z"/><path fill="#FFF" d="M16 208h480v96H16z"/><path fill="#FFF" d="M256 315.5 414.8 432H496v-59.5L337.2 256 496 139.5V80h-81.2L256 196.5 97.2 80H16v59.5L174.8 256 16 372.5V432h81.2z"/><path fill="#E03232" d="M256 295.7 441.9 432H496v-39.7L310.1 256 496 119.7V80h-54.1L256 216.3 70.1 80H16v39.7L201.9 256 16 392.3V432h54.1z"/><path fill="#E03232" d="M496 224H288V80h-64v144H16v64h208v144h64V288h208z"/></svg>',
376
376
 
377
+ 'en-ie': '<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M16 2H0v12h16V2Z" fill="#B0BEC9"/><path d="M5.5 2.5h-5v11h5v-11Z" fill="#009A44"/><path d="M15.5 2.5h-5v11h5v-11Z" fill="#FF8200"/><path d="M10.5 2.5h-5v11h5v-11Z" fill="#fff"/></svg>',
378
+
379
+ 'en-lv': '<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M16 2H0v12h16V2Z" fill="#B0BEC9"/><path d="M15.5 2.51H.5V7h15V2.51Zm0 6.49H.5v4.5h15V9Z" fill="#A4343A"/><path d="M15.5 7H.5v2h15V7Z" fill="#fff"/></svg>',
380
+
377
381
  'en-us': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="#C0CFD8" d="M0 64h512v384H0z"/><path fill="#E03232" d="M16 80h480v32H16z"/><path fill="#FFF" d="M16 112h480v32H16z"/><path fill="#E03232" d="M16 144h480v32H16z"/><path fill="#FFF" d="M16 176h480v32H16z"/><path fill="#E03232" d="M16 208h480v32H16z"/><path fill="#FFF" d="M16 240h480v32H16z"/><path fill="#E03232" d="M16 272h480v32H16z"/><path fill="#FFF" d="M16 304h480v32H16z"/><path fill="#E03232" d="M16 336h480v32H16z"/><path fill="#FFF" d="M16 368h480v32H16z"/><path fill="#E03232" d="M16 400h480v32H16z"/><path fill="#66A1CC" d="M16 80h256v192H16z"/><path fill="#0035A0" d="M16 80h256v192H16z"/></svg>',
378
382
 
379
383
  'es-ar': '<svg viewBox="0 0 512 384" xmlns="http://www.w3.org/2000/svg"><path d="M512 0H0v384h512V0Z" fill="#C0CFD8"/><path d="M496 16.3H16v112h480v-112ZM496 256H16v112h480V256Z" fill="#5FC8FF"/><path d="M496 128H16v128h480V128Z" fill="#fff"/><circle cx="256" cy="192" r="64" fill="#FFD76E"/></svg>',
@@ -432,6 +436,8 @@
432
436
 
433
437
  'ms-my': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 24"><path d="M0 0h32v24H0V0z" fill="#B0BEC9"/><path d="M1 1h30v22H1V1z" fill="#E03232"/><path d="M1 3h30v2H1V3zm0 4h30v2H1V7zm0 4h30v2H1v-2zm0 4h30v2H1v-2zm0 4h30v2H1v-2z" fill="#FFF"/><path d="M1 1h16v12H1V1z" fill="#00206A"/><path d="M5.6 7c0-1.9 1.4-3.5 3.2-3.9-.2 0-.5-.1-.8-.1-2.2 0-4 1.8-4 4s1.8 4 4 4c.3 0 .5 0 .8-.1C7 10.6 5.6 9 5.6 7z" fill="#FCD638"/><path d="M11.5 4.5c3.1 0 3.3 5 0 5-3.1 0-3.2-5 0-5z" fill="#FCD638"/></svg>',
434
438
 
439
+ 'my-mm': '<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M16 2H0v12h16V2Z" fill="#B0BEC9"/><path d="M15.5 2.51H.5v3.5h15v-3.5Z" fill="#FFCD00"/><path d="M15.5 10H.5v3.5h15V10Z" fill="#EE2737"/><path d="M15.5 6H.5v4h15V6Z" fill="#43B02A"/><path d="m8 3.993.947 2.916h3.066L9.533 8.71l.947 2.915L8 9.824l-2.48 1.802.947-2.915-2.48-1.802h3.066L8 3.993Z" fill="#fff"/></svg>',
440
+
435
441
  'nb-no': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="#B0BEC9" d="M0 64h512v384H0z"/><path fill="#E03232" d="M16 80h480v352H16z"/><path fill="#FFF" d="M128 80h96v352h-96z"/><path fill="#FFF" d="M16 208h480.1v96H16z"/><path fill="#0035A0" d="M16 240h480.1v32H16z"/><path fill="#0035A0" d="M160 80h32v352h-32z"/></svg>',
436
442
 
437
443
  'nl-be': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="#B0BEC9" d="M0 64h512v384H0z"/><path fill="#4C4C4E" d="M16 80h160v352H16z"/><path fill="#E03232" d="M336 80h160v352H336z"/><path fill="#FCD638" d="M176 80h160v352H176z"/></svg>',