Skip to content

Commit 1612284

Browse files
Adding abc-border-width support #143
1 parent aed2fe2 commit 1612284

File tree

3 files changed

+17
-9
lines changed

3 files changed

+17
-9
lines changed

awesome-bootstrap-checkbox.scss

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
$font-family-icon: 'FontAwesome' !default;
88
$fa-var-check: "\f00c" !default;
99
$check-icon: $fa-var-check !default;
10+
$abc-border-width: 5px !default;
1011

1112
@mixin checkbox-variant($parent, $color) {
1213
#{$parent} input[type="checkbox"]:checked + label,
@@ -55,7 +56,7 @@ $check-icon: $fa-var-check !default;
5556
top: 2px;
5657
left: 0;
5758
margin-left: -$form-check-input-gutter;
58-
border: 1px solid $input-border-color;
59+
border: $abc-border-width solid $input-border-color;
5960
border-radius: 3px;
6061
background-color: #fff;
6162
@include transition(border 0.15s ease-in-out, color 0.15s ease-in-out);
@@ -187,7 +188,7 @@ $check-icon: $fa-var-check !default;
187188
top: 2px;
188189
left: 0;
189190
margin-left: -20px;
190-
border: 1px solid $input-border-color;
191+
border: $abc-border-width solid $input-border-color;
191192
border-radius: 50%;
192193
background-color: #fff;
193194
@include transition(border 0.15s ease-in-out);

demo/build.css

Lines changed: 12 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"bower.json"
2929
],
3030
"devDependencies": {
31-
"bootstrap": "4.0.0",
32-
"font-awesome": "5.0.8"
31+
"bootstrap": "^4.3.1",
32+
"font-awesome": "4.7.0"
3333
}
3434
}

0 commit comments

Comments
 (0)