From 8f0a67fa021400635d7aa765b2c9b17c90b8a0c7 Mon Sep 17 00:00:00 2001
From: bkanhu <iamkanhuc@gmail.com>
Date: Thu, 21 May 2020 13:58:59 +0000
Subject: [PATCH] fixed visibility issue on tags & category below post while changing theme
---
assets/css/style.css | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/assets/css/style.css b/assets/css/style.css
index 74b9903..630666a 100644
--- a/assets/css/style.css
+++ b/assets/css/style.css
@@ -23,7 +23,7 @@
--border-color: rgb(38, 38, 38);;
--pre-bg-color: #21212d;
--nav-text-color:rgb(191, 191, 191);
- --tag-color: rgb(83, 83, 83) !important;
+ --tag-color: #fff !important;
}
body {
@@ -48,8 +48,8 @@
.category {
padding: 4px 6px;
border-radius: 3px;
- color: #fff;
- background-color: #f9f9fd;
+ color: #000 !important;
+ background-color: #d1d1fd;
border: 1px solid var(--border-color);
}
@@ -84,7 +84,7 @@
-o-transition: all .15s linear;
-ms-transition: all .15s linear;
transition: all .15s linear;
- color: #424242;
+ color: var(--tag-color);
}
a:hover, a:active {
--
Gitblit v1.10.0