chore(agsV2): fix deprecation warnings for scss
All checks were successful
Discord / discord commits (push) Has been skipped
All checks were successful
Discord / discord commits (push) Has been skipped
This commit is contained in:
parent
685825fb07
commit
7b48cb8487
8 changed files with 22 additions and 11 deletions
|
@ -1,3 +1,11 @@
|
|||
// TODO: touch gestures
|
||||
// TODO: persisting data like bluetooth
|
||||
// TODO: quick-settings
|
||||
// TODO: music player stuff
|
||||
// TODO: on-screen-keyboard
|
||||
// TODO: Greetd
|
||||
// TODO: GSR
|
||||
|
||||
import GLib from 'gi://GLib';
|
||||
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
@use '../../style/colors' as colors;
|
||||
@use 'sass:color';
|
||||
@use '../../style/colors';
|
||||
|
||||
.bar {
|
||||
margin-left: 5px;
|
||||
|
@ -8,14 +9,14 @@
|
|||
.bar-item {
|
||||
padding: 5px 10px 5px 10px;
|
||||
border-radius: 7px;
|
||||
background-color: darken(colors.$window_bg_color, 3%);
|
||||
background-color: color.adjust(colors.$window_bg_color, $lightness: -3%);
|
||||
font-size: 20px;
|
||||
min-height: 35px;
|
||||
|
||||
transition: background-color 300ms;
|
||||
|
||||
&:hover {
|
||||
background-color: lighten(colors.$window_bg_color, 3%);
|
||||
background-color: color.adjust(colors.$window_bg_color, $lightness: 3%);
|
||||
}
|
||||
|
||||
&.network icon {
|
||||
|
|
|
@ -14,7 +14,7 @@ import BarRevealer from './fullscreen';
|
|||
import Separator from '../misc/separator';
|
||||
|
||||
|
||||
// TODO: add Bluetooth, Kbd Layout
|
||||
// TODO: add Bluetooth
|
||||
export default () => (
|
||||
<BarRevealer
|
||||
exclusivity={Astal.Exclusivity.EXCLUSIVE}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@use '../../style/colors' as colors;
|
||||
@use '../../style/colors';
|
||||
|
||||
.date {
|
||||
margin-top: 0;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@use '../../style/colors' as colors;
|
||||
@use '../../style/colors';
|
||||
|
||||
.sorted-list {
|
||||
.search {
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
@use '../../style/colors' as colors;
|
||||
@use 'sass:color';
|
||||
@use '../../style/colors';
|
||||
|
||||
.notification.widget {
|
||||
// urgencies
|
||||
|
@ -37,7 +38,7 @@
|
|||
margin: 3px;
|
||||
|
||||
.background {
|
||||
background-color: darken(colors.$window_bg_color, 3%);
|
||||
background-color: color.adjust(colors.$window_bg_color, $lightness: -3%);
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
@use '../../style/colors' as colors;
|
||||
@use 'sass:color';
|
||||
@use '../../style/colors';
|
||||
|
||||
.powermenu {
|
||||
font-size: 70px;
|
||||
|
@ -15,7 +16,7 @@
|
|||
|
||||
&:hover,
|
||||
&:active {
|
||||
background-color: lighten(colors.$window_bg_color, 3%);
|
||||
background-color: color.adjust(colors.$window_bg_color, $lightness: 3%);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@use '../../style/colors' as colors;
|
||||
@use '../../style/colors';
|
||||
|
||||
.screenshot {
|
||||
font-size: 30px;
|
||||
|
|
Loading…
Reference in a new issue