@finqu/cool 1.3.0 → 2.0.2
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.
- package/README.md +23 -9
- package/dist/css/cool.css +13391 -7742
- package/dist/css/cool.css.map +1 -1
- package/dist/css/cool.min.css +2 -93
- package/dist/css/cool.min.css.map +1 -1
- package/dist/js/cool.bundle.js +16051 -17050
- package/dist/js/cool.bundle.js.map +1 -1
- package/dist/js/cool.bundle.min.js +11 -18
- package/dist/js/cool.bundle.min.js.map +1 -1
- package/dist/js/cool.esm.js +3469 -4468
- package/dist/js/cool.esm.js.map +1 -1
- package/dist/js/cool.esm.min.js +2 -8
- package/dist/js/cool.esm.min.js.map +1 -1
- package/dist/js/cool.js +5083 -6089
- package/dist/js/cool.js.map +1 -1
- package/dist/js/cool.min.js +2 -8
- package/dist/js/cool.min.js.map +1 -1
- package/package.json +48 -16
- package/scss/LISENCE +15 -0
- package/scss/_badge.scss +134 -0
- package/scss/_button-group.scss +80 -0
- package/scss/_buttons.scss +304 -0
- package/scss/_dark.scss +637 -0
- package/scss/_dialog.scss +351 -0
- package/scss/_dropdown.scss +165 -0
- package/scss/_forms.scss +613 -0
- package/scss/_frame.scss +948 -0
- package/scss/_grid.scss +215 -0
- package/scss/_input-group.scss +326 -0
- package/scss/_list-group.scss +127 -0
- package/scss/_media.scss +439 -0
- package/scss/_navbar.scss +122 -0
- package/scss/_notification.scss +115 -0
- package/scss/_pagination.scss +82 -0
- package/scss/_popover.scss +61 -0
- package/scss/_reboot.scss +306 -0
- package/scss/_root.scss +848 -0
- package/scss/_section.scss +735 -0
- package/scss/_select.scss +559 -0
- package/scss/_tables.scss +611 -0
- package/scss/_tabs.scss +50 -0
- package/scss/_toast.scss +277 -0
- package/scss/_tooltip.scss +130 -0
- package/scss/_typography.scss +166 -0
- package/scss/_variables.scss +1229 -0
- package/scss/cool.scss +69 -0
- package/scss/utilities/_align.scss +51 -0
- package/scss/utilities/_animation.scss +165 -0
- package/scss/utilities/_background.scss +72 -0
- package/scss/utilities/_borders.scss +205 -0
- package/scss/utilities/_collapse.scss +28 -0
- package/scss/utilities/_cursor.scss +160 -0
- package/scss/utilities/_display.scss +116 -0
- package/scss/utilities/_embed.scss +89 -0
- package/scss/utilities/_fill.scss +79 -0
- package/scss/utilities/_filters.scss +233 -0
- package/scss/utilities/_flex.scss +216 -0
- package/scss/utilities/_grid.scss +136 -0
- package/scss/utilities/_opacity.scss +131 -0
- package/scss/utilities/_overflow.scss +242 -0
- package/scss/utilities/_perfect-scrollbar.scss +147 -0
- package/scss/utilities/_pointer-events.scss +125 -0
- package/scss/utilities/_position.scss +130 -0
- package/scss/utilities/_screen-readers.scss +95 -0
- package/scss/utilities/_shadows.scss +195 -0
- package/scss/utilities/_sizing.scss +288 -0
- package/scss/utilities/_spacing.scss +168 -0
- package/scss/utilities/_stroke.scss +124 -0
- package/scss/utilities/_text.scss +420 -0
- package/scss/utilities/_transform.scss +232 -0
- package/scss/utilities/_transitions.scss +147 -0
- package/scss/utilities/_user-select.scss +93 -0
- package/scss/utilities/_visibility.scss +66 -0
- package/scss/utilities/_z-index.scss +169 -0
package/scss/_root.scss
ADDED
|
@@ -0,0 +1,848 @@
|
|
|
1
|
+
@use "variables" as *;
|
|
2
|
+
@use "sass:meta";
|
|
3
|
+
@use "sass:math";
|
|
4
|
+
|
|
5
|
+
@layer reset, base, layout, vendor, icons, components, utilities, app;
|
|
6
|
+
|
|
7
|
+
/* Root ========================================================================== */
|
|
8
|
+
|
|
9
|
+
@mixin cool-root-base {
|
|
10
|
+
:root {
|
|
11
|
+
--cool-color-grey-50: #{$grey-50};
|
|
12
|
+
--cool-color-grey-100: #{$grey-100};
|
|
13
|
+
--cool-color-grey-150: #{$grey-150};
|
|
14
|
+
--cool-color-grey-200: #{$grey-200};
|
|
15
|
+
--cool-color-grey-250: #{$grey-250};
|
|
16
|
+
--cool-color-grey-300: #{$grey-300};
|
|
17
|
+
--cool-color-grey-350: #{$grey-350};
|
|
18
|
+
--cool-color-grey-400: #{$grey-400};
|
|
19
|
+
--cool-color-grey-450: #{$grey-450};
|
|
20
|
+
--cool-color-grey-500: #{$grey-500};
|
|
21
|
+
--cool-color-grey-550: #{$grey-550};
|
|
22
|
+
--cool-color-grey-600: #{$grey-600};
|
|
23
|
+
--cool-color-grey-650: #{$grey-650};
|
|
24
|
+
--cool-color-grey-700: #{$grey-700};
|
|
25
|
+
--cool-color-grey-750: #{$grey-750};
|
|
26
|
+
--cool-color-grey-800: #{$grey-800};
|
|
27
|
+
--cool-color-grey-850: #{$grey-850};
|
|
28
|
+
--cool-color-grey-900: #{$grey-900};
|
|
29
|
+
--cool-color-grey-950: #{$grey-950};
|
|
30
|
+
|
|
31
|
+
@each $color, $value in $colors {
|
|
32
|
+
--cool-color-#{$color}: #{$value};
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
@each $color, $value in $theme-colors {
|
|
36
|
+
--cool-theme-color-#{$color}: #{$value};
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
@each $color, $value in $theme-foreground-colors {
|
|
40
|
+
--cool-theme-foreground-color-#{$color}: #{$value};
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
@each $color, $value in $theme-bg-colors {
|
|
44
|
+
--cool-theme-bg-color-#{$color}: #{$value};
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
@each $color, $value in $theme-text-colors {
|
|
48
|
+
--cool-theme-text-color-#{$color}: #{$value};
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
// Typography
|
|
52
|
+
--cool-font-family-sans-serif: #{meta.inspect($font-family-sans-serif)};
|
|
53
|
+
--cool-font-family-serif: #{meta.inspect($font-family-serif)};
|
|
54
|
+
--cool-font-family-title: #{meta.inspect($font-family-title)};
|
|
55
|
+
--cool-font-family-monospace: #{meta.inspect($font-family-monospace)};
|
|
56
|
+
--cool-font-family-base: #{meta.inspect($font-family-base)};
|
|
57
|
+
|
|
58
|
+
--cool-font-size-base: #{$font-size-base};
|
|
59
|
+
--cool-font-size-lg: #{$font-size-lg};
|
|
60
|
+
--cool-font-size-sm: #{$font-size-sm};
|
|
61
|
+
--cool-font-size-xs: #{$font-size-xs};
|
|
62
|
+
|
|
63
|
+
--cool-font-weight-lighter: #{$font-weight-lighter};
|
|
64
|
+
--cool-font-weight-light: #{$font-weight-light};
|
|
65
|
+
--cool-font-weight-normal: #{$font-weight-normal};
|
|
66
|
+
--cool-font-weight-bold: #{$font-weight-bold};
|
|
67
|
+
--cool-font-weight-bolder: #{$font-weight-bolder};
|
|
68
|
+
--cool-font-weight-base: #{$font-weight-base};
|
|
69
|
+
|
|
70
|
+
--cool-line-height-lg: #{$line-height-lg};
|
|
71
|
+
--cool-line-height-base: #{$line-height-base};
|
|
72
|
+
--cool-line-height-sm: #{$line-height-sm};
|
|
73
|
+
--cool-line-height-xs: #{$line-height-xs};
|
|
74
|
+
--cool-line-height-computed: #{$line-height-computed};
|
|
75
|
+
|
|
76
|
+
--cool-hr-border-color: #{$hr-border-color};
|
|
77
|
+
--cool-hr-border-width: #{$hr-border-width};
|
|
78
|
+
--cool-hr-margin-y: #{$hr-margin-y};
|
|
79
|
+
|
|
80
|
+
--cool-small-font-size: #{$small-font-size};
|
|
81
|
+
|
|
82
|
+
--cool-lead-font-size: #{$lead-font-size};
|
|
83
|
+
--cool-lead-font-weight: #{$lead-font-weight};
|
|
84
|
+
|
|
85
|
+
// Headings
|
|
86
|
+
--cool-h1-font-size: #{$h1-font-size};
|
|
87
|
+
--cool-h2-font-size: #{$h2-font-size};
|
|
88
|
+
--cool-h3-font-size: #{$h3-font-size};
|
|
89
|
+
--cool-h4-font-size: #{$h4-font-size};
|
|
90
|
+
--cool-h5-font-size: #{$h5-font-size};
|
|
91
|
+
--cool-h6-font-size: #{$h6-font-size};
|
|
92
|
+
|
|
93
|
+
--cool-headings-margin-bottom: #{$headings-margin-bottom};
|
|
94
|
+
--cool-headings-font-family: #{meta.inspect($headings-font-family)};
|
|
95
|
+
--cool-headings-font-weight: #{$headings-font-weight};
|
|
96
|
+
--cool-headings-line-height: #{$headings-line-height};
|
|
97
|
+
--cool-headings-color: #{$headings-color};
|
|
98
|
+
|
|
99
|
+
// Display sizes
|
|
100
|
+
--cool-display1-size: #{$display1-size};
|
|
101
|
+
--cool-display2-size: #{$display2-size};
|
|
102
|
+
--cool-display3-size: #{$display3-size};
|
|
103
|
+
--cool-display4-size: #{$display4-size};
|
|
104
|
+
--cool-display1-weight: #{$display1-weight};
|
|
105
|
+
--cool-display2-weight: #{$display2-weight};
|
|
106
|
+
--cool-display3-weight: #{$display3-weight};
|
|
107
|
+
--cool-display4-weight: #{$display4-weight};
|
|
108
|
+
--cool-display-line-height: #{$display-line-height};
|
|
109
|
+
|
|
110
|
+
// Body
|
|
111
|
+
--cool-body-bg: #{$body-bg};
|
|
112
|
+
--cool-body-color: #{$body-color};
|
|
113
|
+
--cool-body-hover-bg: #{$body-hover-bg};
|
|
114
|
+
--cool-body-emphasize-bg: #{$body-emphasize-bg};
|
|
115
|
+
--cool-body-surface-bg: #{$body-surface-bg};
|
|
116
|
+
|
|
117
|
+
// Links
|
|
118
|
+
--cool-link-color: #{$link-color};
|
|
119
|
+
--cool-link-hover-color: #{$link-hover-color};
|
|
120
|
+
--cool-link-text-decoration: #{$link-text-decoration};
|
|
121
|
+
--cool-link-hover-text-decoration: #{$link-hover-text-decoration};
|
|
122
|
+
--cool-link-disabled-color: #{$link-disabled-color};
|
|
123
|
+
--cool-link-font-weight: #{$link-font-weight};
|
|
124
|
+
|
|
125
|
+
// Borders
|
|
126
|
+
--cool-border-width: #{$border-width};
|
|
127
|
+
--cool-border-color: #{$border-color};
|
|
128
|
+
--cool-border-radius: #{$border-radius};
|
|
129
|
+
--cool-border-radius-xs: #{$border-radius-xs};
|
|
130
|
+
--cool-border-radius-sm: #{$border-radius-sm};
|
|
131
|
+
--cool-border-radius-lg: #{$border-radius-lg};
|
|
132
|
+
|
|
133
|
+
// Grid
|
|
134
|
+
--cool-grid-columns: #{$grid-columns};
|
|
135
|
+
--cool-grid-gutter-x: #{$grid-gutter-x};
|
|
136
|
+
--cool-grid-gutter-y: #{$grid-gutter-y};
|
|
137
|
+
--cool-grid-row-gap: #{$grid-row-gap};
|
|
138
|
+
--cool-grid-column-gap: #{$grid-column-gap};
|
|
139
|
+
|
|
140
|
+
// Breakpoints
|
|
141
|
+
@each $bp, $value in $grid-breakpoints {
|
|
142
|
+
--cool-breakpoint-#{$bp}: #{$value};
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
// Container max widths
|
|
146
|
+
--cool-container-content-max-width: #{$container-content-max-width};
|
|
147
|
+
|
|
148
|
+
@each $breakpoint, $container-width in $container-max-widths {
|
|
149
|
+
--cool-container-#{$breakpoint}: #{$container-width};
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
// Spacing
|
|
153
|
+
--cool-spacer: #{$spacer};
|
|
154
|
+
|
|
155
|
+
@each $key, $value in $spacers {
|
|
156
|
+
--cool-spacing-#{$key}: #{$value};
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
// Z-index
|
|
160
|
+
--cool-zindex-fixed: #{$zindex-fixed};
|
|
161
|
+
--cool-zindex-sticky: #{$zindex-sticky};
|
|
162
|
+
--cool-zindex-popover: #{$zindex-popover};
|
|
163
|
+
--cool-zindex-tooltip: #{$zindex-tooltip};
|
|
164
|
+
--cool-zindex-dropdown: #{$zindex-dropdown};
|
|
165
|
+
--cool-zindex-select: #{$zindex-select};
|
|
166
|
+
--cool-zindex-toast: #{$zindex-toast};
|
|
167
|
+
--cool-zindex-dialog: #{$zindex-dialog};
|
|
168
|
+
|
|
169
|
+
// Shadows
|
|
170
|
+
--cool-box-shadow-sm: #{$box-shadow-sm};
|
|
171
|
+
--cool-box-shadow: #{$box-shadow};
|
|
172
|
+
--cool-box-shadow-lg: #{$box-shadow-lg};
|
|
173
|
+
|
|
174
|
+
// Buttons
|
|
175
|
+
--cool-btn-padding-y: #{$btn-padding-y};
|
|
176
|
+
--cool-btn-padding-x: #{$btn-padding-x};
|
|
177
|
+
--cool-btn-font-family: #{meta.inspect($btn-font-family)};
|
|
178
|
+
--cool-btn-font-size: #{$btn-font-size};
|
|
179
|
+
--cool-btn-line-height: #{$btn-line-height};
|
|
180
|
+
--cool-btn-font-weight: #{$btn-font-weight};
|
|
181
|
+
--cool-btn-border-width: #{$btn-border-width};
|
|
182
|
+
--cool-btn-border-radius: #{$btn-border-radius};
|
|
183
|
+
--cool-btn-border-radius-lg: #{$btn-border-radius-lg};
|
|
184
|
+
--cool-btn-border-radius-sm: #{$btn-border-radius-sm};
|
|
185
|
+
--cool-btn-border-radius-xs: #{$btn-border-radius-xs};
|
|
186
|
+
|
|
187
|
+
--cool-btn-padding-y-xs: #{$btn-padding-y-xs};
|
|
188
|
+
--cool-btn-padding-x-xs: #{$btn-padding-x-xs};
|
|
189
|
+
--cool-btn-font-size-xs: #{$btn-font-size-xs};
|
|
190
|
+
--cool-btn-line-height-xs: #{$btn-line-height-xs};
|
|
191
|
+
|
|
192
|
+
--cool-btn-padding-y-sm: #{$btn-padding-y-sm};
|
|
193
|
+
--cool-btn-padding-x-sm: #{$btn-padding-x-sm};
|
|
194
|
+
--cool-btn-font-size-sm: #{$btn-font-size-sm};
|
|
195
|
+
--cool-btn-line-height-sm: #{$btn-line-height-sm};
|
|
196
|
+
|
|
197
|
+
--cool-btn-padding-y-lg: #{$btn-padding-y-lg};
|
|
198
|
+
--cool-btn-padding-x-lg: #{$btn-padding-x-lg};
|
|
199
|
+
--cool-btn-font-size-lg: #{$btn-font-size-lg};
|
|
200
|
+
--cool-btn-line-height-lg: #{$btn-line-height-lg};
|
|
201
|
+
|
|
202
|
+
--cool-btn-icon-height: calc(
|
|
203
|
+
var(--cool-btn-line-height) * var(--cool-btn-font-size) + var(--cool-btn-padding-y) * 2
|
|
204
|
+
);
|
|
205
|
+
--cool-btn-icon-height-sm: calc(
|
|
206
|
+
var(--cool-btn-line-height-sm) * var(--cool-btn-font-size-sm) + var(--cool-btn-padding-y-sm) * 2
|
|
207
|
+
);
|
|
208
|
+
--cool-btn-icon-height-lg: calc(
|
|
209
|
+
var(--cool-btn-line-height-lg) * var(--cool-btn-font-size-lg) + var(--cool-btn-padding-y-lg) * 2
|
|
210
|
+
);
|
|
211
|
+
|
|
212
|
+
--cool-btn-cursor: #{$btn-cursor};
|
|
213
|
+
|
|
214
|
+
// Icons
|
|
215
|
+
--cool-icon-color: #{$icon-color};
|
|
216
|
+
--cool-icon-spacer: #{$icon-spacer};
|
|
217
|
+
|
|
218
|
+
// Forms
|
|
219
|
+
--cool-label-font-size: #{$label-font-size};
|
|
220
|
+
--cool-label-margin-bottom: #{$label-margin-bottom};
|
|
221
|
+
|
|
222
|
+
--cool-input-padding-y: #{$input-padding-y};
|
|
223
|
+
--cool-input-padding-x: #{$input-padding-x};
|
|
224
|
+
--cool-input-font-family: #{meta.inspect($input-font-family)};
|
|
225
|
+
--cool-input-font-size: #{$input-font-size};
|
|
226
|
+
--cool-input-font-weight: #{$input-font-weight};
|
|
227
|
+
--cool-input-line-height: #{$input-line-height};
|
|
228
|
+
--cool-input-height: #{$input-height};
|
|
229
|
+
--cool-input-height-sm: #{$input-height-sm};
|
|
230
|
+
--cool-input-height-lg: #{$input-height-lg};
|
|
231
|
+
|
|
232
|
+
--cool-input-bg: #{$input-bg};
|
|
233
|
+
--cool-input-disabled-bg: #{$input-disabled-bg};
|
|
234
|
+
--cool-input-disabled-color: #{$input-disabled-color};
|
|
235
|
+
--cool-input-color: #{$input-color};
|
|
236
|
+
--cool-input-border-color: #{$input-border-color};
|
|
237
|
+
--cool-input-border-width: #{$input-border-width};
|
|
238
|
+
--cool-input-border-radius: #{$input-border-radius};
|
|
239
|
+
--cool-input-focus-border-color: #{$input-focus-border-color};
|
|
240
|
+
--cool-input-placeholder-color: #{$input-placeholder-color};
|
|
241
|
+
--cool-input-plaintext-color: #{$input-plaintext-color};
|
|
242
|
+
|
|
243
|
+
// Form validation
|
|
244
|
+
--cool-form-feedback-margin-top: #{$form-feedback-margin-top};
|
|
245
|
+
--cool-form-feedback-font-size: #{$form-feedback-font-size};
|
|
246
|
+
--cool-form-feedback-valid-color: #{$form-feedback-valid-color};
|
|
247
|
+
--cool-form-feedback-invalid-color: #{$form-feedback-invalid-color};
|
|
248
|
+
|
|
249
|
+
// Form layout
|
|
250
|
+
--cool-form-group-margin-bottom: #{$form-group-margin-bottom};
|
|
251
|
+
--cool-form-switch-width: #{$form-switch-width};
|
|
252
|
+
|
|
253
|
+
--cool-form-check-input-color: #{$form-check-input-color};
|
|
254
|
+
--cool-form-check-input-border-color: #{$form-check-input-border-color};
|
|
255
|
+
--cool-form-check-input-border-width: #{$form-check-input-border-width};
|
|
256
|
+
--cool-form-check-input-radius: #{$form-check-input-radius};
|
|
257
|
+
--cool-form-check-input-size: #{$form-check-input-size};
|
|
258
|
+
|
|
259
|
+
// List group
|
|
260
|
+
--cool-list-group-bg: #{$list-group-bg};
|
|
261
|
+
--cool-list-group-color: #{$list-group-color};
|
|
262
|
+
--cool-list-group-hover-bg: #{$list-group-hover-bg};
|
|
263
|
+
--cool-list-group-active-color: #{$list-group-active-color};
|
|
264
|
+
--cool-list-group-disabled-color: #{$list-group-disabled-color};
|
|
265
|
+
--cool-list-group-border-color: #{$list-group-border-color};
|
|
266
|
+
--cool-list-group-item-padding-y: #{$list-group-item-padding-y};
|
|
267
|
+
--cool-list-group-item-padding-x: #{$list-group-item-padding-x};
|
|
268
|
+
--cool-list-group-inner-padding: #{$list-group-inner-padding};
|
|
269
|
+
--cool-list-group-distinctive-bg: #{$list-group-distinctive-bg};
|
|
270
|
+
--cool-list-group-distinctive-padding: #{$list-group-distinctive-padding};
|
|
271
|
+
--cool-list-group-distinctive-gap: #{$list-group-distinctive-gap};
|
|
272
|
+
--cool-list-group-icon-spacing: #{$list-group-icon-spacing};
|
|
273
|
+
--cool-list-group-line-height: #{$list-group-line-height};
|
|
274
|
+
|
|
275
|
+
// Input sizes
|
|
276
|
+
--cool-input-padding-y-sm: #{$input-padding-y-sm};
|
|
277
|
+
--cool-input-padding-x-sm: #{$input-padding-x-sm};
|
|
278
|
+
--cool-input-font-size-sm: #{$input-font-size-sm};
|
|
279
|
+
--cool-input-line-height-sm: #{$input-line-height-sm};
|
|
280
|
+
--cool-input-border-radius-sm: #{$input-border-radius-sm};
|
|
281
|
+
|
|
282
|
+
--cool-input-padding-y-lg: #{$input-padding-y-lg};
|
|
283
|
+
--cool-input-padding-x-lg: #{$input-padding-x-lg};
|
|
284
|
+
--cool-input-font-size-lg: #{$input-font-size-lg};
|
|
285
|
+
--cool-input-line-height-lg: #{$input-line-height-lg};
|
|
286
|
+
--cool-input-border-radius-lg: #{$input-border-radius-lg};
|
|
287
|
+
|
|
288
|
+
// Input group
|
|
289
|
+
--cool-input-group-addon-color: #{$input-group-addon-color};
|
|
290
|
+
--cool-input-group-addon-bg: #{$input-group-addon-bg};
|
|
291
|
+
--cool-input-group-addon-border-color: #{$input-group-addon-border-color};
|
|
292
|
+
--cool-input-group-gap: #{$input-group-gap};
|
|
293
|
+
--cool-input-group-border-color: #{$input-group-border-color};
|
|
294
|
+
--cool-input-group-border-width: #{$input-group-border-width};
|
|
295
|
+
--cool-input-group-border-radius: #{$input-group-border-radius};
|
|
296
|
+
--cool-input-group-bg: #{$input-group-bg};
|
|
297
|
+
--cool-input-group-color: #{$input-group-color};
|
|
298
|
+
|
|
299
|
+
// Navbar
|
|
300
|
+
--cool-navbar-bg: #{$navbar-bg};
|
|
301
|
+
--cool-navbar-color: #{$navbar-color};
|
|
302
|
+
--cool-navbar-hover-color: #{$navbar-hover-color};
|
|
303
|
+
--cool-navbar-height: #{$navbar-height};
|
|
304
|
+
--cool-navbar-height-sm: #{$navbar-height-sm};
|
|
305
|
+
--cool-navbar-border-width: #{$navbar-border-width};
|
|
306
|
+
--cool-navbar-border-color: #{$navbar-border-color};
|
|
307
|
+
--cool-navbar-border-radius: #{$navbar-border-radius};
|
|
308
|
+
--cool-navbar-padding-x: #{$navbar-padding-x};
|
|
309
|
+
|
|
310
|
+
--cool-navbar-item-bg: #{$navbar-item-bg};
|
|
311
|
+
--cool-navbar-item-hover-bg: #{$navbar-item-hover-bg};
|
|
312
|
+
--cool-navbar-item-color: #{$navbar-item-color};
|
|
313
|
+
--cool-navbar-item-hover-color: #{$navbar-item-hover-color};
|
|
314
|
+
--cool-navbar-item-min-width: #{$navbar-item-min-width};
|
|
315
|
+
--cool-navbar-item-padding-x: #{$navbar-item-padding-x};
|
|
316
|
+
--cool-navbar-item-font-size: #{$navbar-item-font-size};
|
|
317
|
+
--cool-navbar-item-icon-size: #{$navbar-item-icon-size};
|
|
318
|
+
--cool-navbar-item-spacer-width: #{$navbar-item-spacer-width};
|
|
319
|
+
--cool-navbar-pulse-shadow-color: #{$navbar-pulse-shadow-color};
|
|
320
|
+
--cool-navbar-item-height: #{$navbar-item-height};
|
|
321
|
+
--cool-navbar-item-height-sm: #{$navbar-item-height-sm};
|
|
322
|
+
|
|
323
|
+
--cool-navbar-toggler-icon-width: #{$navbar-toggler-icon-width};
|
|
324
|
+
--cool-navbar-toggler-icon-height: #{$navbar-toggler-icon-height};
|
|
325
|
+
--cool-navbar-toggler-bar-height: #{$navbar-toggler-bar-height};
|
|
326
|
+
--cool-navbar-toggler-bar-spacing: #{$navbar-toggler-bar-spacing};
|
|
327
|
+
--cool-navbar-toggler-bar-radius: #{$navbar-toggler-bar-radius};
|
|
328
|
+
--cool-navbar-avatar-spacing: #{$navbar-avatar-spacing};
|
|
329
|
+
--cool-navbar-notification-counter-color: #{$navbar-notification-counter-color};
|
|
330
|
+
--cool-navbar-notification-counter-bg: #{$navbar-notification-counter-bg};
|
|
331
|
+
--cool-navbar-notification-counter-font-size: #{$navbar-notification-counter-font-size};
|
|
332
|
+
--cool-navbar-notification-counter-height: #{$navbar-notification-counter-height};
|
|
333
|
+
--cool-navbar-notification-counter-padding: #{$navbar-notification-counter-padding};
|
|
334
|
+
--cool-navbar-notification-counter-radius: #{$navbar-notification-counter-radius};
|
|
335
|
+
--cool-navbar-nav-gap: #{$navbar-nav-gap};
|
|
336
|
+
--cool-navbar-nav-padding: #{$navbar-nav-padding};
|
|
337
|
+
--cool-navbar-brand-svg-margin-top: #{$navbar-brand-svg-margin-top};
|
|
338
|
+
|
|
339
|
+
// Section
|
|
340
|
+
--cool-section-spacer: #{$section-spacer};
|
|
341
|
+
--cool-section-spacer-mobile: #{$section-spacer-mobile};
|
|
342
|
+
|
|
343
|
+
--cool-section-padding: #{$section-padding};
|
|
344
|
+
--cool-section-padding-mobile: #{$section-padding-mobile};
|
|
345
|
+
|
|
346
|
+
--cool-section-border-radius: #{$section-border-radius};
|
|
347
|
+
--cool-section-inner-border-radius: #{$section-inner-border-radius};
|
|
348
|
+
--cool-section-border-width: #{$section-border-width};
|
|
349
|
+
--cool-section-border-color: #{$section-border-color};
|
|
350
|
+
|
|
351
|
+
--cool-section-bg: #{$section-bg};
|
|
352
|
+
--cool-section-color: #{$section-color};
|
|
353
|
+
--cool-section-box-shadow: #{$section-box-shadow};
|
|
354
|
+
--cool-section-secondary-bg: #{$section-secondary-bg};
|
|
355
|
+
|
|
356
|
+
--cool-section-divider-height: #{$section-divider-height};
|
|
357
|
+
--cool-section-divider-color: #{$section-divider-color};
|
|
358
|
+
--cool-section-divider-padding: #{$section-divider-padding};
|
|
359
|
+
|
|
360
|
+
--cool-section-title-font-family: #{meta.inspect($section-title-font-family)};
|
|
361
|
+
--cool-section-title-font-size: #{$section-title-font-size};
|
|
362
|
+
--cool-section-title-font-weight: #{$section-title-font-weight};
|
|
363
|
+
--cool-section-title-bg: #{$section-title-bg};
|
|
364
|
+
--cool-section-title-color: #{$section-title-color};
|
|
365
|
+
--cool-section-title-actions-color: #{$section-title-actions-color};
|
|
366
|
+
--cool-section-title-icons-color: #{$section-title-icons-color};
|
|
367
|
+
--cool-section-title-icons-size: #{$section-title-icons-size};
|
|
368
|
+
--cool-section-title-padding: #{$section-title-padding};
|
|
369
|
+
|
|
370
|
+
--cool-section-subtitle-font-family: #{meta.inspect($section-subtitle-font-family)};
|
|
371
|
+
--cool-section-subtitle-font-size: #{$section-subtitle-font-size};
|
|
372
|
+
--cool-section-subtitle-font-weight: #{$section-subtitle-font-weight};
|
|
373
|
+
--cool-section-subtitle-color: #{$section-subtitle-color};
|
|
374
|
+
|
|
375
|
+
--cool-section-image-badge-bg: #{$section-image-badge-bg};
|
|
376
|
+
--cool-section-image-badge-color: #{$section-image-badge-color};
|
|
377
|
+
--cool-section-image-badge-shadow: #{$section-image-badge-shadow};
|
|
378
|
+
--cool-section-image-badge-padding: #{$section-image-badge-padding};
|
|
379
|
+
--cool-section-image-badge-font-size: #{$section-image-badge-font-size};
|
|
380
|
+
--cool-section-image-darken-bg: #{$section-image-darken-bg};
|
|
381
|
+
|
|
382
|
+
--cool-section-placeholder-icon-color: #{$section-placeholder-icon-color};
|
|
383
|
+
--cool-section-placeholder-description-color: #{$section-placeholder-description-color};
|
|
384
|
+
--cool-section-placeholder-title-font-family: #{meta.inspect($section-placeholder-title-font-family)};
|
|
385
|
+
--cool-section-placeholder-title-font-weight: #{$section-placeholder-title-font-weight};
|
|
386
|
+
--cool-section-placeholder-icon-size: #{$section-placeholder-icon-size};
|
|
387
|
+
--cool-section-placeholder-icon-font-size: #{$section-placeholder-icon-font-size};
|
|
388
|
+
--cool-section-placeholder-icon-padding: #{$section-placeholder-icon-padding};
|
|
389
|
+
--cool-section-placeholder-spacing: #{$section-placeholder-spacing};
|
|
390
|
+
--cool-section-placeholder-spacing-sm: #{$section-placeholder-spacing-sm};
|
|
391
|
+
|
|
392
|
+
--cool-section-definition-heading-color-mobile: #{$section-definition-heading-color-mobile};
|
|
393
|
+
--cool-section-definition-heading-font-size-mobile: #{$section-definition-heading-font-size-mobile};
|
|
394
|
+
--cool-section-definition-heading-color: #{$section-definition-heading-color};
|
|
395
|
+
--cool-section-definition-heading-font-size: #{$section-definition-heading-font-size};
|
|
396
|
+
--cool-section-definition-spacer-height: #{$section-definition-spacer-height};
|
|
397
|
+
|
|
398
|
+
--cool-section-filters-bg: #{$section-filters-bg};
|
|
399
|
+
--cool-section-filters-color: #{$section-filters-color};
|
|
400
|
+
|
|
401
|
+
--cool-section-bulk-actions-bg: #{$section-bulk-actions-bg};
|
|
402
|
+
--cool-section-bulk-actions-color: #{$section-bulk-actions-color};
|
|
403
|
+
--cool-section-bulk-actions-divider-color: #{$section-bulk-actions-divider-color};
|
|
404
|
+
--cool-section-bulk-action-select-font-size: #{$section-bulk-action-select-font-size};
|
|
405
|
+
--cool-section-bulk-action-select-max-width: #{$section-bulk-action-select-max-width};
|
|
406
|
+
|
|
407
|
+
--cool-section-tabs-font-family: #{meta.inspect($section-tabs-font-family)};
|
|
408
|
+
--cool-section-tabs-font-weight: #{$section-tabs-font-weight};
|
|
409
|
+
--cool-section-tabs-font-weight-active: #{$section-tabs-font-weight-active};
|
|
410
|
+
|
|
411
|
+
--cool-section-tabs-item-padding-y: #{$section-tabs-item-padding-y};
|
|
412
|
+
--cool-section-tabs-item-padding-x: #{$section-tabs-item-padding-x};
|
|
413
|
+
--cool-section-tabs-item-gap: #{$section-tabs-item-gap};
|
|
414
|
+
--cool-section-tabs-item-min-width: #{$section-tabs-item-min-width};
|
|
415
|
+
|
|
416
|
+
--cool-section-tabs-bg: #{$section-tabs-bg};
|
|
417
|
+
--cool-section-tabs-color: #{$section-tabs-color};
|
|
418
|
+
--cool-section-tabs-hover-color: #{$section-tabs-hover-color};
|
|
419
|
+
--cool-section-tabs-active-color: #{$section-tabs-active-color};
|
|
420
|
+
|
|
421
|
+
--cool-section-tabs-border-width: #{$section-tabs-border-width};
|
|
422
|
+
--cool-section-tabs-border-color: #{$section-tabs-border-color};
|
|
423
|
+
--cool-section-tabs-border-hover-color: #{$section-tabs-border-hover-color};
|
|
424
|
+
--cool-section-tabs-border-active-color: #{$section-tabs-border-active-color};
|
|
425
|
+
|
|
426
|
+
// Table
|
|
427
|
+
--cool-table-color: #{$table-color};
|
|
428
|
+
--cool-table-bg: #{$table-bg};
|
|
429
|
+
--cool-table-hover-color: #{$table-hover-color};
|
|
430
|
+
--cool-table-hover-bg: #{$table-hover-bg};
|
|
431
|
+
--cool-table-hover-transition: #{$table-hover-transition};
|
|
432
|
+
--cool-table-accent-bg: #{$table-accent-bg};
|
|
433
|
+
--cool-table-striped-order: #{$table-striped-order};
|
|
434
|
+
--cool-table-caption-color: #{$table-caption-color};
|
|
435
|
+
--cool-table-link-color: #{$table-link-color};
|
|
436
|
+
--cool-table-link-hover-color: #{$table-link-hover-color};
|
|
437
|
+
--cool-table-icon-color: #{$table-icon-color};
|
|
438
|
+
--cool-table-border-color: #{$table-border-color};
|
|
439
|
+
|
|
440
|
+
--cool-table-th-bg: #{$table-th-bg};
|
|
441
|
+
--cool-table-th-font-family: #{$table-th-font-family};
|
|
442
|
+
--cool-table-th-font-weight: #{$table-th-font-weight};
|
|
443
|
+
--cool-table-th-font-size: #{$table-th-font-size};
|
|
444
|
+
--cool-table-th-line-height: #{$table-th-line-height};
|
|
445
|
+
|
|
446
|
+
--cool-table-th-padding-x: #{$table-th-padding-x};
|
|
447
|
+
--cool-table-th-padding-y: #{$table-th-padding-y};
|
|
448
|
+
--cool-table-th-padding: var(--cool-table-th-padding-y) var(--cool-table-th-padding-x);
|
|
449
|
+
--cool-table-th-padding-mobile: var(--cool-table-th-padding);
|
|
450
|
+
--cool-table-th-padding-sm: var(--cool-table-th-padding);
|
|
451
|
+
|
|
452
|
+
--cool-table-td-padding-x: #{$table-td-padding-x};
|
|
453
|
+
--cool-table-td-padding-y: #{$table-td-padding-y};
|
|
454
|
+
--cool-table-td-padding: var(--cool-table-td-padding-y) var(--cool-table-td-padding-x);
|
|
455
|
+
--cool-table-td-padding-mobile: var(--cool-table-td-padding);
|
|
456
|
+
--cool-table-td-padding-sm: var(--cool-table-td-padding);
|
|
457
|
+
--cool-table-td-line-height: #{$table-td-line-height};
|
|
458
|
+
|
|
459
|
+
--cool-table-head-bg: #{$table-head-bg};
|
|
460
|
+
--cool-table-head-color: #{$table-head-color};
|
|
461
|
+
|
|
462
|
+
--cool-table-sortable-head-hover-bg: #{$table-sortable-head-hover-bg};
|
|
463
|
+
--cool-table-sortable-handle-width: #{$table-sortable-handle-width};
|
|
464
|
+
--cool-table-sortable-handle-height: #{$table-sortable-handle-height};
|
|
465
|
+
|
|
466
|
+
--cool-table-responsive-heading-font-weight: #{$table-responsive-heading-font-weight};
|
|
467
|
+
--cool-table-responsive-td-font-size: #{$table-responsive-td-font-size};
|
|
468
|
+
--cool-table-responsive-td-line-height: #{$table-responsive-td-line-height};
|
|
469
|
+
--cool-table-responsive-td-padding: #{$table-responsive-td-padding};
|
|
470
|
+
--cool-table-responsive-first-td-bg: #{$table-responsive-first-td-bg};
|
|
471
|
+
--cool-table-responsive-heading-margin-bottom: #{$table-responsive-heading-margin-bottom};
|
|
472
|
+
--cool-table-responsive-margin-bottom: #{$table-responsive-margin-bottom};
|
|
473
|
+
|
|
474
|
+
--cool-table-sticky-actions-shadow-color: #{$table-sticky-actions-shadow-color};
|
|
475
|
+
--cool-table-sticky-actions-col-sticky-bg: #{$table-sticky-actions-col-sticky-bg};
|
|
476
|
+
--cool-table-sticky-actions-shadow-gradient: #{$table-sticky-actions-shadow-gradient};
|
|
477
|
+
--cool-table-sticky-actions-shadow-width: #{$table-sticky-actions-shadow-width};
|
|
478
|
+
|
|
479
|
+
--cool-table-bulk-actions-hover-bg: #{$table-bulk-actions-hover-bg};
|
|
480
|
+
--cool-table-bulk-actions-hover-color: #{$table-bulk-actions-hover-color};
|
|
481
|
+
--cool-table-bulk-actions-dropdown-shadow: #{$table-bulk-actions-dropdown-shadow};
|
|
482
|
+
--cool-table-bulk-actions-dropdown-min-width: #{$table-bulk-actions-dropdown-min-width};
|
|
483
|
+
--cool-table-bulk-actions-dropdown-item-font-size: #{$table-bulk-actions-dropdown-item-font-size};
|
|
484
|
+
--cool-table-bulk-actions-dropdown-item-line-height: #{$table-bulk-actions-dropdown-item-line-height};
|
|
485
|
+
--cool-table-bulk-actions-dropdown-item-padding: #{$table-bulk-actions-dropdown-item-padding};
|
|
486
|
+
--cool-table-bulk-actions-btn-padding: #{$table-bulk-actions-btn-padding};
|
|
487
|
+
--cool-table-bulk-actions-height: #{$table-bulk-actions-height};
|
|
488
|
+
--cool-table-bulk-actions-input-group-height: #{$table-bulk-actions-input-group-height};
|
|
489
|
+
--cool-table-bulk-actions-input-group-padding: #{$table-bulk-actions-input-group-padding};
|
|
490
|
+
--cool-table-bulk-actions-input-group-margin: #{$table-bulk-actions-input-group-margin};
|
|
491
|
+
|
|
492
|
+
// Tabs
|
|
493
|
+
--cool-tabs-bg: #{$tabs-bg};
|
|
494
|
+
--cool-tabs-color: #{$tabs-text-color};
|
|
495
|
+
--cool-tabs-hover-color: #{$tabs-hover-color};
|
|
496
|
+
--cool-tabs-active-color: #{$tabs-active-color};
|
|
497
|
+
--cool-tabs-hover-bg: #{$tabs-hover-bg};
|
|
498
|
+
|
|
499
|
+
// Badge
|
|
500
|
+
--cool-badge-font-family: #{$badge-font-family};
|
|
501
|
+
--cool-badge-font-size-xs: #{$badge-font-size-xs};
|
|
502
|
+
--cool-badge-font-size-sm: #{$badge-font-size-sm};
|
|
503
|
+
--cool-badge-font-size: #{$badge-font-size};
|
|
504
|
+
|
|
505
|
+
--cool-badge-font-weight-xs: #{$badge-font-weight-xs};
|
|
506
|
+
--cool-badge-font-weight-sm: #{$badge-font-weight-sm};
|
|
507
|
+
--cool-badge-font-weight: #{$badge-font-weight};
|
|
508
|
+
|
|
509
|
+
--cool-badge-padding-y-xs: #{$badge-padding-y-xs};
|
|
510
|
+
--cool-badge-padding-x-xs: #{$badge-padding-x-xs};
|
|
511
|
+
--cool-badge-padding-y-sm: #{$badge-padding-y-sm};
|
|
512
|
+
--cool-badge-padding-x-sm: #{$badge-padding-x-sm};
|
|
513
|
+
--cool-badge-padding-y: #{$badge-padding-y};
|
|
514
|
+
--cool-badge-padding-x: #{$badge-padding-x};
|
|
515
|
+
|
|
516
|
+
--cool-badge-line-height-xs: #{$badge-line-height-xs};
|
|
517
|
+
--cool-badge-line-height-sm: #{$badge-line-height-sm};
|
|
518
|
+
--cool-badge-line-height: #{$badge-line-height};
|
|
519
|
+
|
|
520
|
+
--cool-badge-border-radius-xs: #{$badge-border-radius-xs};
|
|
521
|
+
--cool-badge-border-radius-sm: #{$badge-border-radius-sm};
|
|
522
|
+
--cool-badge-border-radius: #{$badge-border-radius};
|
|
523
|
+
|
|
524
|
+
--cool-badge-border-width: #{$badge-border-width};
|
|
525
|
+
--cool-badge-box-shadow-blur: #{$badge-box-shadow-blur};
|
|
526
|
+
--cool-badge-box-shadow-opacity: #{$badge-box-shadow-opacity};
|
|
527
|
+
|
|
528
|
+
// Dropdown
|
|
529
|
+
--cool-dropdown-font-size: #{$dropdown-font-size};
|
|
530
|
+
--cool-dropdown-line-height: #{$dropdown-line-height};
|
|
531
|
+
--cool-dropdown-width: #{$dropdown-width};
|
|
532
|
+
--cool-dropdown-padding-y: #{$dropdown-padding-y};
|
|
533
|
+
--cool-dropdown-spacer: #{$dropdown-spacer};
|
|
534
|
+
--cool-dropdown-bg: #{$dropdown-bg};
|
|
535
|
+
--cool-dropdown-color: #{$dropdown-color};
|
|
536
|
+
--cool-dropdown-border-color: #{$dropdown-border-color};
|
|
537
|
+
--cool-dropdown-border-radius: #{$dropdown-border-radius};
|
|
538
|
+
--cool-dropdown-border-width: #{$dropdown-border-width};
|
|
539
|
+
--cool-dropdown-divider-bg: #{$dropdown-divider-bg};
|
|
540
|
+
--cool-dropdown-box-shadow: #{$dropdown-box-shadow};
|
|
541
|
+
--cool-dropdown-title-color: #{$dropdown-title-color};
|
|
542
|
+
|
|
543
|
+
--cool-dropdown-link-color: #{$dropdown-link-color};
|
|
544
|
+
--cool-dropdown-link-hover-color: #{$dropdown-link-hover-color};
|
|
545
|
+
--cool-dropdown-link-hover-bg: #{$dropdown-link-hover-bg};
|
|
546
|
+
--cool-dropdown-link-active-color: #{$dropdown-link-active-color};
|
|
547
|
+
--cool-dropdown-link-active-bg: #{$dropdown-link-active-bg};
|
|
548
|
+
--cool-dropdown-link-disabled-color: #{$dropdown-link-disabled-color};
|
|
549
|
+
|
|
550
|
+
--cool-dropdown-item-padding-y: #{$dropdown-item-padding-y};
|
|
551
|
+
--cool-dropdown-item-padding-x: #{$dropdown-item-padding-x};
|
|
552
|
+
|
|
553
|
+
// Nav divider
|
|
554
|
+
--cool-nav-divider-color: #{$nav-divider-color};
|
|
555
|
+
--cool-nav-divider-margin-y: #{$nav-divider-margin-y};
|
|
556
|
+
|
|
557
|
+
// Frame sidebar floating
|
|
558
|
+
--cool-frame-sidebar-floating-bg: #{$frame-sidebar-floating-bg};
|
|
559
|
+
--cool-frame-sidebar-floating-border-radius: #{$frame-sidebar-floating-border-radius};
|
|
560
|
+
--cool-frame-sidebar-floating-border-width: #{$frame-sidebar-floating-border-width};
|
|
561
|
+
--cool-frame-sidebar-floating-border-color: #{$frame-sidebar-floating-border-color};
|
|
562
|
+
--cool-frame-sidebar-floating-padding-y: #{$frame-sidebar-floating-padding-y};
|
|
563
|
+
--cool-frame-sidebar-floating-padding-x: #{$frame-sidebar-floating-padding-x};
|
|
564
|
+
--cool-frame-sidebar-floating-box-shadow: #{$frame-sidebar-floating-box-shadow};
|
|
565
|
+
|
|
566
|
+
// Frame sidebar left
|
|
567
|
+
--cool-frame-sidebar-width: #{$frame-sidebar-width};
|
|
568
|
+
--cool-frame-sidebar-left-width: #{$frame-sidebar-left-width};
|
|
569
|
+
--cool-frame-sidebar-right-width: #{$frame-sidebar-right-width};
|
|
570
|
+
--cool-frame-sidebar-right-breakpoint: #{$frame-sidebar-right-breakpoint};
|
|
571
|
+
--cool-frame-sidebar-bg: #{$frame-sidebar-bg};
|
|
572
|
+
--cool-frame-sidebar-bg-mobile: #{$frame-sidebar-bg-mobile};
|
|
573
|
+
--cool-frame-sidebar-border-width: #{$frame-sidebar-border-width};
|
|
574
|
+
--cool-frame-sidebar-border-color: #{$frame-sidebar-border-color};
|
|
575
|
+
--cool-frame-sidebar-padding-y: #{$frame-sidebar-padding-y};
|
|
576
|
+
--cool-frame-sidebar-padding-x: #{$frame-sidebar-padding-x};
|
|
577
|
+
|
|
578
|
+
--cool-frame-sidebar-header-padding-y: #{$frame-sidebar-header-padding-y};
|
|
579
|
+
--cool-frame-sidebar-header-padding-x: #{$frame-sidebar-header-padding-x};
|
|
580
|
+
|
|
581
|
+
--cool-frame-sidebar-content-padding-y: #{$frame-sidebar-content-padding-y};
|
|
582
|
+
--cool-frame-sidebar-content-padding-x: #{$frame-sidebar-content-padding-x};
|
|
583
|
+
|
|
584
|
+
--cool-frame-sidebar-footer-padding-y: #{$frame-sidebar-footer-padding-y};
|
|
585
|
+
--cool-frame-sidebar-footer-padding-x: #{$frame-sidebar-footer-padding-x};
|
|
586
|
+
|
|
587
|
+
// Frame sidebar spacing and navigation
|
|
588
|
+
--cool-frame-sidebar-nav-style: #{$frame-sidebar-nav-style};
|
|
589
|
+
--cool-frame-sidebar-nav-bg: #{$frame-sidebar-nav-bg};
|
|
590
|
+
--cool-frame-sidebar-nav-padding-y: #{$frame-sidebar-nav-padding-y};
|
|
591
|
+
--cool-frame-sidebar-nav-padding-x: #{$frame-sidebar-nav-padding-x};
|
|
592
|
+
--cool-frame-sidebar-sub-nav-padding-y: #{$frame-sidebar-sub-nav-padding-y};
|
|
593
|
+
--cool-frame-sidebar-sub-nav-padding-x: #{$frame-sidebar-sub-nav-padding-x};
|
|
594
|
+
--cool-frame-sidebar-nav-font-family: #{meta.inspect($frame-sidebar-nav-font-family)};
|
|
595
|
+
|
|
596
|
+
// Frame sidebar nav icons
|
|
597
|
+
--cool-frame-sidebar-nav-a-icon-size: #{$frame-sidebar-nav-a-icon-size};
|
|
598
|
+
--cool-frame-sidebar-nav-a-icon-color: #{$frame-sidebar-nav-a-icon-color};
|
|
599
|
+
--cool-frame-sidebar-nav-a-icon-hover-color: #{$frame-sidebar-nav-a-icon-hover-color};
|
|
600
|
+
--cool-frame-sidebar-nav-icon-size: #{$frame-sidebar-nav-icon-size};
|
|
601
|
+
--cool-frame-sidebar-nav-icon-color: #{$frame-sidebar-nav-icon-color};
|
|
602
|
+
--cool-frame-sidebar-nav-icon-hover-color: #{$frame-sidebar-nav-icon-hover-color};
|
|
603
|
+
--cool-frame-sidebar-nav-icon-active-color: #{$frame-sidebar-nav-icon-active-color};
|
|
604
|
+
|
|
605
|
+
// Frame sidebar nav items
|
|
606
|
+
--cool-frame-sidebar-nav-item-padding-x: #{$frame-sidebar-nav-item-padding-x};
|
|
607
|
+
--cool-frame-sidebar-nav-item-padding-y: #{$frame-sidebar-nav-item-padding-y};
|
|
608
|
+
--cool-frame-sidebar-nav-item-child-padding-x: #{$frame-sidebar-nav-item-child-padding-x};
|
|
609
|
+
--cool-frame-sidebar-nav-item-child-padding-y: #{$frame-sidebar-nav-item-child-padding-y};
|
|
610
|
+
--cool-frame-sidebar-nav-item-border-color: #{$frame-sidebar-nav-item-border-color};
|
|
611
|
+
|
|
612
|
+
// Frame sidebar nav item parent styles
|
|
613
|
+
--cool-frame-sidebar-nav-item-parent-font-size: #{$frame-sidebar-nav-item-parent-font-size};
|
|
614
|
+
--cool-frame-sidebar-nav-item-parent-font-weight: #{$frame-sidebar-nav-item-parent-font-weight};
|
|
615
|
+
--cool-frame-sidebar-nav-item-parent-color: #{$frame-sidebar-nav-item-parent-color};
|
|
616
|
+
--cool-frame-sidebar-nav-item-parent-hover-color: #{$frame-sidebar-nav-item-parent-hover-color};
|
|
617
|
+
--cool-frame-sidebar-nav-item-parent-hover-bg: #{$frame-sidebar-nav-item-parent-hover-bg};
|
|
618
|
+
--cool-frame-sidebar-nav-item-parent-active-color: #{$frame-sidebar-nav-item-parent-active-color};
|
|
619
|
+
--cool-frame-sidebar-nav-item-parent-active-bg: #{$frame-sidebar-nav-item-parent-active-bg};
|
|
620
|
+
|
|
621
|
+
// Frame sidebar nav item child styles
|
|
622
|
+
--cool-frame-sidebar-nav-item-child-font-size: #{$frame-sidebar-nav-item-child-font-size};
|
|
623
|
+
--cool-frame-sidebar-nav-item-child-font-weight: #{$frame-sidebar-nav-item-child-font-weight};
|
|
624
|
+
--cool-frame-sidebar-nav-item-child-color: #{$frame-sidebar-nav-item-child-color};
|
|
625
|
+
--cool-frame-sidebar-nav-item-child-hover-color: #{$frame-sidebar-nav-item-child-hover-color};
|
|
626
|
+
--cool-frame-sidebar-nav-item-child-hover-bg: #{$frame-sidebar-nav-item-child-hover-bg};
|
|
627
|
+
--cool-frame-sidebar-nav-item-child-active-color: #{$frame-sidebar-nav-item-child-active-color};
|
|
628
|
+
--cool-frame-sidebar-nav-item-child-active-bg: #{$frame-sidebar-nav-item-child-active-bg};
|
|
629
|
+
|
|
630
|
+
// Frame sidebar tabs
|
|
631
|
+
--cool-frame-sidebar-tabs-color: #{$frame-sidebar-tabs-color};
|
|
632
|
+
--cool-frame-sidebar-tabs-bg: #{$frame-sidebar-tabs-bg};
|
|
633
|
+
--cool-frame-sidebar-tabs-border-color: #{$frame-sidebar-tabs-border-color};
|
|
634
|
+
--cool-frame-sidebar-tabs-hover-color: #{$frame-sidebar-tabs-hover-color};
|
|
635
|
+
--cool-frame-sidebar-tabs-hover-bg: #{$frame-sidebar-tabs-hover-bg};
|
|
636
|
+
--cool-frame-sidebar-tabs-hover-border-color: #{$frame-sidebar-tabs-hover-border-color};
|
|
637
|
+
--cool-frame-sidebar-tabs-active-color: #{$frame-sidebar-tabs-active-color};
|
|
638
|
+
--cool-frame-sidebar-tabs-active-bg: #{$frame-sidebar-tabs-active-bg};
|
|
639
|
+
--cool-frame-sidebar-tabs-active-border-color: #{$frame-sidebar-tabs-active-border-color};
|
|
640
|
+
|
|
641
|
+
// Container content
|
|
642
|
+
--cool-container-content-max-width: #{$container-content-max-width};
|
|
643
|
+
|
|
644
|
+
// Dialog
|
|
645
|
+
--cool-dialog-bg: #{$dialog-bg};
|
|
646
|
+
--cool-dialog-title-font-family: #{meta.inspect($dialog-title-font-family)};
|
|
647
|
+
--cool-dialog-title-font-weight: #{$dialog-title-font-weight};
|
|
648
|
+
--cool-dialog-border-width: #{$dialog-border-width};
|
|
649
|
+
--cool-dialog-padding-x: #{$dialog-padding-x};
|
|
650
|
+
--cool-dialog-padding-y: #{$dialog-padding-y};
|
|
651
|
+
|
|
652
|
+
--cool-dialog-width: #{$dialog-width};
|
|
653
|
+
--cool-dialog-width-sm: #{$dialog-width-sm};
|
|
654
|
+
--cool-dialog-width-md: #{$dialog-width-md};
|
|
655
|
+
--cool-dialog-width-lg: #{$dialog-width-lg};
|
|
656
|
+
--cool-dialog-width-xl: #{$dialog-width-xl};
|
|
657
|
+
|
|
658
|
+
--cool-dialog-margin-x: #{$dialog-margin-x};
|
|
659
|
+
--cool-dialog-margin-y: #{$dialog-margin-y};
|
|
660
|
+
--cool-dialog-margin-x-lg: #{$dialog-margin-x-lg};
|
|
661
|
+
--cool-dialog-margin-y-lg: #{$dialog-margin-y-lg};
|
|
662
|
+
--cool-dialog-margin: var(--cool-dialog-margin-y) var(--cool-dialog-margin-x);
|
|
663
|
+
--cool-dialog-margin-lg: var(--cool-dialog-margin-y-lg) var(--cool-dialog-margin-x-lg);
|
|
664
|
+
|
|
665
|
+
--cool-dialog-header-height: #{$dialog-header-height};
|
|
666
|
+
--cool-dialog-body-height: #{$dialog-body-height};
|
|
667
|
+
--cool-dialog-footer-height: #{$dialog-footer-height};
|
|
668
|
+
--cool-dialog-backdrop-opacity: #{$dialog-backdrop-opacity};
|
|
669
|
+
--cool-dialog-notification-body-height: #{$dialog-notification-body-height};
|
|
670
|
+
--cool-dialog-notification-width: #{$dialog-notification-width};
|
|
671
|
+
--cool-dialog-title-font-size: #{$dialog-title-font-size};
|
|
672
|
+
--cool-dialog-box-shadow: #{$dialog-box-shadow};
|
|
673
|
+
|
|
674
|
+
// Animation
|
|
675
|
+
--cool-animation-duration: #{$animation-duration};
|
|
676
|
+
--cool-animation-timing: #{$animation-timing};
|
|
677
|
+
|
|
678
|
+
--cool-form-transition-fast: #{$form-transition-fast};
|
|
679
|
+
--cool-form-transition-normal: #{$form-transition-normal};
|
|
680
|
+
--cool-form-transition-slow: #{$form-transition-slow};
|
|
681
|
+
|
|
682
|
+
--cool-switch-transition: #{$switch-transition};
|
|
683
|
+
|
|
684
|
+
// Alert & Notification
|
|
685
|
+
--cool-alert-bg: #{$alert-bg};
|
|
686
|
+
--cool-alert-color: #{$alert-color};
|
|
687
|
+
--cool-alert-border-width: #{$alert-border-width};
|
|
688
|
+
--cool-alert-border-color: #{$alert-border-color};
|
|
689
|
+
--cool-alert-border-radius: #{$alert-border-radius};
|
|
690
|
+
--cool-alert-padding: #{$alert-padding};
|
|
691
|
+
--cool-alert-padding-sm: #{$alert-padding-sm};
|
|
692
|
+
--cool-alert-margin-bottom: #{$alert-margin-bottom};
|
|
693
|
+
--cool-alert-icon-width: #{$alert-icon-width};
|
|
694
|
+
--cool-alert-icon-height: #{$alert-icon-height};
|
|
695
|
+
--cool-alert-icon-font-size: #{$alert-icon-font-size};
|
|
696
|
+
|
|
697
|
+
--cool-notification-bg: #{$notification-bg};
|
|
698
|
+
--cool-notification-color: #{$notification-color};
|
|
699
|
+
--cool-notification-border-width: #{$notification-border-width};
|
|
700
|
+
--cool-notification-border-color: #{$notification-border-color};
|
|
701
|
+
--cool-notification-border-radius: #{$notification-border-radius};
|
|
702
|
+
--cool-notification-padding: #{$notification-padding};
|
|
703
|
+
|
|
704
|
+
// Media
|
|
705
|
+
--cool-image-icon-color: #{$image-icon-color};
|
|
706
|
+
--cool-image-bg-placeholder: #{$image-bg-placeholder};
|
|
707
|
+
--cool-image-bg-thumbnail: #{$image-bg-thumbnail};
|
|
708
|
+
|
|
709
|
+
--cool-image-border-color: #{$image-border-color};
|
|
710
|
+
--cool-image-border-width: #{$image-border-width};
|
|
711
|
+
--cool-image-border-radius: #{$image-border-radius};
|
|
712
|
+
|
|
713
|
+
--cool-image-transition: #{$image-transition};
|
|
714
|
+
--cool-image-transition-duration: #{$image-transition-duration};
|
|
715
|
+
--cool-image-transition-timing: #{$image-transition-timing};
|
|
716
|
+
--cool-image-loaded-bg: #{$image-loaded-bg};
|
|
717
|
+
|
|
718
|
+
--cool-image-status-indicator-size: #{$image-status-indicator-size};
|
|
719
|
+
--cool-image-status-indicator-bg: #{$image-status-indicator-bg};
|
|
720
|
+
--cool-image-status-indicator-active-bg: #{$image-status-indicator-active-bg};
|
|
721
|
+
--cool-image-status-indicator-idle-bg: #{$image-status-indicator-idle-bg};
|
|
722
|
+
--cool-image-status-indicator-inactive-bg: #{$image-status-indicator-inactive-bg};
|
|
723
|
+
--cool-image-status-indicator-info-bg: #{$image-status-indicator-info-bg};
|
|
724
|
+
|
|
725
|
+
--cool-image-showcase-shadow: #{$image-showcase-shadow};
|
|
726
|
+
--cool-image-showcase-border-radius: #{$image-showcase-border-radius};
|
|
727
|
+
|
|
728
|
+
--cool-image-select-min-height: #{$image-select-min-height};
|
|
729
|
+
--cool-image-select-padding: #{$image-select-padding};
|
|
730
|
+
--cool-image-select-gap: #{$image-select-gap};
|
|
731
|
+
--cool-image-select-trigger-bg: #{$image-select-trigger-bg};
|
|
732
|
+
--cool-image-select-trigger-color: #{$image-select-trigger-color};
|
|
733
|
+
|
|
734
|
+
--cool-placeholder-icon-size: #{$placeholder-icon-size};
|
|
735
|
+
--cool-placeholder-icon-font-size: #{$placeholder-icon-font-size};
|
|
736
|
+
--cool-placeholder-icon-color: #{$placeholder-icon-color};
|
|
737
|
+
--cool-placeholder-padding: #{$placeholder-padding};
|
|
738
|
+
--cool-placeholder-spacing: #{$placeholder-spacing};
|
|
739
|
+
--cool-placeholder-spacing-sm: #{$placeholder-spacing-sm};
|
|
740
|
+
--cool-placeholder-title-font-family: #{meta.inspect($placeholder-title-font-family)};
|
|
741
|
+
--cool-placeholder-title-font-weight: #{$placeholder-title-font-weight};
|
|
742
|
+
--cool-placeholder-title-color: #{$placeholder-title-color};
|
|
743
|
+
--cool-placeholder-description-color: #{$placeholder-description-color};
|
|
744
|
+
|
|
745
|
+
// Pagination
|
|
746
|
+
--cool-pagination-padding-y: #{$pagination-padding-y};
|
|
747
|
+
--cool-pagination-padding-x: #{$pagination-padding-x};
|
|
748
|
+
--cool-pagination-color: #{$pagination-color};
|
|
749
|
+
--cool-pagination-hover-color: #{$pagination-hover-color};
|
|
750
|
+
--cool-pagination-active-color: #{$pagination-active-color};
|
|
751
|
+
--cool-pagination-disabled-color: #{$pagination-disabled-color};
|
|
752
|
+
|
|
753
|
+
// Popovers
|
|
754
|
+
--cool-popover-font-size: #{$popover-font-size};
|
|
755
|
+
--cool-popover-bg: #{$popover-bg};
|
|
756
|
+
--cool-popover-box-shadow: #{$popover-box-shadow};
|
|
757
|
+
--cool-popover-max-width: #{$popover-max-width};
|
|
758
|
+
--cool-popover-border-width: #{$popover-border-width};
|
|
759
|
+
--cool-popover-border-color: #{$popover-border-color};
|
|
760
|
+
--cool-popover-border-radius: #{$popover-border-radius};
|
|
761
|
+
--cool-popover-spacer: #{$popover-spacer};
|
|
762
|
+
--cool-popover-header-bg: #{$popover-header-bg};
|
|
763
|
+
--cool-popover-header-color: #{$popover-header-color};
|
|
764
|
+
--cool-popover-header-padding-y: #{$popover-header-padding-y};
|
|
765
|
+
--cool-popover-header-padding-x: #{$popover-header-padding-x};
|
|
766
|
+
--cool-popover-body-color: #{$popover-body-color};
|
|
767
|
+
--cool-popover-body-padding-y: #{$popover-body-padding-y};
|
|
768
|
+
--cool-popover-body-padding-x: #{$popover-body-padding-x};
|
|
769
|
+
|
|
770
|
+
// Select
|
|
771
|
+
--cool-select-spacer: #{$select-spacer};
|
|
772
|
+
--cool-select-spacer-sm: #{$select-spacer-sm};
|
|
773
|
+
--cool-select-bg: #{$select-bg};
|
|
774
|
+
--cool-select-border-color: #{$select-border-color};
|
|
775
|
+
--cool-select-border-radius: #{$select-border-radius};
|
|
776
|
+
--cool-select-border-width: #{$select-border-width};
|
|
777
|
+
--cool-select-divider-bg: #{$select-divider-bg};
|
|
778
|
+
--cool-select-box-shadow: #{$select-box-shadow};
|
|
779
|
+
|
|
780
|
+
--cool-select-item-color: #{$select-item-color};
|
|
781
|
+
--cool-select-item-hover-color: #{$select-item-hover-color};
|
|
782
|
+
--cool-select-item-hover-bg: #{$select-item-hover-bg};
|
|
783
|
+
--cool-select-item-disabled-color: #{$select-item-disabled-color};
|
|
784
|
+
|
|
785
|
+
--cool-select-item-padding-y: #{$select-item-padding-y};
|
|
786
|
+
--cool-select-item-padding-x: #{$select-item-padding-x};
|
|
787
|
+
--cool-select-item-padding-y-sm: #{$select-item-padding-y-sm};
|
|
788
|
+
--cool-select-item-padding-x-sm: #{$select-item-padding-x-sm};
|
|
789
|
+
|
|
790
|
+
--cool-select-header-color: #{$select-header-color};
|
|
791
|
+
--cool-select-chip-bg: #{$select-chip-bg};
|
|
792
|
+
--cool-select-chip-border-radius: #{$select-chip-border-radius};
|
|
793
|
+
--cool-select-chip-padding: #{$select-chip-padding};
|
|
794
|
+
--cool-select-chip-font-size: #{$select-chip-font-size};
|
|
795
|
+
--cool-select-chip-max-width: #{$select-chip-max-width};
|
|
796
|
+
--cool-select-placeholder-color: #{$select-placeholder-color};
|
|
797
|
+
--cool-select-placeholder-font-style: #{$select-placeholder-font-style};
|
|
798
|
+
--cool-select-search-icon-color: #{$select-search-icon-color};
|
|
799
|
+
--cool-select-animation-length: #{$select-animation-length};
|
|
800
|
+
--cool-select-animation-timing: #{$select-animation-timing};
|
|
801
|
+
|
|
802
|
+
// Toast
|
|
803
|
+
--cool-toast-bg: #{$toast-bg};
|
|
804
|
+
--cool-toast-border-width: #{$toast-border-width};
|
|
805
|
+
--cool-toast-border-radius: #{$toast-border-radius};
|
|
806
|
+
--cool-toast-font-size: #{$toast-font-size};
|
|
807
|
+
|
|
808
|
+
--cool-toast-header-bg: #{$toast-header-bg};
|
|
809
|
+
--cool-toast-header-color: #{$toast-header-color};
|
|
810
|
+
--cool-toast-header-padding-y: #{$toast-header-padding-y};
|
|
811
|
+
--cool-toast-header-padding-x: #{$toast-header-padding-x};
|
|
812
|
+
|
|
813
|
+
--cool-toast-body-color: #{$toast-body-color};
|
|
814
|
+
--cool-toast-body-padding-y: #{$toast-body-padding-y};
|
|
815
|
+
--cool-toast-body-padding-x: #{$toast-body-padding-x};
|
|
816
|
+
|
|
817
|
+
--cool-toast-max-width: #{$toast-max-width};
|
|
818
|
+
--cool-toast-offset-x: #{$toast-offset-x};
|
|
819
|
+
--cool-toast-offset-y: #{$toast-offset-y};
|
|
820
|
+
--cool-toast-gap: #{$toast-gap};
|
|
821
|
+
--cool-toast-stack-offset: #{$toast-stack-offset};
|
|
822
|
+
--cool-toast-stack-scale: #{$toast-stack-scale};
|
|
823
|
+
--cool-toast-stack-opacity: #{$toast-stack-opacity};
|
|
824
|
+
--cool-toast-transition-duration: #{$toast-transition-duration};
|
|
825
|
+
|
|
826
|
+
// Tooltip
|
|
827
|
+
--cool-tooltip-font-size: #{$tooltip-font-size};
|
|
828
|
+
--cool-tooltip-max-width: #{$tooltip-max-width};
|
|
829
|
+
--cool-tooltip-color: #{$tooltip-color};
|
|
830
|
+
--cool-tooltip-bg: #{$tooltip-bg};
|
|
831
|
+
--cool-tooltip-border-radius: #{$tooltip-border-radius};
|
|
832
|
+
--cool-tooltip-opacity: #{$tooltip-opacity};
|
|
833
|
+
--cool-tooltip-padding-y: #{$tooltip-padding-y};
|
|
834
|
+
--cool-tooltip-padding-x: #{$tooltip-padding-x};
|
|
835
|
+
--cool-tooltip-margin: #{$tooltip-margin};
|
|
836
|
+
--cool-tooltip-arrow-width: #{$tooltip-arrow-width};
|
|
837
|
+
--cool-tooltip-arrow-height: #{$tooltip-arrow-height};
|
|
838
|
+
--cool-tooltip-arrow-color: #{$tooltip-arrow-color};
|
|
839
|
+
}
|
|
840
|
+
}
|
|
841
|
+
|
|
842
|
+
@if $cool-use-base-layer {
|
|
843
|
+
@layer base {
|
|
844
|
+
@include cool-root-base;
|
|
845
|
+
}
|
|
846
|
+
} @else {
|
|
847
|
+
@include cool-root-base;
|
|
848
|
+
}
|