@clayui/css 3.48.0 → 3.51.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 (65) hide show
  1. package/lib/css/atlas.css +976 -470
  2. package/lib/css/atlas.css.map +1 -1
  3. package/lib/css/base.css +981 -483
  4. package/lib/css/base.css.map +1 -1
  5. package/lib/css/bootstrap.css.map +1 -1
  6. package/lib/css/cadmin.css +556 -254
  7. package/lib/css/cadmin.css.map +1 -1
  8. package/lib/images/icons/book.svg +10 -0
  9. package/lib/images/icons/coin.svg +10 -0
  10. package/lib/images/icons/cookie.svg +9 -0
  11. package/lib/images/icons/dollar-symbol.svg +9 -0
  12. package/lib/images/icons/globe-lines.svg +9 -0
  13. package/lib/images/icons/globe-pin.svg +10 -0
  14. package/lib/images/icons/icons.svg +1 -1
  15. package/lib/images/icons/nodes.svg +9 -0
  16. package/lib/images/icons/order-form-cog.svg +9 -0
  17. package/lib/images/icons/order-form-pencil.svg +13 -0
  18. package/lib/images/icons/order-form-tag.svg +9 -0
  19. package/lib/images/icons/order-form.svg +12 -0
  20. package/lib/images/icons/percentage-banner.svg +12 -0
  21. package/lib/images/icons/percentage-symbol.svg +11 -0
  22. package/lib/images/icons/price-tag.svg +10 -0
  23. package/lib/images/icons/ruler.svg +9 -0
  24. package/lib/images/icons/shopping-cart.svg +3 -3
  25. package/lib/images/icons/squares-clock.svg +13 -0
  26. package/lib/images/icons/squares.svg +11 -0
  27. package/lib/images/icons/warehouse.svg +12 -0
  28. package/package.json +2 -2
  29. package/src/images/icons/book.svg +10 -0
  30. package/src/images/icons/coin.svg +10 -0
  31. package/src/images/icons/cookie.svg +9 -0
  32. package/src/images/icons/dollar-symbol.svg +9 -0
  33. package/src/images/icons/globe-lines.svg +9 -0
  34. package/src/images/icons/globe-pin.svg +10 -0
  35. package/src/images/icons/nodes.svg +9 -0
  36. package/src/images/icons/order-form-cog.svg +9 -0
  37. package/src/images/icons/order-form-pencil.svg +13 -0
  38. package/src/images/icons/order-form-tag.svg +9 -0
  39. package/src/images/icons/order-form.svg +12 -0
  40. package/src/images/icons/percentage-banner.svg +12 -0
  41. package/src/images/icons/percentage-symbol.svg +11 -0
  42. package/src/images/icons/price-tag.svg +10 -0
  43. package/src/images/icons/ruler.svg +9 -0
  44. package/src/images/icons/shopping-cart.svg +3 -3
  45. package/src/images/icons/squares-clock.svg +13 -0
  46. package/src/images/icons/squares.svg +11 -0
  47. package/src/images/icons/warehouse.svg +12 -0
  48. package/src/scss/atlas/variables/_forms.scss +9 -8
  49. package/src/scss/atlas/variables/_globals.scss +23 -5
  50. package/src/scss/atlas/variables/_utilities.scss +12 -8
  51. package/src/scss/cadmin/variables/_forms.scss +9 -8
  52. package/src/scss/components/_custom-forms.scss +9 -7
  53. package/src/scss/components/_tables.scss +29 -23
  54. package/src/scss/functions/_global-functions.scss +18 -0
  55. package/src/scss/functions/_lx-icons-generated.scss +37 -1
  56. package/src/scss/mixins/_globals.scss +0 -36
  57. package/src/scss/mixins/_nav-nested.scss +2 -2
  58. package/src/scss/mixins/_navbar.scss +121 -107
  59. package/src/scss/variables/_dropdowns.scss +1 -2
  60. package/src/scss/variables/_globals.scss +28 -10
  61. package/src/scss/variables/_navbar.scss +9 -4
  62. package/src/scss/variables/_navs.scss +6 -4
  63. package/src/scss/variables/_progress-bars.scss +2 -2
  64. package/src/scss/variables/_tables.scss +63 -3
  65. package/src/scss/variables/_utilities.scss +24 -19
