Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Bug 423386 - Sidebar resizing in a filtered outline mode causes 'View…
…' menu button to disappear

- Used CSS calc for filter input width to make it as wide as possible

--Signed-off-by: Elijah El-Haddad <elijahe@ca.ibm.com>
  • Loading branch information
elijahe committed Dec 9, 2013
1 parent a0b1df7 commit 9b15665
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion bundles/org.eclipse.orion.client.ui/web/edit/common.css
Expand Up @@ -17,8 +17,10 @@
.outlineFilter {
border: 1px solid lightgrey;
margin: 4px;
width: 65%;
float: left;
width: 65%; /* for older browsers */
width: -webkit-calc(100% - 42px);
width: calc(100% - 42px);
}

.outlineRowMatchesFilter {
Expand Down

0 comments on commit 9b15665

Please sign in to comment.