@clayui/css 3.48.0 → 3.51.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/css/atlas.css +976 -470
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +981 -483
- package/lib/css/base.css.map +1 -1
- package/lib/css/bootstrap.css.map +1 -1
- package/lib/css/cadmin.css +556 -254
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/book.svg +10 -0
- package/lib/images/icons/coin.svg +10 -0
- package/lib/images/icons/cookie.svg +9 -0
- package/lib/images/icons/dollar-symbol.svg +9 -0
- package/lib/images/icons/globe-lines.svg +9 -0
- package/lib/images/icons/globe-pin.svg +10 -0
- package/lib/images/icons/icons.svg +1 -1
- package/lib/images/icons/nodes.svg +9 -0
- package/lib/images/icons/order-form-cog.svg +9 -0
- package/lib/images/icons/order-form-pencil.svg +13 -0
- package/lib/images/icons/order-form-tag.svg +9 -0
- package/lib/images/icons/order-form.svg +12 -0
- package/lib/images/icons/percentage-banner.svg +12 -0
- package/lib/images/icons/percentage-symbol.svg +11 -0
- package/lib/images/icons/price-tag.svg +10 -0
- package/lib/images/icons/ruler.svg +9 -0
- package/lib/images/icons/shopping-cart.svg +3 -3
- package/lib/images/icons/squares-clock.svg +13 -0
- package/lib/images/icons/squares.svg +11 -0
- package/lib/images/icons/warehouse.svg +12 -0
- package/package.json +2 -2
- package/src/images/icons/book.svg +10 -0
- package/src/images/icons/coin.svg +10 -0
- package/src/images/icons/cookie.svg +9 -0
- package/src/images/icons/dollar-symbol.svg +9 -0
- package/src/images/icons/globe-lines.svg +9 -0
- package/src/images/icons/globe-pin.svg +10 -0
- package/src/images/icons/nodes.svg +9 -0
- package/src/images/icons/order-form-cog.svg +9 -0
- package/src/images/icons/order-form-pencil.svg +13 -0
- package/src/images/icons/order-form-tag.svg +9 -0
- package/src/images/icons/order-form.svg +12 -0
- package/src/images/icons/percentage-banner.svg +12 -0
- package/src/images/icons/percentage-symbol.svg +11 -0
- package/src/images/icons/price-tag.svg +10 -0
- package/src/images/icons/ruler.svg +9 -0
- package/src/images/icons/shopping-cart.svg +3 -3
- package/src/images/icons/squares-clock.svg +13 -0
- package/src/images/icons/squares.svg +11 -0
- package/src/images/icons/warehouse.svg +12 -0
- package/src/scss/atlas/variables/_forms.scss +9 -8
- package/src/scss/atlas/variables/_globals.scss +23 -5
- package/src/scss/atlas/variables/_utilities.scss +12 -8
- package/src/scss/cadmin/variables/_forms.scss +9 -8
- package/src/scss/components/_custom-forms.scss +9 -7
- package/src/scss/components/_tables.scss +29 -23
- package/src/scss/functions/_global-functions.scss +18 -0
- package/src/scss/functions/_lx-icons-generated.scss +37 -1
- package/src/scss/mixins/_globals.scss +0 -36
- package/src/scss/mixins/_nav-nested.scss +2 -2
- package/src/scss/mixins/_navbar.scss +121 -107
- package/src/scss/variables/_dropdowns.scss +1 -2
- package/src/scss/variables/_globals.scss +28 -10
- package/src/scss/variables/_navbar.scss +9 -4
- package/src/scss/variables/_navs.scss +6 -4
- package/src/scss/variables/_progress-bars.scss +2 -2
- package/src/scss/variables/_tables.scss +63 -3
- package/src/scss/variables/_utilities.scss +24 -19
|
@@ -23,7 +23,7 @@ $autofit-padded-no-gutters-sm: map-merge(
|
|
|
23
23
|
// Close
|
|
24
24
|
|
|
25
25
|
$close-color: $black !default;
|
|
26
|
-
$close-font-size: $font-size-base * 1.5 !default;
|
|
26
|
+
$close-font-size: calc(#{$font-size-base} * 1.5) !default;
|
|
27
27
|
$close-font-weight: $font-weight-bold !default;
|
|
28
28
|
$close-text-shadow: 0 1px 0 $white !default;
|
|
29
29
|
|
|
@@ -33,7 +33,7 @@ $close: map-deep-merge(
|
|
|
33
33
|
align-items: center,
|
|
34
34
|
appearance: none,
|
|
35
35
|
background-color: transparent,
|
|
36
|
-
border-radius: $
|
|
36
|
+
border-radius: $border-radius-sm,
|
|
37
37
|
border-width: 0,
|
|
38
38
|
color: $close-color,
|
|
39
39
|
cursor: $link-cursor,
|
|
@@ -47,7 +47,10 @@ $close: map-deep-merge(
|
|
|
47
47
|
padding: 0,
|
|
48
48
|
text-align: center,
|
|
49
49
|
text-shadow: $close-text-shadow,
|
|
50
|
-
transition:
|
|
50
|
+
transition: #{color 0.15s ease-in-out,
|
|
51
|
+
background-color 0.15s ease-in-out,
|
|
52
|
+
border-color 0.15s ease-in-out,
|
|
53
|
+
box-shadow 0.15s ease-in-out},
|
|
51
54
|
width: 2rem,
|
|
52
55
|
hover: (
|
|
53
56
|
color: $close-color,
|
|
@@ -55,6 +58,8 @@ $close: map-deep-merge(
|
|
|
55
58
|
text-decoration: none,
|
|
56
59
|
),
|
|
57
60
|
focus: (
|
|
61
|
+
box-shadow: $input-btn-focus-box-shadow,
|
|
62
|
+
outline: 0,
|
|
58
63
|
opacity: 0.75,
|
|
59
64
|
),
|
|
60
65
|
disabled: (
|
|
@@ -62,13 +67,13 @@ $close: map-deep-merge(
|
|
|
62
67
|
cursor: $disabled-cursor,
|
|
63
68
|
opacity: 0.25,
|
|
64
69
|
outline: 0,
|
|
70
|
+
active: (
|
|
71
|
+
pointer-events: none,
|
|
72
|
+
),
|
|
65
73
|
),
|
|
66
|
-
|
|
67
|
-
|
|
74
|
+
lexicon-icon: (
|
|
75
|
+
margin-top: 0,
|
|
68
76
|
),
|
|
69
|
-
btn-focus-box-shadow: $input-btn-focus-box-shadow,
|
|
70
|
-
btn-focus-outline: 0,
|
|
71
|
-
lexicon-icon-margin-top: 0,
|
|
72
77
|
),
|
|
73
78
|
$close
|
|
74
79
|
);
|
|
@@ -311,37 +316,37 @@ $font-sizes: () !default;
|
|
|
311
316
|
$font-sizes: map-deep-merge(
|
|
312
317
|
(
|
|
313
318
|
text-1: (
|
|
314
|
-
font-size:
|
|
319
|
+
font-size: map-get($font-scale, 1),
|
|
315
320
|
),
|
|
316
321
|
text-2: (
|
|
317
|
-
font-size:
|
|
322
|
+
font-size: map-get($font-scale, 2),
|
|
318
323
|
),
|
|
319
324
|
text-3: (
|
|
320
|
-
font-size:
|
|
325
|
+
font-size: map-get($font-scale, 3),
|
|
321
326
|
),
|
|
322
327
|
text-4: (
|
|
323
|
-
font-size:
|
|
328
|
+
font-size: map-get($font-scale, 4),
|
|
324
329
|
),
|
|
325
330
|
text-5: (
|
|
326
|
-
font-size:
|
|
331
|
+
font-size: map-get($font-scale, 5),
|
|
327
332
|
),
|
|
328
333
|
text-6: (
|
|
329
|
-
font-size:
|
|
334
|
+
font-size: map-get($font-scale, 6),
|
|
330
335
|
),
|
|
331
336
|
text-7: (
|
|
332
|
-
font-size:
|
|
337
|
+
font-size: map-get($font-scale, 7),
|
|
333
338
|
),
|
|
334
339
|
text-8: (
|
|
335
|
-
font-size:
|
|
340
|
+
font-size: map-get($font-scale, 8),
|
|
336
341
|
),
|
|
337
342
|
text-9: (
|
|
338
|
-
font-size:
|
|
343
|
+
font-size: map-get($font-scale, 9),
|
|
339
344
|
),
|
|
340
345
|
text-10: (
|
|
341
|
-
font-size:
|
|
346
|
+
font-size: map-get($font-scale, 10),
|
|
342
347
|
),
|
|
343
348
|
text-11: (
|
|
344
|
-
font-size:
|
|
349
|
+
font-size: map-get($font-scale, 11),
|
|
345
350
|
),
|
|
346
351
|
),
|
|
347
352
|
$font-sizes
|