File tree 8 files changed +75
-0
lines changed
8 files changed +75
-0
lines changed Original file line number Diff line number Diff line change
1
+ // Alert defaults
2
+
3
+ $bv-alert-transition : $transition-fade !default ;
Original file line number Diff line number Diff line change
1
+ // @import "bootstrap/scss/functions"
2
+ // @import "bootstrap/scss/variables"
3
+ // @import "bootstrap/scss/mixins"
4
+
5
+ @import " ./variables"
6
+
7
+ .alert {
8
+ &.fade-enter-active ,
9
+ &.alert .fade-leave-active {
10
+ transition : $bv-alert-transition ;
11
+ }
12
+ & .fade-enter ,
13
+ & .fade-leave-to {
14
+ opacity : 0 ;
15
+ }
16
+ }
Original file line number Diff line number Diff line change
1
+ // Dropdown variables
Original file line number Diff line number Diff line change
1
+ // @import "boostrap/scss/functions
2
+ // @import "boostrap/scss/variables
3
+ // @import "boostrap/scss/mixins
4
+
5
+ @import " ./variables"
6
+
7
+ /* b-dropdown : custom styling */
8
+ // Hide the caret for no-caret setting
9
+ // See: https://github.com/bootstrap-vue/bootstrap-vue/issues/1473
10
+ // See: https://github.com/twbs/bootstrap/issues/23724
11
+ .dropdown-toggle {
12
+ &.dropdown-toggle-no-caret :after {
13
+ display : none !important ;
14
+ }
15
+ }
Original file line number Diff line number Diff line change
1
+ // b-form-file defaults
Original file line number Diff line number Diff line change
1
+ /* b-form-file: custom style overrides */
2
+
3
+ /* b-form-file: temporary css until Bootstrap V4.2 is released */
4
+ .custom-file-input {
5
+ ~ .custom-file-label [data-browse ]::after {
6
+ content : attr (data-browse );
7
+ }
8
+ }
Original file line number Diff line number Diff line change
1
+ // b-input-group: defaults
Original file line number Diff line number Diff line change
1
+ // @import "bootstrap-vue/scss/functions
2
+ // @import "bootstrap-vue/scss/variables
3
+ // @import "bootstrap-vue/scss/mixins
4
+
5
+ @import " ./variables"
6
+
7
+ /* b-input-group : custom styles */
8
+
9
+ /* workaround for https :// github.com/bootstrap-vue/bootstrap-vue/issues/1560 */
10
+ /* workaround for https :// github.com/bootstrap-vue/bootstrap-vue/issues/2114 */
11
+ /* source : bootstrap _input-group .scss */
12
+ .input-group {
13
+ > .input-group-prepend > .btn-group ,
14
+ > .input-group-append :not (:last-child ) > .btn-group ,
15
+ > .input-group-append :last-child > .btn-group :not (:last-child ):not (.dropdown-toggle ) {
16
+ > .btn {
17
+ border-top-right-radius : 0 ;
18
+ border-bottom-right-radius: 0;
19
+ }
20
+ }
21
+
22
+ > .input-group-append > .btn-group ,
23
+ > .input-group-prepend :not (:first-child ) > .btn-group ,
24
+ > .input-group-prepend :first-child > .btn-group :not (:first-child ) {
25
+ > .btn {
26
+ border-top-left-radius : 0 ;
27
+ border-bottom-left-radius : 0 ;
28
+ }
29
+ }
30
+ }
You can’t perform that action at this time.
0 commit comments