Skip to content

Commit d6ba6db

Browse files
authored
feat(css): create SCSS versions of CSS (#2218)
* Create alert.scss * Create _variables.scss * Update alert.scss * Create _variables.scss * Create dropdown.scss * Create _variables.scss * Create form-file.scss * Create _variables.scss * Create input-group.scss
1 parent 923d20b commit d6ba6db

File tree

8 files changed

+75
-0
lines changed

8 files changed

+75
-0
lines changed

src/components/alert/_variables.scss

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
// Alert defaults
2+
3+
$bv-alert-transition: $transition-fade !default;

src/components/alert/alert.scss

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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+
}
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
// Dropdown variables

src/components/dropdown/dropdown.scss

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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+
}
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
// b-form-file defaults
+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
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 numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
// b-input-group: defaults
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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+
}

0 commit comments

Comments
 (0)