aboutsummaryrefslogtreecommitdiff
path: root/ui/static/css
diff options
context:
space:
mode:
authorGravatar Shizun Ge <shizunge@gmail.com> 2020-06-11 23:07:13 -0500
committerGravatar GitHub <noreply@github.com> 2020-06-11 21:07:13 -0700
commitfe8347f32afe996a36c946b9816e443a9693f85c (patch)
treea873eed9029668e4d0cfed733518604fd5cbf118 /ui/static/css
parentd2b360f7b312cb56930184e47d59835c3b23e8f2 (diff)
downloadv2-fe8347f32afe996a36c946b9816e443a9693f85c.tar.gz
v2-fe8347f32afe996a36c946b9816e443a9693f85c.tar.zst
v2-fe8347f32afe996a36c946b9816e443a9693f85c.zip
Change feed title to a link to original website
Diffstat (limited to 'ui/static/css')
-rw-r--r--ui/static/css/common.css10
-rw-r--r--ui/static/css/dark.css1
-rw-r--r--ui/static/css/light.css1
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;