Skip to content
Snippets Groups Projects
Commit e40d68de authored by Tom Robinson's avatar Tom Robinson
Browse files

Rich query builder descriptions tweaks

parent b83d00e9
Branches
Tags
No related merge requests found
......@@ -111,17 +111,21 @@
min-width: 320px;
}
.SelectionItems.open {
.SelectionItems.SelectionItems--open {
opacity: 1;
transition: opacity .3s linear;
pointer-events: all;
}
.SelectionItems.SelectionItems--expanded {
max-height: inherit;
}
.SelectionItem {
display: flex;
align-items: center;
cursor: pointer;
padding: 0.75rem;
padding: 0.75rem 1.5rem 0.75rem 0.75rem;
background-color: #fff;
}
......@@ -166,7 +170,7 @@
.SelectionModule-display {
color: currentColor;
margin-bottom: 0.5em;
margin-bottom: 0.25em;
}
.SelectionModule-description {
......
......@@ -198,7 +198,8 @@ export default React.createClass({
var itemListClasses = cx({
'SelectionItems': true,
'open' : this.state.open
'SelectionItems--open': this.state.open,
'SelectionItems--expanded': this.state.expanded
});
if(this._enableSearch()) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment