@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,262 @@
1
+ $clay-range-disabled-color: var(
2
+ --clay-range-disabled-color,
3
+ $gray-500
4
+ ) !default;
5
+
6
+ $clay-range-input-group: () !default;
7
+ $clay-range-input-group: map-merge(
8
+ (
9
+ align-items: center,
10
+ ),
11
+ $clay-range-input-group
12
+ );
13
+
14
+ $clay-range-input-group-item: () !default;
15
+ $clay-range-input-group-item: map-merge(
16
+ (
17
+ flex-direction: column,
18
+ ),
19
+ $clay-range-input-group-item
20
+ );
21
+
22
+ $clay-range-input-group-text: () !default;
23
+ $clay-range-input-group-text: map-merge(
24
+ (
25
+ background-color:
26
+ var(
27
+ --clay-range-input-group-text-background-color,
28
+ setter(map-get($clay-range-input-group-text, bg), transparent)
29
+ ),
30
+ border-width: 0,
31
+ color: var(--clay-range-input-group-text-color, $gray-500),
32
+ font-size: var(--clay-range-input-group-text-font-size, 14px),
33
+ font-weight:
34
+ var(
35
+ --clay-range-input-group-text-font-weight,
36
+ $font-weight-semi-bold
37
+ ),
38
+ min-width: var(--clay-range-input-group-text-min-width, 24px),
39
+ padding-bottom: 0,
40
+ padding-left: 0,
41
+ padding-right: 0,
42
+ padding-top: 0,
43
+ ),
44
+ $clay-range-input-group-text
45
+ );
46
+
47
+ $clay-range-title: () !default;
48
+ $clay-range-title: map-deep-merge(
49
+ (
50
+ color: var(--clay-range-title-color),
51
+ display: block,
52
+ font-size: var(--clay-range-title-font-size),
53
+ font-weight: var(--clay-range-title-font-weight, $font-weight-semi-bold),
54
+ line-height: var(--clay-range-title-line-height, 1),
55
+ margin-bottom: var(--clay-range-title-margin-bottom, 8px),
56
+ text-align: center,
57
+ ),
58
+ $clay-range-title
59
+ );
60
+
61
+ $clay-range-input: () !default;
62
+ $clay-range-input: map-deep-merge(
63
+ (
64
+ color: var(--clay-range-input-color, $gray-500),
65
+ display: block,
66
+ padding-bottom: 0.1px,
67
+ position: relative,
68
+ vertical-align: middle,
69
+ width: 100%,
70
+
71
+ clay-range-thumb: (
72
+ background-color: var(--clay-range-thumb-background-color, $white),
73
+ border: var(--clay-range-thumb-border),
74
+ border-radius: var(--clay-range-thumb-border-radius, 100px),
75
+ border-width: var(--clay-range-thumb-border-width, 0),
76
+ box-shadow:
77
+ var(
78
+ --clay-range-thumb-box-shadow,
79
+ 0 1px 5px -1px rgba(0, 0, 0, 0.3)
80
+ ),
81
+ height: var(--clay-range-thumb-height, 24px),
82
+ margin-top: var(--clay-range-thumb-margin-top, -0.75rem),
83
+ width: var(--clay-range-thumb-width, 24px),
84
+ ),
85
+
86
+ clay-range-track: (
87
+ background-color:
88
+ var(--clay-range-track-background-color, $gray-200),
89
+ border-radius: var(--clay-range-track-border-radius, 100px),
90
+ height: var(--clay-range-track-height, 4px),
91
+ position: absolute,
92
+ top: 50%,
93
+ width: 100%,
94
+ ),
95
+
96
+ clay-range-progress: (
97
+ background-color:
98
+ var(--clay-range-progress-background-color, $primary),
99
+ border-radius:
100
+ var(--clay-range-progress-border-radius, 100px 0 0 100px),
101
+ position: absolute,
102
+ top: 50%,
103
+ width: 50%,
104
+ ),
105
+
106
+ tooltip: (
107
+ margin-left: 13px,
108
+ transition: opacity 0.15s linear,
109
+ visibility: hidden,
110
+ white-space: nowrap,
111
+ ),
112
+
113
+ tooltip-inner: (
114
+ padding: 8px 12px,
115
+ ),
116
+
117
+ tooltip-arrow: (
118
+ height: 6px,
119
+ width: 6px,
120
+ ),
121
+
122
+ clay-tooltip-bottom: (
123
+ margin-top: 4px,
124
+ padding-top: 3px,
125
+ top: 100%,
126
+ transform: translateX(-50%),
127
+ tooltip-arrow: (
128
+ margin-left: -4px,
129
+ ),
130
+ ),
131
+
132
+ clay-tooltip-top: (
133
+ bottom: 100%,
134
+ margin-bottom: 4px,
135
+ padding-bottom: 3px,
136
+ transform: translateX(-50%),
137
+ tooltip-arrow: (
138
+ margin-left: -4px,
139
+ ),
140
+ ),
141
+ form-control-range: (
142
+ appearance: none,
143
+ background-color: transparent,
144
+ height: var(--form-control-range-height, $input-height),
145
+ position: relative,
146
+
147
+ hover: (
148
+ cursor: $link-cursor,
149
+
150
+ clay-range-thumb: (
151
+ background-color:
152
+ var(
153
+ --clay-range-thumb-hover-background-color,
154
+ $primary-l3
155
+ ),
156
+ ),
157
+ ),
158
+
159
+ focus: (
160
+ outline: 0,
161
+
162
+ clay-range-thumb: (
163
+ box-shadow:
164
+ var(
165
+ --clay-range-thumb-focus-box-shadow,
166
+ $component-focus-inset-box-shadow
167
+ ),
168
+ ),
169
+ ),
170
+
171
+ disabled: (
172
+ color:
173
+ var(
174
+ --clay-range-input-disabled-color,
175
+ $clay-range-disabled-color
176
+ ),
177
+ cursor: $disabled-cursor,
178
+
179
+ clay-range-thumb: (
180
+ background-color:
181
+ var(
182
+ --clay-range-thumb-disabled-background-color,
183
+ $gray-100
184
+ ),
185
+ ),
186
+
187
+ clay-range-progress: (
188
+ background-color:
189
+ var(
190
+ --clay-range-progress-disabled-clay-range-progress,
191
+ $primary-l2
192
+ ),
193
+ ),
194
+
195
+ clay-range-track: (
196
+ background-color:
197
+ var(
198
+ --clay-range-track-disabled-clay-range-track,
199
+ $gray-200
200
+ ),
201
+ ),
202
+ ),
203
+ ),
204
+
205
+ data-label-min-max: (
206
+ margin-bottom: var(--data-label-spacer, 16px),
207
+ ),
208
+
209
+ before-after: (
210
+ font-size: var(--data-label-font-size, 14px),
211
+ font-weight: var(--data-label-font-weight, $font-weight-semi-bold),
212
+ line-height: var(--data-label-line-height, 1),
213
+ margin-top: var(--data-label-margin-top, 40px),
214
+ position: absolute,
215
+ text-align: center,
216
+ top: var(--data-label-top, 0),
217
+ width: var(--data-label-width, 24px),
218
+ ),
219
+
220
+ data-label-min: (
221
+ before: (
222
+ content: unquote("'\\FEFF' attr(data-label-min)"),
223
+ ),
224
+ ),
225
+
226
+ data-label-max: (
227
+ after: (
228
+ content: unquote("'\\FEFF' attr(data-label-max)"),
229
+ right: 0,
230
+ ),
231
+ ),
232
+ ),
233
+ $clay-range-input
234
+ );
235
+
236
+ $clay-range-progress-none: () !default;
237
+ $clay-range-progress-none: map-deep-merge(
238
+ (
239
+ clay-range-input: (
240
+ ms-thumb: (
241
+ visibility: visible,
242
+ ),
243
+
244
+ moz-range-thumb: (
245
+ visibility: visible,
246
+ ),
247
+
248
+ webkit-slider-thumb: (
249
+ visibility: visible,
250
+ ),
251
+
252
+ clay-range-thumb: (
253
+ visibility: hidden,
254
+ ),
255
+
256
+ clay-range-progress: (
257
+ visibility: hidden,
258
+ ),
259
+ ),
260
+ ),
261
+ $clay-range-progress-none
262
+ );
@@ -0,0 +1,91 @@
1
+ $clay-reorder: () !default;
2
+ $clay-reorder: map-deep-merge(
3
+ (
4
+ padding: var(--clay-reorder-padding, 2px),
5
+ position: relative,
6
+ z-index: 0,
7
+ ),
8
+ $clay-reorder
9
+ );
10
+
11
+ $clay-reorder-input-inset: () !default;
12
+ $clay-reorder-input-inset: map-deep-merge(
13
+ (
14
+ margin-bottom: 0,
15
+ margin-top: 0,
16
+ overflow: auto,
17
+ padding-bottom: $input-padding-y,
18
+ padding-top: $input-padding-y,
19
+ width: 100%,
20
+
21
+ focus: (
22
+ background-color: transparent,
23
+ box-shadow: none,
24
+ ),
25
+ ),
26
+ $clay-reorder-input-inset
27
+ );
28
+
29
+ $clay-reorder-underlay: () !default;
30
+ $clay-reorder-underlay: map-deep-merge(
31
+ (
32
+ bottom: 0,
33
+ left: 0,
34
+ position: absolute,
35
+ right: 0,
36
+ top: 0,
37
+ z-index: -1,
38
+ ),
39
+ $clay-reorder-underlay
40
+ );
41
+
42
+ $clay-reorder-underlay-focus: () !default;
43
+ $clay-reorder-underlay-focus: map-deep-merge(
44
+ (
45
+ background-color:
46
+ var(--clay-reorder-underlay-focus-background-color, $input-focus-bg),
47
+ border-color:
48
+ var(
49
+ --clay-reorder-underlay-focus-border-color,
50
+ $input-focus-border-color
51
+ ),
52
+ box-shadow:
53
+ var(
54
+ --clay-reorder-underlay-focus-box-shadow,
55
+ $input-focus-box-shadow
56
+ ),
57
+ ),
58
+ $clay-reorder-underlay-focus
59
+ );
60
+
61
+ $clay-reorder-footer: () !default;
62
+ $clay-reorder-footer: map-deep-merge(
63
+ (
64
+ padding: var(--clay-reoder-footer-padding, 8px),
65
+ ),
66
+ $clay-reorder-footer
67
+ );
68
+
69
+ $clay-reorder-footer-invisible: () !default;
70
+ $clay-reorder-footer-invisible: map-deep-merge(
71
+ (
72
+ visibility: hidden,
73
+ ),
74
+ $clay-reorder-footer-invisible
75
+ );
76
+
77
+ $clay-reorder-footer-center: () !default;
78
+ $clay-reorder-footer-center: map-deep-merge(
79
+ (
80
+ text-align: center,
81
+ ),
82
+ $clay-reorder-footer-center
83
+ );
84
+
85
+ $clay-reorder-footer-end: () !default;
86
+ $clay-reorder-footer-end: map-deep-merge(
87
+ (
88
+ text-align: right,
89
+ ),
90
+ $clay-reorder-footer-end
91
+ );
@@ -0,0 +1,37 @@
1
+ $c-horizontal-resizer: () !default;
2
+ $c-horizontal-resizer: map-merge(
3
+ (
4
+ background-color: transparent,
5
+ bottom: 0rem,
6
+ cursor: ew-resize,
7
+ margin-right: -0.25rem,
8
+ position: absolute,
9
+ right: 0rem,
10
+ top: 0rem,
11
+ user-select: none,
12
+ width: 0.75rem,
13
+ z-index: 10,
14
+
15
+ before: (
16
+ bottom: 0rem,
17
+ content: '',
18
+ left: 0.25rem,
19
+ position: absolute,
20
+ right: 0.25rem,
21
+ top: 0rem,
22
+ ),
23
+
24
+ hover: (
25
+ before: (
26
+ background-color: $primary-l0,
27
+ ),
28
+ ),
29
+
30
+ focus: (
31
+ before: (
32
+ background-color: $primary-l0,
33
+ ),
34
+ ),
35
+ ),
36
+ $c-horizontal-resizer
37
+ );
@@ -0,0 +1,301 @@
1
+ $sheet-bg: var(--sheet-background-color, $white) !default;
2
+ $sheet-border-color: var(--sheet-border-color, $gray-300) !default;
3
+ $sheet-border-radius: var(--sheet-border-radius, $border-radius) !default;
4
+ $sheet-border-style: var(--sheet-border-style, solid) !default;
5
+ $sheet-border-width: var(--sheet-border-width, 1px) !default;
6
+ $sheet-padding-bottom: var(--sheet-padding-bottom, 1px) !default;
7
+ $sheet-padding-left: var(--sheet-padding-left, 24px) !default;
8
+ $sheet-padding-right: var(--sheet-padding-right, 24px) !default;
9
+ $sheet-padding-top: var(--sheet-padding-top, 24px) !default;
10
+
11
+ $sheet-padding-bottom-mobile: var(--sheet-padding-bottom-mobile, 1px) !default;
12
+ $sheet-padding-left-mobile: var(--sheet-padding-left-mobile, 16px) !default;
13
+ $sheet-padding-right-mobile: var(--sheet-padding-right-mobile, 16px) !default;
14
+ $sheet-padding-top-mobile: var(--sheet-padding-top-mobile, 16px) !default;
15
+
16
+ $sheet-plus-sheet: () !default;
17
+ $sheet-plus-sheet: map-merge(
18
+ (
19
+ margin-top: var(--sheet-plus-sheet, 48px),
20
+ ),
21
+ $sheet-plus-sheet
22
+ );
23
+ // Sheet Row
24
+
25
+ $sheet-row: () !default;
26
+ $sheet-row: map-merge(
27
+ (
28
+ margin-left: calc(#{$sheet-padding-left} * -1),
29
+ margin-right: calc(#{$sheet-padding-right} * -1),
30
+ media-breakpoint-down: (
31
+ sm: (
32
+ margin-left: calc(#{$sheet-padding-left-mobile} * -1),
33
+ margin-right: calc(#{$sheet-padding-right-mobile} * -1),
34
+ ),
35
+ ),
36
+ ),
37
+ $sheet-row
38
+ );
39
+
40
+ // Sheet Header
41
+
42
+ $sheet-header-margin-bottom: var(--sheet-header-margin-bottom, 48px) !default;
43
+
44
+ $sheet-header-margin-bottom-mobile: var(
45
+ --sheet-header-margin-bottom-mobile,
46
+ 32px
47
+ ) !default;
48
+
49
+ // Sheet Section
50
+
51
+ $sheet-section-margin-bottom: var(--sheet-section-margin-bottom, 48px) !default;
52
+
53
+ $sheet-section-margin-bottom-mobile: var(
54
+ --sheet-section-margin-bottom-mobile,
55
+ 32px
56
+ ) !default;
57
+
58
+ $sheet-panel-group-margin-bottom: var(
59
+ --sheet-panel-group-margin-bottom,
60
+ 24px
61
+ ) !default;
62
+
63
+ $sheet-panel-group-margin-bottom-mobile: var(
64
+ --sheet-panel-group-margin-bottom-mobile,
65
+ 16px
66
+ ) !default;
67
+
68
+ // Sheet Footer
69
+
70
+ $sheet-footer-margin-bottom: var(--sheet-footer-margin-bottom, 24px) !default;
71
+ $sheet-footer-margin-left: var(--sheet-footer-margin-left, 0px) !default;
72
+ $sheet-footer-margin-right: var(--sheet-footer-margin-right, 0px) !default;
73
+ $sheet-footer-margin-top: var(--sheet-footer-margin-top, 24px) !default;
74
+
75
+ $sheet-footer-margin-bottom-mobile: var(
76
+ --sheet-footer-margin-bottom-mobile,
77
+ 16px
78
+ ) !default;
79
+ $sheet-footer-margin-left-mobile: var(
80
+ --sheet-footer-margin-left-mobile,
81
+ 0px
82
+ ) !default;
83
+ $sheet-footer-margin-right-mobile: var(
84
+ --sheet-footer-margin-right-mobile,
85
+ 0px
86
+ ) !default;
87
+ $sheet-footer-margin-top-mobile: var(
88
+ --sheet-footer-margin-top-mobile,
89
+ 16px
90
+ ) !default;
91
+
92
+ $sheet-footer-btn-block-sm-down: () !default;
93
+ $sheet-footer-btn-block-sm-down: map-deep-merge(
94
+ (
95
+ breakpoint-down: sm,
96
+
97
+ mobile: (
98
+ display: block,
99
+
100
+ btn: (
101
+ display: block,
102
+ margin-bottom: 1rem,
103
+ width: 100%,
104
+ ),
105
+
106
+ btn-group: (
107
+ display: block,
108
+ ),
109
+
110
+ btn-group-item: (
111
+ display: block,
112
+ margin-right: 0rem,
113
+ ),
114
+ ),
115
+ ),
116
+ $sheet-footer-btn-block-sm-down
117
+ );
118
+
119
+ // Sheet Sizes
120
+
121
+ // @deprecated as of 3.x.
122
+
123
+ $sheet-lg-max-width: calc(
124
+ #{map-get($container-max-widths, lg)} * 0.83333
125
+ ) !default;
126
+
127
+ // Sheet Title
128
+
129
+ $sheet-title-color: null !default;
130
+ $sheet-title-font-size: 1.25rem !default;
131
+ $sheet-title-font-weight: $font-weight-bold !default;
132
+ $sheet-title-line-height: $headings-line-height !default; // 1.2
133
+ $sheet-title-margin-bottom: 1.5rem !default; // 24px
134
+
135
+ $sheet-title-autofit-padded-no-gutters-ext: 'autofit-padded-no-gutters-sm' !default;
136
+
137
+ $sheet-title-font-size-mobile: 1.25rem !default; // 20px
138
+ $sheet-title-margin-bottom-mobile: 1rem !default;
139
+
140
+ // Sheet Subtitle
141
+
142
+ $sheet-subtitle-border-color: $gray-500 !default;
143
+ $sheet-subtitle-border-style: solid !default;
144
+ $sheet-subtitle-border-width: 0 0 1px 0 !default;
145
+ $sheet-subtitle-color: $body-color !default;
146
+ $sheet-subtitle-font-size: 14px !default;
147
+ $sheet-subtitle-font-weight: $font-weight-semi-bold !default;
148
+ $sheet-subtitle-line-height: $headings-line-height !default; // 1.2
149
+ $sheet-subtitle-margin-bottom: 1.5rem !default; // 24px
150
+ $sheet-subtitle-padding-x: 0px !default;
151
+ $sheet-subtitle-padding-y: 8px !default;
152
+ $sheet-subtitle-text-transform: uppercase !default;
153
+
154
+ $sheet-subtitle-font-size-mobile: null !default;
155
+ $sheet-subtitle-margin-bottom-mobile: 1rem !default;
156
+
157
+ $sheet-subtitle-heading-text-margin-bottom: 0rem !default;
158
+ $sheet-subtitle-heading-text-margin-top: auto !default;
159
+
160
+ // Sheet Subtitle as Panel Header
161
+
162
+ $sheet-subtitle-link-color: $sheet-subtitle-color !default;
163
+ $sheet-subtitle-link-text-decoration: null !default;
164
+
165
+ $sheet-subtitle-link-hover-color: null !default;
166
+ $sheet-subtitle-link-hover-text-decoration: none !default;
167
+
168
+ $sheet-subtitle-link: () !default;
169
+ $sheet-subtitle-link: map-deep-merge(
170
+ (
171
+ border-radius: 1px,
172
+ color: $sheet-subtitle-link-color,
173
+ text-decoration: $sheet-subtitle-link-text-decoration,
174
+ transition: box-shadow 0.15s ease-in-out,
175
+
176
+ hover: (
177
+ color: $sheet-subtitle-link-hover-color,
178
+ text-decoration: $sheet-subtitle-link-hover-text-decoration,
179
+ ),
180
+
181
+ focus: (
182
+ box-shadow: #{0 0 0 4px $white,
183
+ 0 0 0 6px $primary-l0},
184
+ outline: 0,
185
+ ),
186
+ ),
187
+ $sheet-subtitle-link
188
+ );
189
+
190
+ $sheet-subtitle-collapse-icon-font-size: 12px !default;
191
+
192
+ $sheet-subtitle-collapse-icon-bottom: null !default;
193
+ $sheet-subtitle-collapse-icon-left: null !default;
194
+ $sheet-subtitle-collapse-icon-right: null !default;
195
+ $sheet-subtitle-collapse-icon-top: clay-collapse-icon-align(
196
+ $sheet-subtitle-padding-y,
197
+ 0,
198
+ 1em,
199
+ $sheet-subtitle-line-height
200
+ ) !default;
201
+
202
+ $sheet-subtitle-collapse-icon-padding-left: null !default;
203
+ $sheet-subtitle-collapse-icon-padding-right: null !default;
204
+
205
+ // Sheet Tertiary Title
206
+
207
+ $sheet-tertiary-title-color: $sheet-subtitle-color !default;
208
+ $sheet-tertiary-title-font-size: $sheet-subtitle-font-size !default;
209
+ $sheet-tertiary-title-font-weight: $sheet-subtitle-font-weight !default;
210
+ $sheet-tertiary-title-line-height: $sheet-subtitle-line-height !default;
211
+ $sheet-tertiary-title-margin-bottom: $sheet-subtitle-margin-bottom !default;
212
+ $sheet-tertiary-title-padding-x: $sheet-subtitle-padding-x !default;
213
+ $sheet-tertiary-title-padding-y: $sheet-subtitle-padding-y !default;
214
+ $sheet-tertiary-title-text-transform: $sheet-subtitle-text-transform !default;
215
+
216
+ $sheet-tertiary-title-font-size-mobile: null !default;
217
+ $sheet-tertiary-title-margin-bottom-mobile: 8px !default;
218
+
219
+ // Sheet Text
220
+
221
+ $sheet-text-color: $gray-600 !default;
222
+ $sheet-text-font-size: null !default;
223
+ $sheet-text-font-weight: null !default;
224
+ $sheet-text-margin-bottom: 1.5rem !default; // 24px
225
+
226
+ $sheet-text-font-size-mobile: null !default;
227
+ $sheet-text-margin-bottom-mobile: 1rem !default;
228
+
229
+ // Sheet Multiple Form Variant
230
+
231
+ $sheet-multiple-form: () !default;
232
+
233
+ $sheet-multiple-form-sheet-header: () !default;
234
+ $sheet-multiple-form-sheet-header: map-merge(
235
+ (
236
+ border-color: $gray-300,
237
+ border-style: solid,
238
+ border-width: 0px 0px 1px,
239
+ margin: -1.5rem -1.5rem 1.5rem,
240
+ padding: 1rem 1.5rem,
241
+ ),
242
+ $sheet-multiple-form-sheet-header
243
+ );
244
+
245
+ $sheet-multiple-form-sheet-header-mobile: () !default;
246
+ $sheet-multiple-form-sheet-header-mobile: map-merge(
247
+ (
248
+ margin: -1rem -1rem 1rem,
249
+ padding: 1rem,
250
+ ),
251
+ $sheet-multiple-form-sheet-header-mobile
252
+ );
253
+
254
+ $sheet-multiple-form-sheet-title: () !default;
255
+ $sheet-multiple-form-sheet-title: map-merge(
256
+ (
257
+ margin-bottom: 0rem,
258
+ ),
259
+ $sheet-multiple-form-sheet-title
260
+ );
261
+
262
+ // Sheet Dataset Content Variant
263
+
264
+ $sheet-dataset-content: () !default;
265
+
266
+ $sheet-dataset-content-sheet-header: () !default;
267
+ $sheet-dataset-content-sheet-header: map-merge(
268
+ (
269
+ border-width: 0px,
270
+ margin: -1.5rem -1.5rem 1.5rem,
271
+ padding: 1rem 1.5rem,
272
+ ),
273
+ $sheet-dataset-content-sheet-header
274
+ );
275
+
276
+ $sheet-dataset-content-sheet-header-mobile: () !default;
277
+ $sheet-dataset-content-sheet-header-mobile: map-merge(
278
+ (
279
+ margin: -1rem -1rem 1rem,
280
+ padding: 1rem,
281
+ ),
282
+ $sheet-dataset-content-sheet-header-mobile
283
+ );
284
+
285
+ $sheet-dataset-content-sheet-title: () !default;
286
+ $sheet-dataset-content-sheet-title: map-merge(
287
+ (
288
+ margin-bottom: 0rem,
289
+ ),
290
+ $sheet-dataset-content-sheet-title
291
+ );
292
+
293
+ // Sheet in Card Page
294
+
295
+ $card-page-item-sheet: () !default;
296
+ $card-page-item-sheet: map-merge(
297
+ (
298
+ margin-bottom: $grid-gutter-width,
299
+ ),
300
+ $card-page-item-sheet
301
+ );
@@ -0,0 +1,2 @@
1
+ $sidenav-transition: all 0.5s ease !default;
2
+ $sidenav-width: 320px !default;