From 4a84cf3ac7269951beec6ed16f908cd6db6909f9 Mon Sep 17 00:00:00 2001 From: j433866 Date: Wed, 20 Mar 2019 10:23:09 +0000 Subject: [PATCH] Add css styling option for banner URL --- src/web/stylesheets/layout/_banner.css | 4 ++++ src/web/stylesheets/themes/_classic.css | 1 + src/web/stylesheets/themes/_dark.css | 1 + src/web/stylesheets/themes/_geocities.css | 1 + src/web/stylesheets/themes/_solarizedDark.css | 1 + src/web/stylesheets/themes/_solarizedLight.css | 1 + 6 files changed, 9 insertions(+) diff --git a/src/web/stylesheets/layout/_banner.css b/src/web/stylesheets/layout/_banner.css index 220ae914..59856958 100755 --- a/src/web/stylesheets/layout/_banner.css +++ b/src/web/stylesheets/layout/_banner.css @@ -22,6 +22,10 @@ padding-right: 10px; } +#banner a { + color: var(--banner-url-colour); +} + #notice-wrapper { text-align: center; overflow: hidden; diff --git a/src/web/stylesheets/themes/_classic.css b/src/web/stylesheets/themes/_classic.css index 08c5ef75..f89d9dce 100755 --- a/src/web/stylesheets/themes/_classic.css +++ b/src/web/stylesheets/themes/_classic.css @@ -35,6 +35,7 @@ --banner-font-colour: #468847; --banner-bg-colour: #dff0d8; + --banner-url-colour: #1976d2; --category-list-font-colour: #1976d2; diff --git a/src/web/stylesheets/themes/_dark.css b/src/web/stylesheets/themes/_dark.css index 0ee7e112..ff2217fb 100755 --- a/src/web/stylesheets/themes/_dark.css +++ b/src/web/stylesheets/themes/_dark.css @@ -31,6 +31,7 @@ --banner-font-colour: #c5c5c5; --banner-bg-colour: #252525; + --banner-url-colour: #1976d2; --category-list-font-colour: #1976d2; diff --git a/src/web/stylesheets/themes/_geocities.css b/src/web/stylesheets/themes/_geocities.css index d0ede2d7..230638b1 100755 --- a/src/web/stylesheets/themes/_geocities.css +++ b/src/web/stylesheets/themes/_geocities.css @@ -31,6 +31,7 @@ --banner-font-colour: white; --banner-bg-colour: maroon; + --banner-url-colour: yellow; --category-list-font-colour: yellow; diff --git a/src/web/stylesheets/themes/_solarizedDark.css b/src/web/stylesheets/themes/_solarizedDark.css index a10cf44e..0be53b39 100755 --- a/src/web/stylesheets/themes/_solarizedDark.css +++ b/src/web/stylesheets/themes/_solarizedDark.css @@ -50,6 +50,7 @@ --banner-font-colour: var(--base0); --banner-bg-colour: var(--base03); + --banner-url-colour: var(--base1); --category-list-font-colour: var(--base1); diff --git a/src/web/stylesheets/themes/_solarizedLight.css b/src/web/stylesheets/themes/_solarizedLight.css index cc0ba43e..eddcdb51 100755 --- a/src/web/stylesheets/themes/_solarizedLight.css +++ b/src/web/stylesheets/themes/_solarizedLight.css @@ -50,6 +50,7 @@ --banner-font-colour: var(--base00); --banner-bg-colour: var(--base3); + --banner-url-colour: var(--base01); --category-list-font-colour: var(--base01);