@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,73 @@
|
|
|
1
|
+
@if ($enable-atlas-custom-properties) {
|
|
2
|
+
// .lexicon-icon
|
|
3
|
+
|
|
4
|
+
$lexicon-icon-size: 1em; // 16px
|
|
5
|
+
|
|
6
|
+
$lexicon-icon: ();
|
|
7
|
+
$lexicon-icon: map-merge(
|
|
8
|
+
(
|
|
9
|
+
display: inline-block,
|
|
10
|
+
fill: currentColor,
|
|
11
|
+
height: $lexicon-icon-size,
|
|
12
|
+
margin-top: -3px,
|
|
13
|
+
vertical-align: middle,
|
|
14
|
+
width: $lexicon-icon-size,
|
|
15
|
+
),
|
|
16
|
+
$lexicon-icon
|
|
17
|
+
);
|
|
18
|
+
|
|
19
|
+
// .lexicon-icon-sm
|
|
20
|
+
|
|
21
|
+
$lexicon-icon-sm-font-size: 0.5rem; // 8px
|
|
22
|
+
|
|
23
|
+
$lexicon-icon-sm: ();
|
|
24
|
+
$lexicon-icon-sm: map-merge(
|
|
25
|
+
(
|
|
26
|
+
font-size: $lexicon-icon-sm-font-size,
|
|
27
|
+
),
|
|
28
|
+
$lexicon-icon-sm
|
|
29
|
+
);
|
|
30
|
+
|
|
31
|
+
// .lexicon-icon-lg
|
|
32
|
+
|
|
33
|
+
$lexicon-icon-lg-font-size: 2rem; // 32px
|
|
34
|
+
|
|
35
|
+
$lexicon-icon-lg: ();
|
|
36
|
+
$lexicon-icon-lg: map-merge(
|
|
37
|
+
(
|
|
38
|
+
font-size: $lexicon-icon-lg-font-size,
|
|
39
|
+
),
|
|
40
|
+
$lexicon-icon-lg
|
|
41
|
+
);
|
|
42
|
+
|
|
43
|
+
// .lexicon-icon-xl
|
|
44
|
+
|
|
45
|
+
$lexicon-icon-xl-font-size: 8rem; // 128px
|
|
46
|
+
|
|
47
|
+
$lexicon-icon-xl: ();
|
|
48
|
+
$lexicon-icon-xl: map-merge(
|
|
49
|
+
(
|
|
50
|
+
font-size: $lexicon-icon-xl-font-size,
|
|
51
|
+
),
|
|
52
|
+
$lexicon-icon-xl
|
|
53
|
+
);
|
|
54
|
+
|
|
55
|
+
// .order-arrow
|
|
56
|
+
|
|
57
|
+
$order-arrow-down-active-color: $gray-500;
|
|
58
|
+
$order-arrow-up-active-color: $order-arrow-down-active-color;
|
|
59
|
+
|
|
60
|
+
// .collapse-icon[href], .collapse-icon[type]
|
|
61
|
+
|
|
62
|
+
$collapse-icon-padding-left: null;
|
|
63
|
+
$collapse-icon-padding-right: 2.28125rem; // 45px
|
|
64
|
+
|
|
65
|
+
$collapse-icon-position-bottom: null;
|
|
66
|
+
$collapse-icon-position-left: null;
|
|
67
|
+
$collapse-icon-position-right: 0.9375rem; // 15px
|
|
68
|
+
$collapse-icon-position-top: clay-collapse-icon-align(
|
|
69
|
+
if(variable-exists(nav-link-padding-y), $nav-link-padding-y, 0.5rem),
|
|
70
|
+
0.0625rem,
|
|
71
|
+
0.9375em
|
|
72
|
+
);
|
|
73
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
@if ($enable-atlas-custom-properties) {
|
|
2
|
+
$thumbnail-bg: $body-bg;
|
|
3
|
+
$thumbnail-border-color: $gray-300;
|
|
4
|
+
$thumbnail-border-radius: $border-radius;
|
|
5
|
+
$thumbnail-border-width: $border-width;
|
|
6
|
+
$thumbnail-box-shadow: 0
|
|
7
|
+
1px
|
|
8
|
+
2px
|
|
9
|
+
unquote('hsl(from #{$black} h s l / 0.075)');
|
|
10
|
+
$thumbnail-padding: 0.25rem;
|
|
11
|
+
|
|
12
|
+
$figure-caption-color: $gray-600;
|
|
13
|
+
$figure-caption-font-size: 90%;
|
|
14
|
+
}
|