From 99ece96f5636d632c394ab5f5617be290483a14f Mon Sep 17 00:00:00 2001 From: Deimos Date: Thu, 8 Aug 2019 15:40:55 -0600 Subject: [PATCH] Apply theme colors to "breadcrumb" elements I'm going to be using these on the Docs site, may be good to implement on the main site itself at some point (possibly in the wiki?). --- tildes/scss/themes/_theme_base.scss | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/tildes/scss/themes/_theme_base.scss b/tildes/scss/themes/_theme_base.scss index 94208d8..a384e8f 100644 --- a/tildes/scss/themes/_theme_base.scss +++ b/tildes/scss/themes/_theme_base.scss @@ -112,6 +112,28 @@ } } + .breadcrumb .breadcrumb-item { + color: map-get($theme, "foreground-secondary"); + + &:not(:last-child) { + a { + color: map-get($theme, "foreground-secondary"); + } + } + + &:not(:first-child) { + &::before { + color: map-get($theme, "foreground-secondary"); + } + } + + &:last-child { + a { + color: map-get($theme, "link"); + } + } + } + .btn { color: map-get($theme, "button"); background-color: transparent;