From 6278c57a74db3f442dc6a61b9d0443e2e6533a96 Mon Sep 17 00:00:00 2001 From: Lionel Laffineur Date: Fri, 21 Jul 2023 11:50:14 +0200 Subject: [PATCH] Changed color of links to make is less flashy --- adminer/static/default.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/adminer/static/default.css b/adminer/static/default.css index c9fd73af..28d93f22 100644 --- a/adminer/static/default.css +++ b/adminer/static/default.css @@ -1,8 +1,8 @@ /** @author Ondrej Valka, http://valka.info */ /** Icons by https://tabler-icons.io/ (https://github.com/tabler/tabler-icons) */ body { color: rgb(0, 0, 0); background: #fff; font: 90%/1.25 Verdana, Arial, Helvetica, sans-serif; margin: 0; width: -moz-fit-content; width: fit-content; } -a { color: blue; text-decoration: none; } -a:visited { color: blue; } +a { color: #0051cc; text-decoration: none; } +a:visited { color: #0051cc; } a:link:hover, a:visited:hover { color: red; text-decoration: underline; } a.text:hover { text-decoration: none; } a.jush-help:hover { color: inherit; }