File tree Expand file tree Collapse file tree 2 files changed +16
-8
lines changed Expand file tree Collapse file tree 2 files changed +16
-8
lines changed Original file line number Diff line number Diff line change @@ -163,6 +163,14 @@ span.resource-tag.active {
163
163
outline-style : solid;
164
164
}
165
165
166
+ /* Disable transitions */
167
+ .no-transition {
168
+ -webkit-transition : none !important ;
169
+ -moz-transition : none !important ;
170
+ -o-transition : none !important ;
171
+ transition : none !important ;
172
+ }
173
+
166
174
/* Make filter tags sparkle when selected! */
167
175
@keyframes glow_success {
168
176
from { box-shadow : 0 0 2px 2px # aef4af ; }
@@ -216,10 +224,10 @@ span.resource-tag.active.has-background-info-light {
216
224
}
217
225
}
218
226
219
- /* Disable transitions */
220
- . no-transition {
221
- -webkit-transition : none !important ;
222
- -moz-transition : none !important ;
223
- -o-transition : none !important ;
224
- transition : none !important ;
227
+ /* Constrain the width of the filterbox */
228
+ @media screen and ( min-width : 769 px ) {
229
+ . filtering-column {
230
+ max-width : 25 rem ;
231
+ min-width : 18 rem ;
232
+ }
225
233
}
Original file line number Diff line number Diff line change 17
17
{% include "base/navbar.html" %}
18
18
< input type ="hidden " id ="resource-type-input " value ="{{ resource_type }} ">
19
19
< section class ="section ">
20
- < div class ="columns is-centered ">
20
+ < div class ="columns is-variable is-6 is- centered ">
21
21
{# Filtering toolbox #}
22
- < div class ="column is-one-third ">
22
+ < div class ="column filtering-column is-one-third ">
23
23
< div class ="content is-justify-content-center ">
24
24
< nav id ="resource-filtering-panel " class ="panel is-primary ">
25
25
< p class ="panel-heading has-text-centered " id ="filter-panel-header "> Filter Resources</ p >
You can’t perform that action at this time.
0 commit comments