Merge pull request #490 from JeLuF/ui1

Visual feedback for the save button in the system settings
This commit is contained in:
cmdr2 2022-11-18 17:10:04 +05:30 committed by GitHub
commit 4000f98ba4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -989,6 +989,16 @@ i.active {
float: right;
font-weight: bold;
}
#save-system-settings-btn {
button#save-system-settings-btn:hover {
transition-duration: 0.1s;
background: hsl(var(--accent-hue), 100%, calc(var(--accent-lightness) + 6%));
}
button#save-system-settings-btn:active {
transition-duration: 0.1s;
background-color: white;
}
button#save-system-settings-btn {
padding: 4pt 8pt;
}