Skip to content

Commit

Permalink
standard-UI selection background color changed
Browse files Browse the repository at this point in the history
  • Loading branch information
DogukanUrker committed Jan 16, 2024
1 parent ee18d04 commit d05dbcf
Showing 1 changed file with 26 additions and 14 deletions.
40 changes: 26 additions & 14 deletions static/standardUI/css/general.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,33 +13,45 @@
overflow-wrap: break-word !important;
}

html {
font-size: 125% !important;
}

body {
background-color: var(--themeSecondary);
}

a {
text-decoration: none;
user-select: none;
}

*::-webkit-scrollbar {
width: 0.4rem;
}

*::-webkit-scrollbar-thumb {
border-radius: 1rem;
background: rgb(244 63 94);
background: var(--primaryColor);
}

*::-webkit-scrollbar-track,
*::-webkit-scrollbar-button {
background: transparent;
}

*::selection {
background: var(--primaryColor);
}

*::-moz-selection {
background: var(--primaryColor);
}

*::-webkit-selection {
background: var(--primaryColor);
}

html {
font-size: 125% !important;
}

body {
background-color: var(--themeSecondary);
}

a {
text-decoration: none;
user-select: none;
}

button {
background-color: transparent;
border: 0;
Expand Down

0 comments on commit d05dbcf

Please sign in to comment.