mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 12:47:13 +01:00
53 lines
1.3 KiB
CSS
53 lines
1.3 KiB
CSS
html,
|
|
body {
|
|
font-family: var(--font-family), sans-serif;
|
|
color: var(--font-color);
|
|
font-size: var(--font-size);
|
|
background-color: var(--base-color-2);
|
|
width: 100%;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
html[style*='padding-right'] {
|
|
padding-right: 0 !important;
|
|
}
|
|
|
|
a,
|
|
a:active,
|
|
a:hover {
|
|
color: var(--font-color);
|
|
text-decoration: none;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 15px;
|
|
background: transparent;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
border: 7px solid rgba(0, 0, 0, 0);
|
|
background-color: var(--base-color-4);
|
|
background-clip: padding-box;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
border: 7px solid rgba(0, 0, 0, 0);
|
|
background-color: var(--base-color-9);
|
|
border-radius: var(--border-radius-full);
|
|
background-clip: padding-box;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
border: 4px solid rgba(0, 0, 0, 0);
|
|
background-clip: padding-box;
|
|
}
|
|
|
|
/* Remove autofill background color - matches react-zen TextField structure */
|
|
.TextField_field__YzU1O input:-webkit-autofill,
|
|
.TextField_field__YzU1O input:-webkit-autofill:hover,
|
|
.TextField_field__YzU1O input:-webkit-autofill:focus,
|
|
.TextField_field__YzU1O input:-webkit-autofill:active {
|
|
-webkit-box-shadow: 0 0 0px 1000px var(--background-color) inset !important;
|
|
-webkit-text-fill-color: var(--font-color) !important;
|
|
transition: background-color 5000s ease-in-out 0s;
|
|
}
|