mirror of
https://github.com/immich-app/immich.git
synced 2026-05-18 03:10:24 +03:00
fix: scrollbar ui theme colors (#27455)
This commit is contained in:
+6
-7
@@ -128,25 +128,24 @@
|
|||||||
|
|
||||||
/* Track */
|
/* Track */
|
||||||
html::-webkit-scrollbar-track {
|
html::-webkit-scrollbar-track {
|
||||||
background: #f1f1f1;
|
background-color: var(--immich-ui-light-100);
|
||||||
border-radius: 16px;
|
border-radius: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Handle */
|
/* Handle */
|
||||||
html::-webkit-scrollbar-thumb {
|
html::-webkit-scrollbar-thumb {
|
||||||
background: rgba(85, 86, 87, 0.408);
|
background-color: color-mix(in oklab, var(--immich-ui-light-600) 40%, transparent);
|
||||||
border-radius: 16px;
|
border-radius: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Handle on hover */
|
/* Handle on hover */
|
||||||
html::-webkit-scrollbar-thumb:hover {
|
html::-webkit-scrollbar-thumb:hover {
|
||||||
background: #4250afad;
|
background-color: color-mix(in oklab, var(--immich-ui-primary-500) 70%, transparent);
|
||||||
border-radius: 16px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
color: #3a3a3a;
|
color: var(--immich-ui-dark);
|
||||||
}
|
}
|
||||||
|
|
||||||
body.asset-viewer-open {
|
body.asset-viewer-open {
|
||||||
|
|||||||
Reference in New Issue
Block a user