File tree 2 files changed +18
-0
lines changed 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change
1
+ /* workaround for https://github.com/bootstrap-vue/bootstrap-vue/issues/1560 */
2
+ /* source: _input-group.scss */
3
+
4
+ .input-group > .input-group-prepend > .b-dropdown > .btn ,
5
+ .input-group > .input-group-append : not (: last-child ) > .b-dropdown > .btn ,
6
+ .input-group > .input-group-append : last-child > .b-dropdown : not (: last-child ): not (.dropdown-toggle ) > .btn {
7
+ border-top-right-radius : 0 ;
8
+ border-bottom-right-radius : 0 ;
9
+ }
10
+
11
+ .input-group > .input-group-append > .b-dropdown > .btn ,
12
+ .input-group > .input-group-prepend : not (: first-child ) > .b-dropdown > .btn ,
13
+ .input-group > .input-group-prepend : first-child > .b-dropdown : not (: first-child ) > .btn {
14
+ border-top-left-radius : 0 ;
15
+ border-bottom-left-radius : 0 ;
16
+ }
Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ import idMixin from '../../mixins/id'
2
2
import dropdownMixin from '../../mixins/dropdown'
3
3
import bButton from '../button/button'
4
4
5
+ import './dropdown.css'
6
+
5
7
export default {
6
8
mixins : [ idMixin , dropdownMixin ] ,
7
9
components : { bButton } ,
You can’t perform that action at this time.
0 commit comments