summaryrefslogtreecommitdiffstats
path: root/app/overview
diff options
context:
space:
mode:
authorYoshie Muranaka <yoshiemuranaka@gmail.com>2019-06-24 14:35:41 -0500
committerDerick Montague <derick.montague@ibm.com>2019-07-09 16:37:46 -0500
commit6f7ec80eb14084228cd7d8dae580da4b794c2595 (patch)
treec01c0c280b0c30043d6443a93e5ec4c650095710 /app/overview
parent309b5da3750a3a5b189362e31013d2ab9404e806 (diff)
downloadphosphor-webui-6f7ec80eb14084228cd7d8dae580da4b794c2595.tar.gz
phosphor-webui-6f7ec80eb14084228cd7d8dae580da4b794c2595.zip
Clean up color values
This update will clean up slight color variations in the code base by creating and using Sass color variables instead of hex values. Available colors are defined in colors.scss. Any usage of CSS color properties should refer to the mapped color variables in colors.scss. - Removed tags.scss file since tag components no longer used Signed-off-by: Yoshie Muranaka <yoshiemuranaka@gmail.com> Change-Id: I045030a158469e59d07a9fa8cd8aa9f125f0d383
Diffstat (limited to 'app/overview')
-rw-r--r--app/overview/styles/system-overview.scss8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/overview/styles/system-overview.scss b/app/overview/styles/system-overview.scss
index 3558873..ed010aa 100644
--- a/app/overview/styles/system-overview.scss
+++ b/app/overview/styles/system-overview.scss
@@ -3,7 +3,7 @@
}
.overview__server-metadata {
- border-bottom: 1px solid $medgrey;
+ border-bottom: 1px solid $border-color-01;
padding: 1.8em 0 0 0;
}
.overview__metadata-wrapper {
@@ -26,7 +26,7 @@
.overview__event-log {
padding-top: 2em;
.event__description {
- color: $black;
+ color: $primary-dark;
text-decoration: none;
}
.control-check {display: none;}
@@ -48,9 +48,9 @@ input.modal__edit-server-name {
.modal__char-count,
.modal__error {
font-size: .8em;
- color: $darkgrey;
+ color: $text-02;
}
.modal__error {
- color: $error-color;
+ color: $status-error;
} \ No newline at end of file
OpenPOWER on IntegriCloud