diff options
Diffstat (limited to 'ui/static/css')
-rw-r--r-- | ui/static/css/common.css | 10 | ||||
-rw-r--r-- | ui/static/css/dark.css | 1 | ||||
-rw-r--r-- | ui/static/css/light.css | 1 |
3 files changed, 12 insertions, 0 deletions
diff --git a/ui/static/css/common.css b/ui/static/css/common.css index 54f5f7bf..4d609a4c 100644 --- a/ui/static/css/common.css +++ b/ui/static/css/common.css @@ -107,6 +107,16 @@ a:hover { border-bottom: 1px dotted var(--page-header-title-border-color); } +.page-header h1 a { + text-decoration: none; + color: var(--page-header-title-color); +} + +.page-header h1 a:hover, +.page-header h1 a:focus { + color: #666; +} + .page-header ul, .page-footer ul { margin-left: 25px; diff --git a/ui/static/css/dark.css b/ui/static/css/dark.css index 2c7170fc..57eded27 100644 --- a/ui/static/css/dark.css +++ b/ui/static/css/dark.css @@ -14,6 +14,7 @@ --header-link-hover-color: rgba(82, 168, 236, 0.85); --header-active-link-color: #9b9494; + --page-header-title-color: #aaa; --page-header-title-border-color: #333; --logo-color: #bbb; diff --git a/ui/static/css/light.css b/ui/static/css/light.css index 3bbc6fd8..b0269502 100644 --- a/ui/static/css/light.css +++ b/ui/static/css/light.css @@ -14,6 +14,7 @@ --header-link-hover-color: #888; --header-active-link-color: #444; + --page-header-title-color: #333; --page-header-title-border-color: #333; --logo-color: #000; |