Skip to content

Commit

Permalink
Make Grey Highlight of Inactive Tabs Darker
Browse files Browse the repository at this point in the history
To make it easier to see which one is the "secondary active tab"
(the active tab in inactive part stacks) the grey line in that tab
is made a bit darker.
  • Loading branch information
BeckerWdf committed Sep 20, 2024
1 parent 9b16696 commit 8df2017
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
8 changes: 4 additions & 4 deletions bundles/org.eclipse.ui.themes/css/e4_preview_gtk.css
Original file line number Diff line number Diff line change
Expand Up @@ -208,13 +208,13 @@ CTabFolder Canvas {
}

#org-eclipse-ui-editorss CTabFolder{
swt-selected-tab-fill : '#ffffff';
swt-selected-tab-highlight: '#A0A0A0';
swt-selected-highlight-top: true;
swt-selected-tab-fill : #ffffff;
swt-selected-tab-highlight: #8a8a8a;
swt-selected-highlight-top: true;
swt-tab-outline:#e5e5e5;
swt-tab-outer-keyline: #e5e5e5;
swt-draw-custom-tab-content-background: true;
swt-unselected-hot-tab-color-background:'#FFFFFF';
swt-unselected-hot-tab-color-background:#ffffff;
}

#org-eclipse-ui-editorss CTabFolder.active {
Expand Down
12 changes: 6 additions & 6 deletions bundles/org.eclipse.ui.themes/css/e4_preview_mac.css
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,8 @@ CTabFolder Canvas {
}

.MPartStack{
swt-selected-tab-highlight: #A0A0A0;
swt-selected-highlight-top: false;
swt-selected-tab-highlight: #8a8a8a;
swt-selected-highlight-top: false;
}

.MPartStack.active {
Expand All @@ -178,13 +178,13 @@ CTabFolder Canvas {
}

#org-eclipse-ui-editorss CTabFolder{
swt-selected-tab-fill : '#ffffff';
swt-selected-tab-highlight: '#A0A0A0';
swt-selected-highlight-top: true;
swt-selected-tab-fill : #ffffff;
swt-selected-tab-highlight: #8a8a8a;
swt-selected-highlight-top: true;
swt-tab-outline:#eaeaea;
swt-tab-outer-keyline: #eaeaea;
swt-draw-custom-tab-content-background: true;
swt-unselected-hot-tab-color-background:'#FFFFFF';
swt-unselected-hot-tab-color-background:#ffffff;
}

#org-eclipse-ui-editorss CTabFolder.active {
Expand Down
12 changes: 6 additions & 6 deletions bundles/org.eclipse.ui.themes/css/e4_preview_win.css
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,8 @@ CTabFolder Canvas {
}

.MPartStack{
swt-selected-tab-highlight: #A0A0A0;
swt-selected-highlight-top: false;
swt-selected-tab-highlight: #8a8a8a;
swt-selected-highlight-top: false;
}

.MPartStack.active {
Expand All @@ -182,13 +182,13 @@ CTabFolder Canvas {
}

#org-eclipse-ui-editorss CTabFolder{
swt-selected-tab-fill : '#ffffff';
swt-selected-tab-highlight: '#A0A0A0';
swt-selected-highlight-top: true;
swt-selected-tab-fill : #ffffff;
swt-selected-tab-highlight: #8a8a8a;
swt-selected-highlight-top: true;
swt-tab-outline:#e5e5e5;
swt-tab-outer-keyline: #e5e5e5;
swt-draw-custom-tab-content-background: true;
swt-unselected-hot-tab-color-background:'#FFFFFF';
swt-unselected-hot-tab-color-background:#ffffff;
}

#org-eclipse-ui-editorss CTabFolder.active {
Expand Down

0 comments on commit 8df2017

Please sign in to comment.