Scheduler: prevent filter value from shrinking

fixes #1765
This commit is contained in:
Felix Niklas 2018-02-15 08:42:53 +01:00
parent 9860f9e121
commit 888e0e79b8
2 changed files with 16 additions and 7 deletions

View file

@ -17,7 +17,7 @@
<%- @Icon('arrow-down', 'dropdown-arrow') %>
</div>
</div>
<div class="controls js-value horizontal"></div>
<div class="controls js-value horizontal horizontal-filter-value"></div>
</div>
<div class="filter-controls">
<div class="filter-control filter-control-remove js-remove" title="<%- @Ti('Remove') %>">

View file

@ -7424,12 +7424,6 @@ label + .wizard-buttonList {
border-top: none;
}
.horizontal-filter-body {
display: flex;
align-items: center;
flex: 1;
}
.controls,
input {
@include bidi-style(margin-right, 5px, margin-left, 0);
@ -7452,6 +7446,21 @@ label + .wizard-buttonList {
}
}
.horizontal-filter-body {
display: flex;
align-items: center;
flex: 1;
}
.horizontal-filter-value {
flex-shrink: 0;
// lower the min-width of url input fields (normally 400px) so that it fits in
input[type=url] {
min-width: 200px;
}
}
.output-input {
margin: 0 0 14px;