@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
@@ -0,0 +1,72 @@
1
+ $clay-dual-listbox: () !default;
2
+ $clay-dual-listbox: map-deep-merge(
3
+ (
4
+ display: flex,
5
+ flex-direction: row,
6
+ ),
7
+ $clay-dual-listbox
8
+ );
9
+
10
+ $clay-dual-listbox-label: () !default;
11
+ $clay-dual-listbox-label: map-deep-merge(
12
+ (
13
+ margin-bottom: var(--dual-listbox-label-margin-bottom, 16px),
14
+ ),
15
+ $clay-dual-listbox-label
16
+ );
17
+
18
+ $clay-dual-listbox-clay-reorder: () !default;
19
+ $clay-dual-listbox-clay-reorder: map-deep-merge(
20
+ (
21
+ display: flex,
22
+ flex-direction: column,
23
+ flex-grow: 1,
24
+ ),
25
+ $clay-dual-listbox-clay-reorder
26
+ );
27
+
28
+ $clay-dual-listbox-item: () !default;
29
+ $clay-dual-listbox-item: map-deep-merge(
30
+ (
31
+ display: flex,
32
+ flex-direction: column,
33
+ margin-right: var(--dual-listbox-item-margin-right, 4px),
34
+ ),
35
+ $clay-dual-listbox-item
36
+ );
37
+
38
+ $clay-dual-listbox-item-sm-up: () !default;
39
+ $clay-dual-listbox-item-sm-up: map-deep-merge(
40
+ (
41
+ margin-right: var(--dual-listbox-item-sm-up-margin-right, 24px),
42
+ ),
43
+ $clay-dual-listbox-item-sm-up
44
+ );
45
+
46
+ $clay-dual-listbox-item-last-child: () !default;
47
+ $clay-dual-listbox-item-last-child: map-deep-merge(
48
+ (
49
+ margin-right: var(--clay-dual-listbox-item-last-child-margin-right, 0),
50
+ ),
51
+ $clay-dual-listbox-item-last-child
52
+ );
53
+
54
+ $clay-dual-listbox-item-expand: () !default;
55
+ $clay-dual-listbox-item-expand: map-deep-merge(
56
+ (
57
+ flex-grow: 1,
58
+ width: var(--clay-dual-listbox-item-expand-width, 48px),
59
+ word-wrap: break-word,
60
+ ),
61
+ $clay-dual-listbox-item-expand
62
+ );
63
+
64
+ $clay-dual-listbox-actions: () !default;
65
+ $clay-dual-listbox-actions: map-deep-merge(
66
+ (
67
+ align-self: center,
68
+ margin-top:
69
+ var(--clay-dual-listbox-actions-margin-top, calc(21px + 16px)),
70
+ ),
71
+ $clay-dual-listbox-actions
72
+ );
@@ -0,0 +1,102 @@
1
+ $c-empty-state: () !default;
2
+
3
+ $c-empty-state-animation: () !default;
4
+ $c-empty-state-animation: map-deep-merge(
5
+ (
6
+ align-items: center,
7
+ display: flex,
8
+ flex-direction: column,
9
+ flex-shrink: 0,
10
+ margin: 5rem auto 1.5rem,
11
+ max-width: 340px,
12
+ text-align: center,
13
+ ),
14
+ $c-empty-state-animation
15
+ );
16
+
17
+ $c-empty-state-image: () !default;
18
+ $c-empty-state-image: map-deep-merge(
19
+ (
20
+ margin-bottom: -0.5rem,
21
+ max-width: 250px,
22
+ width: 100%,
23
+ word-wrap: break-word,
24
+ ),
25
+ $c-empty-state-image
26
+ );
27
+
28
+ $c-empty-state-aspect-ratio: () !default;
29
+ $c-empty-state-aspect-ratio: map-deep-merge(
30
+ (
31
+ background-repeat: no-repeat,
32
+ background-position: center,
33
+ background-size: 100%,
34
+ display: block,
35
+ padding-bottom: 100%,
36
+ position: relative,
37
+ width: 100%,
38
+ ),
39
+ $c-empty-state-aspect-ratio
40
+ );
41
+
42
+ $c-empty-state-title: () !default;
43
+ $c-empty-state-title: map-deep-merge(
44
+ (
45
+ font-size: 1.25rem,
46
+ font-weight: $font-weight-semi-bold,
47
+ line-height: $headings-line-height,
48
+ margin-bottom: 0rem,
49
+ margin-top: 2.5rem,
50
+ max-width: 100%,
51
+ word-wrap: break-word,
52
+ ),
53
+ $c-empty-state-title
54
+ );
55
+
56
+ $c-empty-state-text: () !default;
57
+ $c-empty-state-text: map-deep-merge(
58
+ (
59
+ color: $secondary,
60
+ margin-bottom: 0rem,
61
+ margin-top: 0.5rem,
62
+ max-width: 100%,
63
+ word-wrap: break-word,
64
+ ),
65
+ $c-empty-state-text
66
+ );
67
+
68
+ $c-empty-state-footer: () !default;
69
+ $c-empty-state-footer: map-deep-merge(
70
+ (
71
+ margin-top: 1rem,
72
+ max-width: 100%,
73
+ word-wrap: break-word,
74
+ ),
75
+ $c-empty-state-footer
76
+ );
77
+
78
+ // .c-empty-state-sm
79
+
80
+ $c-empty-state-sm: () !default;
81
+ $c-empty-state-sm: map-deep-merge(
82
+ (
83
+ c-empty-state-animation: (
84
+ margin: 2.5rem auto 2rem,
85
+ max-width: 268px,
86
+ ),
87
+
88
+ c-empty-state-image: (
89
+ max-width: 120px,
90
+ ),
91
+
92
+ c-empty-state-title: (
93
+ font-size: 1rem,
94
+ line-height: 1.5,
95
+ ),
96
+
97
+ c-empty-state-text: (
98
+ font-size: 0.875rem,
99
+ ),
100
+ ),
101
+ $c-empty-state-sm
102
+ );