Skip to content
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.

Fixing UX issue of inactive panel getting too dim to read text for dark ... #10495

Merged
merged 1 commit into from
Feb 5, 2015
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
4 changes: 2 additions & 2 deletions src/styles/brackets.less
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,6 @@ a, img {
/* Placeholder shown when there is no editor open */

.view-pane {
opacity: 0.7; // quieten inactive pane
display: block;
margin: 0;
overflow: hidden;
Expand Down Expand Up @@ -480,6 +479,7 @@ a, img {
}
}
.pane-header {
opacity: 0.7; // quieten inactive pane header
box-sizing: border-box;
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
padding: 5px 10px;
Expand All @@ -494,9 +494,9 @@ a, img {
}
}
.active-pane {
opacity: 1;

.pane-header {
opacity: 1;
color: @bc-menu-text;

.dark & {
Expand Down