From 93abfd74e6b6c69bb28ded413ff65ae605f8e8e5 Mon Sep 17 00:00:00 2001 From: Moises Deniz Aleman Date: Thu, 26 Jul 2018 10:57:10 +0200 Subject: [PATCH] Better naming for the OBS colors --- .../stylesheets/webui2/card-component.scss | 2 +- .../app/assets/stylesheets/webui2/colors.scss | 16 ++++++++-------- .../stylesheets/webui2/personal-navigation.scss | 4 ++-- .../assets/stylesheets/webui2/sticky-footer.scss | 6 +++--- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/src/api/app/assets/stylesheets/webui2/card-component.scss b/src/api/app/assets/stylesheets/webui2/card-component.scss index 142a172ff8d..c73408ac5fe 100644 --- a/src/api/app/assets/stylesheets/webui2/card-component.scss +++ b/src/api/app/assets/stylesheets/webui2/card-component.scss @@ -3,5 +3,5 @@ } .card-body > h1, .card-body > h2, .card-body > h3, .card-body > h4, .card-body > h5, .card-body > h6 { - color: $main_green; + color: $obs_green; } \ No newline at end of file diff --git a/src/api/app/assets/stylesheets/webui2/colors.scss b/src/api/app/assets/stylesheets/webui2/colors.scss index b61fb10fa06..afe368f83b0 100644 --- a/src/api/app/assets/stylesheets/webui2/colors.scss +++ b/src/api/app/assets/stylesheets/webui2/colors.scss @@ -3,15 +3,15 @@ $gray-100: #f8f9fa; $gray-150: #f0f0f0; $gray-200: #e9ecef; -$main_green: #693; -$main_blue: #069; -$main_yellow: #f0ad4e; +$obs_green: #693; +$obs_blue: #069; +$obs_yellow: #f0ad4e; -$link-hover-color: $main_green; -$link-color: $main_blue; -$primary: $main_green; -$secondary: $main_blue; +$link-hover-color: $obs_green; +$link-color: $obs_blue; +$primary: $obs_green; +$secondary: $obs_blue; .text-package { - color: $main_yellow; + color: $obs_yellow; } \ No newline at end of file diff --git a/src/api/app/assets/stylesheets/webui2/personal-navigation.scss b/src/api/app/assets/stylesheets/webui2/personal-navigation.scss index a7456525677..b0a184d9d94 100644 --- a/src/api/app/assets/stylesheets/webui2/personal-navigation.scss +++ b/src/api/app/assets/stylesheets/webui2/personal-navigation.scss @@ -1,10 +1,10 @@ #personal-navigation { & .nav-item a { font-size: 0.9rem; - color: $main_green; + color: $obs_green; &:hover { - color: $main_blue; + color: $obs_blue; } } diff --git a/src/api/app/assets/stylesheets/webui2/sticky-footer.scss b/src/api/app/assets/stylesheets/webui2/sticky-footer.scss index f94df07811f..92194721d35 100644 --- a/src/api/app/assets/stylesheets/webui2/sticky-footer.scss +++ b/src/api/app/assets/stylesheets/webui2/sticky-footer.scss @@ -11,10 +11,10 @@ body { & a { font-size: .9rem; - color: $main_green; + color: $obs_green; &:hover { - color: $main_blue; + color: $obs_blue; } -} + } }