From 01da81870818c364a67d9ba97ca84aec9afbcc4d Mon Sep 17 00:00:00 2001 From: Yoshie Muranaka Date: Wed, 8 Jul 2020 15:46:43 -0700 Subject: Update use of Sass variables for better theming Use Bootstrap color functions for theme-colors and grays instead of directly referencing Sass variable to allow more flexible theming. Signed-off-by: Yoshie Muranaka Change-Id: Id08b77ff6df3bdf99400dcdfe964853706f1070f --- src/components/AppNavigation/AppNavigation.vue | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/components/AppNavigation') diff --git a/src/components/AppNavigation/AppNavigation.vue b/src/components/AppNavigation/AppNavigation.vue index 175b0aa0..37f0f717 100644 --- a/src/components/AppNavigation/AppNavigation.vue +++ b/src/components/AppNavigation/AppNavigation.vue @@ -212,16 +212,16 @@ svg { font-weight: $headings-font-weight; padding-left: $spacer; // defining consistent padding for links and buttons padding-right: $spacer; - color: $secondary; + color: theme-color('secondary'); &:hover { - background-color: $primary-nav-hover; - color: $dark; + background-color: gray('300'); + color: theme-color('dark'); } &:focus { box-shadow: $btn-focus-box-shadow; - color: $dark; + color: theme-color('dark'); } } @@ -229,8 +229,8 @@ svg { .nav-link--current:hover, .nav-link--current:focus { font-weight: $headings-font-weight; - background-color: $secondary; - color: $light; + background-color: theme-color('secondary'); + color: theme-color('light'); cursor: default; &::before { @@ -240,7 +240,7 @@ svg { bottom: 0; left: 0; width: 4px; - background-color: $primary; + background-color: theme-color('primary'); } } @@ -252,7 +252,7 @@ svg { left: 0; z-index: $zindex-fixed; overflow-y: auto; - background-color: $container-bgd; + background-color: gray('200'); transform: translateX(-$navigation-width); transition: transform $exit-easing--productive $duration--moderate-02; @include media-breakpoint-down(md) { -- cgit v1.2.3