Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Dark Theme]Fix for background color of bread crumbs in Debug view #1706

Merged
Merged
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
42 changes: 25 additions & 17 deletions debug/org.eclipse.debug.ui/css/e4-dark_debug_prefstyle.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,24 +26,32 @@ IEclipsePreferences#org-eclipse-debug-ui {
'org.eclipse.debug.ui.outColor=235,235,235'
}

#DebugBreadcrumbComposite
#DebugBreadcrumbComposite > Composite,
#DebugBreadcrumbItemComposite,
#DebugBreadcrumbItemDetailComposite,
#DebugBreadcrumbItemDetailTextComposite,
#DebugBreadcrumbItemDetailImageComposite,
#DebugBreadcrumbItemDetailTextLabel,
#DebugBreadcrumbItemDetailImageLabel,
#DebugBreadcrumbItemDropDownToolBar
.View #DebugBreadcrumbComposite
.View #DebugBreadcrumbComposite > Composite,
.View #DebugBreadcrumbItemComposite,
.View #DebugBreadcrumbItemDetailComposite,
.View #DebugBreadcrumbItemDetailTextComposite,
.View #DebugBreadcrumbItemDetailImageComposite,
.View #DebugBreadcrumbItemDetailTextLabel,
.View #DebugBreadcrumbItemDetailImageLabel,
.View #DebugBreadcrumbItemDropDownToolBar
{
/*
* Bug 465666
*
* Note: as we can't change the arrow to black, we configure
* the background with the lighter color used for the background
* of toolbars and make the foreground color brighter too.
*/
background-color:#515658;
background-color:#2F2F2F;
color: white;
}

.Editor #DebugBreadcrumbComposite
.Editor #DebugBreadcrumbComposite > Composite,
.Editor #DebugBreadcrumbItemComposite,
.Editor #DebugBreadcrumbItemDetailComposite,
.Editor #DebugBreadcrumbItemDetailTextComposite,
.Editor #DebugBreadcrumbItemDetailImageComposite,
.Editor #DebugBreadcrumbItemDetailTextLabel,
.Editor #DebugBreadcrumbItemDetailImageLabel,
.Editor #DebugBreadcrumbItemDropDownToolBar
{

background-color:#1E1F22;
color: white;
}

Expand Down
Loading