Callisto patches (mnemonic delete, command key, border color)

This commit is contained in:
Maia 2025-06-07 14:43:32 -07:00
parent 9fa72e4280
commit 628edd0366
4 changed files with 128104 additions and 0 deletions

111939
debian/patches/3000_no-mnemonics.patch vendored Normal file

File diff suppressed because it is too large Load Diff

16116
debian/patches/3001-command_key.patch vendored Normal file

File diff suppressed because it is too large Load Diff

46
debian/patches/3002-border_colors.patch vendored Normal file
View File

@ -0,0 +1,46 @@
Description: Change border color in UI
Evolution is hardcoded to draw 1px black borders between
several UI elements, which look odd in the Callisto themes.
Change them to a color that blends better with the Callisto
#d6d6d6 widget color.
Origin: Callisto Desktop
Author: Maia <maia@tsundoku.ne.jp>
Last-Update: 2023-06-19
diff -urN a/src/shell/e-shell-window.c b/src/shell/e-shell-window.c
--- a/src/shell/e-shell-window.c 2023-06-01 23:40:01.000000000 -0700
+++ b/src/shell/e-shell-window.c 2023-06-19 07:50:03.027856614 -0700
@@ -68,29 +68,29 @@
static const char *css =
".table-header {\
- border-bottom: 1px solid @borders;\
+ border-bottom: 1px solid #b0b0b0;\
}\
.button {\
padding: 3px 5px;\
}\
.table-header .button {\
- border-right: 1px solid @borders;\
+ border-right: 1px solid #b0b0b0;\
}\
.table-header .button.last {\
border-right: none;\
}\
toolbar {\
- border-bottom: 1px solid @borders;\
+ border-bottom: 1px solid #b0b0b0;\
}\
.taskbar border {\
border-width: 1px 0 0 0;\
}\
.header-box {\
- border-bottom: 1px solid @borders;\
+ border-bottom: 1px solid #b0b0b0;\
padding: 3px;\
}\
#e-attachment-bar {\
- border-top: 1px solid @borders;\
+ border-top: 1px solid #b0b0b0;\
}\
";

View File

@ -8,3 +8,6 @@ Update-Slovak-translation.patch
Update-Hungarian-translation.patch
Update-Russian-translation.patch
Update-Abkhazian-translation.patch
3000_no-mnemonics.patch
3001-command_key.patch
3002-border_colors.patch