@@ -23,7 +23,7 @@ $autofit-padded-no-gutters-sm: map-merge(
23
23
  // Close
24
24
 
25
25
  $close-color: $black !default;
26
- $close-font-size: $font-size-base * 1.5 !default;
26
+ $close-font-size: calc(#{$font-size-base} * 1.5) !default;
27
27
  $close-font-weight: $font-weight-bold !default;
28
28
  $close-text-shadow: 0 1px 0 $white !default;
29
29
 
@@ -33,7 +33,7 @@ $close: map-deep-merge(
33
33
  align-items: center,
34
34
  appearance: none,
35
35
  background-color: transparent,
36
- border-radius: $btn-border-radius-sm,
36
+ border-radius: $border-radius-sm,
37
37
  border-width: 0,
38
38
  color: $close-color,
39
39
  cursor: $link-cursor,
@@ -47,7 +47,10 @@ $close: map-deep-merge(
47
47
  padding: 0,
48
48
  text-align: center,
49
49
  text-shadow: $close-text-shadow,
50
- transition: $btn-transition,
50
+ transition: #{color 0.15s ease-in-out,
51
+ background-color 0.15s ease-in-out,
52
+ border-color 0.15s ease-in-out,
53
+ box-shadow 0.15s ease-in-out},
51
54
  width: 2rem,
52
55
  hover: (
53
56
  color: $close-color,
@@ -55,6 +58,8 @@ $close: map-deep-merge(
55
58
  text-decoration: none,
56
59
  ),
57
60
  focus: (
61
+ box-shadow: $input-btn-focus-box-shadow,
62
+ outline: 0,
58
63
  opacity: 0.75,
59
64
  ),
60
65
  disabled: (
@@ -62,13 +67,13 @@ $close: map-deep-merge(
62
67
  cursor: $disabled-cursor,
63
68
  opacity: 0.25,
64
69
  outline: 0,
70
+ active: (
71
+ pointer-events: none,
72
+ ),
65
73
  ),
66
- disabled-active: (
67
- pointer-events: none,
74
+ lexicon-icon: (
75
+ margin-top: 0,
68
76
  ),
69
- btn-focus-box-shadow: $input-btn-focus-box-shadow,
70
- btn-focus-outline: 0,
71
- lexicon-icon-margin-top: 0,
72
77
  ),
73
78
  $close
74
79
  );
@@ -311,37 +316,37 @@ $font-sizes: () !default;
311
316
  $font-sizes: map-deep-merge(
312
317
  (
313
318
  text-1: (
314
- font-size: 0.625rem,
319
+ font-size: map-get($font-scale, 1),
315
320
  ),
316
321
  text-2: (
317
- font-size: 0.75rem,
322
+ font-size: map-get($font-scale, 2),
318
323
  ),
319
324
  text-3: (
320
- font-size: 0.875rem,
325
+ font-size: map-get($font-scale, 3),
321
326
  ),
322
327
  text-4: (
323
- font-size: 1rem,
328
+ font-size: map-get($font-scale, 4),
324
329
  ),
325
330
  text-5: (
326
- font-size: 1.125rem,
331
+ font-size: map-get($font-scale, 5),
327
332
  ),
328
333
  text-6: (
329
- font-size: 1.25rem,
334
+ font-size: map-get($font-scale, 6),
330
335
  ),
331
336
  text-7: (
332
- font-size: 1.5rem,
337
+ font-size: map-get($font-scale, 7),
333
338
  ),
334
339
  text-8: (
335
- font-size: 1.75rem,
340
+ font-size: map-get($font-scale, 8),
336
341
  ),
337
342
  text-9: (
338
- font-size: 2rem,
343
+ font-size: map-get($font-scale, 9),
339
344
  ),
340
345
  text-10: (
341
- font-size: 2.25rem,
346
+ font-size: map-get($font-scale, 10),
342
347
  ),
343
348
  text-11: (
344
- font-size: 2.5rem,
349
+ font-size: map-get($font-scale, 11),
345
350
  ),
346
351
  ),
347
352
  $font-sizes