Skip to content

Commit 2e7dcfa

Browse files
authored
fix(scss): import _input-group.scss once at most (#2239)
Prevents the CSS from appearing in the compiled output CSS more than once. Reduces file size of generated bootstrap-vue.css
1 parent bd95ad8 commit 2e7dcfa

File tree

1 file changed

+24
-17
lines changed

1 file changed

+24
-17
lines changed
+24-17
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,29 @@
1-
/* workaround for https://github.com/bootstrap-vue/bootstrap-vue/issues/1560 */
2-
/* workaround for https://github.com/bootstrap-vue/bootstrap-vue/issues/2114 */
3-
/* source: bootstrap _input-group.scss */
4-
.input-group {
5-
> .input-group-prepend > .btn-group,
6-
> .input-group-append:not(:last-child) > .btn-group,
7-
> .input-group-append:last-child > .btn-group:not(:last-child):not(.dropdown-toggle) {
8-
> .btn {
9-
border-top-right-radius: 0;
10-
border-bottom-right-radius: 0;
1+
$bv-input-group-dropdown-patched: false !default;
2+
3+
@if $bv-input-group-dropdown-patched == false {
4+
// Only include this style patch once in final CSS
5+
$bv-input-group-dropdown-patched: true;
6+
7+
/* workaround for https://github.com/bootstrap-vue/bootstrap-vue/issues/1560 */
8+
/* workaround for https://github.com/bootstrap-vue/bootstrap-vue/issues/2114 */
9+
/* based on: bootstrap/scss/_input-group.scss */
10+
.input-group {
11+
> .input-group-prepend > .btn-group,
12+
> .input-group-append:not(:last-child) > .btn-group,
13+
> .input-group-append:last-child > .btn-group:not(:last-child):not(.dropdown-toggle) {
14+
> .btn {
15+
border-top-right-radius: 0;
16+
border-bottom-right-radius: 0;
17+
}
1118
}
12-
}
1319

14-
> .input-group-append > .btn-group,
15-
> .input-group-prepend:not(:first-child) > .btn-group,
16-
> .input-group-prepend:first-child > .btn-group:not(:first-child) {
17-
> .btn {
18-
border-top-left-radius: 0;
19-
border-bottom-left-radius: 0;
20+
> .input-group-append > .btn-group,
21+
> .input-group-prepend:not(:first-child) > .btn-group,
22+
> .input-group-prepend:first-child > .btn-group:not(:first-child) {
23+
> .btn {
24+
border-top-left-radius: 0;
25+
border-bottom-left-radius: 0;
26+
}
2027
}
2128
}
2229
}

0 commit comments

Comments
 (0)