@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,75 @@
|
|
|
1
|
+
@if ($enable-atlas-custom-properties) {
|
|
2
|
+
$clay-dual-listbox: ();
|
|
3
|
+
$clay-dual-listbox: map-deep-merge(
|
|
4
|
+
(
|
|
5
|
+
display: flex,
|
|
6
|
+
flex-direction: row,
|
|
7
|
+
),
|
|
8
|
+
$clay-dual-listbox
|
|
9
|
+
);
|
|
10
|
+
|
|
11
|
+
$clay-dual-listbox-label: ();
|
|
12
|
+
$clay-dual-listbox-label: map-deep-merge(
|
|
13
|
+
(
|
|
14
|
+
margin-bottom: var(--dual-listbox-label-margin-bottom, 16px),
|
|
15
|
+
),
|
|
16
|
+
$clay-dual-listbox-label
|
|
17
|
+
);
|
|
18
|
+
|
|
19
|
+
$clay-dual-listbox-clay-reorder: ();
|
|
20
|
+
$clay-dual-listbox-clay-reorder: map-deep-merge(
|
|
21
|
+
(
|
|
22
|
+
display: flex,
|
|
23
|
+
flex-direction: column,
|
|
24
|
+
flex-grow: 1,
|
|
25
|
+
),
|
|
26
|
+
$clay-dual-listbox-clay-reorder
|
|
27
|
+
);
|
|
28
|
+
|
|
29
|
+
$clay-dual-listbox-item: ();
|
|
30
|
+
$clay-dual-listbox-item: map-deep-merge(
|
|
31
|
+
(
|
|
32
|
+
display: flex,
|
|
33
|
+
flex-direction: column,
|
|
34
|
+
margin-right: var(--dual-listbox-item-margin-right, 4px),
|
|
35
|
+
),
|
|
36
|
+
$clay-dual-listbox-item
|
|
37
|
+
);
|
|
38
|
+
|
|
39
|
+
$clay-dual-listbox-item-sm-up: ();
|
|
40
|
+
$clay-dual-listbox-item-sm-up: map-deep-merge(
|
|
41
|
+
(
|
|
42
|
+
margin-right: var(--dual-listbox-item-sm-up-margin-right, 24px),
|
|
43
|
+
),
|
|
44
|
+
$clay-dual-listbox-item-sm-up
|
|
45
|
+
);
|
|
46
|
+
|
|
47
|
+
$clay-dual-listbox-item-last-child: ();
|
|
48
|
+
$clay-dual-listbox-item-last-child: map-deep-merge(
|
|
49
|
+
(
|
|
50
|
+
margin-right:
|
|
51
|
+
var(--clay-dual-listbox-item-last-child-margin-right, 0),
|
|
52
|
+
),
|
|
53
|
+
$clay-dual-listbox-item-last-child
|
|
54
|
+
);
|
|
55
|
+
|
|
56
|
+
$clay-dual-listbox-item-expand: ();
|
|
57
|
+
$clay-dual-listbox-item-expand: map-deep-merge(
|
|
58
|
+
(
|
|
59
|
+
flex-grow: 1,
|
|
60
|
+
width: var(--clay-dual-listbox-item-expand-width, 48px),
|
|
61
|
+
word-wrap: break-word,
|
|
62
|
+
),
|
|
63
|
+
$clay-dual-listbox-item-expand
|
|
64
|
+
);
|
|
65
|
+
|
|
66
|
+
$clay-dual-listbox-actions: ();
|
|
67
|
+
$clay-dual-listbox-actions: map-deep-merge(
|
|
68
|
+
(
|
|
69
|
+
align-self: center,
|
|
70
|
+
margin-top:
|
|
71
|
+
var(--clay-dual-listbox-actions-margin-top, calc(21px + 16px)),
|
|
72
|
+
),
|
|
73
|
+
$clay-dual-listbox-actions
|
|
74
|
+
);
|
|
75
|
+
}
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
@if ($enable-atlas-custom-properties) {
|
|
2
|
+
$c-empty-state: ();
|
|
3
|
+
|
|
4
|
+
$c-empty-state-animation: ();
|
|
5
|
+
$c-empty-state-animation: map-deep-merge(
|
|
6
|
+
(
|
|
7
|
+
align-items: center,
|
|
8
|
+
display: flex,
|
|
9
|
+
flex-direction: column,
|
|
10
|
+
flex-shrink: 0,
|
|
11
|
+
margin: 5rem auto 1.5rem,
|
|
12
|
+
max-width: 340px,
|
|
13
|
+
text-align: center,
|
|
14
|
+
),
|
|
15
|
+
$c-empty-state-animation
|
|
16
|
+
);
|
|
17
|
+
|
|
18
|
+
$c-empty-state-image: ();
|
|
19
|
+
$c-empty-state-image: map-deep-merge(
|
|
20
|
+
(
|
|
21
|
+
margin-bottom: -0.5rem,
|
|
22
|
+
max-width: 250px,
|
|
23
|
+
width: 100%,
|
|
24
|
+
word-wrap: break-word,
|
|
25
|
+
),
|
|
26
|
+
$c-empty-state-image
|
|
27
|
+
);
|
|
28
|
+
|
|
29
|
+
$c-empty-state-aspect-ratio: ();
|
|
30
|
+
$c-empty-state-aspect-ratio: map-deep-merge(
|
|
31
|
+
(
|
|
32
|
+
background-repeat: no-repeat,
|
|
33
|
+
background-position: center,
|
|
34
|
+
background-size: 100%,
|
|
35
|
+
display: block,
|
|
36
|
+
padding-bottom: 100%,
|
|
37
|
+
position: relative,
|
|
38
|
+
width: 100%,
|
|
39
|
+
),
|
|
40
|
+
$c-empty-state-aspect-ratio
|
|
41
|
+
);
|
|
42
|
+
|
|
43
|
+
$c-empty-state-title: ();
|
|
44
|
+
$c-empty-state-title: map-deep-merge(
|
|
45
|
+
(
|
|
46
|
+
font-size: 1.25rem,
|
|
47
|
+
font-weight: $font-weight-semi-bold,
|
|
48
|
+
line-height: $headings-line-height,
|
|
49
|
+
margin-bottom: 0rem,
|
|
50
|
+
margin-top: 2.5rem,
|
|
51
|
+
max-width: 100%,
|
|
52
|
+
word-wrap: break-word,
|
|
53
|
+
),
|
|
54
|
+
$c-empty-state-title
|
|
55
|
+
);
|
|
56
|
+
|
|
57
|
+
$c-empty-state-text: ();
|
|
58
|
+
$c-empty-state-text: map-deep-merge(
|
|
59
|
+
(
|
|
60
|
+
color: $secondary,
|
|
61
|
+
margin-bottom: 0rem,
|
|
62
|
+
margin-top: 0.5rem,
|
|
63
|
+
max-width: 100%,
|
|
64
|
+
word-wrap: break-word,
|
|
65
|
+
),
|
|
66
|
+
$c-empty-state-text
|
|
67
|
+
);
|
|
68
|
+
|
|
69
|
+
$c-empty-state-footer: ();
|
|
70
|
+
$c-empty-state-footer: map-deep-merge(
|
|
71
|
+
(
|
|
72
|
+
margin-top: 1rem,
|
|
73
|
+
max-width: 100%,
|
|
74
|
+
word-wrap: break-word,
|
|
75
|
+
),
|
|
76
|
+
$c-empty-state-footer
|
|
77
|
+
);
|
|
78
|
+
|
|
79
|
+
// .c-empty-state-sm
|
|
80
|
+
|
|
81
|
+
$c-empty-state-sm: ();
|
|
82
|
+
$c-empty-state-sm: map-deep-merge(
|
|
83
|
+
(
|
|
84
|
+
c-empty-state-animation: (
|
|
85
|
+
margin: 2.5rem auto 2rem,
|
|
86
|
+
max-width: 268px,
|
|
87
|
+
),
|
|
88
|
+
|
|
89
|
+
c-empty-state-image: (
|
|
90
|
+
max-width: 120px,
|
|
91
|
+
),
|
|
92
|
+
|
|
93
|
+
c-empty-state-title: (
|
|
94
|
+
font-size: 1rem,
|
|
95
|
+
line-height: 1.5,
|
|
96
|
+
),
|
|
97
|
+
|
|
98
|
+
c-empty-state-text: (
|
|
99
|
+
font-size: 0.875rem,
|
|
100
|
+
),
|
|
101
|
+
),
|
|
102
|
+
$c-empty-state-sm
|
|
103
|
+
);
|
|
104
|
+
}
|