aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorubq323 <ubq323@ubq323.website>2022-12-01 20:20:40 +0000
committerubq323 <ubq323@ubq323.website>2022-12-01 20:23:10 +0000
commit5271d10117064a924c1c2e90d748d60e04ce97f8 (patch)
tree3d81c8a24daeb43724eefccfe38954529ab1845b
parent0ea9c2d0001a42743dbbab062cd7af1886727bbb (diff)
more minor css fixes
- actionbuttons should be blue always - breadcrumbs weren't working properly. idk why - username link in the navbar shouldn't be blue (this one has been annoying me for ages)
-rw-r--r--apioforum/static/style.css11
1 files changed, 6 insertions, 5 deletions
diff --git a/apioforum/static/style.css b/apioforum/static/style.css
index 4b2085c..c9c127d 100644
--- a/apioforum/static/style.css
+++ b/apioforum/static/style.css
@@ -29,10 +29,10 @@ a:visited { color: var(--visited); }
.post:last-of-type { border-bottom: 1px solid var(--dark-colour); }
.post-heading,.post-footer { font-size: smaller; }
-.post-heading,.post-footer,.username,.username:visited {
+.post-heading,.post-footer,.username,.username:visited,nav#navbar .username {
color: var(--username-colour);
}
-.username {
+.username,nav#navbar .username{
font-weight: bold;
text-decoration: underline;
}
@@ -269,7 +269,7 @@ nav#pages .pageno { align-self: center; }
content: "]";
color: var(--gray);
}
-.actionbutton {
+.actionbutton,.actionbutton:visited {
color:var(--blue);
white-space: nowrap;
}
@@ -341,8 +341,9 @@ fieldset { margin-bottom: 15px; }
display: inline;
}
-.breadcrumbs li::before {
- content: "/";
+.breadcrumbs li+li::before {
+ content: "/\00a0";
+ padding: 8px;
}
textarea {