File tree 3 files changed +13
-4
lines changed 3 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 1
1
.b-form-tags {
2
+ .b-form-tags-list {
3
+ margin-top : -0.25rem ;
4
+
5
+ .b-form-tag {
6
+ margin-top : 0.25rem ;
7
+ }
8
+ }
9
+
2
10
& .focus {
3
11
color : $input-focus-color ;
4
12
background-color : $input-focus-bg ;
32
40
font-size : 75% ;
33
41
font-weight : normal ;
34
42
line-height : $input-line-height ;
43
+ margin-right : 0.25rem ;
35
44
36
45
& .disabled {
37
46
opacity : 0.75 ;
43
52
font-size : 125% ;
44
53
line-height : 1 ;
45
54
float : none ;
55
+ margin-left : 0.25rem ;
46
56
}
47
57
}
48
58
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ export const BFormTag = /*#__PURE__*/ Vue.extend({
54
54
let $remove = h ( )
55
55
if ( ! this . disabled ) {
56
56
$remove = h ( BButtonClose , {
57
- staticClass : 'b-form-tag-remove ml-1 ' ,
57
+ staticClass : 'b-form-tag-remove' ,
58
58
props : { ariaLabel : this . removeLabel } ,
59
59
attrs : {
60
60
'aria-controls' : tagId ,
Original file line number Diff line number Diff line change @@ -557,7 +557,6 @@ export const BFormTags = /*#__PURE__*/ Vue.extend({
557
557
BFormTag ,
558
558
{
559
559
key : `li-tag__${ tag } ` ,
560
- staticClass : 'mt-1 mr-1' ,
561
560
class : tagClass ,
562
561
props : {
563
562
// `BFormTag` will auto generate an ID
@@ -639,7 +638,7 @@ export const BFormTags = /*#__PURE__*/ Vue.extend({
639
638
'li' ,
640
639
{
641
640
key : '__li-input__' ,
642
- staticClass : 'flex-grow-1 mt-1 ' ,
641
+ staticClass : 'flex-grow-1' ,
643
642
attrs : {
644
643
role : 'none' ,
645
644
'aria-live' : 'off' ,
@@ -654,7 +653,7 @@ export const BFormTags = /*#__PURE__*/ Vue.extend({
654
653
'ul' ,
655
654
{
656
655
key : '_tags_list_' ,
657
- staticClass : 'list-unstyled mt-n1 mb-0 d-flex flex-wrap align-items-center' ,
656
+ staticClass : 'b-form-tags-list list-unstyled mb-0 d-flex flex-wrap align-items-center' ,
658
657
attrs : { id : tagListId }
659
658
} ,
660
659
[ $tags , $field ]
You can’t perform that action at this time.
0 commit comments