Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
4aa1543
draft for a heatmap
teamcons Mar 10, 2026
aff1b78
working nonredundant list
teamcons Mar 10, 2026
358079d
working persistency
teamcons Mar 10, 2026
8dba948
wording
teamcons Mar 11, 2026
c173708
try shedding the LanguageSelectionBox
teamcons Mar 17, 2026
eb7d661
Rework panes and get rid of selectionbox
teamcons Mar 17, 2026
2a51343
i forgor this
teamcons Mar 20, 2026
51b4dc6
grey out redundant language selection
teamcons Mar 20, 2026
5110bf2
distinguish 48 and 64 dev
teamcons Mar 22, 2026
5982e74
Introduce a really cool adaptive central separator
teamcons Mar 22, 2026
24b058c
refinements
teamcons Mar 22, 2026
0219c31
divide settings into two categories
teamcons Mar 22, 2026
debd9f4
no redundant enum
teamcons Mar 22, 2026
fc06852
introduce a zoom widget and zoom persistence
teamcons Mar 22, 2026
aa96d39
fix a crash opening options
teamcons Mar 22, 2026
315de80
Fix changing views having wrong margins for target pane
teamcons Mar 22, 2026
92ae30c
move translate button elsewhere than headerbar
teamcons Mar 22, 2026
80ecdc5
refine
teamcons Mar 22, 2026
33e1c9a
simpler menu
teamcons Mar 22, 2026
e8fe170
Introduce a PaneSeparator and make a really squeaky clean central sep…
teamcons Mar 23, 2026
8f6b860
add gsettings key for backend selection
teamcons Mar 23, 2026
0d18aad
UI refinements - adapt margin to orientation
teamcons Mar 23, 2026
980417a
refine editing API key and explanations
teamcons Mar 23, 2026
31065a6
touchups
teamcons Mar 23, 2026
9991f46
Update supported languages
teamcons Mar 24, 2026
99f05d6
refine apilevel spacing
teamcons Mar 24, 2026
67bca88
add accel for toggling auto
teamcons Mar 24, 2026
800aacb
bump platform
teamcons Mar 24, 2026
c4c1bc7
refine UI and code
teamcons Mar 25, 2026
c1b170c
minor translate button padding
teamcons Mar 25, 2026
f1c0688
more UI refinements
teamcons Mar 25, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 29 additions & 10 deletions data/Application.css
Original file line number Diff line number Diff line change
Expand Up @@ -30,24 +30,21 @@ Base from wpkelso: #33434eff
-gtk-icon-transform: rotate(90deg);
}

/* Ruthless way to make the options button flat */
.flat_menu_button .toggle {
outline: none;
border: none;
box-shadow: none;
background: none;
}

/* Pretty coloured titlebar */
/* Pretty coloured titlebar
.primary-background {
background-color: #33434eff;
color: #FFFFFF;
}

.primary-background .button {
background-color: @bg_color;
}*/

.primary-background {
border-bottom: 3px solid #33434eff;
}


/* Pretend the log textview is a console */
.console {
background-color: #002B36;
Expand Down Expand Up @@ -85,4 +82,26 @@ window.devel {
border-style: solid;
border-width: 3px;
border-color: @warning_color;
}
}

/* Used by LanguageItem and tracked by DDModel so we can have a heatmap of recently used languages*/

.accent-1 {
color: mix(@accent_color, @fg_color, 0.27);
}

.accent-2 {
color: mix(@accent_color, @fg_color, 0.22);
}

.accent-3 {
color: mix(@accent_color, @fg_color, 0.17);
}

.accent-4 {
color: mix(@accent_color, @fg_color, 0.12);
}

.accent-5 {
color: mix(@accent_color, @fg_color, 0.07);
}
Loading
Loading