diff --git a/app/ui/download_dialog.glade b/app/ui/download_dialog.glade index 3bfb3442..2404bc6e 100644 --- a/app/ui/download_dialog.glade +++ b/app/ui/download_dialog.glade @@ -243,17 +243,7 @@ Author: Dmitriy Yefremov False 0 False - True - - - True - True - False - False - 9 - - False @@ -614,6 +604,9 @@ Author: Dmitriy Yefremov 2 + @@ -724,4 +717,11 @@ Author: Dmitriy Yefremov + + + + + + + diff --git a/app/ui/main_window.glade b/app/ui/main_window.glade index 9d8b23e9..43ea8136 100644 --- a/app/ui/main_window.glade +++ b/app/ui/main_window.glade @@ -1208,7 +1208,6 @@ Author: Dmitriy Yefremov True False - 1 True @@ -1270,6 +1269,9 @@ Author: Dmitriy Yefremov 2 + diff --git a/app/ui/settings_dialog.py b/app/ui/settings_dialog.py index 21a6f499..78e465ae 100644 --- a/app/ui/settings_dialog.py +++ b/app/ui/settings_dialog.py @@ -744,7 +744,7 @@ class SettingsDialog: def init_appearance(self): t_support = self._ext_settings.is_themes_support self._themes_support_switch.set_active(t_support) - if t_support or True: + if t_support: # GTK try: for t in os.listdir(self._ext_settings.themes_path): diff --git a/app/ui/style.css b/app/ui/style.css index fe517afd..c90360d4 100644 --- a/app/ui/style.css +++ b/app/ui/style.css @@ -10,3 +10,21 @@ #textview-large { font-size: 14px; } + +.group {} + +.group :first-child { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.group :last-child { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.group :not(:first-child):not(:last-child) { + border-radius: 0; + border-left-width: 0; + border-right-width: 0; +} \ No newline at end of file