update to nixos 23.05
This commit is contained in:
parent
8bbdb28d32
commit
778794f91b
11 changed files with 189 additions and 247 deletions
|
@ -1,48 +1,19 @@
|
|||
commit 9c516cc61775a88312280f7732328d5fdf7af825
|
||||
Author: lelgenio <lelgenio@disroot.org>
|
||||
Date: Mon May 22 11:30:01 2023 -0300
|
||||
|
||||
fix: limit lowest value for corner-radious at 0
|
||||
|
||||
diff --git a/src/_sass/_variables.scss b/src/_sass/_variables.scss
|
||||
index e8e808e..68ca7ff 100644
|
||||
index 9915a22..6e87a4f 100644
|
||||
--- a/src/_sass/_variables.scss
|
||||
+++ b/src/_sass/_variables.scss
|
||||
@@ -21,7 +21,7 @@ $menuitem-size: if($compact == 'false', 28px, 24px);
|
||||
@@ -24,7 +24,7 @@ $large-icon-size: 32px;
|
||||
//
|
||||
|
||||
$window-radius: $default_corner + $space-size;
|
||||
-$corner-radius: if($compact == 'false', $default_corner, $default_corner - 2px);
|
||||
+$corner-radius: if($compact == 'false', $default_corner, max(0, $default_corner - 2px));
|
||||
$material-radius: $default_corner / 2 + 4px;
|
||||
$menu-radius: $default_corner / 4 + $space-size + 2px;
|
||||
$menuitem-radius: $default_corner / 4 + 2px;
|
||||
$circular-radius: 9999px;
|
||||
diff --git a/src/_sass/gtk/apps/_budgie.scss b/src/_sass/gtk/apps/_budgie.scss
|
||||
index ff60df1..5bfd813 100644
|
||||
--- a/src/_sass/gtk/apps/_budgie.scss
|
||||
+++ b/src/_sass/gtk/apps/_budgie.scss
|
||||
@@ -53,11 +53,11 @@
|
||||
|
||||
button {
|
||||
@extend %button-flat-simple;
|
||||
- border-radius: $corner-radius - $space-size;
|
||||
+ border-radius: max(0, $corner-radius - $space-size);
|
||||
}
|
||||
}
|
||||
|
||||
- calendar:not(.header) { border-radius: $corner-radius - $space-size; }
|
||||
+ calendar:not(.header) { border-radius: max(0, $corner-radius - $space-size); }
|
||||
|
||||
scrolledwindow.sidebar.categories { // AppMenu
|
||||
background-color: $fill;
|
||||
@@ -108,14 +108,14 @@
|
||||
}
|
||||
}
|
||||
|
||||
- button { border-radius: $corner-radius - $space-size; }
|
||||
+ button { border-radius: max(0, $corner-radius - $space-size); }
|
||||
|
||||
button.flat:not(.image-button) {
|
||||
min-height: $menuitem-size;
|
||||
padding: 0 8px;
|
||||
color: $text;
|
||||
font-weight: normal;
|
||||
- border-radius: $corner-radius - $space-size;
|
||||
+ border-radius: max(0, $corner-radius - $space-size);
|
||||
|
||||
&:disabled { color: $text-disabled; }
|
||||
}
|
||||
$popup-radius: $default_corner + $space-size + 2px;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue