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

Commit

Permalink
Merge pull request #1834 from adobe/nj/issue-1832
Browse files Browse the repository at this point in the history
Use absolute positioning for status bar areas so they clip rather than...
  • Loading branch information
redmunds committed Oct 15, 2012
2 parents 5bfdca5 + 356defe commit c0a7d31
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions src/styles/brackets.less
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ a, img {
}

#status-bar {
position: relative;
background-color: @background-color-3;
border-top: 1px solid darken(@background-color-3, @bc-color-step-size / 2);
box-sizing: border-box;
Expand All @@ -126,7 +127,10 @@ a, img {
}

#status-info {
float: left;
position: absolute;
left: 8px;
background-color: @background-color-3;
white-space: nowrap;

div {
display: inline;
Expand All @@ -135,7 +139,10 @@ a, img {
}

#status-indicators {
float: right;
position: absolute;
right: 4px;
background-color: @background-color-3;
white-space: nowrap;

&>div {
display: inline;
Expand Down

0 comments on commit c0a7d31

Please sign in to comment.