paraqeet 2.0.2 → 2.0.4
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/LICENSE +1 -1
- data/_sass/_highlight.scss +85 -64
- data/_sass/bootstrap/_accordion.scss +4 -9
- data/_sass/bootstrap/_button-group.scss +8 -3
- data/_sass/bootstrap/_card.scss +1 -2
- data/_sass/bootstrap/_carousel.scss +15 -25
- data/_sass/bootstrap/_close.scss +9 -6
- data/_sass/bootstrap/_functions.scss +1 -1
- data/_sass/bootstrap/_list-group.scss +27 -25
- data/_sass/bootstrap/_modal.scss +6 -2
- data/_sass/bootstrap/_nav.scss +1 -1
- data/_sass/bootstrap/_navbar.scss +1 -1
- data/_sass/bootstrap/_offcanvas.scss +5 -1
- data/_sass/bootstrap/_pagination.scss +1 -1
- data/_sass/bootstrap/_progress.scss +1 -1
- data/_sass/bootstrap/_reboot.scss +1 -1
- data/_sass/bootstrap/_type.scss +1 -1
- data/_sass/bootstrap/_variables-dark.scss +17 -2
- data/_sass/bootstrap/_variables.scss +16 -14
- data/_sass/bootstrap/forms/_floating-labels.scss +18 -16
- data/_sass/bootstrap/forms/_input-group.scss +1 -1
- data/_sass/bootstrap/mixins/_banner.scss +2 -2
- data/_sass/bootstrap/mixins/_grid.scss +1 -1
- data/_sass/bootstrap/mixins/_visually-hidden.scss +1 -1
- data/assets/js/bootstrap.bundle.js +12 -15
- data/assets/js/bootstrap.bundle.js.map +1 -1
- data/assets/js/bootstrap.bundle.min.js +3 -3
- data/assets/js/bootstrap.bundle.min.js.map +1 -1
- data/assets/js/bootstrap.esm.js +12 -13
- data/assets/js/bootstrap.esm.js.map +1 -1
- data/assets/js/bootstrap.esm.min.js +3 -3
- data/assets/js/bootstrap.esm.min.js.map +1 -1
- data/assets/js/bootstrap.js +12 -13
- data/assets/js/bootstrap.js.map +1 -1
- data/assets/js/bootstrap.min.js +3 -3
- data/assets/js/bootstrap.min.js.map +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '0394544ac0cc07e4e6bf453ffd724fff0e2bf6ea87078c4cfb56b6ef481e2043'
|
4
|
+
data.tar.gz: 43977f3d0f8cb11fadd831c83c98e1a1a1d5c2ccf0d6853d7bdc47cd45f8ba70
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 025e72e4aca102c737df837ebbf53bb722b2b95fc97b82f62343a3b7fa4a7efce6691e62d9a0c79d9bad5afe2aa04012983e88938d262e876339fc13be7cb3a8
|
7
|
+
data.tar.gz: 46d271ee78862c06c3917857095f62d2204e97f0ced7527bbbfd598e90864655275cb9b2e9e99d5f08b5d82dda8e544361d4dd042420133bd07bf0b61245861f
|
data/LICENSE
CHANGED
data/_sass/_highlight.scss
CHANGED
@@ -1,20 +1,41 @@
|
|
1
|
+
:root,
|
2
|
+
[data-bs-theme="light"] {
|
3
|
+
--base00: #{$light};
|
4
|
+
--base01: #{$pre-color};
|
5
|
+
--base02: #{$text-muted};
|
6
|
+
--base03: #{$gray-400};
|
7
|
+
--base04: #{$blue-400};
|
8
|
+
--base05: #{$indigo-400};
|
9
|
+
--base06: #{$purple-400};
|
10
|
+
--base07: #{$pink-400};
|
11
|
+
--base08: #{$red-400};
|
12
|
+
--base09: #{$orange-400};
|
13
|
+
--base10: #{$yellow-100};
|
14
|
+
--base11: #{$green-400};
|
15
|
+
}
|
16
|
+
|
17
|
+
@include color-mode(dark, true) {
|
18
|
+
--base00: #{$black};
|
19
|
+
}
|
20
|
+
|
1
21
|
.highlight {
|
2
22
|
|
3
|
-
|
23
|
+
& {
|
24
|
+
width: 100%;
|
25
|
+
margin: 0;
|
26
|
+
padding: 0;
|
27
|
+
background-color: var(--base00);
|
28
|
+
border-radius: $border-radius;
|
29
|
+
}
|
4
30
|
|
5
31
|
* {
|
6
32
|
font-size: $font-size-sm;
|
7
33
|
}
|
8
34
|
|
9
|
-
margin: 0;
|
10
|
-
padding: 0;
|
11
|
-
background-color: $light;
|
12
|
-
border-radius: $border-radius;
|
13
|
-
|
14
35
|
pre {
|
15
36
|
margin: 0;
|
16
37
|
padding: $spacer;
|
17
|
-
color:
|
38
|
+
color: var(--base01);
|
18
39
|
}
|
19
40
|
|
20
41
|
td {
|
@@ -28,33 +49,7 @@
|
|
28
49
|
.lineno {
|
29
50
|
padding: 0 $spacer 0 0;
|
30
51
|
text-align: right;
|
31
|
-
color:
|
32
|
-
}
|
33
|
-
|
34
|
-
.hll {
|
35
|
-
background-color: $yellow-100;
|
36
|
-
}
|
37
|
-
|
38
|
-
.c,
|
39
|
-
.ch,
|
40
|
-
.cm,
|
41
|
-
.cpf,
|
42
|
-
.c1,
|
43
|
-
.cs,
|
44
|
-
.k,
|
45
|
-
.kc,
|
46
|
-
.kd,
|
47
|
-
.kn,
|
48
|
-
.kp,
|
49
|
-
.kr,
|
50
|
-
.nb,
|
51
|
-
.nt,
|
52
|
-
.sx,
|
53
|
-
.bp,
|
54
|
-
.gi,
|
55
|
-
.na,
|
56
|
-
.nl {
|
57
|
-
color: $green-400;
|
52
|
+
color: var(--base02);
|
58
53
|
}
|
59
54
|
|
60
55
|
.o,
|
@@ -68,12 +63,37 @@
|
|
68
63
|
.go,
|
69
64
|
.ni,
|
70
65
|
.w {
|
71
|
-
color:
|
66
|
+
color: var(--base03);
|
72
67
|
}
|
73
68
|
|
74
|
-
.
|
75
|
-
.
|
76
|
-
|
69
|
+
.gh,
|
70
|
+
.gp,
|
71
|
+
.gt,
|
72
|
+
.nc,
|
73
|
+
.nf,
|
74
|
+
.nn,
|
75
|
+
.fm,
|
76
|
+
.nv,
|
77
|
+
.ss,
|
78
|
+
.vc,
|
79
|
+
.vg,
|
80
|
+
.vi,
|
81
|
+
.vm {
|
82
|
+
color: var(--base04);
|
83
|
+
}
|
84
|
+
|
85
|
+
.nd,
|
86
|
+
.ow {
|
87
|
+
color: var(--base05);
|
88
|
+
}
|
89
|
+
|
90
|
+
.gu {
|
91
|
+
color: var(--base06);
|
92
|
+
}
|
93
|
+
|
94
|
+
.si,
|
95
|
+
.sr {
|
96
|
+
color: var(--base07);
|
77
97
|
}
|
78
98
|
|
79
99
|
.gd,
|
@@ -90,37 +110,38 @@
|
|
90
110
|
.s1,
|
91
111
|
.no,
|
92
112
|
.ne {
|
93
|
-
color:
|
113
|
+
color: var(--base08);
|
94
114
|
}
|
95
115
|
|
96
|
-
.
|
97
|
-
.
|
98
|
-
|
99
|
-
.nc,
|
100
|
-
.nf,
|
101
|
-
.nn,
|
102
|
-
.fm,
|
103
|
-
.nv,
|
104
|
-
.ss,
|
105
|
-
.vc,
|
106
|
-
.vg,
|
107
|
-
.vi,
|
108
|
-
.vm {
|
109
|
-
color: $blue-400;
|
110
|
-
}
|
111
|
-
|
112
|
-
.gu {
|
113
|
-
color: $purple-400;
|
116
|
+
.cp,
|
117
|
+
.se {
|
118
|
+
color: var(--base09);
|
114
119
|
}
|
115
120
|
|
116
|
-
.
|
117
|
-
|
118
|
-
color: $indigo-400;
|
121
|
+
.hll {
|
122
|
+
background-color: var(--base10);
|
119
123
|
}
|
120
124
|
|
121
|
-
.
|
122
|
-
.
|
123
|
-
|
125
|
+
.c,
|
126
|
+
.ch,
|
127
|
+
.cm,
|
128
|
+
.cpf,
|
129
|
+
.c1,
|
130
|
+
.cs,
|
131
|
+
.k,
|
132
|
+
.kc,
|
133
|
+
.kd,
|
134
|
+
.kn,
|
135
|
+
.kp,
|
136
|
+
.kr,
|
137
|
+
.nb,
|
138
|
+
.nt,
|
139
|
+
.sx,
|
140
|
+
.bp,
|
141
|
+
.gi,
|
142
|
+
.na,
|
143
|
+
.nl {
|
144
|
+
color: var(--base11);
|
124
145
|
}
|
125
146
|
|
126
147
|
.k,
|
@@ -155,7 +176,7 @@
|
|
155
176
|
}
|
156
177
|
|
157
178
|
.err {
|
158
|
-
border: 1px solid
|
179
|
+
border: 1px solid var(--base08);
|
159
180
|
}
|
160
181
|
|
161
182
|
}
|
@@ -134,17 +134,12 @@
|
|
134
134
|
&:last-child { border-bottom: 0; }
|
135
135
|
|
136
136
|
// stylelint-disable selector-max-class
|
137
|
-
> .accordion-
|
138
|
-
|
139
|
-
|
140
|
-
@include border-radius(0);
|
141
|
-
}
|
142
|
-
}
|
143
|
-
// stylelint-enable selector-max-class
|
144
|
-
|
145
|
-
> .accordion-collapse {
|
137
|
+
> .accordion-collapse,
|
138
|
+
> .accordion-header .accordion-button,
|
139
|
+
> .accordion-header .accordion-button.collapsed {
|
146
140
|
@include border-radius(0);
|
147
141
|
}
|
142
|
+
// stylelint-enable selector-max-class
|
148
143
|
}
|
149
144
|
}
|
150
145
|
|
@@ -39,7 +39,7 @@
|
|
39
39
|
// Prevent double borders when buttons are next to each other
|
40
40
|
> :not(.btn-check:first-child) + .btn,
|
41
41
|
> .btn-group:not(:first-child) {
|
42
|
-
margin-left: calc(#{$btn-border-width}
|
42
|
+
margin-left: calc(-1 * #{$btn-border-width}); // stylelint-disable-line function-disallowed-list
|
43
43
|
}
|
44
44
|
|
45
45
|
// Reset rounded corners
|
@@ -126,7 +126,7 @@
|
|
126
126
|
|
127
127
|
> .btn:not(:first-child),
|
128
128
|
> .btn-group:not(:first-child) {
|
129
|
-
margin-top: calc(#{$btn-border-width}
|
129
|
+
margin-top: calc(-1 * #{$btn-border-width}); // stylelint-disable-line function-disallowed-list
|
130
130
|
}
|
131
131
|
|
132
132
|
// Reset rounded corners
|
@@ -135,7 +135,12 @@
|
|
135
135
|
@include border-bottom-radius(0);
|
136
136
|
}
|
137
137
|
|
138
|
-
|
138
|
+
// The top radius should be 0 if the button is:
|
139
|
+
// - the "third or more" child
|
140
|
+
// - the second child and the previous element isn't `.btn-check` (making it the first child visually)
|
141
|
+
// - part of a btn-group which isn't the first child
|
142
|
+
> .btn:nth-child(n + 3),
|
143
|
+
> :not(.btn-check) + .btn,
|
139
144
|
> .btn-group:not(:first-child) > .btn {
|
140
145
|
@include border-top-radius(0);
|
141
146
|
}
|
data/_sass/bootstrap/_card.scss
CHANGED
@@ -193,8 +193,7 @@
|
|
193
193
|
// The child selector allows nested `.card` within `.card-group`
|
194
194
|
// to display properly.
|
195
195
|
> .card {
|
196
|
-
|
197
|
-
flex: 1 0 0%;
|
196
|
+
flex: 1 0 0;
|
198
197
|
margin-bottom: 0;
|
199
198
|
|
200
199
|
+ .card {
|
@@ -99,6 +99,7 @@
|
|
99
99
|
color: $carousel-control-color;
|
100
100
|
text-align: center;
|
101
101
|
background: none;
|
102
|
+
filter: var(--#{$prefix}carousel-control-icon-filter);
|
102
103
|
border: 0;
|
103
104
|
opacity: $carousel-control-opacity;
|
104
105
|
@include transition($carousel-control-transition);
|
@@ -168,7 +169,7 @@
|
|
168
169
|
margin-left: $carousel-indicator-spacer;
|
169
170
|
text-indent: -999px;
|
170
171
|
cursor: pointer;
|
171
|
-
background-color: $carousel-indicator-active-bg;
|
172
|
+
background-color: var(--#{$prefix}carousel-indicator-active-bg);
|
172
173
|
background-clip: padding-box;
|
173
174
|
border: 0;
|
174
175
|
// Use transparent borders to increase the hit area by 10px on top and bottom.
|
@@ -195,42 +196,31 @@
|
|
195
196
|
left: (100% - $carousel-caption-width) * .5;
|
196
197
|
padding-top: $carousel-caption-padding-y;
|
197
198
|
padding-bottom: $carousel-caption-padding-y;
|
198
|
-
color: $carousel-caption-color;
|
199
|
+
color: var(--#{$prefix}carousel-caption-color);
|
199
200
|
text-align: center;
|
200
201
|
}
|
201
202
|
|
202
203
|
// Dark mode carousel
|
203
204
|
|
204
205
|
@mixin carousel-dark() {
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
}
|
209
|
-
|
210
|
-
.carousel-indicators [data-bs-target] {
|
211
|
-
background-color: $carousel-dark-indicator-active-bg;
|
212
|
-
}
|
213
|
-
|
214
|
-
.carousel-caption {
|
215
|
-
color: $carousel-dark-caption-color;
|
216
|
-
}
|
206
|
+
--#{$prefix}carousel-indicator-active-bg: #{$carousel-indicator-active-bg-dark};
|
207
|
+
--#{$prefix}carousel-caption-color: #{$carousel-caption-color-dark};
|
208
|
+
--#{$prefix}carousel-control-icon-filter: #{$carousel-control-icon-filter-dark};
|
217
209
|
}
|
218
210
|
|
219
211
|
.carousel-dark {
|
220
212
|
@include carousel-dark();
|
221
213
|
}
|
222
214
|
|
215
|
+
:root,
|
216
|
+
[data-bs-theme="light"] {
|
217
|
+
--#{$prefix}carousel-indicator-active-bg: #{$carousel-indicator-active-bg};
|
218
|
+
--#{$prefix}carousel-caption-color: #{$carousel-caption-color};
|
219
|
+
--#{$prefix}carousel-control-icon-filter: #{$carousel-control-icon-filter};
|
220
|
+
}
|
221
|
+
|
223
222
|
@if $enable-dark-mode {
|
224
|
-
@include color-mode(dark) {
|
225
|
-
@
|
226
|
-
.carousel {
|
227
|
-
@include carousel-dark();
|
228
|
-
}
|
229
|
-
} @else {
|
230
|
-
.carousel,
|
231
|
-
&.carousel {
|
232
|
-
@include carousel-dark();
|
233
|
-
}
|
234
|
-
}
|
223
|
+
@include color-mode(dark, true) {
|
224
|
+
@include carousel-dark();
|
235
225
|
}
|
236
226
|
}
|
data/_sass/bootstrap/_close.scss
CHANGED
@@ -12,7 +12,6 @@
|
|
12
12
|
--#{$prefix}btn-close-focus-shadow: #{$btn-close-focus-shadow};
|
13
13
|
--#{$prefix}btn-close-focus-opacity: #{$btn-close-focus-opacity};
|
14
14
|
--#{$prefix}btn-close-disabled-opacity: #{$btn-close-disabled-opacity};
|
15
|
-
--#{$prefix}btn-close-white-filter: #{$btn-close-white-filter};
|
16
15
|
// scss-docs-end close-css-vars
|
17
16
|
|
18
17
|
box-sizing: content-box;
|
@@ -21,6 +20,7 @@
|
|
21
20
|
padding: $btn-close-padding-y $btn-close-padding-x;
|
22
21
|
color: var(--#{$prefix}btn-close-color);
|
23
22
|
background: transparent var(--#{$prefix}btn-close-bg) center / $btn-close-width auto no-repeat; // include transparent for button elements
|
23
|
+
filter: var(--#{$prefix}btn-close-filter);
|
24
24
|
border: 0; // for button elements
|
25
25
|
@include border-radius();
|
26
26
|
opacity: var(--#{$prefix}btn-close-opacity);
|
@@ -47,17 +47,20 @@
|
|
47
47
|
}
|
48
48
|
|
49
49
|
@mixin btn-close-white() {
|
50
|
-
|
50
|
+
--#{$prefix}btn-close-filter: #{$btn-close-filter-dark};
|
51
51
|
}
|
52
52
|
|
53
53
|
.btn-close-white {
|
54
54
|
@include btn-close-white();
|
55
55
|
}
|
56
56
|
|
57
|
+
:root,
|
58
|
+
[data-bs-theme="light"] {
|
59
|
+
--#{$prefix}btn-close-filter: #{$btn-close-filter};
|
60
|
+
}
|
61
|
+
|
57
62
|
@if $enable-dark-mode {
|
58
|
-
@include color-mode(dark) {
|
59
|
-
|
60
|
-
@include btn-close-white();
|
61
|
-
}
|
63
|
+
@include color-mode(dark, true) {
|
64
|
+
@include btn-close-white();
|
62
65
|
}
|
63
66
|
}
|
@@ -177,7 +177,7 @@ $_luminance-list: .0008 .001 .0011 .0013 .0015 .0017 .002 .0022 .0025 .0027 .003
|
|
177
177
|
@return if($l1 > $l2, divide($l1 + .05, $l2 + .05), divide($l2 + .05, $l1 + .05));
|
178
178
|
}
|
179
179
|
|
180
|
-
// Return WCAG2.
|
180
|
+
// Return WCAG2.2 relative luminance
|
181
181
|
// See https://www.w3.org/TR/WCAG/#dfn-relative-luminance
|
182
182
|
// See https://www.w3.org/TR/WCAG/#dfn-contrast-ratio
|
183
183
|
@function luminance($color) {
|
@@ -43,31 +43,6 @@
|
|
43
43
|
}
|
44
44
|
}
|
45
45
|
|
46
|
-
// Interactive list items
|
47
|
-
//
|
48
|
-
// Use anchor or button elements instead of `li`s or `div`s to create interactive
|
49
|
-
// list items. Includes an extra `.active` modifier class for selected items.
|
50
|
-
|
51
|
-
.list-group-item-action {
|
52
|
-
width: 100%; // For `<button>`s (anchors become 100% by default though)
|
53
|
-
color: var(--#{$prefix}list-group-action-color);
|
54
|
-
text-align: inherit; // For `<button>`s (anchors inherit)
|
55
|
-
|
56
|
-
// Hover state
|
57
|
-
&:hover,
|
58
|
-
&:focus {
|
59
|
-
z-index: 1; // Place hover/focus items above their siblings for proper border styling
|
60
|
-
color: var(--#{$prefix}list-group-action-hover-color);
|
61
|
-
text-decoration: none;
|
62
|
-
background-color: var(--#{$prefix}list-group-action-hover-bg);
|
63
|
-
}
|
64
|
-
|
65
|
-
&:active {
|
66
|
-
color: var(--#{$prefix}list-group-action-active-color);
|
67
|
-
background-color: var(--#{$prefix}list-group-action-active-bg);
|
68
|
-
}
|
69
|
-
}
|
70
|
-
|
71
46
|
// Individual list items
|
72
47
|
//
|
73
48
|
// Use on `li`s or `div`s within the `.list-group` parent.
|
@@ -115,6 +90,33 @@
|
|
115
90
|
}
|
116
91
|
}
|
117
92
|
|
93
|
+
// Interactive list items
|
94
|
+
//
|
95
|
+
// Use anchor or button elements instead of `li`s or `div`s to create interactive
|
96
|
+
// list items. Includes an extra `.active` modifier class for selected items.
|
97
|
+
|
98
|
+
.list-group-item-action {
|
99
|
+
width: 100%; // For `<button>`s (anchors become 100% by default though)
|
100
|
+
color: var(--#{$prefix}list-group-action-color);
|
101
|
+
text-align: inherit; // For `<button>`s (anchors inherit)
|
102
|
+
|
103
|
+
&:not(.active) {
|
104
|
+
// Hover state
|
105
|
+
&:hover,
|
106
|
+
&:focus {
|
107
|
+
z-index: 1; // Place hover/focus items above their siblings for proper border styling
|
108
|
+
color: var(--#{$prefix}list-group-action-hover-color);
|
109
|
+
text-decoration: none;
|
110
|
+
background-color: var(--#{$prefix}list-group-action-hover-bg);
|
111
|
+
}
|
112
|
+
|
113
|
+
&:active {
|
114
|
+
color: var(--#{$prefix}list-group-action-active-color);
|
115
|
+
background-color: var(--#{$prefix}list-group-action-active-bg);
|
116
|
+
}
|
117
|
+
}
|
118
|
+
}
|
119
|
+
|
118
120
|
// Horizontal
|
119
121
|
//
|
120
122
|
// Change the layout of list group items from vertical (default) to horizontal.
|
data/_sass/bootstrap/_modal.scss
CHANGED
@@ -59,8 +59,8 @@
|
|
59
59
|
|
60
60
|
// When fading in the modal, animate it to slide down
|
61
61
|
.modal.fade & {
|
62
|
-
@include transition($modal-transition);
|
63
62
|
transform: $modal-fade-transform;
|
63
|
+
@include transition($modal-transition);
|
64
64
|
}
|
65
65
|
.modal.show & {
|
66
66
|
transform: $modal-show-transform;
|
@@ -132,7 +132,11 @@
|
|
132
132
|
|
133
133
|
.btn-close {
|
134
134
|
padding: calc(var(--#{$prefix}modal-header-padding-y) * .5) calc(var(--#{$prefix}modal-header-padding-x) * .5);
|
135
|
-
|
135
|
+
// Split properties to avoid invalid calc() function if value is 0
|
136
|
+
margin-top: calc(-.5 * var(--#{$prefix}modal-header-padding-y));
|
137
|
+
margin-right: calc(-.5 * var(--#{$prefix}modal-header-padding-x));
|
138
|
+
margin-bottom: calc(-.5 * var(--#{$prefix}modal-header-padding-y));
|
139
|
+
margin-left: auto;
|
136
140
|
}
|
137
141
|
}
|
138
142
|
|
data/_sass/bootstrap/_nav.scss
CHANGED
@@ -139,8 +139,8 @@
|
|
139
139
|
// the default flexbox row orientation. Requires the use of `flex-wrap: wrap`
|
140
140
|
// on the `.navbar` parent.
|
141
141
|
.navbar-collapse {
|
142
|
-
flex-basis: 100%;
|
143
142
|
flex-grow: 1;
|
143
|
+
flex-basis: 100%;
|
144
144
|
// For always expanded or extra full navbars, ensure content aligns itself
|
145
145
|
// properly vertically. Can be easily overridden with flex utilities.
|
146
146
|
align-items: center;
|
@@ -127,7 +127,11 @@
|
|
127
127
|
|
128
128
|
.btn-close {
|
129
129
|
padding: calc(var(--#{$prefix}offcanvas-padding-y) * .5) calc(var(--#{$prefix}offcanvas-padding-x) * .5);
|
130
|
-
|
130
|
+
// Split properties to avoid invalid calc() function if value is 0
|
131
|
+
margin-top: calc(-.5 * var(--#{$prefix}offcanvas-padding-y));
|
132
|
+
margin-right: calc(-.5 * var(--#{$prefix}offcanvas-padding-x));
|
133
|
+
margin-bottom: calc(-.5 * var(--#{$prefix}offcanvas-padding-y));
|
134
|
+
margin-left: auto;
|
131
135
|
}
|
132
136
|
}
|
133
137
|
|
@@ -75,7 +75,7 @@
|
|
75
75
|
margin-left: $pagination-margin-start;
|
76
76
|
}
|
77
77
|
|
78
|
-
@if $pagination-margin-start == calc(#{$pagination-border-width}
|
78
|
+
@if $pagination-margin-start == calc(-1 * #{$pagination-border-width}) {
|
79
79
|
&:first-child {
|
80
80
|
.page-link {
|
81
81
|
@include border-start-radius(var(--#{$prefix}pagination-border-radius));
|
@@ -499,9 +499,9 @@ legend {
|
|
499
499
|
width: 100%;
|
500
500
|
padding: 0;
|
501
501
|
margin-bottom: $legend-margin-bottom;
|
502
|
-
@include font-size($legend-font-size);
|
503
502
|
font-weight: $legend-font-weight;
|
504
503
|
line-height: inherit;
|
504
|
+
@include font-size($legend-font-size);
|
505
505
|
|
506
506
|
+ * {
|
507
507
|
clear: left; // 2
|
data/_sass/bootstrap/_type.scss
CHANGED
@@ -34,11 +34,11 @@
|
|
34
34
|
// Type display classes
|
35
35
|
@each $display, $font-size in $display-font-sizes {
|
36
36
|
.display-#{$display} {
|
37
|
-
@include font-size($font-size);
|
38
37
|
font-family: $display-font-family;
|
39
38
|
font-style: $display-font-style;
|
40
39
|
font-weight: $display-font-weight;
|
41
40
|
line-height: $display-line-height;
|
41
|
+
@include font-size($font-size);
|
42
42
|
}
|
43
43
|
}
|
44
44
|
|
@@ -82,6 +82,21 @@ $form-invalid-border-color-dark: $red-300 !default;
|
|
82
82
|
$accordion-icon-color-dark: $primary-text-emphasis-dark !default;
|
83
83
|
$accordion-icon-active-color-dark: $primary-text-emphasis-dark !default;
|
84
84
|
|
85
|
-
$accordion-button-icon-dark: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#{$accordion-icon-color-dark}'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.
|
86
|
-
$accordion-button-active-icon-dark: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#{$accordion-icon-active-color-dark}'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.
|
85
|
+
$accordion-button-icon-dark: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#{$accordion-icon-color-dark}'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/></svg>") !default;
|
86
|
+
$accordion-button-active-icon-dark: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#{$accordion-icon-active-color-dark}'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/></svg>") !default;
|
87
87
|
// scss-docs-end sass-dark-mode-vars
|
88
|
+
|
89
|
+
|
90
|
+
//
|
91
|
+
// Carousel
|
92
|
+
//
|
93
|
+
|
94
|
+
$carousel-indicator-active-bg-dark: $carousel-dark-indicator-active-bg !default;
|
95
|
+
$carousel-caption-color-dark: $carousel-dark-caption-color !default;
|
96
|
+
$carousel-control-icon-filter-dark: $carousel-dark-control-icon-filter !default;
|
97
|
+
|
98
|
+
//
|
99
|
+
// Close button
|
100
|
+
//
|
101
|
+
|
102
|
+
$btn-close-filter-dark: $btn-close-white-filter !default;
|