mirror of
https://github.com/immich-app/immich
synced 2026-08-15 13:03:57 +00:00
fix: scrollbar ui theme colors (#27455)
This commit is contained in:
parent
2166f07b1f
commit
b465f2b58f
1 changed files with 6 additions and 7 deletions
|
|
@ -128,25 +128,24 @@
|
|||
|
||||
/* Track */
|
||||
html::-webkit-scrollbar-track {
|
||||
background: #f1f1f1;
|
||||
border-radius: 16px;
|
||||
background-color: var(--immich-ui-light-100);
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
/* Handle */
|
||||
html::-webkit-scrollbar-thumb {
|
||||
background: rgba(85, 86, 87, 0.408);
|
||||
border-radius: 16px;
|
||||
background-color: color-mix(in oklab, var(--immich-ui-light-600) 40%, transparent);
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
/* Handle on hover */
|
||||
html::-webkit-scrollbar-thumb:hover {
|
||||
background: #4250afad;
|
||||
border-radius: 16px;
|
||||
background-color: color-mix(in oklab, var(--immich-ui-primary-500) 70%, transparent);
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
color: #3a3a3a;
|
||||
color: var(--immich-ui-dark);
|
||||
}
|
||||
|
||||
body.asset-viewer-open {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue