jekyll-theme-dtf-basic 0.0.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.
- checksums.yaml +7 -0
- data/LICENSE +438 -0
- data/README.md +39 -0
- data/_config.yml +84 -0
- data/_data/authors.yml +2 -0
- data/_data/navigation.yml +4 -0
- data/_includes/dtf/alert_element.html +4 -0
- data/_includes/dtf/author_element.html +17 -0
- data/_includes/dtf/feature_element.html +13 -0
- data/_includes/dtf/feature_group.html +12 -0
- data/_includes/dtf/picture_element.html +13 -0
- data/_includes/dtf/post_element.html +19 -0
- data/_includes/dtf/post_group.html +12 -0
- data/_includes/dtf/project_element.html +19 -0
- data/_includes/dtf/project_group.html +17 -0
- data/_includes/footer.html +7 -0
- data/_includes/head.html +12 -0
- data/_includes/nav.html +45 -0
- data/_includes/pagination.html +19 -0
- data/_layouts/archive.html +19 -0
- data/_layouts/default.html +19 -0
- data/_layouts/page.html +13 -0
- data/_layouts/post.html +43 -0
- data/_sass/basic/_style.scss +55 -0
- data/_sass/bootstrap-5.3.3/_accordion.scss +158 -0
- data/_sass/bootstrap-5.3.3/_alert.scss +68 -0
- data/_sass/bootstrap-5.3.3/_badge.scss +38 -0
- data/_sass/bootstrap-5.3.3/_breadcrumb.scss +40 -0
- data/_sass/bootstrap-5.3.3/_button-group.scss +142 -0
- data/_sass/bootstrap-5.3.3/_buttons.scss +216 -0
- data/_sass/bootstrap-5.3.3/_card.scss +239 -0
- data/_sass/bootstrap-5.3.3/_carousel.scss +236 -0
- data/_sass/bootstrap-5.3.3/_close.scss +63 -0
- data/_sass/bootstrap-5.3.3/_containers.scss +41 -0
- data/_sass/bootstrap-5.3.3/_dropdown.scss +250 -0
- data/_sass/bootstrap-5.3.3/_forms.scss +9 -0
- data/_sass/bootstrap-5.3.3/_functions.scss +302 -0
- data/_sass/bootstrap-5.3.3/_grid.scss +39 -0
- data/_sass/bootstrap-5.3.3/_helpers.scss +12 -0
- data/_sass/bootstrap-5.3.3/_images.scss +42 -0
- data/_sass/bootstrap-5.3.3/_list-group.scss +197 -0
- data/_sass/bootstrap-5.3.3/_maps.scss +174 -0
- data/_sass/bootstrap-5.3.3/_mixins.scss +42 -0
- data/_sass/bootstrap-5.3.3/_modal.scss +236 -0
- data/_sass/bootstrap-5.3.3/_nav.scss +197 -0
- data/_sass/bootstrap-5.3.3/_navbar.scss +289 -0
- data/_sass/bootstrap-5.3.3/_offcanvas.scss +143 -0
- data/_sass/bootstrap-5.3.3/_pagination.scss +109 -0
- data/_sass/bootstrap-5.3.3/_placeholders.scss +51 -0
- data/_sass/bootstrap-5.3.3/_popover.scss +196 -0
- data/_sass/bootstrap-5.3.3/_progress.scss +68 -0
- data/_sass/bootstrap-5.3.3/_reboot.scss +611 -0
- data/_sass/bootstrap-5.3.3/_root.scss +187 -0
- data/_sass/bootstrap-5.3.3/_spinners.scss +85 -0
- data/_sass/bootstrap-5.3.3/_tables.scss +171 -0
- data/_sass/bootstrap-5.3.3/_toasts.scss +73 -0
- data/_sass/bootstrap-5.3.3/_tooltip.scss +119 -0
- data/_sass/bootstrap-5.3.3/_transitions.scss +27 -0
- data/_sass/bootstrap-5.3.3/_type.scss +106 -0
- data/_sass/bootstrap-5.3.3/_utilities.scss +806 -0
- data/_sass/bootstrap-5.3.3/_variables-dark.scss +87 -0
- data/_sass/bootstrap-5.3.3/_variables.scss +1751 -0
- data/_sass/bootstrap-5.3.3/bootstrap-grid.scss +62 -0
- data/_sass/bootstrap-5.3.3/bootstrap-reboot.scss +10 -0
- data/_sass/bootstrap-5.3.3/bootstrap-utilities.scss +19 -0
- data/_sass/bootstrap-5.3.3/bootstrap.scss +52 -0
- data/_sass/bootstrap-5.3.3/forms/_floating-labels.scss +95 -0
- data/_sass/bootstrap-5.3.3/forms/_form-check.scss +189 -0
- data/_sass/bootstrap-5.3.3/forms/_form-control.scss +214 -0
- data/_sass/bootstrap-5.3.3/forms/_form-range.scss +91 -0
- data/_sass/bootstrap-5.3.3/forms/_form-select.scss +80 -0
- data/_sass/bootstrap-5.3.3/forms/_form-text.scss +11 -0
- data/_sass/bootstrap-5.3.3/forms/_input-group.scss +132 -0
- data/_sass/bootstrap-5.3.3/forms/_labels.scss +36 -0
- data/_sass/bootstrap-5.3.3/forms/_validation.scss +12 -0
- data/_sass/bootstrap-5.3.3/helpers/_clearfix.scss +3 -0
- data/_sass/bootstrap-5.3.3/helpers/_color-bg.scss +7 -0
- data/_sass/bootstrap-5.3.3/helpers/_colored-links.scss +30 -0
- data/_sass/bootstrap-5.3.3/helpers/_focus-ring.scss +5 -0
- data/_sass/bootstrap-5.3.3/helpers/_icon-link.scss +25 -0
- data/_sass/bootstrap-5.3.3/helpers/_position.scss +36 -0
- data/_sass/bootstrap-5.3.3/helpers/_ratio.scss +26 -0
- data/_sass/bootstrap-5.3.3/helpers/_stacks.scss +15 -0
- data/_sass/bootstrap-5.3.3/helpers/_stretched-link.scss +15 -0
- data/_sass/bootstrap-5.3.3/helpers/_text-truncation.scss +7 -0
- data/_sass/bootstrap-5.3.3/helpers/_visually-hidden.scss +8 -0
- data/_sass/bootstrap-5.3.3/helpers/_vr.scss +8 -0
- data/_sass/bootstrap-5.3.3/mixins/_alert.scss +18 -0
- data/_sass/bootstrap-5.3.3/mixins/_backdrop.scss +14 -0
- data/_sass/bootstrap-5.3.3/mixins/_banner.scss +7 -0
- data/_sass/bootstrap-5.3.3/mixins/_border-radius.scss +78 -0
- data/_sass/bootstrap-5.3.3/mixins/_box-shadow.scss +18 -0
- data/_sass/bootstrap-5.3.3/mixins/_breakpoints.scss +127 -0
- data/_sass/bootstrap-5.3.3/mixins/_buttons.scss +70 -0
- data/_sass/bootstrap-5.3.3/mixins/_caret.scss +69 -0
- data/_sass/bootstrap-5.3.3/mixins/_clearfix.scss +9 -0
- data/_sass/bootstrap-5.3.3/mixins/_color-mode.scss +21 -0
- data/_sass/bootstrap-5.3.3/mixins/_color-scheme.scss +7 -0
- data/_sass/bootstrap-5.3.3/mixins/_container.scss +11 -0
- data/_sass/bootstrap-5.3.3/mixins/_deprecate.scss +10 -0
- data/_sass/bootstrap-5.3.3/mixins/_forms.scss +163 -0
- data/_sass/bootstrap-5.3.3/mixins/_gradients.scss +47 -0
- data/_sass/bootstrap-5.3.3/mixins/_grid.scss +151 -0
- data/_sass/bootstrap-5.3.3/mixins/_image.scss +16 -0
- data/_sass/bootstrap-5.3.3/mixins/_list-group.scss +26 -0
- data/_sass/bootstrap-5.3.3/mixins/_lists.scss +7 -0
- data/_sass/bootstrap-5.3.3/mixins/_pagination.scss +10 -0
- data/_sass/bootstrap-5.3.3/mixins/_reset-text.scss +17 -0
- data/_sass/bootstrap-5.3.3/mixins/_resize.scss +6 -0
- data/_sass/bootstrap-5.3.3/mixins/_table-variants.scss +24 -0
- data/_sass/bootstrap-5.3.3/mixins/_text-truncate.scss +8 -0
- data/_sass/bootstrap-5.3.3/mixins/_transition.scss +26 -0
- data/_sass/bootstrap-5.3.3/mixins/_utilities.scss +97 -0
- data/_sass/bootstrap-5.3.3/mixins/_visually-hidden.scss +33 -0
- data/_sass/bootstrap-5.3.3/tests/jasmine.js +16 -0
- data/_sass/bootstrap-5.3.3/tests/mixins/_auto-import-of-variables-dark.test.scss +7 -0
- data/_sass/bootstrap-5.3.3/tests/mixins/_color-modes.test.scss +69 -0
- data/_sass/bootstrap-5.3.3/tests/mixins/_media-query-color-mode-full.test.scss +8 -0
- data/_sass/bootstrap-5.3.3/tests/mixins/_utilities.test.scss +393 -0
- data/_sass/bootstrap-5.3.3/tests/sass-true/register.js +14 -0
- data/_sass/bootstrap-5.3.3/tests/sass-true/runner.js +17 -0
- data/_sass/bootstrap-5.3.3/tests/utilities/_api.test.scss +75 -0
- data/_sass/bootstrap-5.3.3/utilities/_api.scss +47 -0
- data/_sass/custom_style.scss +0 -0
- data/_sass/fontawesome/font-awesome.scss +10 -0
- data/_sass/fontawesome/scss/LICENSE.txt +165 -0
- data/_sass/fontawesome/scss/_animated.scss +152 -0
- data/_sass/fontawesome/scss/_bordered-pulled.scss +20 -0
- data/_sass/fontawesome/scss/_core.scss +49 -0
- data/_sass/fontawesome/scss/_fixed-width.scss +7 -0
- data/_sass/fontawesome/scss/_functions.scss +57 -0
- data/_sass/fontawesome/scss/_icons.scss +12 -0
- data/_sass/fontawesome/scss/_list.scss +18 -0
- data/_sass/fontawesome/scss/_mixins.scss +65 -0
- data/_sass/fontawesome/scss/_rotated-flipped.scss +31 -0
- data/_sass/fontawesome/scss/_screen-reader.scss +14 -0
- data/_sass/fontawesome/scss/_shims.scss +1578 -0
- data/_sass/fontawesome/scss/_sizing.scss +16 -0
- data/_sass/fontawesome/scss/_stacked.scss +32 -0
- data/_sass/fontawesome/scss/_variables.scss +5044 -0
- data/_sass/fontawesome/scss/brands.scss +30 -0
- data/_sass/fontawesome/scss/fontawesome.scss +21 -0
- data/_sass/fontawesome/scss/regular.scss +27 -0
- data/_sass/fontawesome/scss/solid.scss +27 -0
- data/_sass/fontawesome/scss/v4-shims.scss +11 -0
- data/_sass/highlighter/code.scss +232 -0
- data/_sass/main.scss +40 -0
- data/assets/css/main.scss +4 -0
- data/assets/fonts/fontawesome/LICENSE.txt +165 -0
- data/assets/fonts/fontawesome/fa-brands-400.ttf +0 -0
- data/assets/fonts/fontawesome/fa-brands-400.woff2 +0 -0
- data/assets/fonts/fontawesome/fa-regular-400.ttf +0 -0
- data/assets/fonts/fontawesome/fa-regular-400.woff2 +0 -0
- data/assets/fonts/fontawesome/fa-solid-900.ttf +0 -0
- data/assets/fonts/fontawesome/fa-solid-900.woff2 +0 -0
- data/assets/fonts/fontawesome/fa-v4compatibility.ttf +0 -0
- data/assets/fonts/fontawesome/fa-v4compatibility.woff2 +0 -0
- data/assets/js/bootstrap.bundle.js.map +1 -0
- data/assets/js/bootstrap.bundle.min.js +7 -0
- data/assets/js/darkmode.js +74 -0
- metadata +343 -0
@@ -0,0 +1,151 @@
|
|
1
|
+
// Grid system
|
2
|
+
//
|
3
|
+
// Generate semantic grid columns with these mixins.
|
4
|
+
|
5
|
+
@mixin make-row($gutter: $grid-gutter-width) {
|
6
|
+
--#{$prefix}gutter-x: #{$gutter};
|
7
|
+
--#{$prefix}gutter-y: 0;
|
8
|
+
display: flex;
|
9
|
+
flex-wrap: wrap;
|
10
|
+
// TODO: Revisit calc order after https://github.com/react-bootstrap/react-bootstrap/issues/6039 is fixed
|
11
|
+
margin-top: calc(-1 * var(--#{$prefix}gutter-y)); // stylelint-disable-line function-disallowed-list
|
12
|
+
margin-right: calc(-.5 * var(--#{$prefix}gutter-x)); // stylelint-disable-line function-disallowed-list
|
13
|
+
margin-left: calc(-.5 * var(--#{$prefix}gutter-x)); // stylelint-disable-line function-disallowed-list
|
14
|
+
}
|
15
|
+
|
16
|
+
@mixin make-col-ready() {
|
17
|
+
// Add box sizing if only the grid is loaded
|
18
|
+
box-sizing: if(variable-exists(include-column-box-sizing) and $include-column-box-sizing, border-box, null);
|
19
|
+
// Prevent columns from becoming too narrow when at smaller grid tiers by
|
20
|
+
// always setting `width: 100%;`. This works because we set the width
|
21
|
+
// later on to override this initial width.
|
22
|
+
flex-shrink: 0;
|
23
|
+
width: 100%;
|
24
|
+
max-width: 100%; // Prevent `.col-auto`, `.col` (& responsive variants) from breaking out the grid
|
25
|
+
padding-right: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list
|
26
|
+
padding-left: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list
|
27
|
+
margin-top: var(--#{$prefix}gutter-y);
|
28
|
+
}
|
29
|
+
|
30
|
+
@mixin make-col($size: false, $columns: $grid-columns) {
|
31
|
+
@if $size {
|
32
|
+
flex: 0 0 auto;
|
33
|
+
width: percentage(divide($size, $columns));
|
34
|
+
|
35
|
+
} @else {
|
36
|
+
flex: 1 1 0;
|
37
|
+
max-width: 100%;
|
38
|
+
}
|
39
|
+
}
|
40
|
+
|
41
|
+
@mixin make-col-auto() {
|
42
|
+
flex: 0 0 auto;
|
43
|
+
width: auto;
|
44
|
+
}
|
45
|
+
|
46
|
+
@mixin make-col-offset($size, $columns: $grid-columns) {
|
47
|
+
$num: divide($size, $columns);
|
48
|
+
margin-left: if($num == 0, 0, percentage($num));
|
49
|
+
}
|
50
|
+
|
51
|
+
// Row columns
|
52
|
+
//
|
53
|
+
// Specify on a parent element(e.g., .row) to force immediate children into NN
|
54
|
+
// number of columns. Supports wrapping to new lines, but does not do a Masonry
|
55
|
+
// style grid.
|
56
|
+
@mixin row-cols($count) {
|
57
|
+
> * {
|
58
|
+
flex: 0 0 auto;
|
59
|
+
width: percentage(divide(1, $count));
|
60
|
+
}
|
61
|
+
}
|
62
|
+
|
63
|
+
// Framework grid generation
|
64
|
+
//
|
65
|
+
// Used only by Bootstrap to generate the correct number of grid classes given
|
66
|
+
// any value of `$grid-columns`.
|
67
|
+
|
68
|
+
@mixin make-grid-columns($columns: $grid-columns, $gutter: $grid-gutter-width, $breakpoints: $grid-breakpoints) {
|
69
|
+
@each $breakpoint in map-keys($breakpoints) {
|
70
|
+
$infix: breakpoint-infix($breakpoint, $breakpoints);
|
71
|
+
|
72
|
+
@include media-breakpoint-up($breakpoint, $breakpoints) {
|
73
|
+
// Provide basic `.col-{bp}` classes for equal-width flexbox columns
|
74
|
+
.col#{$infix} {
|
75
|
+
flex: 1 0 0%; // Flexbugs #4: https://github.com/philipwalton/flexbugs#flexbug-4
|
76
|
+
}
|
77
|
+
|
78
|
+
.row-cols#{$infix}-auto > * {
|
79
|
+
@include make-col-auto();
|
80
|
+
}
|
81
|
+
|
82
|
+
@if $grid-row-columns > 0 {
|
83
|
+
@for $i from 1 through $grid-row-columns {
|
84
|
+
.row-cols#{$infix}-#{$i} {
|
85
|
+
@include row-cols($i);
|
86
|
+
}
|
87
|
+
}
|
88
|
+
}
|
89
|
+
|
90
|
+
.col#{$infix}-auto {
|
91
|
+
@include make-col-auto();
|
92
|
+
}
|
93
|
+
|
94
|
+
@if $columns > 0 {
|
95
|
+
@for $i from 1 through $columns {
|
96
|
+
.col#{$infix}-#{$i} {
|
97
|
+
@include make-col($i, $columns);
|
98
|
+
}
|
99
|
+
}
|
100
|
+
|
101
|
+
// `$columns - 1` because offsetting by the width of an entire row isn't possible
|
102
|
+
@for $i from 0 through ($columns - 1) {
|
103
|
+
@if not ($infix == "" and $i == 0) { // Avoid emitting useless .offset-0
|
104
|
+
.offset#{$infix}-#{$i} {
|
105
|
+
@include make-col-offset($i, $columns);
|
106
|
+
}
|
107
|
+
}
|
108
|
+
}
|
109
|
+
}
|
110
|
+
|
111
|
+
// Gutters
|
112
|
+
//
|
113
|
+
// Make use of `.g-*`, `.gx-*` or `.gy-*` utilities to change spacing between the columns.
|
114
|
+
@each $key, $value in $gutters {
|
115
|
+
.g#{$infix}-#{$key},
|
116
|
+
.gx#{$infix}-#{$key} {
|
117
|
+
--#{$prefix}gutter-x: #{$value};
|
118
|
+
}
|
119
|
+
|
120
|
+
.g#{$infix}-#{$key},
|
121
|
+
.gy#{$infix}-#{$key} {
|
122
|
+
--#{$prefix}gutter-y: #{$value};
|
123
|
+
}
|
124
|
+
}
|
125
|
+
}
|
126
|
+
}
|
127
|
+
}
|
128
|
+
|
129
|
+
@mixin make-cssgrid($columns: $grid-columns, $breakpoints: $grid-breakpoints) {
|
130
|
+
@each $breakpoint in map-keys($breakpoints) {
|
131
|
+
$infix: breakpoint-infix($breakpoint, $breakpoints);
|
132
|
+
|
133
|
+
@include media-breakpoint-up($breakpoint, $breakpoints) {
|
134
|
+
@if $columns > 0 {
|
135
|
+
@for $i from 1 through $columns {
|
136
|
+
.g-col#{$infix}-#{$i} {
|
137
|
+
grid-column: auto / span $i;
|
138
|
+
}
|
139
|
+
}
|
140
|
+
|
141
|
+
// Start with `1` because `0` is an invalid value.
|
142
|
+
// Ends with `$columns - 1` because offsetting by the width of an entire row isn't possible.
|
143
|
+
@for $i from 1 through ($columns - 1) {
|
144
|
+
.g-start#{$infix}-#{$i} {
|
145
|
+
grid-column-start: $i;
|
146
|
+
}
|
147
|
+
}
|
148
|
+
}
|
149
|
+
}
|
150
|
+
}
|
151
|
+
}
|
@@ -0,0 +1,16 @@
|
|
1
|
+
// Image Mixins
|
2
|
+
// - Responsive image
|
3
|
+
// - Retina image
|
4
|
+
|
5
|
+
|
6
|
+
// Responsive image
|
7
|
+
//
|
8
|
+
// Keep images from scaling beyond the width of their parents.
|
9
|
+
|
10
|
+
@mixin img-fluid {
|
11
|
+
// Part 1: Set a maximum relative to the parent
|
12
|
+
max-width: 100%;
|
13
|
+
// Part 2: Override the height to auto, otherwise images will be stretched
|
14
|
+
// when setting a width and height attribute on the img element.
|
15
|
+
height: auto;
|
16
|
+
}
|
@@ -0,0 +1,26 @@
|
|
1
|
+
@include deprecate("`list-group-item-variant()`", "v5.3.0", "v6.0.0");
|
2
|
+
|
3
|
+
// List Groups
|
4
|
+
|
5
|
+
// scss-docs-start list-group-mixin
|
6
|
+
@mixin list-group-item-variant($state, $background, $color) {
|
7
|
+
.list-group-item-#{$state} {
|
8
|
+
color: $color;
|
9
|
+
background-color: $background;
|
10
|
+
|
11
|
+
&.list-group-item-action {
|
12
|
+
&:hover,
|
13
|
+
&:focus {
|
14
|
+
color: $color;
|
15
|
+
background-color: shade-color($background, 10%);
|
16
|
+
}
|
17
|
+
|
18
|
+
&.active {
|
19
|
+
color: $white;
|
20
|
+
background-color: $color;
|
21
|
+
border-color: $color;
|
22
|
+
}
|
23
|
+
}
|
24
|
+
}
|
25
|
+
}
|
26
|
+
// scss-docs-end list-group-mixin
|
@@ -0,0 +1,10 @@
|
|
1
|
+
// Pagination
|
2
|
+
|
3
|
+
// scss-docs-start pagination-mixin
|
4
|
+
@mixin pagination-size($padding-y, $padding-x, $font-size, $border-radius) {
|
5
|
+
--#{$prefix}pagination-padding-x: #{$padding-x};
|
6
|
+
--#{$prefix}pagination-padding-y: #{$padding-y};
|
7
|
+
@include rfs($font-size, --#{$prefix}pagination-font-size);
|
8
|
+
--#{$prefix}pagination-border-radius: #{$border-radius};
|
9
|
+
}
|
10
|
+
// scss-docs-end pagination-mixin
|
@@ -0,0 +1,17 @@
|
|
1
|
+
@mixin reset-text {
|
2
|
+
font-family: $font-family-base;
|
3
|
+
// We deliberately do NOT reset font-size or overflow-wrap / word-wrap.
|
4
|
+
font-style: normal;
|
5
|
+
font-weight: $font-weight-normal;
|
6
|
+
line-height: $line-height-base;
|
7
|
+
text-align: left; // Fallback for where `start` is not supported
|
8
|
+
text-align: start;
|
9
|
+
text-decoration: none;
|
10
|
+
text-shadow: none;
|
11
|
+
text-transform: none;
|
12
|
+
letter-spacing: normal;
|
13
|
+
word-break: normal;
|
14
|
+
white-space: normal;
|
15
|
+
word-spacing: normal;
|
16
|
+
line-break: auto;
|
17
|
+
}
|
@@ -0,0 +1,24 @@
|
|
1
|
+
// scss-docs-start table-variant
|
2
|
+
@mixin table-variant($state, $background) {
|
3
|
+
.table-#{$state} {
|
4
|
+
$color: color-contrast(opaque($body-bg, $background));
|
5
|
+
$hover-bg: mix($color, $background, percentage($table-hover-bg-factor));
|
6
|
+
$striped-bg: mix($color, $background, percentage($table-striped-bg-factor));
|
7
|
+
$active-bg: mix($color, $background, percentage($table-active-bg-factor));
|
8
|
+
$table-border-color: mix($color, $background, percentage($table-border-factor));
|
9
|
+
|
10
|
+
--#{$prefix}table-color: #{$color};
|
11
|
+
--#{$prefix}table-bg: #{$background};
|
12
|
+
--#{$prefix}table-border-color: #{$table-border-color};
|
13
|
+
--#{$prefix}table-striped-bg: #{$striped-bg};
|
14
|
+
--#{$prefix}table-striped-color: #{color-contrast($striped-bg)};
|
15
|
+
--#{$prefix}table-active-bg: #{$active-bg};
|
16
|
+
--#{$prefix}table-active-color: #{color-contrast($active-bg)};
|
17
|
+
--#{$prefix}table-hover-bg: #{$hover-bg};
|
18
|
+
--#{$prefix}table-hover-color: #{color-contrast($hover-bg)};
|
19
|
+
|
20
|
+
color: var(--#{$prefix}table-color);
|
21
|
+
border-color: var(--#{$prefix}table-border-color);
|
22
|
+
}
|
23
|
+
}
|
24
|
+
// scss-docs-end table-variant
|
@@ -0,0 +1,26 @@
|
|
1
|
+
// stylelint-disable property-disallowed-list
|
2
|
+
@mixin transition($transition...) {
|
3
|
+
@if length($transition) == 0 {
|
4
|
+
$transition: $transition-base;
|
5
|
+
}
|
6
|
+
|
7
|
+
@if length($transition) > 1 {
|
8
|
+
@each $value in $transition {
|
9
|
+
@if $value == null or $value == none {
|
10
|
+
@warn "The keyword 'none' or 'null' must be used as a single argument.";
|
11
|
+
}
|
12
|
+
}
|
13
|
+
}
|
14
|
+
|
15
|
+
@if $enable-transitions {
|
16
|
+
@if nth($transition, 1) != null {
|
17
|
+
transition: $transition;
|
18
|
+
}
|
19
|
+
|
20
|
+
@if $enable-reduced-motion and nth($transition, 1) != null and nth($transition, 1) != none {
|
21
|
+
@media (prefers-reduced-motion: reduce) {
|
22
|
+
transition: none;
|
23
|
+
}
|
24
|
+
}
|
25
|
+
}
|
26
|
+
}
|
@@ -0,0 +1,97 @@
|
|
1
|
+
// Utility generator
|
2
|
+
// Used to generate utilities & print utilities
|
3
|
+
@mixin generate-utility($utility, $infix: "", $is-rfs-media-query: false) {
|
4
|
+
$values: map-get($utility, values);
|
5
|
+
|
6
|
+
// If the values are a list or string, convert it into a map
|
7
|
+
@if type-of($values) == "string" or type-of(nth($values, 1)) != "list" {
|
8
|
+
$values: zip($values, $values);
|
9
|
+
}
|
10
|
+
|
11
|
+
@each $key, $value in $values {
|
12
|
+
$properties: map-get($utility, property);
|
13
|
+
|
14
|
+
// Multiple properties are possible, for example with vertical or horizontal margins or paddings
|
15
|
+
@if type-of($properties) == "string" {
|
16
|
+
$properties: append((), $properties);
|
17
|
+
}
|
18
|
+
|
19
|
+
// Use custom class if present
|
20
|
+
$property-class: if(map-has-key($utility, class), map-get($utility, class), nth($properties, 1));
|
21
|
+
$property-class: if($property-class == null, "", $property-class);
|
22
|
+
|
23
|
+
// Use custom CSS variable name if present, otherwise default to `class`
|
24
|
+
$css-variable-name: if(map-has-key($utility, css-variable-name), map-get($utility, css-variable-name), map-get($utility, class));
|
25
|
+
|
26
|
+
// State params to generate pseudo-classes
|
27
|
+
$state: if(map-has-key($utility, state), map-get($utility, state), ());
|
28
|
+
|
29
|
+
$infix: if($property-class == "" and str-slice($infix, 1, 1) == "-", str-slice($infix, 2), $infix);
|
30
|
+
|
31
|
+
// Don't prefix if value key is null (e.g. with shadow class)
|
32
|
+
$property-class-modifier: if($key, if($property-class == "" and $infix == "", "", "-") + $key, "");
|
33
|
+
|
34
|
+
@if map-get($utility, rfs) {
|
35
|
+
// Inside the media query
|
36
|
+
@if $is-rfs-media-query {
|
37
|
+
$val: rfs-value($value);
|
38
|
+
|
39
|
+
// Do not render anything if fluid and non fluid values are the same
|
40
|
+
$value: if($val == rfs-fluid-value($value), null, $val);
|
41
|
+
}
|
42
|
+
@else {
|
43
|
+
$value: rfs-fluid-value($value);
|
44
|
+
}
|
45
|
+
}
|
46
|
+
|
47
|
+
$is-css-var: map-get($utility, css-var);
|
48
|
+
$is-local-vars: map-get($utility, local-vars);
|
49
|
+
$is-rtl: map-get($utility, rtl);
|
50
|
+
|
51
|
+
@if $value != null {
|
52
|
+
@if $is-rtl == false {
|
53
|
+
/* rtl:begin:remove */
|
54
|
+
}
|
55
|
+
|
56
|
+
@if $is-css-var {
|
57
|
+
.#{$property-class + $infix + $property-class-modifier} {
|
58
|
+
--#{$prefix}#{$css-variable-name}: #{$value};
|
59
|
+
}
|
60
|
+
|
61
|
+
@each $pseudo in $state {
|
62
|
+
.#{$property-class + $infix + $property-class-modifier}-#{$pseudo}:#{$pseudo} {
|
63
|
+
--#{$prefix}#{$css-variable-name}: #{$value};
|
64
|
+
}
|
65
|
+
}
|
66
|
+
} @else {
|
67
|
+
.#{$property-class + $infix + $property-class-modifier} {
|
68
|
+
@each $property in $properties {
|
69
|
+
@if $is-local-vars {
|
70
|
+
@each $local-var, $variable in $is-local-vars {
|
71
|
+
--#{$prefix}#{$local-var}: #{$variable};
|
72
|
+
}
|
73
|
+
}
|
74
|
+
#{$property}: $value if($enable-important-utilities, !important, null);
|
75
|
+
}
|
76
|
+
}
|
77
|
+
|
78
|
+
@each $pseudo in $state {
|
79
|
+
.#{$property-class + $infix + $property-class-modifier}-#{$pseudo}:#{$pseudo} {
|
80
|
+
@each $property in $properties {
|
81
|
+
@if $is-local-vars {
|
82
|
+
@each $local-var, $variable in $is-local-vars {
|
83
|
+
--#{$prefix}#{$local-var}: #{$variable};
|
84
|
+
}
|
85
|
+
}
|
86
|
+
#{$property}: $value if($enable-important-utilities, !important, null);
|
87
|
+
}
|
88
|
+
}
|
89
|
+
}
|
90
|
+
}
|
91
|
+
|
92
|
+
@if $is-rtl == false {
|
93
|
+
/* rtl:end:remove */
|
94
|
+
}
|
95
|
+
}
|
96
|
+
}
|
97
|
+
}
|
@@ -0,0 +1,33 @@
|
|
1
|
+
// stylelint-disable declaration-no-important
|
2
|
+
|
3
|
+
// Hide content visually while keeping it accessible to assistive technologies
|
4
|
+
//
|
5
|
+
// See: https://www.a11yproject.com/posts/2013-01-11-how-to-hide-content/
|
6
|
+
// See: https://kittygiraudel.com/2016/10/13/css-hide-and-seek/
|
7
|
+
|
8
|
+
@mixin visually-hidden() {
|
9
|
+
width: 1px !important;
|
10
|
+
height: 1px !important;
|
11
|
+
padding: 0 !important;
|
12
|
+
margin: -1px !important; // Fix for https://github.com/twbs/bootstrap/issues/25686
|
13
|
+
overflow: hidden !important;
|
14
|
+
clip: rect(0, 0, 0, 0) !important;
|
15
|
+
white-space: nowrap !important;
|
16
|
+
border: 0 !important;
|
17
|
+
|
18
|
+
// Fix for positioned table caption that could become anonymous cells
|
19
|
+
&:not(caption) {
|
20
|
+
position: absolute !important;
|
21
|
+
}
|
22
|
+
}
|
23
|
+
|
24
|
+
// Use to only display content when it's focused, or one of its child elements is focused
|
25
|
+
// (i.e. when focus is within the element/container that the class was applied to)
|
26
|
+
//
|
27
|
+
// Useful for "Skip to main content" links; see https://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
|
28
|
+
|
29
|
+
@mixin visually-hidden-focusable() {
|
30
|
+
&:not(:focus):not(:focus-within) {
|
31
|
+
@include visually-hidden();
|
32
|
+
}
|
33
|
+
}
|
@@ -0,0 +1,16 @@
|
|
1
|
+
/* eslint-disable camelcase */
|
2
|
+
|
3
|
+
'use strict'
|
4
|
+
|
5
|
+
const path = require('node:path')
|
6
|
+
|
7
|
+
module.exports = {
|
8
|
+
spec_dir: 'scss',
|
9
|
+
// Make Jasmine look for `.test.scss` files
|
10
|
+
spec_files: ['**/*.{test,spec}.scss'],
|
11
|
+
// Compile them into JS scripts running `sass-true`
|
12
|
+
requires: [path.join(__dirname, 'sass-true/register')],
|
13
|
+
// Ensure we use `require` so that the require.extensions works
|
14
|
+
// as `import` completely bypasses it
|
15
|
+
jsLoader: 'require'
|
16
|
+
}
|
@@ -0,0 +1,7 @@
|
|
1
|
+
// TODO: this file can be removed safely in v6 when `@import "variables-dark"` will be removed at the end of _variables.scss
|
2
|
+
|
3
|
+
@import "../../functions";
|
4
|
+
@import "../../variables";
|
5
|
+
// Voluntarily not importing _variables-dark.scss
|
6
|
+
@import "../../maps";
|
7
|
+
@import "../../mixins";
|
@@ -0,0 +1,69 @@
|
|
1
|
+
// stylelint-disable selector-attribute-quotes
|
2
|
+
|
3
|
+
@import "../../functions";
|
4
|
+
@import "../../variables";
|
5
|
+
@import "../../variables-dark";
|
6
|
+
@import "../../maps";
|
7
|
+
@import "../../mixins";
|
8
|
+
|
9
|
+
@include describe("global $color-mode-type: data") {
|
10
|
+
@include it("generates data attribute selectors for dark mode") {
|
11
|
+
@include assert() {
|
12
|
+
@include output() {
|
13
|
+
@include color-mode(dark) {
|
14
|
+
.element {
|
15
|
+
color: var(--bs-primary-text-emphasis);
|
16
|
+
background-color: var(--bs-primary-bg-subtle);
|
17
|
+
}
|
18
|
+
}
|
19
|
+
@include color-mode(dark, true) {
|
20
|
+
--custom-color: #{mix($indigo, $blue, 50%)};
|
21
|
+
}
|
22
|
+
}
|
23
|
+
@include expect() {
|
24
|
+
[data-bs-theme=dark] .element {
|
25
|
+
color: var(--bs-primary-text-emphasis);
|
26
|
+
background-color: var(--bs-primary-bg-subtle);
|
27
|
+
}
|
28
|
+
[data-bs-theme=dark] {
|
29
|
+
--custom-color: #3a3ff8;
|
30
|
+
}
|
31
|
+
}
|
32
|
+
}
|
33
|
+
}
|
34
|
+
}
|
35
|
+
|
36
|
+
@include describe("global $color-mode-type: media-query") {
|
37
|
+
@include it("generates media queries for dark mode") {
|
38
|
+
$color-mode-type: media-query !global;
|
39
|
+
|
40
|
+
@include assert() {
|
41
|
+
@include output() {
|
42
|
+
@include color-mode(dark) {
|
43
|
+
.element {
|
44
|
+
color: var(--bs-primary-text-emphasis);
|
45
|
+
background-color: var(--bs-primary-bg-subtle);
|
46
|
+
}
|
47
|
+
}
|
48
|
+
@include color-mode(dark, true) {
|
49
|
+
--custom-color: #{mix($indigo, $blue, 50%)};
|
50
|
+
}
|
51
|
+
}
|
52
|
+
@include expect() {
|
53
|
+
@media (prefers-color-scheme: dark) {
|
54
|
+
.element {
|
55
|
+
color: var(--bs-primary-text-emphasis);
|
56
|
+
background-color: var(--bs-primary-bg-subtle);
|
57
|
+
}
|
58
|
+
}
|
59
|
+
@media (prefers-color-scheme: dark) {
|
60
|
+
:root {
|
61
|
+
--custom-color: #3a3ff8;
|
62
|
+
}
|
63
|
+
}
|
64
|
+
}
|
65
|
+
}
|
66
|
+
|
67
|
+
$color-mode-type: data !global;
|
68
|
+
}
|
69
|
+
}
|