|
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 | + } |
11 | 18 | }
|
12 |
| - } |
13 | 19 |
|
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 | + } |
20 | 27 | }
|
21 | 28 | }
|
22 | 29 | }
|
0 commit comments