Skip to content

Commit

Permalink
Mccalluc/max height (#1975)
Browse files Browse the repository at this point in the history
* limit the height of the facet lists

* Expand on hover? This is arguable

* Add styles (#1985)
  • Loading branch information
mccalluc authored and scottx611x committed Aug 9, 2017
1 parent e1b9597 commit 280bbae
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions refinery/ui/source/styles/file-browser.less
Original file line number Diff line number Diff line change
Expand Up @@ -302,9 +302,11 @@

#table-filter {
height: 81vh;
max-height: 81vh;
margin: 0 0 0 10px;
padding: 0;
border: 1px solid #d4d4d4;
overflow: auto;
h3 {
font-weight: bold;
}
Expand Down Expand Up @@ -339,6 +341,16 @@
border-top: none;
padding-top: 0;
padding-bottom: 0;
max-height: 8em;
-moz-transition: .3s;
-ms-transition: .3s;
-o-transition: .3s;
-webkit-transition: .3s;
transition: .3s;
overflow: auto;
}
.panel-body:hover {
max-height: 300px;
}

}
Expand Down

0 comments on commit 280bbae

Please sign in to comment.