ags/styles/components/_quick_settings.scss

70 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-15 17:59:27 +01:00
background: $primary;
2025-02-06 12:05:55 +01:00
padding: 0.75rem 3rem;
margin: 0;
2025-02-13 21:58:31 +01:00
2025-02-15 17:59:27 +01:00
* {
transition: all 0.2s ease-in-out;
color: $onPrimary;
}
2025-02-06 12:05:55 +01:00
}
button {
padding: 0.75rem 1rem;
}
}
window.qs_bluetooth {
>.inner {
2025-02-15 17:59:27 +01:00
background: $primary;
2025-02-06 12:05:55 +01:00
padding: 0.75rem 3rem;
border-radius: 10px;
2025-02-13 21:58:31 +01:00
2025-02-15 17:59:27 +01:00
* { color: $onPrimary; }
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-15 17:59:27 +01:00
transition: all 0.2s ease-in-out;
2025-02-18 18:52:35 +01:00
background: $primary;
border: 2px solid $onPrimary;
2025-02-06 12:05:55 +01:00
margin: 5px;
&:hover {
2025-02-18 18:52:35 +01:00
background: $onPrimary;
2025-02-06 12:05:55 +01:00
* {
2025-02-18 18:52:35 +01:00
color: $primary;
2025-02-06 12:05:55 +01:00
}
}
&.active {
2025-02-18 18:52:35 +01:00
background: $onPrimary;
border: 0.5px solid $primary;
2025-02-06 12:05:55 +01:00
* {
2025-02-18 18:52:35 +01:00
color: $primary;
2025-02-06 12:05:55 +01:00
}
}
2025-02-13 21:58:31 +01:00
}