ags/styles/components/_quick_settings.scss

68 lines
1.1 KiB
SCSS
Raw Normal View History

2025-02-13 21:58:31 +01:00
@use '../colors' as *;
2025-02-06 12:05:55 +01:00
window.quick_settings {
font-weight: bold;
>box {
border-radius: 10px;
margin: 8px;
}
>.inner {
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
2025-02-13 21:58:31 +01:00
background: $background;
2025-02-06 12:05:55 +01:00
padding: 0.75rem 3rem;
margin: 0;
2025-02-13 21:58:31 +01:00
* { color: $foreground; }
2025-02-06 12:05:55 +01:00
}
button {
padding: 0.75rem 1rem;
}
}
window.qs_bluetooth {
>.inner {
2025-02-13 21:58:31 +01:00
background: $background;
2025-02-06 12:05:55 +01:00
padding: 0.75rem 3rem;
border-radius: 10px;
2025-02-13 21:58:31 +01:00
* { color: $foreground; }
2025-02-06 12:05:55 +01:00
}
.device {
padding: 1rem 3rem;
}
button {
padding: 0.75rem 0.5rem;
}
}
window.quick_settings button, window.qs_bluetooth button {
2025-02-13 21:58:31 +01:00
background: $background;
border: 2px solid $foreground;
2025-02-06 12:05:55 +01:00
margin: 5px;
transition: 400ms cubic-bezier(0.05, 0.7, 0.1, 1);
&:hover {
2025-02-13 21:58:31 +01:00
background: $foreground;
2025-02-06 12:05:55 +01:00
* {
2025-02-13 21:58:31 +01:00
color: $background;
2025-02-06 12:05:55 +01:00
}
}
&.active {
2025-02-13 21:58:31 +01:00
background: $foreground;
border: 0.5px solid $background;
2025-02-06 12:05:55 +01:00
* {
2025-02-13 21:58:31 +01:00
color: $background;
2025-02-06 12:05:55 +01:00
}
}
2025-02-13 21:58:31 +01:00
}