Skip to content

Commit

Permalink
Adding abc-border-width support #143
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeldaineka committed Aug 6, 2019
1 parent 7faa2f8 commit 60cebe9
Show file tree
Hide file tree
Showing 2 changed files with 133 additions and 148 deletions.
5 changes: 3 additions & 2 deletions awesome-bootstrap-checkbox.scss
Expand Up @@ -6,6 +6,7 @@
$font-family-icon: 'FontAwesome' !default;
$fa-var-check: "\f00c" !default;
$check-icon: $fa-var-check !default;
$abc-border-width: 1px !default;

@mixin checkbox-variant($parent, $color) {
#{$parent} input[type="checkbox"]:checked + label,
Expand Down Expand Up @@ -52,7 +53,7 @@ $check-icon: $fa-var-check !default;
height: 17px;
left: 0;
margin-left: -20px;
border: 1px solid $input-border;
border: $abc-border-width solid $input-border;
border-radius: 3px;
background-color: $input-bg;
@include transition(border 0.15s ease-in-out, color 0.15s ease-in-out);
Expand Down Expand Up @@ -176,7 +177,7 @@ $check-icon: $fa-var-check !default;
height: 17px;
left: 0;
margin-left: -20px;
border: 1px solid $input-border;
border: $abc-border-width solid $input-border;
border-radius: 50%;
background-color: $input-bg;
@include transition(border 0.15s ease-in-out);
Expand Down
276 changes: 130 additions & 146 deletions demo/build.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 60cebe9

Please sign in to comment.