From 859a8130c1093622b4c475fd63b0e156e043f295 Mon Sep 17 00:00:00 2001 From: "L. Karkkainen" Date: Fri, 27 Jan 2023 04:38:21 +0000 Subject: [PATCH] Fix Sanic brand colour in breadcrumbs. --- sanic/pages/autoindex.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sanic/pages/autoindex.py b/sanic/pages/autoindex.py index d53938df..7ce68812 100644 --- a/sanic/pages/autoindex.py +++ b/sanic/pages/autoindex.py @@ -19,8 +19,7 @@ class AutoIndex(BasePage): #breadcrumbs .path-0 a::before { content: "🏠"; } a { text-decoration: none; } a:hover { text-decoration: underline; } - #breadcrumbs span { display: inline-block; } - #breadcrumbs span:has(> a:hover) * { color: #ff0d61; text-shadow: 0 0 0.3rem; } + #breadcrumbs span:has(> a:hover) * { color: #ff0d68; text-shadow: 0 0 0.3rem; } table.autoindex tr { display: flex; } table.autoindex td { margin: 0 0.5rem; } table.autoindex td:first-child { flex: 1; }