File tree Expand file tree Collapse file tree 2 files changed +26
-26
lines changed
packages/bootstrap-vue-3/src Expand file tree Collapse file tree 2 files changed +26
-26
lines changed Original file line number Diff line number Diff line change
1
+ .form-control-highlighted {
2
+ border-color : $input-focus-border-color ;
3
+
4
+ transition : box-shadow 0.3s ease-in-out ;
5
+ animation : form- control- highlighted- blink 1s infinite ;
6
+ }
7
+
8
+ @keyframes form-control-highlighted-blink {
9
+ 0% {
10
+ box-shadow : 0 0 0 0 transparent ;
11
+ }
12
+
13
+ 50% {
14
+ @if $enable-shadows {
15
+ @include box-shadow ($input-box-shadow , $input-focus-box-shadow );
16
+ } @else {
17
+ // Avoid using mixin so we can pass custom focus shadow properly
18
+ box-shadow : $input-focus-box-shadow ;
19
+ }
20
+ }
21
+
22
+ 100% {
23
+ box-shadow : 0 0 0 0 transparent ;
24
+ }
25
+ }
Original file line number Diff line number Diff line change 11
11
@import " ../components/BTransition/transition" ;
12
12
@import " ../components/BTable/table" ;
13
13
@import " ../components/BToast/index" ;
14
+ @import " ../components/BFormInput/form-input" ;
14
15
15
16
.container ,
16
17
.container-fluid {
41
42
.bv-no-focus-ring :focus {
42
43
outline : none ;
43
44
}
44
-
45
- .form-control-highlighted {
46
- border-color : $input-focus-border-color ;
47
-
48
- transition : box-shadow 0.3s ease-in-out ;
49
- animation : form- control- highlighted- blink 1s infinite ;
50
- }
51
-
52
- @keyframes form-control-highlighted-blink {
53
- 0% {
54
- box-shadow : 0 0 0 0 transparent ;
55
- }
56
-
57
- 50% {
58
- @if $enable-shadows {
59
- @include box-shadow ($input-box-shadow , $input-focus-box-shadow );
60
- } @else {
61
- // Avoid using mixin so we can pass custom focus shadow properly
62
- box-shadow : $input-focus-box-shadow ;
63
- }
64
- }
65
-
66
- 100% {
67
- box-shadow : 0 0 0 0 transparent ;
68
- }
69
- }
You can’t perform that action at this time.
0 commit comments