refactor(GUI): explicitly declare .label-danger coloring (#676)

`.label-danger` is defined by Bootstrap, and its coloring re-uses what
was defined in `$brand-danger`, which is currently unset.

To prevent the module from going out of sync with our new CSS palette,
we explicitly declare the colorings in the component file.

Signed-off-by: Juan Cruz Viotti <jviotti@openmailbox.org>
This commit is contained in:
Juan Cruz Viotti 2016-09-02 10:30:29 -04:00 committed by GitHub
parent e1f843652b
commit 0b7232c339
2 changed files with 9 additions and 0 deletions

View File

@ -6056,6 +6056,10 @@ body {
background-color: #3b3e45;
color: #919191; }
.label-danger {
background-color: #d9534f;
color: #fff; }
/*
* Copyright 2016 Resin.io
*

View File

@ -28,3 +28,8 @@
background-color: darken($palette-theme-dark-background, 10%);
color: darken($palette-theme-dark-foreground, 43%);
}
.label-danger {
background-color: $palette-theme-danger-background;
color: $palette-theme-danger-foreground;
}