jekyll-theme-centos 2.45.0 → 2.46.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 +4 -4
- data/_sass/base/_customization.scss +3 -6
- data/_sass/base/_maps.scss +9 -0
- data/_sass/base/_variables.scss +16 -7
- data/_sass/bootstrap/_buttons.scss +1 -1
- data/_sass/bootstrap/_reboot.scss +1 -0
- data/_sass/bootstrap/_root.scss +3 -0
- data/_sass/bootstrap/_utilities.scss +3 -3
- data/_sass/bootstrap/_variables-dark.scss +2 -0
- data/_sass/bootstrap/_variables.scss +15 -13
- data/_sass/bootstrap/forms/_form-check.scss +1 -0
- data/_sass/bootstrap/mixins/_banner.scss +1 -1
- data/_sass/bootstrap/mixins/_grid.scss +1 -1
- data/assets/css/base/stylesheet.min.scss +14 -0
- data/assets/icons/android-chrome-192.png +0 -0
- data/assets/icons/android-chrome-512.png +0 -0
- data/assets/icons/apple-touch-icon.png +0 -0
- data/assets/icons/favicon-16.png +0 -0
- data/assets/icons/favicon-32.png +0 -0
- data/assets/js/bootstrap.bundle.js +5 -5
- data/assets/js/bootstrap.bundle.js.map +1 -1
- data/assets/js/bootstrap.bundle.min.js +2 -2
- data/assets/js/bootstrap.bundle.min.js.map +1 -1
- data/assets/js/bootstrap.esm.js +5 -5
- data/assets/js/bootstrap.esm.js.map +1 -1
- data/assets/js/bootstrap.esm.min.js +2 -2
- data/assets/js/bootstrap.esm.min.js.map +1 -1
- data/assets/js/bootstrap.js +5 -5
- data/assets/js/bootstrap.js.map +1 -1
- data/assets/js/bootstrap.min.js +2 -2
- data/assets/js/bootstrap.min.js.map +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ec628813860970e6d93569bcb51c991b79547a042cb1342ddd6c1f740b969d75
|
4
|
+
data.tar.gz: 610e0273e5bbca190c09bb3d0378e25b089eeab146722a199ebc848ccfeeb55d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 323ad3aa046a4cf772dd7283ca0930d75316ecd9084ec1203b6f5ee346b65871714b570b5440da8d81c6bf85a8eb0bec5286f07a1fa6f2de632191bd64e04ff8
|
7
|
+
data.tar.gz: c54bfc9be4b0854a5e665b1fa22693c8b4a0018eb704ba68dbd7c01e074f6389bf5bac00d4c378396f53567ff5f2303b4929d0ddc2c41db235962533168f242f
|
@@ -1,11 +1,8 @@
|
|
1
1
|
// --------------------------------------------------------------------------------
|
2
2
|
// Adjustments
|
3
3
|
// --------------------------------------------------------------------------------
|
4
|
-
|
5
|
-
|
6
|
-
footer {
|
7
|
-
position: relative;
|
8
|
-
top: 59px;
|
4
|
+
body {
|
5
|
+
padding-top: 59px;
|
9
6
|
}
|
10
7
|
|
11
8
|
// --------------------------------------------------------------------------------
|
@@ -161,7 +158,7 @@ main {
|
|
161
158
|
// Tables
|
162
159
|
// --------------------------------------------------------------------------------
|
163
160
|
div.dataTables_wrapper {
|
164
|
-
margin-bottom:
|
161
|
+
margin-bottom: $spacer;
|
165
162
|
div.dataTables_info {
|
166
163
|
padding-top: 0;
|
167
164
|
}
|
@@ -0,0 +1,9 @@
|
|
1
|
+
// --------------------------------------------------------------------------------
|
2
|
+
// Spacing customization
|
3
|
+
// --------------------------------------------------------------------------------
|
4
|
+
$spacers: map-merge(
|
5
|
+
$spacers,
|
6
|
+
(
|
7
|
+
"6": $spacer * 5,
|
8
|
+
)
|
9
|
+
);
|
data/_sass/base/_variables.scss
CHANGED
@@ -2,14 +2,14 @@
|
|
2
2
|
// Bootstrap customization
|
3
3
|
//
|
4
4
|
|
5
|
-
//
|
5
|
+
// --------------------------------------------------------------------------------
|
6
|
+
// Color
|
7
|
+
// --------------------------------------------------------------------------------
|
6
8
|
$centos-purple: #a14f8c;
|
7
9
|
$centos-orange: #efa724;
|
8
10
|
$centos-blue: #262577;
|
9
11
|
$centos-green: #9ccd2a;
|
10
|
-
// scss-docs-end color-variables
|
11
12
|
|
12
|
-
// scss-docs-start theme-color-variables
|
13
13
|
$primary: $centos-purple;
|
14
14
|
$secondary: $centos-orange;
|
15
15
|
$dark: #200735;
|
@@ -17,24 +17,30 @@ $success: #198754;
|
|
17
17
|
$info: #0dcaf0;
|
18
18
|
$warning: #ffc107;
|
19
19
|
$danger: #dc3545;
|
20
|
-
// scss-docs-end theme-color-variables
|
21
20
|
|
22
|
-
// scss-docs-start theme-text-variables
|
23
21
|
$primary-text-emphasis: shade-color($primary, 60%);
|
24
22
|
$secondary-text-emphasis: shade-color($secondary, 60%);
|
25
23
|
$success-text-emphasis: shade-color($success, 60%);
|
26
24
|
$info-text-emphasis: shade-color($info, 60%);
|
27
25
|
$warning-text-emphasis: shade-color($warning, 60%);
|
28
26
|
$danger-text-emphasis: shade-color($danger, 60%);
|
29
|
-
|
27
|
+
$dropdown-dark-bg: $dark;
|
30
28
|
|
29
|
+
// --------------------------------------------------------------------------------
|
30
|
+
// Typography
|
31
|
+
// --------------------------------------------------------------------------------
|
31
32
|
$font-family-sans-serif: "Montserrat", sans-serif;
|
32
33
|
$font-family-monospace: "Source Code Pro", monospace;
|
33
34
|
$headings-font-weight: 700;
|
34
35
|
|
35
|
-
|
36
|
+
// --------------------------------------------------------------------------------
|
37
|
+
// Breadcrumb
|
38
|
+
// --------------------------------------------------------------------------------
|
36
39
|
$breadcrumb-divider: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='8' height='8'><path d='M2.5 0L1 1.5 3.5 4 1 6.5 2.5 8l4-4-4-4z'/></svg>");
|
37
40
|
|
41
|
+
// --------------------------------------------------------------------------------
|
42
|
+
// Alerts
|
43
|
+
// --------------------------------------------------------------------------------
|
38
44
|
$alert-primary-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1.8em" viewBox="0 0 42.333 42.333"><g transform="rotate(45 -180.13 -610.203) scale(1.0529)"><circle cx="388.123" cy="-290.716" r="20.103" style="fill:rgba(#{to-rgb($primary-text-emphasis)},1);stroke:none;stroke-width:1.32292;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#{to-rgb($primary-text-emphasis)}"/><path d="M377.366-301.473v6.301l-4.456 4.456 4.456 4.456v6.302h6.302l4.456 4.456 4.456-4.456h6.301v-6.302l4.456-4.456-4.456-4.456v-6.301h-6.301l-4.456-4.456-4.456 4.456zm2.271 4.183 1.913-1.912 3.227 3.227v1.913h-1.912zm-2.163 5.222h4.565l1.352 1.352-1.352 1.353h-4.564zm9.297-9.297h2.705v4.564l-1.352 1.353-1.353-1.353zm.091 7.607 1.261 1.282 1.26-1.283-.015 1.798 1.798-.016-1.282 1.26 1.283 1.261-1.798-.015.016 1.798-1.26-1.282-1.261 1.283.015-1.799-1.798.016 1.282-1.26-1.283-1.26 1.799.015zm-7.225 9.617 3.228-3.228h1.912v1.913l-3.227 3.227zm11.833-11.834 3.228-3.227 1.913 1.912-3.228 3.228h-1.912zm-4.698 11.345 1.352-1.352 1.352 1.352v4.564h-2.704zm6.085-6.085 1.352-1.353h4.564v2.705h-4.564zm-1.387 3.346h1.913l3.228 3.228-1.913 1.912-3.228-3.227z" style="fill:%23fff;fill-opacity:1;stroke-width:9.12808;stroke-linecap:round;paint-order:fill markers stroke;stop-color:%23000"/></g></svg>');
|
39
45
|
$alert-secondary-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1.8em" viewBox="0 0 42.333 42.333"><g transform="rotate(45 -180.13 -610.203) scale(1.0529)"><circle cx="388.123" cy="-290.716" r="20.103" style="fill:rgba(#{to-rgb($secondary-text-emphasis)},1);stroke:none;stroke-width:1.32292;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#{to-rgb($secondary-text-emphasis)}"/><path d="M377.366-301.473v6.301l-4.456 4.456 4.456 4.456v6.302h6.302l4.456 4.456 4.456-4.456h6.301v-6.302l4.456-4.456-4.456-4.456v-6.301h-6.301l-4.456-4.456-4.456 4.456zm2.271 4.183 1.913-1.912 3.227 3.227v1.913h-1.912zm-2.163 5.222h4.565l1.352 1.352-1.352 1.353h-4.564zm9.297-9.297h2.705v4.564l-1.352 1.353-1.353-1.353zm.091 7.607 1.261 1.282 1.26-1.283-.015 1.798 1.798-.016-1.282 1.26 1.283 1.261-1.798-.015.016 1.798-1.26-1.282-1.261 1.283.015-1.799-1.798.016 1.282-1.26-1.283-1.26 1.799.015zm-7.225 9.617 3.228-3.228h1.912v1.913l-3.227 3.227zm11.833-11.834 3.228-3.227 1.913 1.912-3.228 3.228h-1.912zm-4.698 11.345 1.352-1.352 1.352 1.352v4.564h-2.704zm6.085-6.085 1.352-1.353h4.564v2.705h-4.564zm-1.387 3.346h1.913l3.228 3.228-1.913 1.912-3.228-3.227z" style="fill:%23fff;fill-opacity:1;stroke-width:9.12808;stroke-linecap:round;paint-order:fill markers stroke;stop-color:%23000"/></g></svg>');
|
40
46
|
$alert-warning-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1.8em" fill="rgba(#{to-rgb($warning-text-emphasis)},1)" viewBox="0 0 512 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M256 32c14.2 0 27.3 7.5 34.5 19.8l216 368c7.3 12.4 7.3 27.7 .2 40.1S486.3 480 472 480H40c-14.3 0-27.6-7.7-34.7-20.1s-7-27.8 .2-40.1l216-368C228.7 39.5 241.8 32 256 32zm0 128c-13.3 0-24 10.7-24 24V296c0 13.3 10.7 24 24 24s24-10.7 24-24V184c0-13.3-10.7-24-24-24zm32 224a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z"/></svg>');
|
@@ -42,4 +48,7 @@ $alert-info-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg
|
|
42
48
|
$alert-danger-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1.8em" fill="rgba(#{to-rgb($danger-text-emphasis)},1)" viewBox="0 0 512 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm0-384c13.3 0 24 10.7 24 24V264c0 13.3-10.7 24-24 24s-24-10.7-24-24V152c0-13.3 10.7-24 24-24zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z"/></svg>');
|
43
49
|
$alert-success-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1.8em" fill="rgba(#{to-rgb($success-text-emphasis)},1)" viewBox="0 0 512 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"/></svg>');
|
44
50
|
|
51
|
+
// --------------------------------------------------------------------------------
|
52
|
+
// Negative margins
|
53
|
+
// --------------------------------------------------------------------------------
|
45
54
|
$enable-negative-margins: true;
|
@@ -170,7 +170,7 @@
|
|
170
170
|
--#{$prefix}btn-disabled-color: #{$btn-link-disabled-color};
|
171
171
|
--#{$prefix}btn-disabled-border-color: transparent;
|
172
172
|
--#{$prefix}btn-box-shadow: 0 0 0 #000; // Can't use `none` as keyword negates all values when used with multiple shadows
|
173
|
-
--#{$prefix}btn-focus-shadow-rgb: #{
|
173
|
+
--#{$prefix}btn-focus-shadow-rgb: #{$btn-link-focus-shadow-rgb};
|
174
174
|
|
175
175
|
text-decoration: $link-decoration;
|
176
176
|
@if $enable-gradients {
|
data/_sass/bootstrap/_root.scss
CHANGED
@@ -91,6 +91,7 @@
|
|
91
91
|
}
|
92
92
|
|
93
93
|
--#{$prefix}code-color: #{$code-color};
|
94
|
+
--#{$prefix}highlight-color: #{$mark-color};
|
94
95
|
--#{$prefix}highlight-bg: #{$mark-bg};
|
95
96
|
|
96
97
|
// scss-docs-start root-border-var
|
@@ -171,6 +172,8 @@
|
|
171
172
|
--#{$prefix}link-hover-color-rgb: #{to-rgb($link-hover-color-dark)};
|
172
173
|
|
173
174
|
--#{$prefix}code-color: #{$code-color-dark};
|
175
|
+
--#{$prefix}highlight-color: #{$mark-color-dark};
|
176
|
+
--#{$prefix}highlight-bg: #{$mark-bg-dark};
|
174
177
|
|
175
178
|
--#{$prefix}border-color: #{$border-color-dark};
|
176
179
|
--#{$prefix}border-color-translucent: #{$border-color-translucent-dark};
|
@@ -77,9 +77,9 @@ $utilities: map-merge(
|
|
77
77
|
property: box-shadow,
|
78
78
|
class: shadow,
|
79
79
|
values: (
|
80
|
-
null: $box-shadow,
|
81
|
-
sm: $box-shadow-sm,
|
82
|
-
lg: $box-shadow-lg,
|
80
|
+
null: var(--#{$prefix}box-shadow),
|
81
|
+
sm: var(--#{$prefix}box-shadow-sm),
|
82
|
+
lg: var(--#{$prefix}box-shadow-lg),
|
83
83
|
none: none,
|
84
84
|
)
|
85
85
|
),
|
@@ -53,6 +53,8 @@ $headings-color-dark: inherit !default;
|
|
53
53
|
$link-color-dark: tint-color($primary, 40%) !default;
|
54
54
|
$link-hover-color-dark: shift-color($link-color-dark, -$link-shade-percentage) !default;
|
55
55
|
$code-color-dark: tint-color($code-color, 40%) !default;
|
56
|
+
$mark-color-dark: $body-color-dark !default;
|
57
|
+
$mark-bg-dark: $yellow-800 !default;
|
56
58
|
|
57
59
|
|
58
60
|
//
|
@@ -718,6 +718,7 @@ $dt-font-weight: $font-weight-bold !default;
|
|
718
718
|
$list-inline-padding: .5rem !default;
|
719
719
|
|
720
720
|
$mark-padding: .1875em !default;
|
721
|
+
$mark-color: $body-color !default;
|
721
722
|
$mark-bg: $yellow-100 !default;
|
722
723
|
// scss-docs-end type-variables
|
723
724
|
|
@@ -734,7 +735,7 @@ $table-cell-padding-x-sm: .25rem !default;
|
|
734
735
|
|
735
736
|
$table-cell-vertical-align: top !default;
|
736
737
|
|
737
|
-
$table-color: var(--#{$prefix}
|
738
|
+
$table-color: var(--#{$prefix}emphasis-color) !default;
|
738
739
|
$table-bg: var(--#{$prefix}body-bg) !default;
|
739
740
|
$table-accent-bg: transparent !default;
|
740
741
|
|
@@ -742,17 +743,17 @@ $table-th-font-weight: null !default;
|
|
742
743
|
|
743
744
|
$table-striped-color: $table-color !default;
|
744
745
|
$table-striped-bg-factor: .05 !default;
|
745
|
-
$table-striped-bg: rgba($
|
746
|
+
$table-striped-bg: rgba(var(--#{$prefix}emphasis-color-rgb), $table-striped-bg-factor) !default;
|
746
747
|
|
747
748
|
$table-active-color: $table-color !default;
|
748
749
|
$table-active-bg-factor: .1 !default;
|
749
|
-
$table-active-bg: rgba($
|
750
|
+
$table-active-bg: rgba(var(--#{$prefix}emphasis-color-rgb), $table-active-bg-factor) !default;
|
750
751
|
|
751
752
|
$table-hover-color: $table-color !default;
|
752
753
|
$table-hover-bg-factor: .075 !default;
|
753
|
-
$table-hover-bg: rgba($
|
754
|
+
$table-hover-bg: rgba(var(--#{$prefix}emphasis-color-rgb), $table-hover-bg-factor) !default;
|
754
755
|
|
755
|
-
$table-border-factor: .
|
756
|
+
$table-border-factor: .2 !default;
|
756
757
|
$table-border-width: var(--#{$prefix}border-width) !default;
|
757
758
|
$table-border-color: var(--#{$prefix}border-color) !default;
|
758
759
|
|
@@ -842,6 +843,7 @@ $btn-active-box-shadow: inset 0 3px 5px rgba($black, .125) !default;
|
|
842
843
|
$btn-link-color: var(--#{$prefix}link-color) !default;
|
843
844
|
$btn-link-hover-color: var(--#{$prefix}link-hover-color) !default;
|
844
845
|
$btn-link-disabled-color: $gray-600 !default;
|
846
|
+
$btn-link-focus-shadow-rgb: to-rgb(mix(color-contrast($link-color), $link-color, 15%)) !default;
|
845
847
|
|
846
848
|
// Allows for customizing button radius independently from global border radius
|
847
849
|
$btn-border-radius: var(--#{$prefix}border-radius) !default;
|
@@ -903,7 +905,7 @@ $input-disabled-border-color: null !default;
|
|
903
905
|
$input-color: var(--#{$prefix}body-color) !default;
|
904
906
|
$input-border-color: var(--#{$prefix}border-color) !default;
|
905
907
|
$input-border-width: $input-btn-border-width !default;
|
906
|
-
$input-box-shadow: $box-shadow-inset !default;
|
908
|
+
$input-box-shadow: var(--#{$prefix}box-shadow-inset) !default;
|
907
909
|
|
908
910
|
$input-border-radius: var(--#{$prefix}border-radius) !default;
|
909
911
|
$input-border-radius-sm: var(--#{$prefix}border-radius-sm) !default;
|
@@ -1019,7 +1021,7 @@ $form-select-feedback-icon-size: $input-height-inner-half $input-height-i
|
|
1019
1021
|
$form-select-border-width: $input-border-width !default;
|
1020
1022
|
$form-select-border-color: $input-border-color !default;
|
1021
1023
|
$form-select-border-radius: $input-border-radius !default;
|
1022
|
-
$form-select-box-shadow: $box-shadow-inset !default;
|
1024
|
+
$form-select-box-shadow: var(--#{$prefix}box-shadow-inset) !default;
|
1023
1025
|
|
1024
1026
|
$form-select-focus-border-color: $input-focus-border-color !default;
|
1025
1027
|
$form-select-focus-width: $input-focus-width !default;
|
@@ -1042,9 +1044,9 @@ $form-select-transition: $input-transition !default;
|
|
1042
1044
|
$form-range-track-width: 100% !default;
|
1043
1045
|
$form-range-track-height: .5rem !default;
|
1044
1046
|
$form-range-track-cursor: pointer !default;
|
1045
|
-
$form-range-track-bg: var(--#{$prefix}
|
1047
|
+
$form-range-track-bg: var(--#{$prefix}secondary-bg) !default;
|
1046
1048
|
$form-range-track-border-radius: 1rem !default;
|
1047
|
-
$form-range-track-box-shadow: $box-shadow-inset !default;
|
1049
|
+
$form-range-track-box-shadow: var(--#{$prefix}box-shadow-inset) !default;
|
1048
1050
|
|
1049
1051
|
$form-range-thumb-width: 1rem !default;
|
1050
1052
|
$form-range-thumb-height: $form-range-thumb-width !default;
|
@@ -1246,7 +1248,7 @@ $dropdown-border-width: var(--#{$prefix}border-width) !default;
|
|
1246
1248
|
$dropdown-inner-border-radius: calc(#{$dropdown-border-radius} - #{$dropdown-border-width}) !default; // stylelint-disable-line function-disallowed-list
|
1247
1249
|
$dropdown-divider-bg: $dropdown-border-color !default;
|
1248
1250
|
$dropdown-divider-margin-y: $spacer * .5 !default;
|
1249
|
-
$dropdown-box-shadow: $box-shadow !default;
|
1251
|
+
$dropdown-box-shadow: var(--#{$prefix}box-shadow) !default;
|
1250
1252
|
|
1251
1253
|
$dropdown-link-color: var(--#{$prefix}body-color) !default;
|
1252
1254
|
$dropdown-link-hover-color: $dropdown-link-color !default;
|
@@ -1435,7 +1437,7 @@ $popover-border-width: var(--#{$prefix}border-width) !default;
|
|
1435
1437
|
$popover-border-color: var(--#{$prefix}border-color-translucent) !default;
|
1436
1438
|
$popover-border-radius: var(--#{$prefix}border-radius-lg) !default;
|
1437
1439
|
$popover-inner-border-radius: calc(#{$popover-border-radius} - #{$popover-border-width}) !default; // stylelint-disable-line function-disallowed-list
|
1438
|
-
$popover-box-shadow: $box-shadow !default;
|
1440
|
+
$popover-box-shadow: var(--#{$prefix}box-shadow) !default;
|
1439
1441
|
|
1440
1442
|
$popover-header-font-size: $font-size-base !default;
|
1441
1443
|
$popover-header-bg: var(--#{$prefix}secondary-bg) !default;
|
@@ -1509,8 +1511,8 @@ $modal-content-border-color: var(--#{$prefix}border-color-translucent) !d
|
|
1509
1511
|
$modal-content-border-width: var(--#{$prefix}border-width) !default;
|
1510
1512
|
$modal-content-border-radius: var(--#{$prefix}border-radius-lg) !default;
|
1511
1513
|
$modal-content-inner-border-radius: subtract($modal-content-border-radius, $modal-content-border-width) !default;
|
1512
|
-
$modal-content-box-shadow-xs: $box-shadow-sm !default;
|
1513
|
-
$modal-content-box-shadow-sm-up: $box-shadow !default;
|
1514
|
+
$modal-content-box-shadow-xs: var(--#{$prefix}box-shadow-sm) !default;
|
1515
|
+
$modal-content-box-shadow-sm-up: var(--#{$prefix}box-shadow) !default;
|
1514
1516
|
|
1515
1517
|
$modal-backdrop-bg: $black !default;
|
1516
1518
|
$modal-backdrop-opacity: .5 !default;
|
@@ -29,6 +29,7 @@
|
|
29
29
|
.form-check-input {
|
30
30
|
--#{$prefix}form-check-bg: #{$form-check-input-bg};
|
31
31
|
|
32
|
+
flex-shrink: 0;
|
32
33
|
width: $form-check-input-width;
|
33
34
|
height: $form-check-input-width;
|
34
35
|
margin-top: ($line-height-base - $form-check-input-width) * .5; // line-height minus check height
|
@@ -1,6 +1,6 @@
|
|
1
1
|
@mixin bsBanner($file) {
|
2
2
|
/*!
|
3
|
-
* Bootstrap #{$file} v5.3.
|
3
|
+
* Bootstrap #{$file} v5.3.2 (https://getbootstrap.com/)
|
4
4
|
* Copyright 2011-2023 The Bootstrap Authors
|
5
5
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
6
6
|
*/
|
@@ -1,7 +1,21 @@
|
|
1
1
|
---
|
2
2
|
---
|
3
3
|
|
4
|
+
// 1. Include functions first (so you can manipulate colors, SVGs, calc, etc)
|
4
5
|
@import "bootstrap/functions";
|
6
|
+
|
7
|
+
// 2. Include any default variable overrides here
|
5
8
|
@import "base/variables";
|
9
|
+
|
10
|
+
// 3. Include remainder of required Bootstrap stylesheets (including any separate color mode stylesheets)
|
11
|
+
@import "bootstrap/variables";
|
12
|
+
@import "bootstrap/variables-dark";
|
13
|
+
|
14
|
+
// 4. Include any default map overrides here
|
15
|
+
@import "base/maps";
|
16
|
+
|
17
|
+
// 5. Include remainder of required parts
|
6
18
|
@import "bootstrap/bootstrap";
|
19
|
+
|
20
|
+
// 6. Add additional custom code here
|
7
21
|
@import "base/customization";
|
Binary file
|
Binary file
|
Binary file
|
data/assets/icons/favicon-16.png
CHANGED
Binary file
|
data/assets/icons/favicon-32.png
CHANGED
Binary file
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap v5.3.
|
2
|
+
* Bootstrap v5.3.2 (https://getbootstrap.com/)
|
3
3
|
* Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
|
4
4
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
5
5
|
*/
|
@@ -648,7 +648,7 @@
|
|
648
648
|
* Constants
|
649
649
|
*/
|
650
650
|
|
651
|
-
const VERSION = '5.3.
|
651
|
+
const VERSION = '5.3.2';
|
652
652
|
|
653
653
|
/**
|
654
654
|
* Class definition
|
@@ -729,9 +729,9 @@
|
|
729
729
|
if (hrefAttribute.includes('#') && !hrefAttribute.startsWith('#')) {
|
730
730
|
hrefAttribute = `#${hrefAttribute.split('#')[1]}`;
|
731
731
|
}
|
732
|
-
selector = hrefAttribute && hrefAttribute !== '#' ? hrefAttribute.trim() : null;
|
732
|
+
selector = hrefAttribute && hrefAttribute !== '#' ? parseSelector(hrefAttribute.trim()) : null;
|
733
733
|
}
|
734
|
-
return
|
734
|
+
return selector;
|
735
735
|
};
|
736
736
|
const SelectorEngine = {
|
737
737
|
find(selector, element = document.documentElement) {
|
@@ -5866,7 +5866,7 @@
|
|
5866
5866
|
const CLASS_DROPDOWN = 'dropdown';
|
5867
5867
|
const SELECTOR_DROPDOWN_TOGGLE = '.dropdown-toggle';
|
5868
5868
|
const SELECTOR_DROPDOWN_MENU = '.dropdown-menu';
|
5869
|
-
const NOT_SELECTOR_DROPDOWN_TOGGLE =
|
5869
|
+
const NOT_SELECTOR_DROPDOWN_TOGGLE = `:not(${SELECTOR_DROPDOWN_TOGGLE})`;
|
5870
5870
|
const SELECTOR_TAB_PANEL = '.list-group, .nav, [role="tablist"]';
|
5871
5871
|
const SELECTOR_OUTER = '.nav-item, .list-group-item';
|
5872
5872
|
const SELECTOR_INNER = `.nav-link${NOT_SELECTOR_DROPDOWN_TOGGLE}, .list-group-item${NOT_SELECTOR_DROPDOWN_TOGGLE}, [role="tab"]${NOT_SELECTOR_DROPDOWN_TOGGLE}`;
|