@clayui/css 3.160.0 → 3.161.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.
- package/lib/css/atlas.css +1581 -1581
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +1283 -1283
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +7 -7
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/books-brush.svg +9 -0
- package/lib/images/icons/icons.svg +1 -1
- package/package.json +1 -1
- package/src/images/icons/books-brush.svg +9 -0
- package/src/images/icons/icons.svg +1 -1
- package/src/scss/_license-text.scss +1 -1
- package/src/scss/atlas/_variables.scss +6 -4
- package/src/scss/atlas/variables/_globals.scss +10 -10
- package/src/scss/atlas-custom-properties/_variables.scss +68 -0
- package/src/scss/atlas-custom-properties/variables/_alerts.scss +1212 -0
- package/src/scss/atlas-custom-properties/variables/_application-bar.scss +62 -0
- package/src/scss/atlas-custom-properties/variables/_aspect-ratio.scss +28 -0
- package/src/scss/atlas-custom-properties/variables/_badges.scss +352 -0
- package/src/scss/atlas-custom-properties/variables/_breadcrumbs.scss +205 -0
- package/src/scss/atlas-custom-properties/variables/_buttons.scss +1498 -0
- package/src/scss/atlas-custom-properties/variables/_c-root.scss +353 -0
- package/src/scss/atlas-custom-properties/variables/_cards.scss +1217 -0
- package/src/scss/atlas-custom-properties/variables/_clay-color.scss +647 -0
- package/src/scss/atlas-custom-properties/variables/_custom-forms.scss +1127 -0
- package/src/scss/atlas-custom-properties/variables/_date-picker.scss +701 -0
- package/src/scss/atlas-custom-properties/variables/_drilldown.scss +252 -0
- package/src/scss/atlas-custom-properties/variables/_dropdowns.scss +1250 -0
- package/src/scss/atlas-custom-properties/variables/_dual-listbox.scss +75 -0
- package/src/scss/atlas-custom-properties/variables/_empty-state.scss +104 -0
- package/src/scss/atlas-custom-properties/variables/_forms.scss +2342 -0
- package/src/scss/atlas-custom-properties/variables/_globals-z-index.scss +50 -0
- package/src/scss/atlas-custom-properties/variables/_globals.scss +846 -0
- package/src/scss/atlas-custom-properties/variables/_icons.scss +73 -0
- package/src/scss/atlas-custom-properties/variables/_images.scss +14 -0
- package/src/scss/atlas-custom-properties/variables/_labels.scss +1485 -0
- package/src/scss/atlas-custom-properties/variables/_links.scss +482 -0
- package/src/scss/atlas-custom-properties/variables/_list-group.scss +493 -0
- package/src/scss/atlas-custom-properties/variables/_loaders.scss +243 -0
- package/src/scss/atlas-custom-properties/variables/_management-bar.scss +153 -0
- package/src/scss/atlas-custom-properties/variables/_menubar.scss +836 -0
- package/src/scss/atlas-custom-properties/variables/_modals.scss +650 -0
- package/src/scss/atlas-custom-properties/variables/_multi-step-nav.scss +324 -0
- package/src/scss/atlas-custom-properties/variables/_navbar.scss +200 -0
- package/src/scss/atlas-custom-properties/variables/_navigation-bar.scss +473 -0
- package/src/scss/atlas-custom-properties/variables/_navs.scss +547 -0
- package/src/scss/atlas-custom-properties/variables/_pagination.scss +1101 -0
- package/src/scss/atlas-custom-properties/variables/_panels.scss +567 -0
- package/src/scss/atlas-custom-properties/variables/_popovers.scss +565 -0
- package/src/scss/atlas-custom-properties/variables/_progress-bars.scss +142 -0
- package/src/scss/atlas-custom-properties/variables/_quick-action.scss +27 -0
- package/src/scss/atlas-custom-properties/variables/_range.scss +267 -0
- package/src/scss/atlas-custom-properties/variables/_reorder.scss +91 -0
- package/src/scss/atlas-custom-properties/variables/_resizer.scss +26 -0
- package/src/scss/atlas-custom-properties/variables/_sheets.scss +301 -0
- package/src/scss/atlas-custom-properties/variables/_side-navigation.scss +4 -0
- package/src/scss/atlas-custom-properties/variables/_sidebar.scss +579 -0
- package/src/scss/atlas-custom-properties/variables/_slideout.scss +379 -0
- package/src/scss/atlas-custom-properties/variables/_stickers.scss +578 -0
- package/src/scss/atlas-custom-properties/variables/_tables.scss +1277 -0
- package/src/scss/atlas-custom-properties/variables/_tbar.scss +636 -0
- package/src/scss/atlas-custom-properties/variables/_time.scss +142 -0
- package/src/scss/atlas-custom-properties/variables/_timelines.scss +43 -0
- package/src/scss/atlas-custom-properties/variables/_toggle-switch.scss +706 -0
- package/src/scss/atlas-custom-properties/variables/_tooltip.scss +332 -0
- package/src/scss/atlas-custom-properties/variables/_treeview.scss +369 -0
- package/src/scss/atlas-custom-properties/variables/_type.scss +194 -0
- package/src/scss/atlas-custom-properties/variables/_utilities.scss +1016 -0
- package/src/scss/atlas-variables.scss +2 -0
- package/src/scss/atlas.scss +2 -0
- package/src/scss/base-variables.scss +2 -0
- package/src/scss/base.scss +2 -0
- package/src/scss/functions/_global-functions.scss +6 -4
- package/src/scss/functions/_lx-icons-generated.scss +2 -0
- package/src/scss/variables/_globals.scss +8 -8
|
@@ -0,0 +1,243 @@
|
|
|
1
|
+
@if ($enable-atlas-custom-properties) {
|
|
2
|
+
// Loading Animation
|
|
3
|
+
|
|
4
|
+
// @deprecated as of v3.x with no replacement
|
|
5
|
+
|
|
6
|
+
$loading-icon-font-size: 40px; // 40px
|
|
7
|
+
|
|
8
|
+
// @deprecated as of v3.x with no replacement
|
|
9
|
+
|
|
10
|
+
$loading-icon-font-size-sm: 16px; // 16px
|
|
11
|
+
|
|
12
|
+
// Loading Animation
|
|
13
|
+
|
|
14
|
+
$loading-animation: ();
|
|
15
|
+
$loading-animation: map-deep-merge(
|
|
16
|
+
(
|
|
17
|
+
display: var(--loading-animation-display, block),
|
|
18
|
+
height: var(--loading-animation-height, 1em),
|
|
19
|
+
margin-left: var(--loading-animation-margin-left, auto),
|
|
20
|
+
margin-right: var(--loading-animation-margin-right, auto),
|
|
21
|
+
overflow: var(--loading-animation-overflow, hidden),
|
|
22
|
+
position: var(--loading-animation-position, relative),
|
|
23
|
+
text-align: var(--loading-animation-text-align, left),
|
|
24
|
+
vertical-align: var(--loading-animation-vertical-align, middle),
|
|
25
|
+
width: var(--loading-animation-width, 1em),
|
|
26
|
+
before: (
|
|
27
|
+
animation:
|
|
28
|
+
var(
|
|
29
|
+
--loading-animation-before-animation,
|
|
30
|
+
loading-animation-circle 1s linear infinite
|
|
31
|
+
),
|
|
32
|
+
border-radius:
|
|
33
|
+
var(--loading-animation-before-border-radius, 50%),
|
|
34
|
+
box-shadow:
|
|
35
|
+
var(
|
|
36
|
+
--loading-animation-before-box-shadow,
|
|
37
|
+
-0.03125em -0.375em 0 0 currentColor
|
|
38
|
+
),
|
|
39
|
+
content: var(--loading-animation-before-content, ''),
|
|
40
|
+
height: var(--loading-animation-before-height, 0.25em),
|
|
41
|
+
left: var(--loading-animation-before-left, 50%),
|
|
42
|
+
margin-left:
|
|
43
|
+
var(--loading-animation-before-margin-left, -0.125em),
|
|
44
|
+
margin-top:
|
|
45
|
+
var(--loading-animation-before-margin-top, -0.125em),
|
|
46
|
+
position: var(--loading-animation-before-position, absolute),
|
|
47
|
+
top: var(--loading-animation-before-top, 50%),
|
|
48
|
+
width: var(--loading-animation-before-width, 0.25em),
|
|
49
|
+
),
|
|
50
|
+
|
|
51
|
+
after: (
|
|
52
|
+
animation:
|
|
53
|
+
var(
|
|
54
|
+
--loading-animation-animation,
|
|
55
|
+
loading-animation-circle 1s linear infinite
|
|
56
|
+
),
|
|
57
|
+
background-color:
|
|
58
|
+
var(--loading-animation-background-color, currentColor),
|
|
59
|
+
border-radius: var(--loading-animation-border-radius, 50%),
|
|
60
|
+
content: var(--loading-animation-content, ''),
|
|
61
|
+
display: var(--loading-animation-display, block),
|
|
62
|
+
height: var(--loading-animation-height, 1em),
|
|
63
|
+
-webkit-mask:
|
|
64
|
+
var(
|
|
65
|
+
--loading-animation--webkit-mask,
|
|
66
|
+
#{conic-gradient(transparent 10%, #000),
|
|
67
|
+
linear-gradient(#000 0 0) content-box}
|
|
68
|
+
),
|
|
69
|
+
-webkit-mask-composite:
|
|
70
|
+
var(--loading-animation--webkit-mask-composite, source-out),
|
|
71
|
+
mask-composite:
|
|
72
|
+
var(--loading-animation-mask-composite, subtract),
|
|
73
|
+
padding: var(--loading-animation-padding, 0.25em),
|
|
74
|
+
width: var(--loading-animation-width, 1em),
|
|
75
|
+
),
|
|
76
|
+
),
|
|
77
|
+
$loading-animation
|
|
78
|
+
);
|
|
79
|
+
|
|
80
|
+
// .loading-animation-squares
|
|
81
|
+
|
|
82
|
+
$loading-animation-squares: ();
|
|
83
|
+
$loading-animation-squares: map-deep-merge(
|
|
84
|
+
(
|
|
85
|
+
display: block,
|
|
86
|
+
height: 1em,
|
|
87
|
+
margin-left: auto,
|
|
88
|
+
margin-right: auto,
|
|
89
|
+
position: relative,
|
|
90
|
+
text-align: left,
|
|
91
|
+
vertical-align: middle,
|
|
92
|
+
width: 1em,
|
|
93
|
+
|
|
94
|
+
before: (
|
|
95
|
+
animation:
|
|
96
|
+
loading-animation-squares-box-1
|
|
97
|
+
2.4s
|
|
98
|
+
ease-in-out
|
|
99
|
+
infinite,
|
|
100
|
+
background-color: currentColor,
|
|
101
|
+
border-radius: 0.2em,
|
|
102
|
+
content: '',
|
|
103
|
+
display: block,
|
|
104
|
+
font-size: 0.3125em,
|
|
105
|
+
height: 1em,
|
|
106
|
+
left: 0,
|
|
107
|
+
opacity: 0.4,
|
|
108
|
+
position: absolute,
|
|
109
|
+
top: 0,
|
|
110
|
+
transform: scale(1),
|
|
111
|
+
width: 1em,
|
|
112
|
+
),
|
|
113
|
+
|
|
114
|
+
after: (
|
|
115
|
+
animation:
|
|
116
|
+
loading-animation-squares-box-2
|
|
117
|
+
2.4s
|
|
118
|
+
ease-in-out
|
|
119
|
+
infinite,
|
|
120
|
+
background-color: currentColor,
|
|
121
|
+
border-radius: 0.2em,
|
|
122
|
+
content: '',
|
|
123
|
+
display: block,
|
|
124
|
+
font-size: 0.3125em,
|
|
125
|
+
height: 1em,
|
|
126
|
+
left: calc(100% - 1.5em),
|
|
127
|
+
opacity: 1,
|
|
128
|
+
position: absolute,
|
|
129
|
+
top: calc(100% - 1.5em),
|
|
130
|
+
transform: scale(2),
|
|
131
|
+
width: 1em,
|
|
132
|
+
),
|
|
133
|
+
|
|
134
|
+
'prefers-reduced-motion': (
|
|
135
|
+
display: block,
|
|
136
|
+
height: 1em,
|
|
137
|
+
margin-left: auto,
|
|
138
|
+
margin-right: auto,
|
|
139
|
+
overflow: hidden,
|
|
140
|
+
position: relative,
|
|
141
|
+
text-align: left,
|
|
142
|
+
vertical-align: middle,
|
|
143
|
+
width: 1em,
|
|
144
|
+
|
|
145
|
+
'&::before': (
|
|
146
|
+
animation: loading-animation-circle 1s linear infinite,
|
|
147
|
+
background-color: transparent,
|
|
148
|
+
border-radius: 50%,
|
|
149
|
+
box-shadow: -0.03125em -0.375em 0 0 currentColor,
|
|
150
|
+
content: '',
|
|
151
|
+
display: block,
|
|
152
|
+
font-size: inherit,
|
|
153
|
+
height: 0.25em,
|
|
154
|
+
left: 50%,
|
|
155
|
+
margin-left: -0.125em,
|
|
156
|
+
margin-top: -0.125em,
|
|
157
|
+
opacity: inherit,
|
|
158
|
+
position: absolute,
|
|
159
|
+
top: 50%,
|
|
160
|
+
transform: none,
|
|
161
|
+
width: 0.25em,
|
|
162
|
+
),
|
|
163
|
+
|
|
164
|
+
'&::after': (
|
|
165
|
+
animation: loading-animation-circle 1s linear infinite,
|
|
166
|
+
background-color: currentColor,
|
|
167
|
+
border-radius: 50%,
|
|
168
|
+
content: '',
|
|
169
|
+
display: block,
|
|
170
|
+
font-size: inherit,
|
|
171
|
+
height: 1em,
|
|
172
|
+
left: auto,
|
|
173
|
+
|
|
174
|
+
-webkit-mask: #{conic-gradient(transparent 10%, #000),
|
|
175
|
+
linear-gradient(#000 0 0) content-box},
|
|
176
|
+
-webkit-mask-composite: source-out,
|
|
177
|
+
|
|
178
|
+
mask-composite: subtract,
|
|
179
|
+
padding: 0.25em,
|
|
180
|
+
position: relative,
|
|
181
|
+
top: auto,
|
|
182
|
+
transform: none,
|
|
183
|
+
width: 1em,
|
|
184
|
+
),
|
|
185
|
+
),
|
|
186
|
+
),
|
|
187
|
+
$loading-animation-squares
|
|
188
|
+
);
|
|
189
|
+
|
|
190
|
+
// Loading Animation Sizes
|
|
191
|
+
|
|
192
|
+
$loading-animation-sizes: ();
|
|
193
|
+
$loading-animation-sizes: map-deep-merge(
|
|
194
|
+
(
|
|
195
|
+
loading-animation-xs: (
|
|
196
|
+
font-size: var(--loading-animation-xs-font-size, 10px),
|
|
197
|
+
),
|
|
198
|
+
|
|
199
|
+
loading-animation-sm: (
|
|
200
|
+
font-size:
|
|
201
|
+
var(
|
|
202
|
+
--loading-animation-sm-font-size,
|
|
203
|
+
$loading-icon-font-size-sm
|
|
204
|
+
),
|
|
205
|
+
),
|
|
206
|
+
|
|
207
|
+
loading-animation-md: (
|
|
208
|
+
font-size: var(--loading-animation-md-font-size, 32px),
|
|
209
|
+
),
|
|
210
|
+
|
|
211
|
+
loading-animation-lg: (
|
|
212
|
+
font-size: var(--loading-animation-lg-font-size, 64px),
|
|
213
|
+
),
|
|
214
|
+
),
|
|
215
|
+
$loading-animation-sizes
|
|
216
|
+
);
|
|
217
|
+
|
|
218
|
+
// Loading Animation Variants
|
|
219
|
+
|
|
220
|
+
$loading-animation-light: ();
|
|
221
|
+
$loading-animation-light: map-deep-merge(
|
|
222
|
+
(
|
|
223
|
+
color: var(--loading-animation-light-color, $white),
|
|
224
|
+
),
|
|
225
|
+
$loading-animation-light
|
|
226
|
+
);
|
|
227
|
+
|
|
228
|
+
$loading-animation-palette: ();
|
|
229
|
+
$loading-animation-palette: map-deep-merge(
|
|
230
|
+
(
|
|
231
|
+
loading-animation-primary: (
|
|
232
|
+
color: var(--loading-animation-primary-color, $primary),
|
|
233
|
+
),
|
|
234
|
+
|
|
235
|
+
loading-animation-secondary: (
|
|
236
|
+
color: var(--loading-animation-secondary-color, $secondary),
|
|
237
|
+
),
|
|
238
|
+
|
|
239
|
+
loading-animation-light: $loading-animation-light,
|
|
240
|
+
),
|
|
241
|
+
$loading-animation-palette
|
|
242
|
+
);
|
|
243
|
+
}
|
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
@if ($enable-atlas-custom-properties) {
|
|
2
|
+
$management-bar-base: ();
|
|
3
|
+
$management-bar-base: map-deep-merge(
|
|
4
|
+
(
|
|
5
|
+
border-color: transparent,
|
|
6
|
+
border-style: solid,
|
|
7
|
+
|
|
8
|
+
media-breakpoint-down: (),
|
|
9
|
+
media-breakpoint-up: (),
|
|
10
|
+
),
|
|
11
|
+
$management-bar-base
|
|
12
|
+
);
|
|
13
|
+
|
|
14
|
+
$management-bar-size: ();
|
|
15
|
+
$management-bar-size: map-deep-merge(
|
|
16
|
+
(
|
|
17
|
+
scaling-navbar: true,
|
|
18
|
+
|
|
19
|
+
border-bottom-width: 0.0625rem,
|
|
20
|
+
font-size:
|
|
21
|
+
if(variable-exists(navbar-font-size), $navbar-font-size, null),
|
|
22
|
+
height: 4rem,
|
|
23
|
+
min-height: 4rem,
|
|
24
|
+
padding-x: 0rem,
|
|
25
|
+
padding-y: 0rem,
|
|
26
|
+
|
|
27
|
+
active-border-bottom-width: 0.25rem,
|
|
28
|
+
|
|
29
|
+
height-mobile: 3rem,
|
|
30
|
+
min-height-mobile: 3rem,
|
|
31
|
+
|
|
32
|
+
btn-monospaced-font-size: 1rem,
|
|
33
|
+
|
|
34
|
+
link-height: 2rem,
|
|
35
|
+
link-margin-x: 0.5rem,
|
|
36
|
+
|
|
37
|
+
toggler-margin-x: 0.875rem,
|
|
38
|
+
|
|
39
|
+
nav-item-dropdown-margin-top: 0rem,
|
|
40
|
+
|
|
41
|
+
link-height-mobile: 2rem,
|
|
42
|
+
link-margin-x-mobile: 0.25rem,
|
|
43
|
+
link-padding-x-mobile: 0.25rem,
|
|
44
|
+
|
|
45
|
+
form-control-height-mobile: 2rem,
|
|
46
|
+
),
|
|
47
|
+
$management-bar-size
|
|
48
|
+
);
|
|
49
|
+
|
|
50
|
+
$management-bar-light: ();
|
|
51
|
+
$management-bar-light: map-deep-merge(
|
|
52
|
+
(
|
|
53
|
+
background-color: $light,
|
|
54
|
+
|
|
55
|
+
navbar-nav: (
|
|
56
|
+
nav-link: (
|
|
57
|
+
color:
|
|
58
|
+
if(
|
|
59
|
+
variable-exists(navbar-light-color),
|
|
60
|
+
$navbar-light-color,
|
|
61
|
+
unquote('hsl(from #{$black} h s l / 0.5)')
|
|
62
|
+
),
|
|
63
|
+
hover: (
|
|
64
|
+
color:
|
|
65
|
+
if(
|
|
66
|
+
variable-exists(navbar-light-hover-color),
|
|
67
|
+
$navbar-light-hover-color,
|
|
68
|
+
unquote('hsl(from #{$black} h s l / 0.7)')
|
|
69
|
+
),
|
|
70
|
+
),
|
|
71
|
+
|
|
72
|
+
active: (
|
|
73
|
+
color:
|
|
74
|
+
if(
|
|
75
|
+
variable-exists(navbar-light-active-color),
|
|
76
|
+
$navbar-light-active-color,
|
|
77
|
+
unquote('hsl(from #{$black} h s l / 0.9)')
|
|
78
|
+
),
|
|
79
|
+
),
|
|
80
|
+
|
|
81
|
+
disabled: (
|
|
82
|
+
color:
|
|
83
|
+
if(
|
|
84
|
+
variable-exists(navbar-light-disabled-color),
|
|
85
|
+
$navbar-light-disabled-color,
|
|
86
|
+
unquote('hsl(from #{$black} h s l / 0.3)')
|
|
87
|
+
),
|
|
88
|
+
opacity: 1,
|
|
89
|
+
),
|
|
90
|
+
),
|
|
91
|
+
),
|
|
92
|
+
|
|
93
|
+
media-breakpoint-down: (),
|
|
94
|
+
media-breakpoint-up: (),
|
|
95
|
+
),
|
|
96
|
+
$management-bar-light
|
|
97
|
+
);
|
|
98
|
+
|
|
99
|
+
$management-bar-primary: ();
|
|
100
|
+
$management-bar-primary: map-deep-merge(
|
|
101
|
+
(
|
|
102
|
+
background-color: $primary-l3,
|
|
103
|
+
border-color: $primary,
|
|
104
|
+
color:
|
|
105
|
+
if(
|
|
106
|
+
variable-exists(navbar-light-color),
|
|
107
|
+
$navbar-light-color,
|
|
108
|
+
unquote('hsl(from #{$black} h s l / 0.5)')
|
|
109
|
+
),
|
|
110
|
+
navbar-nav: (
|
|
111
|
+
nav-link: (
|
|
112
|
+
color:
|
|
113
|
+
if(
|
|
114
|
+
variable-exists(navbar-light-color),
|
|
115
|
+
$navbar-light-color,
|
|
116
|
+
unquote('hsl(from #{$black} h s l / 0.5)')
|
|
117
|
+
),
|
|
118
|
+
hover: (
|
|
119
|
+
color:
|
|
120
|
+
if(
|
|
121
|
+
variable-exists(navbar-light-hover-color),
|
|
122
|
+
$navbar-light-hover-color,
|
|
123
|
+
unquote('hsl(from #{$black} h s l / 0.7)')
|
|
124
|
+
),
|
|
125
|
+
),
|
|
126
|
+
|
|
127
|
+
active: (
|
|
128
|
+
color:
|
|
129
|
+
if(
|
|
130
|
+
variable-exists(navbar-light-active-color),
|
|
131
|
+
$navbar-light-active-color,
|
|
132
|
+
unquote('hsl(from #{$black} h s l / 0.9)')
|
|
133
|
+
),
|
|
134
|
+
),
|
|
135
|
+
|
|
136
|
+
disabled: (
|
|
137
|
+
color:
|
|
138
|
+
if(
|
|
139
|
+
variable-exists(navbar-light-disabled-color),
|
|
140
|
+
$navbar-light-disabled-color,
|
|
141
|
+
unquote('hsl(from #{$black} h s l / 0.3)')
|
|
142
|
+
),
|
|
143
|
+
opacity: 1,
|
|
144
|
+
),
|
|
145
|
+
),
|
|
146
|
+
),
|
|
147
|
+
|
|
148
|
+
media-breakpoint-down: (),
|
|
149
|
+
media-breakpoint-up: (),
|
|
150
|
+
),
|
|
151
|
+
$management-bar-primary
|
|
152
|
+
);
|
|
153
|
+
}
|