Browse Source

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?).
merge-requests/76/merge
Deimos 5 years ago
parent
commit
99ece96f56
  1. 22
      tildes/scss/themes/_theme_base.scss

22
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 { .btn {
color: map-get($theme, "button"); color: map-get($theme, "button");
background-color: transparent; background-color: transparent;

Loading…
Cancel
Save