mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-03-02 02:11:33 +00:00
There were all sorts of dependencies hiding in there, and it was overwriting some of the admin variables. Better to keep things separate and simple. I discovered that there was one legitimate reason for importing them though: for styling the trix editor. I can't think of a good way to safely import them without affecting the other variables, so I just hardcoded the colours for now.
18 lines
377 B
SCSS
18 lines
377 B
SCSS
// Legacy admin variables and colours
|
|
|
|
$spree-green: #9fc820;
|
|
$spree-blue: #5498da;
|
|
$spree-light-blue: #eff5fc;
|
|
|
|
$warning-red: $color-5;
|
|
$warning-orange: $color-5;
|
|
$bright-orange: #ffa92e;
|
|
$medium-grey: #919191;
|
|
$pale-blue: #cee1f4;
|
|
|
|
$admin-table-border: $pale-blue;
|
|
|
|
$modal-close-button-color: #de6060;
|
|
$modal-close-button-hover-color: #bf4545;
|
|
$disabled-button: $light-grey;
|