Commit 3ec90096 authored by JC Brand's avatar JC Brand

Updates #864: Bugfix. Both select elements were being shown

parent 738d2272
......@@ -2156,9 +2156,10 @@
margin: 0;
padding: 0;
padding-left: 0.4em;
width: 53%; }
#conversejs #converse-roster .roster-filter-form .state-type-state {
width: 53%;
display: none; }
#conversejs #converse-roster .roster-filter-form .state-type-state {
display: inline-block; }
#conversejs #converse-roster .roster-filter-form .filter-type {
display: table-cell;
float: right;
......
......@@ -61,9 +61,10 @@
padding: 0;
padding-left: 0.4em;
width: 53%;
display: none;
}
.state-type-state {
display: none;
display: inline-block;
}
.filter-type {
display: table-cell;
......
<form class="pure-form roster-filter-form input-button-group">
<input value="{{filter_text}}" class="roster-filter roster-filter-{{filter_type}}"
placeholder="{{placeholder}}">
<select class="state-type state-type-{{filter_type}}">
<select class="state-type state-type-{{filter_type}}">
<option value="">{{label_any}}</option>
<option {[ if (chat_state === 'unread_messages') { ]} selected="selected" {[ } ]}
value="unread_messages">{{label_unread_messages}}</option>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment