Skip to content

Commit 6453451

Browse files
committed
Added mobile support for Trac.
1 parent c8ce786 commit 6453451

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

scss/trachacks.scss

+22
Original file line numberDiff line numberDiff line change
@@ -408,3 +408,25 @@ div[role="main"]{
408408
}
409409
}
410410
}
411+
412+
/* Mobile */
413+
414+
@media (max-width: 767px) {
415+
#metanav {
416+
ul {
417+
li {
418+
padding: 1em 0.5em !important;
419+
}
420+
}
421+
}
422+
423+
#filters {
424+
min-width: inherit;
425+
overflow: scroll;
426+
}
427+
428+
div:has(.listing.tickets) {
429+
min-width: inherit;
430+
overflow: scroll;
431+
}
432+
}

trac-env/templates/site.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<head py:match="head" py:attrs="select('@*')">
55
${select('*|comment()|text()')}
66

7+
<meta name="viewport" content="width=device-width, initial-scale=1" />
78
<link rel="stylesheet" href="${href.chrome('site/css/output.css')}" />
89
<link rel="stylesheet" href="${href.chrome('site/css/trachacks.css')}" />
910
<!--! uncomment for local version of webfont loader if desired. -->
@@ -172,7 +173,6 @@ <h2>Follow Us</h2>
172173
</div>
173174
</div>
174175

175-
176176
<script data-main="${href.chrome('site/js/main.js')}" src="${href.chrome('site/js/lib/require.js')}"></script>
177177
</body>
178178
</html>

0 commit comments

Comments
 (0)