From 6878973e9ba338a245f5d5d14e418ae0586b7bd6 Mon Sep 17 00:00:00 2001 From: Mykola Fant Date: Tue, 8 Oct 2024 16:13:05 +0300 Subject: [PATCH] Adjust z-index of feedback buttons (#233) - adjust the z-index of feedback buttons - change the color of the kapa modal close button ![image](https://github.com/user-attachments/assets/62f6be3e-8a5b-491b-869d-1165670c4af4) --- src/css/feedback.css | 2 +- src/css/kapa.css | 7 +++++++ src/css/site.css | 1 + 3 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 src/css/kapa.css diff --git a/src/css/feedback.css b/src/css/feedback.css index 52870e4d..766997f6 100644 --- a/src/css/feedback.css +++ b/src/css/feedback.css @@ -10,7 +10,7 @@ top: calc(var(--toc-top) + var(--toc-height)); margin-left: 5em; margin-right: var(--toc-margin-right); - z-index: 999; + z-index: 199; } @media screen and (max-height: 670px) { diff --git a/src/css/kapa.css b/src/css/kapa.css new file mode 100644 index 00000000..510391a2 --- /dev/null +++ b/src/css/kapa.css @@ -0,0 +1,7 @@ +.mantine-Modal-close { + color: #f8f9fa; +} + +.mantine-Modal-close:hover { + color: #868e96; +} diff --git a/src/css/site.css b/src/css/site.css index abe67ea3..7434565f 100644 --- a/src/css/site.css +++ b/src/css/site.css @@ -28,3 +28,4 @@ @import "footer.css"; @import "highlight.css"; @import "print.css"; +@import "kapa.css";