From 0328d3087cc3db49428f8c87170ff03b894f98ad Mon Sep 17 00:00:00 2001 From: Bobby Date: Thu, 1 Dec 2022 02:16:02 -0500 Subject: Fix Rendering Issues on Older Browsers --- static/css/main.css | 9 +++++-- templates/blog/partials/base.html | 2 +- templates/dev_status/home.html | 53 ++++++++++++++++++++++++++++++--------- 3 files changed, 49 insertions(+), 15 deletions(-) diff --git a/static/css/main.css b/static/css/main.css index cf7ed98b..4e5df555 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -249,8 +249,9 @@ summary { display: inline-block; padding: 5px 10px; cursor: pointer; - background-color: #06022c; + background: #06022c; color: #8693e1; + margin: 0 5px; } .page-disabled { @@ -260,10 +261,14 @@ summary { .page-active { color: #fff; - background-color: #000; + background: #000; text-decoration: none; } +.page-separator { + border-right: 1px solid #aaa; +} + .label { width: 100%; display: inline-block; diff --git a/templates/blog/partials/base.html b/templates/blog/partials/base.html index b0838887..b558d6fb 100644 --- a/templates/blog/partials/base.html +++ b/templates/blog/partials/base.html @@ -71,7 +71,7 @@ padding: 10px 0px 20px 0px; ">
- +
{% include 'blog/partials/sidebar.html' %}
{% block content %} {% endblock %}
diff --git a/templates/dev_status/home.html b/templates/dev_status/home.html index 7fa8bf06..0edf5c01 100644 --- a/templates/dev_status/home.html +++ b/templates/dev_status/home.html @@ -51,7 +51,7 @@ {% for repo in repos %} - + @@ -64,27 +64,56 @@ + + {% comment %} {% if num_pages and page %} - {% endif %} + {% endif %} {% endcomment %} {% endblock %} -- cgit v1.2.3