From c958331b2c4bee9b378aa44d57f06bf48787cad9 Mon Sep 17 00:00:00 2001 From: Thomas Lynch Date: Fri, 12 Aug 2022 22:06:21 +1000 Subject: [PATCH] theme and consistency improvements for tabbed settings --- gulp/res/css/themes/adaptive.css | 4 ++++ gulp/res/css/themes/tomorrow2.css | 4 ++++ gulp/res/css/themes/win95.css | 10 ++++++++++ 3 files changed, 18 insertions(+) diff --git a/gulp/res/css/themes/adaptive.css b/gulp/res/css/themes/adaptive.css index 3f2b360b..264e8886 100644 --- a/gulp/res/css/themes/adaptive.css +++ b/gulp/res/css/themes/adaptive.css @@ -60,6 +60,10 @@ tr:nth-child(2n+1) { filter: invert(90%); } +.box-wrap, .tabs li a { + border: 1px solid #000; +} + @media only screen and (max-width: 600px) { .post-info{ diff --git a/gulp/res/css/themes/tomorrow2.css b/gulp/res/css/themes/tomorrow2.css index c688ff4a..6b2d3b9c 100644 --- a/gulp/res/css/themes/tomorrow2.css +++ b/gulp/res/css/themes/tomorrow2.css @@ -52,6 +52,10 @@ table { filter: invert(90%); } +.box-wrap, .tabs li a { + border: 1px solid #000; +} + @media only screen and (max-width: 600px) { .post-info{ diff --git a/gulp/res/css/themes/win95.css b/gulp/res/css/themes/win95.css index 9247bab4..d711fe29 100644 --- a/gulp/res/css/themes/win95.css +++ b/gulp/res/css/themes/win95.css @@ -168,3 +168,13 @@ input[type=submit], input[type=submit], label[for=file] { color: black; border-left-color: #ddd; } +.box-wrap, .tabs li a { + border: 2px solid var(--post-outline-color); + background: var(--post-color)!important; +} +.box-wrap .col { + background: var(--post-color)!important; +} +#tab-10:target a[href="#tab-10"], #tab-1:target a[href="#tab-1"], #tab-2:target a[href="#tab-2"], #tab-3:target a[href="#tab-3"], #tab-4:target a[href="#tab-4"], #tab-5:target a[href="#tab-5"], #tab-6:target a[href="#tab-6"], #tab-7:target a[href="#tab-7"], #tab-8:target a[href="#tab-8"], #tab-9:target a[href="#tab-9"] { + border: 2px inset var(--post-color); +}