Skip to content

Commit

Permalink
[Dark Theme]Fix for background color of bread crumbs in Debug view
Browse files Browse the repository at this point in the history
  • Loading branch information
mvm-sap authored and BeckerWdf committed Jan 22, 2025
1 parent 47197fc commit 8eed38e
Showing 1 changed file with 25 additions and 17 deletions.
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

0 comments on commit 8eed38e

Please sign in to comment.