Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
11 changes: 8 additions & 3 deletions bundles/org.eclipse.ui.themes/css/dark/e4-dark_globalstyle.css
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,14 @@ CompareViewerPane > * {
color: '#org-eclipse-ui-workbench-DARK_FOREGROUND';
}

ProgressIndicator {
background-color: #777;
color: '#org-eclipse-ui-workbench-DARK_FOREGROUND';
/* Element selectors match the exact widget class name, so the bars inside a
* ProgressIndicator need the child selector. Inside a part the bar is styled by
* the '.MPart' copies in e4-dark_partstyle.css. */
ProgressIndicator,
ProgressIndicator > *,
ProgressBar {
background-color: #5A5F62;
color: '#org-eclipse-ui-workbench-LINK_COLOR';
}

DiscoveryItem,
Expand Down
9 changes: 9 additions & 0 deletions bundles/org.eclipse.ui.themes/css/dark/e4-dark_partstyle.css
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,15 @@
}


/* Ties '.MPart Composite > * > *' above on specificity, so it has to sit after
* it. Keep in step with the ProgressBar rule in e4-dark_globalstyle.css. */
.MPart ProgressIndicator,
.MPart ProgressIndicator > *,
.MPart ProgressBar {
background-color: #5A5F62;
color: '#org-eclipse-ui-workbench-LINK_COLOR';
}

.MPart Section > Label {
background-color: #2F2F2F;
color: #ABCEDA;
Expand Down
Loading