From 3ff7dd074fe27a2dff1bec353d6ed37c3a9c8048 Mon Sep 17 00:00:00 2001 From: zumbiepig <121742281+zumbiepig@users.noreply.github.com> Date: Sat, 7 Sep 2024 16:53:41 -0700 Subject: [PATCH] fix themes --- src/resources/styles/themes/cherry-blossom.css | 6 +----- src/resources/styles/themes/hyperdark.css | 9 ++------- src/resources/styles/themes/light.css | 3 +-- src/resources/styles/themes/nether.css | 4 ---- src/resources/styles/themes/overworld.css | 4 ---- src/resources/styles/themes/retro.css | 3 +-- src/resources/styles/themes/the-end.css | 3 +-- 7 files changed, 6 insertions(+), 26 deletions(-) diff --git a/src/resources/styles/themes/cherry-blossom.css b/src/resources/styles/themes/cherry-blossom.css index 60c07d2..b76203e 100644 --- a/src/resources/styles/themes/cherry-blossom.css +++ b/src/resources/styles/themes/cherry-blossom.css @@ -93,14 +93,10 @@ body { .bottom-bar { background-color: #f6e7f3; border-top: 1px solid #e0d1e3; -} - -.bottom-bar div .bottom-bar-left, -.bottom-bar div .bottom-bar-right { color: #333; } -.bottom-bar div .bottom-bar-left:hover { +.bottom-bar > span[onclick]:hover { color: #e5a1b8; } diff --git a/src/resources/styles/themes/hyperdark.css b/src/resources/styles/themes/hyperdark.css index e0c6bf8..d07d56a 100644 --- a/src/resources/styles/themes/hyperdark.css +++ b/src/resources/styles/themes/hyperdark.css @@ -89,19 +89,14 @@ body { .bottom-bar { background-color: #1a1a1a; box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.5); -} - -.bottom-bar div .bottom-bar-left { color: #e0e0e0; } -.bottom-bar div .bottom-bar-left:hover { + +.bottom-bar > span[onclick]:hover { color: #aaa; } -.bottom-bar div .bottom-bar-right { - color: #e0e0e0; -} .downloads span { background-color: #333; diff --git a/src/resources/styles/themes/light.css b/src/resources/styles/themes/light.css index 23603f4..b68ccd4 100644 --- a/src/resources/styles/themes/light.css +++ b/src/resources/styles/themes/light.css @@ -82,8 +82,7 @@ body { border-color: #2e7d32; } -.bottom-bar div .bottom-bar-left, -.bottom-bar div .bottom-bar-right { +.bottom-bar { color: #333; } diff --git a/src/resources/styles/themes/nether.css b/src/resources/styles/themes/nether.css index 415025c..c4da658 100644 --- a/src/resources/styles/themes/nether.css +++ b/src/resources/styles/themes/nether.css @@ -74,10 +74,6 @@ body { background-color: #4c2c2c; border-top: 1px solid #5c3c3c; box-shadow: 0 -2px 4px rgba(255, 69, 0, 0.2); -} - -.bottom-bar div .bottom-bar-left, -.bottom-bar div .bottom-bar-right { color: #ffcc00; } diff --git a/src/resources/styles/themes/overworld.css b/src/resources/styles/themes/overworld.css index 6008d15..b88dd74 100644 --- a/src/resources/styles/themes/overworld.css +++ b/src/resources/styles/themes/overworld.css @@ -74,10 +74,6 @@ body { background-color: #4c6c4c; border-top: 1px solid #5c7c5c; box-shadow: 0 -2px 4px rgba(0, 255, 0, 0.2); -} - -.bottom-bar div .bottom-bar-left, -.bottom-bar div .bottom-bar-right { color: #00ff00; } diff --git a/src/resources/styles/themes/retro.css b/src/resources/styles/themes/retro.css index d9965ba..5884627 100644 --- a/src/resources/styles/themes/retro.css +++ b/src/resources/styles/themes/retro.css @@ -72,8 +72,7 @@ body { animation: none; } -.bottom-bar div .bottom-bar-left:hover { - text-decoration: none; +.bottom-bar > span[onclick]:hover { color: #00ff00; } diff --git a/src/resources/styles/themes/the-end.css b/src/resources/styles/themes/the-end.css index c643c9d..7426222 100644 --- a/src/resources/styles/themes/the-end.css +++ b/src/resources/styles/themes/the-end.css @@ -72,8 +72,7 @@ body { border-color: #22004d; } -.bottom-bar div .bottom-bar-left:hover { - text-decoration: underline; +.bottom-bar > span[onclick]:hover { color: #b300b3; }