1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-08-03 06:38:24 +00:00

Integrated responsive graph columns into official template

This commit is contained in:
Martin Fischer 2017-01-28 08:41:24 +01:00
parent 73d49d8373
commit 8b27b99d0e
2 changed files with 35 additions and 2 deletions

View file

@ -18,4 +18,23 @@
<link rel="icon" type="image/vnd.microsoft.icon" href="<TMPL_VAR NAME="R_PATH">/static/favicon.ico" />
<link rel="SHORTCUT ICON" href="<TMPL_VAR NAME="R_PATH">/static/favicon.ico"/>
<style type="text/css">
td.third_plot_col, td.fourth_plot_col {
display: none;
}
@media (min-width: 1900px) {
td.third_plot_col {
display: inline;
}
}
@media (min-width: 2530px) {
td.third_plot_col, td.fourth_plot_col {
display: inline;
}
}
</style>
</head>