Skip to content
Snippets Groups Projects
Commit 586637e6 authored by Alexander Purr's avatar Alexander Purr Committed by Demian Katz
Browse files

improve overriding variables from bootstrap accessibility plugin

* enable overriding variables on later usage by setting to '!default'
* e.g. at compiled.scss
* no need for changing variables directly in plugin
parent 58e2ab4b
No related merge requests found
//Set the variables for use in stylesheet
// Colors
$black: #000;
$green-dark: #2d4821;
$blue-dark: #214c62;
$red-dark: #6c4a00;
$red: #d2322d;
$yellow: #f9f1c6;
$black: #000 !default;
$green-dark: #2d4821 !default;
$blue-dark: #214c62 !default;
$red-dark: #6c4a00 !default;
$red: #d2322d !default;
$yellow: #f9f1c6 !default;
// Outline
$outline-default-style: dotted;
$outline-default-color: $black;
$outline-default-style: dotted !default;
$outline-default-color: $black !default;
// Alerts Colors
$alert-success-color: $green-dark;
$alert-info-color: $blue-dark;
$alert-warning-color: $red-dark;
$alert-warning-bkg: $yellow;
$alert-danger-color: $red;
$alert-danger-hover: darken($red, 10%);
$alert-success-color: $green-dark !default;
$alert-info-color: $blue-dark !default;
$alert-warning-color: $red-dark !default;
$alert-warning-bkg: $yellow !default;
$alert-danger-color: $red !default;
$alert-danger-hover: darken($red, 10%) !default;
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment