Selection colors; removed prevent-select from most of the stuff since it may be uncomfortable for the user

This commit is contained in:
2024-08-20 21:05:16 +03:00
parent 5b39a91bdb
commit 80f618cb53
5 changed files with 15 additions and 9 deletions

View File

@@ -31,10 +31,6 @@
gap: 5px; gap: 5px;
height: 36px; height: 36px;
font-size: 18px;
color: white;
} }
.announcement__message { .announcement__message {
@@ -43,6 +39,14 @@
white-space: nowrap; white-space: nowrap;
text-size-adjust: auto; text-size-adjust: auto;
font-size: 18px;
color: white;
/*TODO: selection color*/
}
.announcement__message::selection {
background-color: var(--col_panel);
} }
.close-button { .close-button {

View File

@@ -8,7 +8,7 @@
</script> </script>
<footer class="footer prevent-select"> <footer class="footer">
<div class="footer__social-notice-box"> <div class="footer__social-notice-box">
<p class="social-row footer__social-notice-text">Me on other resources:</p> <p class="social-row footer__social-notice-text">Me on other resources:</p>

View File

@@ -10,7 +10,7 @@
</script> </script>
<header class="header prevent-select" data-sveltekit-preload-data="hover"> <header class="header" data-sveltekit-preload-data="hover">
<div class="container header-left"> <div class="container header-left">
<Icon class="header__menu-button" image={MenuIcon} size="64px"/> <Icon class="header__menu-button" image={MenuIcon} size="64px"/>

View File

@@ -9,14 +9,16 @@
--col_accent: #5dc98e; --col_accent: #5dc98e;
--col_text: #000000; --col_text: #000000;
--col_text_select: #5dc98e;
--col_text_query: #ffffff; --col_text_query: #ffffff;
--col_text_invalid: #cc0000; --col_text_invalid: #cc0000;
--col_text_hint: #dedede; --col_text_hint: #dedede;
--col_text_panel: #ffffff; --col_text_panel: #ffffff;
--col_text_panel_select: #be4286;
--col_text_footer: #ffffff; --col_text_footer: #ffffff;
--col_text_footer_select: #5dc98e;
--col_text_copyright: #ffffff; --col_text_copyright: #ffffff;
--col_text_selection: #5dc98e;
} }
@media (prefers-color-scheme: dark) { @media (prefers-color-scheme: dark) {
@@ -32,5 +34,5 @@ body {
::selection { ::selection {
color: var(--col_text_panel); color: var(--col_text_panel);
background: var(--col_text_selection); background: var(--col_text_select);
} }

View File

@@ -24,6 +24,6 @@
<style> <style>
main { main {
height: 100vh; height: 90vh;
} }
</style> </style>