|
17 | 17 | .edit-meeting-schedule .past-flag { visibility: hidden; font-size: smaller; } |
18 | 18 | .edit-meeting-schedule .edit-grid .timeslot.past .past-flag { visibility: visible; color: #aaaaaa; } |
19 | 19 | {# type and purpose styling #} |
20 | | - .edit-meeting-schedule .edit-grid .timeslot.wrong-timeslot-type { background-color: transparent; ); } |
21 | | - .edit-meeting-schedule .edit-grid .timeslot.wrong-timeslot-type .time-label { color: transparent; ); } |
22 | | - .edit-meeting-schedule .session.hidden-purpose { filter: blur(3px); } |
| 20 | + .edit-meeting-schedule .edit-grid .timeslot.wrong-timeslot-type, |
| 21 | + .edit-meeting-schedule .edit-grid .timeslot.hidden-timeslot-type { background-color: transparent; ); } |
| 22 | + .edit-meeting-schedule .edit-grid .timeslot.wrong-timeslot-type .time-label, |
| 23 | + .edit-meeting-schedule .edit-grid .timeslot.hidden-timeslot-type .time-label { color: transparent; ); } |
| 24 | + .edit-meeting-schedule .session.hidden-purpose, |
| 25 | + .edit-meeting-schedule .session.hidden-timeslot-type { filter: blur(3px); } |
23 | 26 | {% endblock morecss %} |
24 | 27 |
|
25 | 28 | {% block title %}{{ schedule.name }}: IETF {{ meeting.number }} meeting agenda{% endblock %} |
|
172 | 175 | </div> |
173 | 176 |
|
174 | 177 | <div class="preferences"> |
175 | | - <span class="sort-unassigned"> |
176 | | - Sort unassigned: |
177 | | - <select name="sort_unassigned" class="form-control"> |
178 | | - <option value="name" selected="selected">By name</option> |
179 | | - <option value="parent">By area</option> |
180 | | - <option value="duration">By duration</option> |
181 | | - <option value="comments">Special requests</option> |
182 | | - </select> |
183 | | - </span> |
184 | | - |
185 | | - <span class="session-parent-toggles"> |
186 | | - Show: |
187 | | - {% for p in session_parents %} |
188 | | - <label class="parent-{{ p.acronym }}"><input type="checkbox" checked value="{{ p.acronym }}"> {{ p.acronym }}</label> |
189 | | - {% endfor %} |
190 | | - </span> |
| 178 | + <div> |
| 179 | + <span class="sort-unassigned"> |
| 180 | + Sort unassigned: |
| 181 | + <select name="sort_unassigned" class="form-control"> |
| 182 | + <option value="name" selected="selected">By name</option> |
| 183 | + <option value="parent">By area</option> |
| 184 | + <option value="duration">By duration</option> |
| 185 | + <option value="comments">Special requests</option> |
| 186 | + </select> |
| 187 | + </span> |
| 188 | + |
| 189 | + <span class="timeslot-group-toggles"> |
| 190 | + <button class="btn btn-default" data-toggle="modal" data-target="#timeslot-group-toggles-modal"><input type="checkbox" checked="checked" disabled> Timeslots</button> |
| 191 | + </span> |
| 192 | + </div> |
191 | 193 |
|
192 | | - <span class="session-purpose-toggles"> |
193 | | - {% for purpose in session_purposes %} |
194 | | - <label class="purpose-{{ purpose.slug }}"><input type="checkbox" checked value="{{ purpose.slug }}"> {{ purpose }}</label> |
195 | | - {% endfor %} |
196 | | - </span> |
| 194 | + <div> |
| 195 | + <span class="toggle-inputs session-parent-toggles"> |
| 196 | + Show: |
| 197 | + {% for p in session_parents %} |
| 198 | + <label class="parent-{{ p.acronym }}"><input type="checkbox" checked value="{{ p.acronym }}"> {{ p.acronym }}</label> |
| 199 | + {% endfor %} |
| 200 | + </span> |
197 | 201 |
|
198 | | - <span class="timeslot-group-toggles"> |
199 | | - <button class="btn btn-default" data-toggle="modal" data-target="#timeslot-group-toggles-modal"><input type="checkbox" checked="checked" disabled> Timeslots</button> |
200 | | - </span> |
| 202 | + <span class="toggle-inputs session-purpose-toggles"> |
| 203 | + Purpose: |
| 204 | + {% for purpose in session_purposes %} |
| 205 | + <label class="purpose-{{ purpose.slug }}"><input type="checkbox" checked value="{{ purpose.slug }}"> {{ purpose }}</label> |
| 206 | + {% endfor %} |
| 207 | + </span> |
| 208 | + |
| 209 | + <span class="toggle-inputs timeslot-type-toggles"> |
| 210 | + Type: |
| 211 | + {% for type in timeslot_types %} |
| 212 | + <label class="timeslot-type-{{ type.slug }}"><input type="checkbox" checked value="{{ type.slug }}"> {{ type }}</label> |
| 213 | + {% endfor %} |
| 214 | + </span> |
| 215 | + </div> |
201 | 216 | </div> |
202 | 217 | </div> |
203 | 218 |
|
|
0 commit comments