mirror of
https://github.com/HeyPuter/puter.git
synced 2026-08-22 05:57:57 +00:00
Add WIP color sliders
This commit is contained in:
+32
-1
@@ -3618,4 +3618,35 @@ label {
|
||||
.confirm-user-deletion-password{
|
||||
width: 100%;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.theme-dialog-slider {
|
||||
--webkit-appearance: none;
|
||||
width: 100%;
|
||||
height: 25px;
|
||||
background: #d3d3d3;
|
||||
outline: none;
|
||||
opacity: 0.7;
|
||||
--webkit-transition: .2s;
|
||||
transition: opacity .2s;
|
||||
}
|
||||
|
||||
.theme-dialog-slider:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.theme-dialog-slider::-webkit-slider-thumb {
|
||||
--webkit-appearance: none;
|
||||
appearance: none;
|
||||
width: 25px;
|
||||
height: 25px;
|
||||
background: #04AA6D;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.theme-dialog-slider::-moz-range-thumb {
|
||||
width: 25px;
|
||||
height: 25px;
|
||||
background: #04AA6D;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
/* used for pseudo-stylesheet */
|
||||
|
||||
/*
|
||||
|
||||
hue = 320; ss.addRule('.taskbar, .window-head, .window-sidebar', `background-color: hsl(${hue}, 65.1%, 70.78%)`)
|
||||
|
||||
*/
|
||||
Reference in New Issue
Block a user