Skip to content

Commit

Permalink
added primary-dark colour for primary buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
temi committed Aug 6, 2019
1 parent 1e5508d commit c89b9ac
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 16 deletions.
5 changes: 3 additions & 2 deletions assets/scss/bootstrap-ala.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ $gray-light: #ced4da !default;
$gray-lighter: #f2f2f2 !default;

$brand-primary: #f26649 !default;
$brand-primary-dark: #c44d34 !default;
$brand-success: #28a745 !default;
$brand-info: #17a2b8 !default;
$brand-warning: #ffc107 !default;
Expand Down Expand Up @@ -48,8 +49,8 @@ $btn-default-bg: $brand-default !default;
$btn-default-border: #999 !default;

$btn-primary-color: #fff !default;
$btn-primary-bg: $brand-primary !default;
$btn-primary-border: $brand-primary !default;
$btn-primary-bg: $brand-primary-dark !default;
$btn-primary-border: $brand-primary-dark !default;

$btn-success-color: #fff !default;
$btn-success-bg: $brand-success !default;
Expand Down
26 changes: 13 additions & 13 deletions build/css/bootstrap.css
Original file line number Diff line number Diff line change
Expand Up @@ -2873,23 +2873,23 @@ fieldset[disabled] a.gform_button {

.btn-primary, .gform_button {
color: #fff;
background-color: #f26649;
border-color: #f26649; }
background-color: #c44d34;
border-color: #c44d34; }
.btn-primary:focus, .gform_button:focus, .btn-primary.focus, .focus.gform_button {
color: #fff;
background-color: #ef3e19;
border-color: #af280d; }
background-color: #9c3d29;
border-color: #5f2519; }
.btn-primary:hover, .gform_button:hover {
color: #fff;
background-color: #ef3e19;
border-color: #ed3711; }
background-color: #9c3d29;
border-color: #943a27; }
.btn-primary:active, .gform_button:active, .btn-primary.active, .active.gform_button,
.open > .btn-primary.dropdown-toggle,
.open > .dropdown-toggle.gform_button {
color: #fff;
background-color: #ef3e19;
background-color: #9c3d29;
background-image: none;
border-color: #ed3711; }
border-color: #943a27; }
.btn-primary:active:hover, .gform_button:active:hover, .btn-primary:active:focus, .gform_button:active:focus, .btn-primary:active.focus, .gform_button:active.focus, .btn-primary.active:hover, .active.gform_button:hover, .btn-primary.active:focus, .active.gform_button:focus, .btn-primary.active.focus, .active.focus.gform_button,
.open > .btn-primary.dropdown-toggle:hover,
.open > .dropdown-toggle.gform_button:hover,
Expand All @@ -2898,19 +2898,19 @@ fieldset[disabled] a.gform_button {
.open > .btn-primary.dropdown-toggle.focus,
.open > .dropdown-toggle.focus.gform_button {
color: #fff;
background-color: #d5310f;
border-color: #af280d; }
background-color: #7f3222;
border-color: #5f2519; }
.btn-primary.disabled:hover, .disabled.gform_button:hover, .btn-primary.disabled:focus, .disabled.gform_button:focus, .btn-primary.disabled.focus, .disabled.focus.gform_button, .btn-primary[disabled]:hover, .gform_button[disabled]:hover, .btn-primary[disabled]:focus, .gform_button[disabled]:focus, .btn-primary[disabled].focus, .gform_button[disabled].focus,
fieldset[disabled] .btn-primary:hover,
fieldset[disabled] .gform_button:hover,
fieldset[disabled] .btn-primary:focus,
fieldset[disabled] .gform_button:focus,
fieldset[disabled] .btn-primary.focus,
fieldset[disabled] .focus.gform_button {
background-color: #f26649;
border-color: #f26649; }
background-color: #c44d34;
border-color: #c44d34; }
.btn-primary .badge, .gform_button .badge {
color: #f26649;
color: #c44d34;
background-color: #fff; }

.btn-success {
Expand Down
2 changes: 1 addition & 1 deletion build/css/bootstrap.min.css

Large diffs are not rendered by default.

0 comments on commit c89b9ac

Please sign in to comment.