@clayui/css 3.137.0 → 3.139.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 +403 -48
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +364 -15
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +375 -20
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/comments.svg +3 -5
- package/lib/images/icons/icons.svg +1 -1
- package/lib/images/icons/megaphone-full.svg +1 -0
- package/lib/images/icons/minus-circle.svg +2 -2
- package/lib/images/icons/paste-plaintext.svg +1 -1
- package/lib/images/icons/pin-full.svg +1 -0
- package/lib/images/icons/reset.svg +3 -3
- package/lib/images/icons/slash.svg +1 -1
- package/lib/images/icons/social-twitter.svg +1 -0
- package/package.json +2 -2
- package/src/images/icons/comments.svg +3 -5
- package/src/images/icons/megaphone-full.svg +1 -0
- package/src/images/icons/minus-circle.svg +2 -2
- package/src/images/icons/paste-plaintext.svg +1 -1
- package/src/images/icons/pin-full.svg +1 -0
- package/src/images/icons/reset.svg +3 -3
- package/src/images/icons/slash.svg +1 -1
- package/src/images/icons/social-twitter.svg +1 -0
- package/src/scss/_license-text.scss +1 -1
- package/src/scss/atlas/variables/_forms.scss +6 -9
- package/src/scss/atlas/variables/_sidebar.scss +12 -7
- package/src/scss/cadmin/components/_form-validation.scss +16 -0
- package/src/scss/cadmin/components/_sidebar.scss +32 -0
- package/src/scss/cadmin/components/_slideout.scss +12 -0
- package/src/scss/cadmin/components/_utilities-functional-important.scss +8 -0
- package/src/scss/cadmin/variables/_forms.scss +39 -3
- package/src/scss/cadmin/variables/_modals.scss +1 -1
- package/src/scss/cadmin/variables/_sidebar.scss +36 -7
- package/src/scss/cadmin/variables/_slideout.scss +29 -4
- package/src/scss/cadmin/variables/_stickers.scss +6 -0
- package/src/scss/components/_form-validation.scss +16 -0
- package/src/scss/components/_sidebar.scss +32 -0
- package/src/scss/components/_slideout.scss +4 -0
- package/src/scss/components/_utilities-functional-important.scss +8 -0
- package/src/scss/functions/_lx-icons-generated.scss +4 -4
- package/src/scss/mixins/_globals.scss +7 -0
- package/src/scss/mixins/_grid.scss +6 -0
- package/src/scss/mixins/_sidebar.scss +2 -0
- package/src/scss/mixins/_slideout.scss +11 -9
- package/src/scss/mixins/_stickers.scss +447 -0
- package/src/scss/variables/_forms.scss +36 -0
- package/src/scss/variables/_modals.scss +1 -1
- package/src/scss/variables/_sidebar.scss +26 -9
- package/src/scss/variables/_slideout.scss +29 -4
- package/src/scss/variables/_stickers.scss +6 -0
|
@@ -631,6 +631,24 @@ $cadmin-form-text: map-merge(
|
|
|
631
631
|
font-weight: $cadmin-form-text-font-weight,
|
|
632
632
|
margin-top: $cadmin-form-text-margin-top,
|
|
633
633
|
word-wrap: break-word,
|
|
634
|
+
blockquote: (
|
|
635
|
+
font-style: italic,
|
|
636
|
+
font-weight: $cadmin-font-weight-normal,
|
|
637
|
+
margin-bottom: 0,
|
|
638
|
+
margin-top: 12px,
|
|
639
|
+
padding-left: 12px,
|
|
640
|
+
position: relative,
|
|
641
|
+
before: (
|
|
642
|
+
background-color: $cadmin-secondary-l1,
|
|
643
|
+
bottom: 0,
|
|
644
|
+
content: '',
|
|
645
|
+
display: block,
|
|
646
|
+
left: 0,
|
|
647
|
+
position: absolute,
|
|
648
|
+
top: 0,
|
|
649
|
+
width: 2px,
|
|
650
|
+
),
|
|
651
|
+
),
|
|
634
652
|
),
|
|
635
653
|
$cadmin-form-text
|
|
636
654
|
);
|
|
@@ -678,7 +696,7 @@ $cadmin-form-feedback-invalid-color: $cadmin-danger !default;
|
|
|
678
696
|
|
|
679
697
|
$cadmin-input-danger-bg: $cadmin-danger-l2 !default;
|
|
680
698
|
$cadmin-input-danger-border-color: $cadmin-danger-l1 !default;
|
|
681
|
-
$cadmin-input-danger-box-shadow:
|
|
699
|
+
$cadmin-input-danger-box-shadow: null !default;
|
|
682
700
|
$cadmin-input-danger-color: $cadmin-input-color !default;
|
|
683
701
|
|
|
684
702
|
$cadmin-input-danger-focus-bg: null !default;
|
|
@@ -699,6 +717,12 @@ $cadmin-input-danger: map-deep-merge(
|
|
|
699
717
|
box-shadow: $cadmin-input-danger-focus-box-shadow,
|
|
700
718
|
color: $cadmin-input-danger-focus-color,
|
|
701
719
|
),
|
|
720
|
+
focus-within: (
|
|
721
|
+
background-color: $cadmin-input-danger-bg,
|
|
722
|
+
border-color: $cadmin-input-danger-border-color,
|
|
723
|
+
box-shadow: $cadmin-input-danger-box-shadow,
|
|
724
|
+
color: $cadmin-input-danger-color,
|
|
725
|
+
),
|
|
702
726
|
),
|
|
703
727
|
$cadmin-input-danger
|
|
704
728
|
);
|
|
@@ -848,7 +872,7 @@ $cadmin-has-error: map-deep-merge(
|
|
|
848
872
|
|
|
849
873
|
$cadmin-input-warning-bg: $cadmin-warning-l2 !default;
|
|
850
874
|
$cadmin-input-warning-border-color: $cadmin-warning-l1 !default;
|
|
851
|
-
$cadmin-input-warning-box-shadow:
|
|
875
|
+
$cadmin-input-warning-box-shadow: null !default;
|
|
852
876
|
$cadmin-input-warning-color: $cadmin-input-color !default;
|
|
853
877
|
|
|
854
878
|
$cadmin-input-warning-focus-bg: null !default;
|
|
@@ -869,6 +893,12 @@ $cadmin-input-warning: map-deep-merge(
|
|
|
869
893
|
box-shadow: $cadmin-input-warning-focus-box-shadow,
|
|
870
894
|
color: $cadmin-input-warning-focus-color,
|
|
871
895
|
),
|
|
896
|
+
focus-within: (
|
|
897
|
+
background-color: $cadmin-input-warning-bg,
|
|
898
|
+
border-color: $cadmin-input-warning-border-color,
|
|
899
|
+
box-shadow: $cadmin-input-warning-box-shadow,
|
|
900
|
+
color: $cadmin-input-warning-color,
|
|
901
|
+
),
|
|
872
902
|
),
|
|
873
903
|
$cadmin-input-warning
|
|
874
904
|
);
|
|
@@ -1018,7 +1048,7 @@ $cadmin-has-warning: map-deep-merge(
|
|
|
1018
1048
|
|
|
1019
1049
|
$cadmin-input-success-bg: $cadmin-success-l2 !default;
|
|
1020
1050
|
$cadmin-input-success-border-color: $cadmin-success-l1 !default;
|
|
1021
|
-
$cadmin-input-success-box-shadow:
|
|
1051
|
+
$cadmin-input-success-box-shadow: null !default;
|
|
1022
1052
|
$cadmin-input-success-color: $cadmin-input-color !default;
|
|
1023
1053
|
|
|
1024
1054
|
$cadmin-input-success-focus-bg: null !default;
|
|
@@ -1039,6 +1069,12 @@ $cadmin-input-success: map-deep-merge(
|
|
|
1039
1069
|
box-shadow: $cadmin-input-success-focus-box-shadow,
|
|
1040
1070
|
color: $cadmin-input-success-focus-color,
|
|
1041
1071
|
),
|
|
1072
|
+
focus-within: (
|
|
1073
|
+
background-color: $cadmin-input-success-bg,
|
|
1074
|
+
border-color: $cadmin-input-success-border-color,
|
|
1075
|
+
box-shadow: $cadmin-input-success-box-shadow,
|
|
1076
|
+
color: $cadmin-input-success-color,
|
|
1077
|
+
),
|
|
1042
1078
|
),
|
|
1043
1079
|
$cadmin-input-success
|
|
1044
1080
|
);
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
$cadmin-sidebar-padding-bottom: 16px !default;
|
|
2
|
-
$cadmin-sidebar-padding-left:
|
|
3
|
-
$cadmin-sidebar-padding-right:
|
|
4
|
-
$cadmin-sidebar-padding-top: 16px !default;
|
|
1
|
+
$cadmin-sidebar-padding-bottom: 16px !default;
|
|
2
|
+
$cadmin-sidebar-padding-left: 24px !default;
|
|
3
|
+
$cadmin-sidebar-padding-right: 24px !default;
|
|
4
|
+
$cadmin-sidebar-padding-top: 16px !default;
|
|
5
5
|
|
|
6
6
|
// Sidebar Header Title
|
|
7
7
|
|
|
8
8
|
$cadmin-sidebar-header-component-title: () !default;
|
|
9
9
|
$cadmin-sidebar-header-component-title: map-deep-merge(
|
|
10
10
|
(
|
|
11
|
-
font-size:
|
|
11
|
+
font-size: 16px,
|
|
12
12
|
href: (
|
|
13
13
|
color: $cadmin-gray-900,
|
|
14
14
|
),
|
|
@@ -21,7 +21,7 @@ $cadmin-sidebar-header-component-title: map-deep-merge(
|
|
|
21
21
|
$cadmin-sidebar-header-component-subtitle: () !default;
|
|
22
22
|
$cadmin-sidebar-header-component-subtitle: map-deep-merge(
|
|
23
23
|
(
|
|
24
|
-
font-size:
|
|
24
|
+
font-size: 14px,
|
|
25
25
|
font-weight: $cadmin-font-weight-normal,
|
|
26
26
|
margin-bottom: 0,
|
|
27
27
|
),
|
|
@@ -86,10 +86,19 @@ $cadmin-sidebar: map-deep-merge(
|
|
|
86
86
|
sidebar-header: (
|
|
87
87
|
padding-bottom: $cadmin-sidebar-padding-bottom,
|
|
88
88
|
padding-left: $cadmin-sidebar-padding-left,
|
|
89
|
-
padding-right:
|
|
89
|
+
padding-right: 16px,
|
|
90
90
|
padding-top: $cadmin-sidebar-padding-top,
|
|
91
91
|
component-title: $cadmin-sidebar-header-component-title,
|
|
92
92
|
component-subtitle: $cadmin-sidebar-header-component-subtitle,
|
|
93
|
+
autofit-row: (
|
|
94
|
+
margin-left: -4px,
|
|
95
|
+
margin-right: -4px,
|
|
96
|
+
width: auto,
|
|
97
|
+
autofit-col: (
|
|
98
|
+
padding-left: 4px,
|
|
99
|
+
padding-right: 4px,
|
|
100
|
+
),
|
|
101
|
+
),
|
|
93
102
|
),
|
|
94
103
|
sidebar-footer: (
|
|
95
104
|
padding-bottom: $cadmin-sidebar-padding-bottom,
|
|
@@ -200,6 +209,14 @@ $cadmin-sidebar-light: map-deep-merge(
|
|
|
200
209
|
border-left-width: 0,
|
|
201
210
|
box-shadow: -4px 0 8px -4px rgba(0, 0, 0, 0.1),
|
|
202
211
|
color: $cadmin-gray-900,
|
|
212
|
+
sidebar-header: (
|
|
213
|
+
background-color: inherit,
|
|
214
|
+
border: 0px solid $cadmin-gray-300,
|
|
215
|
+
),
|
|
216
|
+
sidebar-footer: (
|
|
217
|
+
background-color: inherit,
|
|
218
|
+
border: 0px solid $cadmin-gray-300,
|
|
219
|
+
),
|
|
203
220
|
sidenav-start: (
|
|
204
221
|
box-shadow: 4px 0 8px -4px rgba(0, 0, 0, 0.1),
|
|
205
222
|
),
|
|
@@ -293,6 +310,18 @@ $cadmin-sidebar-dark: map-deep-merge(
|
|
|
293
310
|
$cadmin-sidebar-dark
|
|
294
311
|
);
|
|
295
312
|
|
|
313
|
+
$cadmin-sidebar-c-slideout-start: () !default;
|
|
314
|
+
$cadmin-sidebar-c-slideout-start: map-deep-merge(
|
|
315
|
+
(
|
|
316
|
+
'.sidebar-light': (
|
|
317
|
+
box-shadow: 0.25rem 0 0.5rem -0.25rem rgba(0, 0, 0, 0.1),
|
|
318
|
+
),
|
|
319
|
+
),
|
|
320
|
+
$cadmin-sidebar-c-slideout-start
|
|
321
|
+
);
|
|
322
|
+
|
|
323
|
+
$cadmin-sidebar-c-slideout-end: () !default;
|
|
324
|
+
|
|
296
325
|
$cadmin-sidebar-palette: () !default;
|
|
297
326
|
$cadmin-sidebar-palette: map-deep-merge(
|
|
298
327
|
(
|
|
@@ -44,10 +44,24 @@ $cadmin-c-slideout-fixed: map-merge(
|
|
|
44
44
|
$cadmin-c-slideout-fixed
|
|
45
45
|
);
|
|
46
46
|
|
|
47
|
+
$cadmin-c-slideout-container: () !default;
|
|
48
|
+
$cadmin-c-slideout-container: map-deep-merge(
|
|
49
|
+
(
|
|
50
|
+
min-height: 480px,
|
|
51
|
+
position: relative,
|
|
52
|
+
),
|
|
53
|
+
$cadmin-c-slideout-container
|
|
54
|
+
);
|
|
55
|
+
|
|
47
56
|
$cadmin-c-slideout-push-start: () !default;
|
|
48
57
|
$cadmin-c-slideout-push-start: map-deep-merge(
|
|
49
58
|
(
|
|
50
59
|
padding-left: $cadmin-c-slideout-sidebar-width,
|
|
60
|
+
media-breakpoint-down: (
|
|
61
|
+
md: (
|
|
62
|
+
padding-left: 0,
|
|
63
|
+
),
|
|
64
|
+
),
|
|
51
65
|
),
|
|
52
66
|
$cadmin-c-slideout-push-start
|
|
53
67
|
);
|
|
@@ -56,6 +70,11 @@ $cadmin-c-slideout-push-end: () !default;
|
|
|
56
70
|
$cadmin-c-slideout-push-end: map-deep-merge(
|
|
57
71
|
(
|
|
58
72
|
padding-right: $cadmin-c-slideout-sidebar-width,
|
|
73
|
+
media-breakpoint-down: (
|
|
74
|
+
md: (
|
|
75
|
+
padding-right: 0,
|
|
76
|
+
),
|
|
77
|
+
),
|
|
59
78
|
),
|
|
60
79
|
$cadmin-c-slideout-push-end
|
|
61
80
|
);
|
|
@@ -74,12 +93,18 @@ $cadmin-c-slideout: map-deep-merge(
|
|
|
74
93
|
sidebar: (
|
|
75
94
|
display: none,
|
|
76
95
|
flex-shrink: 0,
|
|
77
|
-
overflow: visible,
|
|
78
96
|
position: relative,
|
|
79
97
|
width: $cadmin-c-slideout-sidebar-width,
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
98
|
+
sidebar-header: (
|
|
99
|
+
border-bottom-width: 1px,
|
|
100
|
+
),
|
|
101
|
+
sidebar-body: (
|
|
102
|
+
flex-grow: 1,
|
|
103
|
+
overflow: visible,
|
|
104
|
+
),
|
|
105
|
+
sidebar-footer: (
|
|
106
|
+
border-top-width: 1px,
|
|
107
|
+
),
|
|
83
108
|
),
|
|
84
109
|
sidebar-c-slideout-show: (
|
|
85
110
|
display: flex,
|
|
@@ -95,6 +95,12 @@ $cadmin-sticker-xl: map-deep-merge(
|
|
|
95
95
|
$cadmin-sticker-sizes: () !default;
|
|
96
96
|
$cadmin-sticker-sizes: map-deep-merge(
|
|
97
97
|
(
|
|
98
|
+
sticker-xs: (
|
|
99
|
+
font-size: 0.5rem,
|
|
100
|
+
height: 1rem,
|
|
101
|
+
line-height: 1rem,
|
|
102
|
+
width: 1rem,
|
|
103
|
+
),
|
|
98
104
|
sticker-sm: $cadmin-sticker-sm,
|
|
99
105
|
sticker-lg: $cadmin-sticker-lg,
|
|
100
106
|
sticker-xl: $cadmin-sticker-xl,
|
|
@@ -42,6 +42,22 @@
|
|
|
42
42
|
|
|
43
43
|
.form-text {
|
|
44
44
|
@include clay-css($form-text);
|
|
45
|
+
|
|
46
|
+
$_blockquote: map-get($form-text, blockquote);
|
|
47
|
+
|
|
48
|
+
@if ($_blockquote) {
|
|
49
|
+
&.blockquote {
|
|
50
|
+
@include clay-css($_blockquote);
|
|
51
|
+
|
|
52
|
+
$_before: map-get($_blockquote, before);
|
|
53
|
+
|
|
54
|
+
@if ($_before) {
|
|
55
|
+
&::before {
|
|
56
|
+
@include clay-css($_before);
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
45
61
|
}
|
|
46
62
|
|
|
47
63
|
@if ($enable-bs4-deprecated) {
|
|
@@ -30,6 +30,30 @@
|
|
|
30
30
|
map-get($sidebar-header, component-subtitle)
|
|
31
31
|
);
|
|
32
32
|
}
|
|
33
|
+
|
|
34
|
+
$_autofit-row: map-get($sidebar-header, autofit-row);
|
|
35
|
+
|
|
36
|
+
@if ($_autofit-row) {
|
|
37
|
+
.autofit-row {
|
|
38
|
+
@include clay-css($_autofit-row);
|
|
39
|
+
|
|
40
|
+
$_autofit-col: map-get($_autofit-row, autofit-col);
|
|
41
|
+
|
|
42
|
+
@if ($_autofit-col) {
|
|
43
|
+
> .autofit-col {
|
|
44
|
+
@include clay-css($_autofit-col);
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
$_autofit-col-expand: map-get($_autofit-row, autofit-col-expand);
|
|
49
|
+
|
|
50
|
+
@if ($_autofit-col-expand) {
|
|
51
|
+
> .autofit-col-expand {
|
|
52
|
+
@include clay-css($_autofit-col-expand);
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
33
57
|
}
|
|
34
58
|
|
|
35
59
|
.sidebar-footer {
|
|
@@ -119,3 +143,11 @@
|
|
|
119
143
|
}
|
|
120
144
|
}
|
|
121
145
|
}
|
|
146
|
+
|
|
147
|
+
.c-slideout-start {
|
|
148
|
+
@include clay-map-to-css($sidebar-c-slideout-start);
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.c-slideout-end {
|
|
152
|
+
@include clay-map-to-css($sidebar-c-slideout-end);
|
|
153
|
+
}
|
|
@@ -445,6 +445,14 @@
|
|
|
445
445
|
z-index: $zindex-fixed;
|
|
446
446
|
}
|
|
447
447
|
|
|
448
|
+
.sticky-bottom {
|
|
449
|
+
@supports (position: sticky) {
|
|
450
|
+
bottom: 0;
|
|
451
|
+
position: sticky;
|
|
452
|
+
z-index: $zindex-sticky;
|
|
453
|
+
}
|
|
454
|
+
}
|
|
455
|
+
|
|
448
456
|
.sticky-top {
|
|
449
457
|
@supports (position: sticky) {
|
|
450
458
|
position: sticky;
|
|
@@ -206,7 +206,7 @@
|
|
|
206
206
|
|
|
207
207
|
'columns': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-body columns-bg-left" fill="none" d="M0 46.9V465c0 25.9 21.1 47 46.9 47h130.8c25.8 0 46.9-21.1 46.9-46.9V46.9c0-25.8-21.1-46.9-46.9-46.9H46.9C21.1 0 0 21.1 0 46.9z"/><path class="lexicon-icon-body columns-bg-right" fill="none" d="M287.3 46.9V465c0 25.8 21.1 46.9 46.9 46.9H465c25.8 0 46.9-21.1 46.9-46.9V46.9C512 21.1 490.9 0 465.1 0H334.3c-25.9 0-47 21.1-47 46.9z"/><path class="lexicon-icon-outline columns-border-left" d="M0 46.9V465c0 25.9 21.1 47 46.9 47h130.8c25.8 0 46.9-21.1 46.9-46.9V46.9c0-25.8-21.1-46.9-46.9-46.9H46.9C21.1 0 0 21.1 0 46.9zM160.7 64v384h-96V64h96z" fill="#{$color}"/><path class="lexicon-icon-outline columns-border-right" d="M287.3 46.9V465c0 25.8 21.1 46.9 46.9 46.9H465c25.8 0 46.9-21.1 46.9-46.9V46.9C512 21.1 490.9 0 465.1 0H334.3c-25.9 0-47 21.1-47 46.9zM448 64v384h-96V64h96z" fill="#{$color}"/></svg>',
|
|
208
208
|
|
|
209
|
-
'comments': '<svg xmlns="http://www.w3.org/2000/svg"
|
|
209
|
+
'comments': '<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14 .002H2c-1.103 0-2 .897-2 2v9c0 1.103.897 2 2 2h1.584l-1.28 1.282a1.002 1.002 0 0 0 .705 1.709.986.986 0 0 0 .707-.294l2.696-2.697H14c1.103 0 2-.897 2-2v-9c0-1.103-.897-2-2-2Zm0 11H2v-9h12v9Z"/><path d="M12 3.502H4a.999.999 0 1 0 0 2h8a.999.999 0 1 0 0-2Zm-3.857 3.5H3.857c-.474 0-.857.447-.857 1 0 .553.383 1 .857 1h4.286c.474 0 .857-.447.857-1 0-.553-.383-1-.857-1Z"/></svg>',
|
|
210
210
|
|
|
211
211
|
'community': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline" d="M0 256.6c0 337.1 512 344.1 512 0 0-342.1-512-342.1-512 0zm60.6 106.5c7.3-61.8 67.3-106.5 109.3-106.9C296.2 255.1 307 403.8 305 474.8 199.3 505.3 90 429.4 60.6 363.1zM128 176c0-63.7 95.8-63.9 95.8 0 0 65.3-95.8 63.3-95.8 0zm276 85.4c32.7-50.7-8.3-101.4-52.4-101-57 .6-82.8 66.9-47.1 102.2-10.9 1.9-18.7 7.7-19 7.4-22.4-25-54.7-35.6-54.5-35.8 52.6-46.2 19.2-137.8-55.1-138.3-66.4-.5-110.6 81.1-54 139.4-63 26.3-81.3 83.5-81.8 81C4.7 149.3 134.3 31.9 256 31.9c123.5 0 258.3 112.6 211.3 299.2-21.4-46.3-50-63.7-63.3-69.7z" fill="#{$color}"/></svg>',
|
|
212
212
|
|
|
@@ -616,7 +616,7 @@
|
|
|
616
616
|
|
|
617
617
|
'message': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline message-speech-balloon-outline" d="M480 31.9H32c-19.2 0-32 12.8-32 32v320c0 19.2 12.8 32 32 32h64v32c0 25.6 32 44.8 54.4 22.4l54.4-54.4H480c19.2 0 32-12.8 32-32v-320c0-19.2-12.8-32-32-32zm-32 320H64v-256h384v256z" fill="#{$color}"/><path class="lexicon-icon-outline message-speech-balloon-content1" d="M336 159.9H144c-22.4 0-22.4 32 0 32h192c19.2 0 22.4-32 0-32z" fill="#{$color}"/><path class="lexicon-icon-outline message-speech-balloon-content2" d="M272 255.9H144c-22.4 0-22.4 32 0 32h128c19.2 0 22.4-32 0-32z" fill="#{$color}"/></svg>',
|
|
618
618
|
|
|
619
|
-
'minus-circle': '<svg xmlns="http://www.w3.org/2000/svg"
|
|
619
|
+
'minus-circle': '<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path class="lexicon-icon-outline" fill-rule="evenodd" clip-rule="evenodd" d="M8 .002a8 8 0 1 1 0 16 8 8 0 0 1 0-16Zm-3.5 6.5a1.5 1.5 0 0 0 0 3h7a1.5 1.5 0 0 0 0-3h-7Z" fill="#{$color}"/></svg>',
|
|
620
620
|
|
|
621
621
|
'mobile-device-rules': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline" fill-rule="evenodd" clip-rule="evenodd" d="M256 96H64v320h192V96ZM64 32C28.654 32 0 60.654 0 96v320c0 35.346 28.654 64 64 64h192c35.346 0 64-28.654 64-64V96c0-35.346-28.654-64-64-64H64Z" fill="#{$color}"/><path class="lexicon-icon-outline" d="M112 352c0-8.837 7.163-16 16-16h64c8.837 0 16 7.163 16 16s-7.163 16-16 16h-64c-8.837 0-16-7.163-16-16Z" fill="#{$color}"/><rect class="lexicon-icon-outline" x="352" y="96" width="160" height="64" rx="32" fill="#{$color}"/><rect class="lexicon-icon-outline" x="352" y="224" width="160" height="64" rx="32" fill="#{$color}"/><rect class="lexicon-icon-outline" x="352" y="352" width="160" height="64" rx="32" fill="#{$color}"/></svg>',
|
|
622
622
|
|
|
@@ -762,7 +762,7 @@
|
|
|
762
762
|
|
|
763
763
|
'repository': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline" d="M448 384c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64h-96L241.1 12.8C230 4.5 216.5 0 202.7 0H64C28.7 0 0 28.7 0 64v256c0 35.3 28.7 64 64 64h160v64H32c-42 0-42 64 0 64h448c43 0 42-64 0-64H288v-64h160z" fill="#{$color}"/></svg>',
|
|
764
764
|
|
|
765
|
-
'reset': '<svg xmlns="http://www.w3.org/2000/svg"
|
|
765
|
+
'reset': '<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M8 .002a7.973 7.973 0 0 0-6 2.71v-.71c0-.55-.45-1-1-1s-1 .45-1 1v3a1.005 1.005 0 0 0 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1h-.472a6.002 6.002 0 0 1 10.472 4 6 6 0 0 1-11.916 1H.063A8 8 0 1 0 8 .002Z"/></svg>',
|
|
766
766
|
|
|
767
767
|
'restore': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline restore-hands" d="M180.7 347.3c3.1 3.1 7.2 4.7 11.3 4.7s8.2-1.6 11.3-4.7l48-48c6.3 3 13.3 4.7 20.7 4.7 26.5 0 48-21.5 48-48 0-20.9-13.4-38.7-32-45.3V112c0-8.8-7.2-16-16-16s-16 7.2-16 16v98.7c-18.6 6.6-32 24.4-32 45.3 0 7.4 1.7 14.4 4.7 20.7l-48 48c-6.3 6.2-6.3 16.4 0 22.6z" fill="#{$color}"/><path class="lexicon-icon-outline restore-border" d="M256 0C179.5 0 110.9 33.5 64 86.7V64c0-17.6-14.4-32-32-32S0 46.4 0 64v96c0 9.9 4.6 18.8 11.7 24.7 5.5 4.6 12.6 7.3 20.3 7.3h96c17.6 0 32-14.4 32-32s-14.4-32-32-32h-15.1c35.2-39.3 86.2-64 143.1-64 106 0 192 86 192 192s-86 192-192 192c-95.1 0-174.1-69.2-189.3-160H2c15.7 126.3 123.5 224 254 224 141.4 0 256-114.6 256-256S397.4 0 256 0z" fill="#{$color}"/></svg>',
|
|
768
768
|
|
|
@@ -828,7 +828,7 @@
|
|
|
828
828
|
|
|
829
829
|
'sites': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-body lx-sites-bg" fill="none" d="M437 75C388.7 26.6 324.4 0 256 0S123.3 26.6 75 75C26.6 123.3 0 187.6 0 256s26.6 132.7 75 181c48.4 48.4 112.6 75 181 75s132.7-26.6 181-75c48.4-48.4 75-112.6 75-181s-26.6-132.7-75-181z"/><path class="lexicon-icon-outline lx-sites-border" d="M437 75C388.7 26.6 324.4 0 256 0S123.3 26.6 75 75C26.6 123.3 0 187.6 0 256s26.6 132.7 75 181c48.4 48.4 112.6 75 181 75s132.7-26.6 181-75c48.4-48.4 75-112.6 75-181s-26.6-132.7-75-181zM256 448c-105.9 0-192-86.1-192-192S150.1 64 256 64s192 86.1 192 192-86.1 192-192 192z" fill="#{$color}"/><path class="lexicon-icon-outline lx-sites-hands" d="m128 384 192-64 64-192-192 64-64 192zm126.9-160c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32z" fill="#{$color}"/></svg>',
|
|
830
830
|
|
|
831
|
-
'slash': '<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="
|
|
831
|
+
'slash': '<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path class="lexicon-icon-outline" d="M10.859.569a1 1 0 0 0-1.292.574l-5 13a1 1 0 0 0 1.866.718l5-13A1 1 0 0 0 10.86.57Z" fill="#{$color}"/></svg>',
|
|
832
832
|
|
|
833
833
|
'slideshow': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline lx-slideshow-border" d="M64 480h384c32 0 64-32 64-64V96c0-32-32-64-64-64H64C32 32 0 64 0 96v320c0 32 32 64 64 64zm0-384h384v320H64" fill="#{$color}"/><circle class="lexicon-icon-outline lx-slideshow-dot-1" cx="160" cy="320" r="32" fill="#{$color}"/><circle class="lexicon-icon-outline lx-slideshow-dot-2" cx="256" cy="320" r="32" fill="#{$color}"/><circle class="lexicon-icon-outline lx-slideshow-dot-3" cx="352" cy="320" r="32" fill="#{$color}"/></svg>',
|
|
834
834
|
|
|
@@ -398,6 +398,13 @@
|
|
|
398
398
|
#{$key}: #{$value};
|
|
399
399
|
}
|
|
400
400
|
}
|
|
401
|
+
|
|
402
|
+
$_media-breakpoint-down: map-get($map, media-breakpoint-down);
|
|
403
|
+
$_media-breakpoint-up: map-get($map, media-breakpoint-up);
|
|
404
|
+
|
|
405
|
+
@if ($_media-breakpoint-down) or ($_media-breakpoint-up) {
|
|
406
|
+
@include clay-generate-media-breakpoints($map);
|
|
407
|
+
}
|
|
401
408
|
}
|
|
402
409
|
}
|
|
403
410
|
}
|
|
@@ -229,6 +229,8 @@
|
|
|
229
229
|
@include clay-modal-variant($breakpoint-up);
|
|
230
230
|
} @else if ($mixin == 'clay-select-variant') {
|
|
231
231
|
@include clay-select-variant($breakpoint-up);
|
|
232
|
+
} @else if ($mixin == 'clay-slideout-variant') {
|
|
233
|
+
@include clay-slideout-variant($breakpoint-up);
|
|
232
234
|
}
|
|
233
235
|
}
|
|
234
236
|
}
|
|
@@ -263,6 +265,10 @@
|
|
|
263
265
|
@include clay-modal-variant($breakpoint-down);
|
|
264
266
|
} @else if ($mixin == 'clay-select-variant') {
|
|
265
267
|
@include clay-select-variant($breakpoint-down);
|
|
268
|
+
} @else if ($mixin == 'clay-slideout-variant') {
|
|
269
|
+
@include clay-slideout-variant($breakpoint-down);
|
|
270
|
+
} @else {
|
|
271
|
+
@error "The mixin, `#{$mixin}`, is not defined in clay-generate-media-breakpoints.";
|
|
266
272
|
}
|
|
267
273
|
}
|
|
268
274
|
}
|
|
@@ -56,15 +56,7 @@
|
|
|
56
56
|
|
|
57
57
|
@if ($_sidebar) {
|
|
58
58
|
.sidebar {
|
|
59
|
-
@include clay-
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
$_sidebar-body: map-get($map, sidebar-body);
|
|
64
|
-
|
|
65
|
-
@if ($_sidebar-body) {
|
|
66
|
-
.sidebar-body {
|
|
67
|
-
@include clay-css($_sidebar-body);
|
|
59
|
+
@include clay-sidebar-variant($_sidebar);
|
|
68
60
|
}
|
|
69
61
|
}
|
|
70
62
|
|
|
@@ -154,6 +146,16 @@
|
|
|
154
146
|
}
|
|
155
147
|
}
|
|
156
148
|
}
|
|
149
|
+
|
|
150
|
+
$_media-breakpoint-down: map-get($map, media-breakpoint-down);
|
|
151
|
+
$_media-breakpoint-up: map-get($map, media-breakpoint-up);
|
|
152
|
+
|
|
153
|
+
@if ($_media-breakpoint-down) or ($_media-breakpoint-up) {
|
|
154
|
+
@include clay-generate-media-breakpoints(
|
|
155
|
+
$map,
|
|
156
|
+
'clay-slideout-variant'
|
|
157
|
+
);
|
|
158
|
+
}
|
|
157
159
|
}
|
|
158
160
|
}
|
|
159
161
|
}
|