Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
vinceliuice committed Apr 3, 2023
1 parent feb049e commit 5e3881d
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 1 deletion.
3 changes: 2 additions & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ while [[ $# -gt 0 ]]; do
shift
;;
-l|--libadwaita)
libadwaita="true"
libadwaita='true'
shift
;;
-r|--remove|-u|--uninstall)
Expand Down Expand Up @@ -741,6 +741,7 @@ if [[ "${gdm:-}" == 'true' && "${remove:-}" != 'true' && "$UID" -eq "$ROOT_UID"
echo -e 'Error: To install a gdm theme you can only select one color'
exit 1
fi

if [[ "${#themes[@]}" -gt 1 ]]; then
echo -e 'Error: To install a gdm theme you can only select one theme'
exit 1
Expand Down
6 changes: 6 additions & 0 deletions src/_sass/gtk/_common-3.0.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3310,6 +3310,12 @@ messagedialog { // Message Dialog styling
}
}

.aboutdialog {
&.background.csd {
border-radius: 0 0 $corner_radius $corner_radius;
}
}

//
// Filechooser
//
Expand Down
4 changes: 4 additions & 0 deletions src/gtk/theme-3.0/gtk-Dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -4368,6 +4368,10 @@ messagedialog.csd.background {
border: none;
}

.aboutdialog.background.csd {
border-radius: 0 0 0 0;
}

filechooser .dialog-action-box {
border-top: 1px solid rgba(255, 255, 255, 0.12);
}
Expand Down
4 changes: 4 additions & 0 deletions src/gtk/theme-3.0/gtk-Light.css
Original file line number Diff line number Diff line change
Expand Up @@ -4346,6 +4346,10 @@ messagedialog.csd.background {
border: none;
}

.aboutdialog.background.csd {
border-radius: 0 0 0 0;
}

filechooser .dialog-action-box {
border-top: 1px solid rgba(0, 0, 0, 0.12);
}
Expand Down
4 changes: 4 additions & 0 deletions src/gtk/theme-3.0/gtk.css
Original file line number Diff line number Diff line change
Expand Up @@ -4362,6 +4362,10 @@ messagedialog.csd.background {
border: none;
}

.aboutdialog.background.csd {
border-radius: 0 0 0 0;
}

filechooser .dialog-action-box {
border-top: 1px solid rgba(0, 0, 0, 0.12);
}
Expand Down

0 comments on commit 5e3881d

Please sign in to comment.