diff options
author | 0neGal <mail@0negal.com> | 2023-01-30 23:22:41 +0100 |
---|---|---|
committer | 0neGal <mail@0negal.com> | 2023-01-30 23:22:41 +0100 |
commit | 84cc46018664cee9d89d71ea75ba687a9171ab28 (patch) | |
tree | 43e71f3b8a1535aa1e6440dd0f7df001efb09749 /src/app/main.css | |
parent | 67778e1ecab4747cf886e8ffcb6a11f96ccc279c (diff) | |
download | Viper-84cc46018664cee9d89d71ea75ba687a9171ab28.tar.gz Viper-84cc46018664cee9d89d71ea75ba687a9171ab28.zip |
added: toggles for toggling mods in modlist
The new modlist now uses the same toggles found in the settings popup,
only here they're used to disable/enable mods. On top of this I also
fixed the "Toggle All" button not working. Forgot to change some stuff,
breaking it... oops...
Diffstat (limited to 'src/app/main.css')
-rw-r--r-- | src/app/main.css | 37 |
1 files changed, 35 insertions, 2 deletions
diff --git a/src/app/main.css b/src/app/main.css index 17ed3ee..671be13 100644 --- a/src/app/main.css +++ b/src/app/main.css @@ -107,10 +107,43 @@ a, button, #close, #nsRelease, #vpReleaseNotes, -webkit-app-region: no-drag; } -/* grids */ - .grid { display: flex; flex-wrap: wrap; } +.switch { + width: 50px; + height: 25px; + border-radius: 50px; + background: var(--selbg); +} + +.switch.on { + background: rgba(var(--red), 0.2) !important; +} + +.switch::after { + left: -5px; + width: 15px; + height: 15px; + content: " "; + display: block; + background: red; + position: relative; + border-radius: 50px; + background: var(--bg); + transition: 0.2s ease-in-out; +} + +.switch.on::after { + left: 15px; + width: 20px; + opacity: 0.5; + background: rgb(var(--red)); +} + +.switch.on:hover::after { + transform: scale(1.2); +} + |