@clayui/css 3.62.1 → 3.65.1
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 +34 -45
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +35 -45
- package/lib/css/base.css.map +1 -1
- package/lib/css/bootstrap.css.map +1 -1
- package/lib/css/cadmin.css +76 -25
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/hierarchy.svg +10 -0
- package/lib/images/icons/icons.svg +1 -1
- package/lib/images/icons/no-bot.svg +10 -0
- package/package.json +3 -2
- package/src/images/icons/hierarchy.svg +10 -0
- package/src/images/icons/no-bot.svg +10 -0
- package/src/scss/_license-text.scss +1 -1
- package/src/scss/atlas/variables/_alerts.scss +1 -0
- package/src/scss/atlas/variables/_forms.scss +22 -0
- package/src/scss/atlas/variables/_globals.scss +1 -1
- package/src/scss/cadmin/components/_alerts.scss +26 -6
- package/src/scss/cadmin/components/_aspect-ratio.scss +29 -14
- package/src/scss/cadmin/components/_badges.scss +26 -6
- package/src/scss/cadmin/components/_buttons.scss +129 -63
- package/src/scss/cadmin/components/_grid.scss +13 -16
- package/src/scss/cadmin/components/_labels.scss +52 -12
- package/src/scss/cadmin/components/_loaders.scss +7 -13
- package/src/scss/cadmin/components/_popovers.scss +12 -4
- package/src/scss/cadmin/components/_print.scss +3 -3
- package/src/scss/cadmin/components/_reboot.scss +3 -3
- package/src/scss/cadmin/components/_stickers.scss +52 -12
- package/src/scss/cadmin/components/_treeview.scss +20 -0
- package/src/scss/cadmin/components/_utilities-functional-important.scss +49 -62
- package/src/scss/cadmin/components/_utilities.scss +7 -6
- package/src/scss/cadmin/variables/_alerts.scss +2 -0
- package/src/scss/cadmin/variables/_buttons.scss +23 -0
- package/src/scss/cadmin/variables/_forms.scss +13 -10
- package/src/scss/cadmin/variables/_globals.scss +25 -1
- package/src/scss/cadmin/variables/_treeview.scss +12 -0
- package/src/scss/cadmin/variables/_utilities.scss +309 -0
- package/src/scss/components/_alerts.scss +25 -5
- package/src/scss/components/_aspect-ratio.scss +29 -14
- package/src/scss/components/_badges.scss +25 -5
- package/src/scss/components/_buttons.scss +98 -70
- package/src/scss/components/_grid.scss +9 -11
- package/src/scss/components/_labels.scss +50 -10
- package/src/scss/components/_loaders.scss +7 -13
- package/src/scss/components/_popovers.scss +12 -4
- package/src/scss/components/_print.scss +3 -3
- package/src/scss/components/_reboot.scss +3 -3
- package/src/scss/components/_sidebar.scss +3 -1
- package/src/scss/components/_stickers.scss +50 -10
- package/src/scss/components/_treeview.scss +12 -0
- package/src/scss/components/_utilities-functional-important.scss +40 -18
- package/src/scss/components/_utilities.scss +7 -6
- package/src/scss/functions/_global-functions.scss +9 -9
- package/src/scss/functions/_lx-icons-generated.scss +4 -0
- package/src/scss/functions/_type-conversion-functions.scss +6 -6
- package/src/scss/mixins/_globals.scss +2 -0
- package/src/scss/mixins/_utilities.scss +6 -6
- package/src/scss/variables/_alerts.scss +3 -0
- package/src/scss/variables/_forms.scss +3 -0
- package/src/scss/variables/_globals.scss +25 -1
- package/src/scss/variables/_treeview.scss +12 -0
- package/src/scss/variables/_utilities.scss +22 -0
- package/CHANGELOG.md +0 -2004
- package/LICENSES/BSD-3-Clause.txt +0 -30
- package/LICENSES/LicenseRef-MIT-Bootstrap.txt +0 -22
- package/LICENSES/MIT.txt +0 -19
|
@@ -25,17 +25,23 @@
|
|
|
25
25
|
// Background
|
|
26
26
|
|
|
27
27
|
@each $color, $value in $bg-theme-colors {
|
|
28
|
-
$
|
|
28
|
+
$selector: if(
|
|
29
|
+
starts-with($color, '.') or
|
|
30
|
+
starts-with($color, '#') or
|
|
31
|
+
starts-with($color, '%'),
|
|
32
|
+
$color,
|
|
33
|
+
str-insert($color, '.bg-', 1)
|
|
34
|
+
);
|
|
29
35
|
|
|
30
|
-
|
|
31
|
-
@include clay-css(
|
|
36
|
+
#{$selector} {
|
|
37
|
+
@include clay-css($value);
|
|
32
38
|
}
|
|
33
39
|
|
|
34
|
-
a
|
|
35
|
-
button
|
|
40
|
+
a#{$selector},
|
|
41
|
+
button#{$selector} {
|
|
36
42
|
&:hover,
|
|
37
43
|
&:focus {
|
|
38
|
-
@include clay-css($hover);
|
|
44
|
+
@include clay-css(map-get($value, hover));
|
|
39
45
|
}
|
|
40
46
|
}
|
|
41
47
|
}
|
|
@@ -43,7 +49,7 @@
|
|
|
43
49
|
@if $enable-gradients {
|
|
44
50
|
@each $color, $value in $bg-gradient-theme-colors {
|
|
45
51
|
.bg-gradient-#{$color} {
|
|
46
|
-
@include clay-css(
|
|
52
|
+
@include clay-css($value);
|
|
47
53
|
}
|
|
48
54
|
}
|
|
49
55
|
}
|
|
@@ -91,8 +97,16 @@
|
|
|
91
97
|
}
|
|
92
98
|
|
|
93
99
|
@each $color, $value in $border-theme-colors {
|
|
94
|
-
|
|
95
|
-
|
|
100
|
+
$selector: if(
|
|
101
|
+
starts-with($color, '.') or
|
|
102
|
+
starts-with($color, '#') or
|
|
103
|
+
starts-with($color, '%'),
|
|
104
|
+
$color,
|
|
105
|
+
str-insert($color, '.border-', 1)
|
|
106
|
+
);
|
|
107
|
+
|
|
108
|
+
#{$selector} {
|
|
109
|
+
@include clay-css($value);
|
|
96
110
|
}
|
|
97
111
|
}
|
|
98
112
|
|
|
@@ -180,9 +194,9 @@
|
|
|
180
194
|
}
|
|
181
195
|
}
|
|
182
196
|
|
|
183
|
-
/*
|
|
197
|
+
/* SPDX-SnippetBegin
|
|
184
198
|
* SPDX-License-Identifier: MIT
|
|
185
|
-
* SPDX-
|
|
199
|
+
* SPDX-SnippetCopyrightText: © 2012 Nicolas Gallagher <https://github.com/suitcss/components-flex-embed>
|
|
186
200
|
*/
|
|
187
201
|
|
|
188
202
|
.embed-responsive {
|
|
@@ -227,7 +241,7 @@
|
|
|
227
241
|
}
|
|
228
242
|
}
|
|
229
243
|
|
|
230
|
-
/*
|
|
244
|
+
/* SPDX-SnippetEnd */
|
|
231
245
|
|
|
232
246
|
// Flex
|
|
233
247
|
|
|
@@ -719,7 +733,9 @@
|
|
|
719
733
|
|
|
720
734
|
@each $selector, $value in $font-sizes {
|
|
721
735
|
$selector: if(
|
|
722
|
-
starts-with($selector, '.') or
|
|
736
|
+
starts-with($selector, '.') or
|
|
737
|
+
starts-with($selector, '#') or
|
|
738
|
+
starts-with($selector, '%'),
|
|
723
739
|
$selector,
|
|
724
740
|
str-insert($selector, '.', 1)
|
|
725
741
|
);
|
|
@@ -736,16 +752,22 @@
|
|
|
736
752
|
}
|
|
737
753
|
|
|
738
754
|
@each $color, $value in $text-theme-colors {
|
|
739
|
-
$
|
|
755
|
+
$selector: if(
|
|
756
|
+
starts-with($color, '.') or
|
|
757
|
+
starts-with($color, '#') or
|
|
758
|
+
starts-with($color, '%'),
|
|
759
|
+
$color,
|
|
760
|
+
str-insert($color, '.text-', 1)
|
|
761
|
+
);
|
|
740
762
|
|
|
741
|
-
|
|
742
|
-
@include clay-css(
|
|
763
|
+
#{$selector} {
|
|
764
|
+
@include clay-css($value);
|
|
743
765
|
}
|
|
744
766
|
|
|
745
|
-
a
|
|
767
|
+
a#{$selector} {
|
|
746
768
|
&:hover,
|
|
747
769
|
&:focus {
|
|
748
|
-
@include clay-css($hover);
|
|
770
|
+
@include clay-css(map-get($value, hover));
|
|
749
771
|
}
|
|
750
772
|
}
|
|
751
773
|
}
|
|
@@ -272,14 +272,15 @@
|
|
|
272
272
|
// Inline Scroller
|
|
273
273
|
|
|
274
274
|
.inline-scroller {
|
|
275
|
-
|
|
276
|
-
margin: 0;
|
|
277
|
-
max-height: $inline-scroller-max-height;
|
|
278
|
-
overflow: auto;
|
|
275
|
+
@include clay-css($inline-scroller);
|
|
279
276
|
|
|
280
|
-
|
|
277
|
+
&:focus {
|
|
278
|
+
@include clay-css(map-get($inline-scroller, focus));
|
|
279
|
+
}
|
|
281
280
|
|
|
282
|
-
|
|
281
|
+
&:focus-visible {
|
|
282
|
+
@include clay-css(map-get($inline-scroller, focus-visible));
|
|
283
|
+
}
|
|
283
284
|
}
|
|
284
285
|
|
|
285
286
|
// Inline Item
|
|
@@ -776,9 +776,9 @@
|
|
|
776
776
|
@return $returnVal;
|
|
777
777
|
}
|
|
778
778
|
|
|
779
|
-
// *
|
|
779
|
+
// * SPDX-SnippetBegin
|
|
780
780
|
// * SPDX-License-Identifier: MIT
|
|
781
|
-
// * SPDX-
|
|
781
|
+
// * SPDX-SnippetCopyrightText: © 2016 Hugo Giraudel <https://hugogiraudel.com/>
|
|
782
782
|
// *
|
|
783
783
|
|
|
784
784
|
/// A function that fetches deeply nested values from a Sass map.
|
|
@@ -842,11 +842,11 @@
|
|
|
842
842
|
@return clay-str-replace($string, $search, $replace);
|
|
843
843
|
}
|
|
844
844
|
|
|
845
|
-
// *
|
|
845
|
+
// * SPDX-SnippetEnd
|
|
846
846
|
|
|
847
|
-
// *
|
|
847
|
+
// * SPDX-SnippetBegin
|
|
848
848
|
// * SPDX-License-Identifier: MIT
|
|
849
|
-
// * SPDX-
|
|
849
|
+
// * SPDX-SnippetCopyrightText: © 2018 Jakob Eriksen <http://codepen.io/jakob-e/pen/doMoML>
|
|
850
850
|
// *
|
|
851
851
|
|
|
852
852
|
/// A function to encode an SVG and provide back a data URI to be used in `background-image`. If the SVG uses double quotes to delimit attribute names and values, wrap the SVG in single quotes or vice versa.
|
|
@@ -880,11 +880,11 @@
|
|
|
880
880
|
@return url('data:image/svg+xml;charset=utf8,#{$encoded}');
|
|
881
881
|
}
|
|
882
882
|
|
|
883
|
-
// *
|
|
883
|
+
// * SPDX-SnippetEnd
|
|
884
884
|
|
|
885
|
-
// *
|
|
885
|
+
// * SPDX-SnippetBegin
|
|
886
886
|
// * SPDX-License-Identifier: MIT
|
|
887
|
-
// * SPDX-
|
|
887
|
+
// * SPDX-SnippetCopyrightText: © 2018 Kevin Weber <https://codepen.io/kevinweber/pen/dXWoRw>
|
|
888
888
|
// *
|
|
889
889
|
|
|
890
890
|
/// A Bootstrap 4 function that converts ASCII characters in SVG's to URL encoded characters.
|
|
@@ -914,7 +914,7 @@
|
|
|
914
914
|
@return $string;
|
|
915
915
|
}
|
|
916
916
|
|
|
917
|
-
// *
|
|
917
|
+
// * SPDX-SnippetEnd
|
|
918
918
|
|
|
919
919
|
/// A function that returns a specific Lexicon Icon with a specific color as a data URI to be used in `background-image`.
|
|
920
920
|
/// @param {String} $name - The Lexicon Icon name (e.g., angle-right)
|
|
@@ -478,6 +478,8 @@
|
|
|
478
478
|
|
|
479
479
|
'hidden': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline" d="M478.4 278.7c7.1-8.3 20.8-24.4 29-38.1 20.4-36.2-32.2-69-54.9-32.9-78.7 135.8-339 139.8-390.7 4.6C42.4 172-11.9 198.5 2.4 236c7 17.4 22.6 41.6 28.1 47.9-19 8.6-39.8 25.6-25.7 52.8 25 33.7 52.7 4.7 74.4-7.4 8.7 6.8 29.3 17.1 38.3 21.1-15 22.5-32.3 50.3-2 69.6 36.8 15.3 47.7-20.2 64.3-50 7.2 1.5 31.7 5.1 44.2 5.3 0 40.8-6.1 69.4 32 72.8 37.5-2.6 32-32 32-74.6 13.2-1 38.2-7.1 44.3-8.6 20.3 31.9 27.8 70 67.7 53.2 30.3-21.3 13-41.4-6.7-75.6 7.3-3.5 28.7-15.7 33.9-19.4 27.2 15.1 57.1 43.9 80.3 9.5 11.2-20.9 1.3-40.2-29.1-53.9z" fill="#{$color}"/></svg>',
|
|
480
480
|
|
|
481
|
+
'hierarchy': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline lx-hierarchy-line-1" fill-rule="evenodd" clip-rule="evenodd" d="M0 64C0 28.654 28.654 0 64 0h320c35.346 0 64 28.654 64 64v64c0 35.346-28.654 64-64 64H64c-35.346 0-64-28.654-64-64V64Zm384 0H64v64h320V64Z" fill="#{$color}"/><path class="lexicon-icon-outline lx-hierarchy-line-2" d="M128 304c0-26.51 21.49-48 48-48h288c26.51 0 48 21.49 48 48s-21.49 48-48 48H176c-26.51 0-48-21.49-48-48Zm0 160c0-26.51 21.49-48 48-48h288c26.51 0 48 21.49 48 48s-21.49 48-48 48H176c-26.51 0-48-21.49-48-48Z" fill="#{$color}"/></svg>',
|
|
482
|
+
|
|
481
483
|
'home-full': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline" d="M233.6 22.4c12.5-12.5 32.3-12.5 44.8 0l182.9 182.8c12 12 18.7 28.3 18.7 45.3V512H320V384c0-35.3-28.7-64-64-64s-64 28.7-64 64v128H32V250.5c0-17 6.7-33.3 18.7-45.3L233.6 22.4z" fill="#{$color}"/></svg>',
|
|
482
484
|
|
|
483
485
|
'home': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline" d="M461.3 205.2 278.4 22.4c-12.5-12.5-32.3-12.5-44.8 0L50.7 205.3c-12 12-18.7 28.3-18.7 45.3V512h192V352c0-42.7 64-42.7 64 0v160h192V250.5c0-17-6.7-33.3-18.7-45.3zM416 448h-64v-96c0-128-192-128-192 0v96H96V256L256 96l160 160v192z" fill="#{$color}"/></svg>',
|
|
@@ -568,6 +570,8 @@
|
|
|
568
570
|
|
|
569
571
|
'myspace': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline myspace-user" d="M488.728 231.264c-12.846 0-23.272 10.426-23.272 23.273 0 115.486-93.969 209.454-209.454 209.454S46.548 370.022 46.548 254.537c0-12.846-10.426-23.273-23.273-23.273S.002 241.69.002 254.537c0 141.152 114.847 256 256 256s256-114.848 256-256c0-12.846-10.426-23.273-23.272-23.273z" fill="#{$color}"/><path class="lexicon-icon-outline myspace-border" d="M115.513 298.183c6.49 0 12.953-2.712 17.581-8.006 30.986-35.588 75.776-56.014 122.933-56.014s91.947 20.427 122.933 56.014c8.431 9.682 23.139 10.719 32.848 2.261 9.682-8.431 10.692-23.139 2.261-32.848-21.916-25.188-49.338-44.205-79.579-56.44 23.139-21.278 37.901-51.519 37.901-85.377 0-64.153-52.211-116.364-116.363-116.364S139.665 53.62 139.665 117.773c0 33.858 14.762 64.1 37.901 85.377-30.242 12.235-57.663 31.251-79.579 56.44-8.431 9.682-7.421 24.39 2.287 32.848a22.987 22.987 0 0 0 15.24 5.745zm70.669-180.357c0-38.513 31.305-69.818 69.818-69.818s69.818 31.305 69.818 69.818-31.305 69.818-69.818 69.818-69.818-31.332-69.818-69.818z" fill="#{$color}"/></svg>',
|
|
570
572
|
|
|
573
|
+
'no-bot': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline lx-no-bot-1" fill-rule="evenodd" clip-rule="evenodd" d="M471.463 54.627c12.497-12.496 12.497-32.758 0-45.254-12.496-12.497-32.758-12.497-45.254 0L371.581 64h-82.745V32c0-17.673-14.327-32-32-32-17.673 0-32 14.327-32 32v32h-96c-35.346 0-64 28.654-64 64v64c-35.346 0-64 28.654-64 64 0 35.346 28.654 64 64 64v50.745l-54.627 54.628c-12.497 12.496-12.497 32.758 0 45.254 11.457 11.458 29.443 12.411 41.986 2.858l257.731-257.732c-12.727-8.632-21.09-23.216-21.09-39.753 0-26.51 21.49-48 48-48 16.537 0 31.121 8.363 39.753 21.09l94.874-94.463ZM224.835 176c0 26.51-21.49 48-48 48-26.509 0-48-21.49-48-48s21.491-48 48-48c26.51 0 48 21.49 48 48Z" fill="#{$color}"/><path class="lexicon-icon-outline lx-no-bot-2" d="M448.836 167.353 296.189 320h24.647c17.673 0 32 14.327 32 32 0 17.673-14.327 32-32 32l-87.85-.797L168.189 448h216.647c35.346 0 64-28.654 64-64v-64c35.346 0 64-28.654 64-64 0-35.346-28.654-64-64-64v-24.647Z" fill="#{$color}"/></svg>',
|
|
574
|
+
|
|
571
575
|
'nodes': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline" d="m387.9 365.3-31.2-31.2c36-44 36.9-104.5 3.9-151.7l32.9-32.9C422.9 172.6 512 159.8 512 79.7c0-106.5-160-106.1-160 0 0 18.5 6.5 35.3 17.1 48.9l-30.3 30.3c-50.5-40.4-112.3-41.8-160.9-3.9l-31.2-31.2C155.1 111.2 160 96 160 79.7c0-103-160-108.3-160 0 0 62.9 71.7 102.4 124.1 66.8l31.2 31.2c-28.3 30.3-45.4 108.9 3.9 161.1l-30.3 30.3C80 329.3 0 359.8 0 432c0 106.6 160 106.6 160 0 0-14.1-3.9-27.1-10.3-38.5l32.9-32.9c43.9 31.8 106.6 31.8 151.5-3.9l31.2 31.2c-8.4 12.7-13.3 27.8-13.3 44.1 0 103.3 160 109.5 160 0 0-71.8-81.7-99.8-124.1-66.7zM448 79.7c0 20.4-32 21.4-32 0 0-21.1 32-20.9 32 0zm-384 0c0-21.9 32-21.1 32 0 0 20.5-32 21-32 0zM64 432c0-20.7 32-21.7 32 0 0 20.9-32 20.7-32 0zm128-176.1c0-84.5 128-85 128 0 0 84-128 85.5-128 0zM416.2 433c0-23.1 31.8-20.8 31.8-.9 0 20.9-31.8 19.7-31.8.9z" fill="#{$color}"/></svg>',
|
|
572
576
|
|
|
573
577
|
'number': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline number-hundreds" d="M7 334.5h50V187.4H15.8V162c15.9-3.5 35-7.8 51.7-18.3h30.3v190.8h44v33.1H7v-33.1z" fill="#{$color}"/><path class="lexicon-icon-outline number-tens" d="M174.9 344c18.1-21 98.1-82 101.4-133.8-.3-59.2-66.3-39.7-80.6-13.7L173.2 174c91.3-89 188.8 8 118.1 95.2-7.4 10.5-46.2 54.6-57.2 66.4 36.9-2.6 92.2-2.5 92.2-2.5v34.5H174.9V344z" fill="#{$color}"/><path class="lexicon-icon-outline number-ones" d="M369.9 314.1C382 326 416 354 452.8 329.8c29.7-27.3 6.7-68.8-54.4-62.8v-29.6c11 0 58.6.6 58.4-35.9-2.3-43.5-54.8-34-78.1-8.8l-20.7-25c9.6-8.5 43-38.7 96.8-24.3 67.2 23.1 46.2 98.1 3.8 106.6 47.4 9 77.4 88-1.6 117.4-44 11.6-86-2.4-106.5-27.3l19.4-26z" fill="#{$color}"/></svg>',
|
|
@@ -4,9 +4,9 @@
|
|
|
4
4
|
@return map-remove((), 'key');
|
|
5
5
|
}
|
|
6
6
|
|
|
7
|
-
// *
|
|
7
|
+
// * SPDX-SnippetBegin
|
|
8
8
|
// * SPDX-License-Identifier: MIT
|
|
9
|
-
// * SPDX-
|
|
9
|
+
// * SPDX-SnippetCopyrightText: © 2014 Kitty Giraudel <https://kittygiraudel.com/>
|
|
10
10
|
// *
|
|
11
11
|
|
|
12
12
|
/// Add `$unit` to `$value`
|
|
@@ -95,11 +95,11 @@
|
|
|
95
95
|
@return if($minus, -$result, $result);
|
|
96
96
|
}
|
|
97
97
|
|
|
98
|
-
// *
|
|
98
|
+
// * SPDX-SnippetEnd
|
|
99
99
|
|
|
100
|
-
// *
|
|
100
|
+
// * SPDX-SnippetBegin
|
|
101
101
|
// * SPDX-License-Identifier: MIT
|
|
102
|
-
// * SPDX-
|
|
102
|
+
// * SPDX-SnippetCopyrightText: © 2014 Kitty Giraudel <https://github.com/KittyGiraudel/SassyJSON>
|
|
103
103
|
// *
|
|
104
104
|
|
|
105
105
|
/// Logs an error at `$pointer` with `$string` message
|
|
@@ -606,4 +606,4 @@
|
|
|
606
606
|
}
|
|
607
607
|
}
|
|
608
608
|
|
|
609
|
-
// *
|
|
609
|
+
// * SPDX-SnippetEnd
|
|
@@ -29,9 +29,9 @@
|
|
|
29
29
|
resize: $direction;
|
|
30
30
|
}
|
|
31
31
|
|
|
32
|
-
// *
|
|
32
|
+
// * SPDX-SnippetBegin
|
|
33
33
|
// * SPDX-License-Identifier: APLv2
|
|
34
|
-
// * SPDX-
|
|
34
|
+
// * SPDX-SnippetCopyrightText: © 2018 A11Y Project <https://a11yproject.com/posts/how-to-hide-content/>
|
|
35
35
|
// *
|
|
36
36
|
|
|
37
37
|
/// A Bootstrap 4 mixin that generates styles to only display content to screen readers.
|
|
@@ -48,11 +48,11 @@
|
|
|
48
48
|
width: 1px;
|
|
49
49
|
}
|
|
50
50
|
|
|
51
|
-
// *
|
|
51
|
+
// * SPDX-SnippetEnd
|
|
52
52
|
|
|
53
|
-
// *
|
|
53
|
+
// * SPDX-SnippetBegin
|
|
54
54
|
// * SPDX-License-Identifier: MIT
|
|
55
|
-
// * SPDX-
|
|
55
|
+
// * SPDX-SnippetCopyrightText: © 2018 HTML5 Boilerplate <https://github.com/h5bp/main.css>
|
|
56
56
|
// *
|
|
57
57
|
|
|
58
58
|
/// A Bootstrap 4 mixin to display `.sr-only` content when focused. Useful for "Skip to main content" links; see https://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
}
|
|
70
70
|
}
|
|
71
71
|
|
|
72
|
-
// *
|
|
72
|
+
// * SPDX-SnippetEnd
|
|
73
73
|
|
|
74
74
|
/// A Bootstrap 4 mixin for generating `width` and `height` properties.
|
|
75
75
|
/// @deprecated
|
|
@@ -182,6 +182,8 @@ $alert-indicator: () !default;
|
|
|
182
182
|
$alert-indicator: map-deep-merge(
|
|
183
183
|
(
|
|
184
184
|
font-size: $alert-indicator-font-size,
|
|
185
|
+
line-height: 1,
|
|
186
|
+
vertical-align: 8%,
|
|
185
187
|
lead: (
|
|
186
188
|
margin-left: $alert-lead-spacer-x,
|
|
187
189
|
),
|
|
@@ -397,6 +399,7 @@ $alert-notification-sm-down: map-merge(
|
|
|
397
399
|
$alert-autofit-row: () !default;
|
|
398
400
|
$alert-autofit-row: map-deep-merge(
|
|
399
401
|
(
|
|
402
|
+
align-items: baseline,
|
|
400
403
|
margin-left: -0.5rem,
|
|
401
404
|
margin-right: -0.5rem,
|
|
402
405
|
width: auto,
|
|
@@ -413,6 +413,7 @@ $form-control-inset: map-deep-merge(
|
|
|
413
413
|
color: $input-color,
|
|
414
414
|
flex-grow: 1,
|
|
415
415
|
margin-bottom: $form-control-inset-margin-y,
|
|
416
|
+
margin-left: 0.25rem,
|
|
416
417
|
margin-top: $form-control-inset-margin-y,
|
|
417
418
|
min-height: $form-control-inset-min-height,
|
|
418
419
|
padding: 0,
|
|
@@ -440,6 +441,7 @@ $form-control-tag-group: map-deep-merge(
|
|
|
440
441
|
flex-wrap: wrap,
|
|
441
442
|
height: auto,
|
|
442
443
|
padding-bottom: $form-control-tag-group-padding-y,
|
|
444
|
+
padding-left: 0.5rem,
|
|
443
445
|
padding-right: 0.5rem,
|
|
444
446
|
padding-top: $form-control-tag-group-padding-y,
|
|
445
447
|
),
|
|
@@ -550,6 +552,7 @@ $form-control-tag-group-sm: map-deep-merge(
|
|
|
550
552
|
),
|
|
551
553
|
form-control-inset: (
|
|
552
554
|
margin-bottom: 0.125rem,
|
|
555
|
+
margin-left: 0.25rem,
|
|
553
556
|
margin-top: 0.1875rem,
|
|
554
557
|
),
|
|
555
558
|
),
|
|
@@ -35,7 +35,7 @@ $enable-grid-classes: true !default;
|
|
|
35
35
|
$enable-pointer-cursor-for-buttons: true !default;
|
|
36
36
|
$enable-print-styles: true !default;
|
|
37
37
|
$enable-responsive-font-sizes: false !default;
|
|
38
|
-
$enable-validation-icons:
|
|
38
|
+
$enable-validation-icons: false !default;
|
|
39
39
|
$enable-deprecation-messages: true !default;
|
|
40
40
|
|
|
41
41
|
// Deprecated, no longer affects any compiled CSS
|
|
@@ -290,6 +290,30 @@ $grid-row-columns: 6 !default;
|
|
|
290
290
|
|
|
291
291
|
// Containers
|
|
292
292
|
|
|
293
|
+
$clay-container: () !default;
|
|
294
|
+
$clay-container: map-merge(
|
|
295
|
+
(
|
|
296
|
+
margin-left: auto,
|
|
297
|
+
margin-right: auto,
|
|
298
|
+
padding-left: calc(#{$grid-gutter-width} * 0.5),
|
|
299
|
+
padding-right: calc(#{$grid-gutter-width} * 0.5),
|
|
300
|
+
width: 100%,
|
|
301
|
+
),
|
|
302
|
+
$clay-container
|
|
303
|
+
);
|
|
304
|
+
|
|
305
|
+
$clay-container-fluid: () !default;
|
|
306
|
+
$clay-container-fluid: map-merge(
|
|
307
|
+
(
|
|
308
|
+
margin-left: auto,
|
|
309
|
+
margin-right: auto,
|
|
310
|
+
padding-left: calc(#{$grid-gutter-width} * 0.5),
|
|
311
|
+
padding-right: calc(#{$grid-gutter-width} * 0.5),
|
|
312
|
+
width: 100%,
|
|
313
|
+
),
|
|
314
|
+
$clay-container-fluid
|
|
315
|
+
);
|
|
316
|
+
|
|
293
317
|
$container-max-widths: (
|
|
294
318
|
sm: 540px,
|
|
295
319
|
md: 720px,
|
|
@@ -198,6 +198,12 @@ $treeview-light: map-deep-merge(
|
|
|
198
198
|
),
|
|
199
199
|
treeview-link: (
|
|
200
200
|
color: $gray-600,
|
|
201
|
+
treeview-no-hover: (
|
|
202
|
+
hover: (
|
|
203
|
+
background-color: transparent,
|
|
204
|
+
color: $secondary,
|
|
205
|
+
),
|
|
206
|
+
),
|
|
201
207
|
hover: (
|
|
202
208
|
background-color: $gray-100,
|
|
203
209
|
color: $gray-900,
|
|
@@ -238,6 +244,12 @@ $treeview-dark: map-deep-merge(
|
|
|
238
244
|
),
|
|
239
245
|
treeview-link: (
|
|
240
246
|
color: $secondary-l1,
|
|
247
|
+
treeview-no-hover: (
|
|
248
|
+
hover: (
|
|
249
|
+
background-color: transparent,
|
|
250
|
+
color: $secondary-l1,
|
|
251
|
+
),
|
|
252
|
+
),
|
|
241
253
|
hover: (
|
|
242
254
|
background-color: rgba($white, 0.04),
|
|
243
255
|
),
|
|
@@ -1,6 +1,28 @@
|
|
|
1
1
|
$bg-checkered-fg: $gray-200 !default;
|
|
2
|
+
|
|
3
|
+
// .inline-scroller
|
|
4
|
+
|
|
2
5
|
$inline-scroller-max-height: 125px !default;
|
|
3
6
|
|
|
7
|
+
$inline-scroller: () !default;
|
|
8
|
+
$inline-scroller: map-deep-merge(
|
|
9
|
+
(
|
|
10
|
+
-webkit-overflow-scrolling: touch,
|
|
11
|
+
list-style: none,
|
|
12
|
+
margin: 0,
|
|
13
|
+
max-height: $inline-scroller-max-height,
|
|
14
|
+
overflow: auto,
|
|
15
|
+
padding: 0,
|
|
16
|
+
focus: (
|
|
17
|
+
outline: 0,
|
|
18
|
+
),
|
|
19
|
+
focus-visible: (
|
|
20
|
+
box-shadow: $component-focus-box-shadow,
|
|
21
|
+
)
|
|
22
|
+
),
|
|
23
|
+
$inline-scroller
|
|
24
|
+
);
|
|
25
|
+
|
|
4
26
|
// Autofit Row
|
|
5
27
|
|
|
6
28
|
$autofit-col-expand-min-width: 3.125rem !default; // 50px
|