mirror of
https://github.com/munin-monitoring/contrib.git
synced 2025-07-21 18:41:03 +00:00
added comments to media query css
This commit is contained in:
parent
dc4f97c4db
commit
f2a2623d8e
1 changed files with 3 additions and 0 deletions
|
@ -19,16 +19,19 @@
|
|||
<link rel="SHORTCUT ICON" href="<TMPL_VAR NAME="R_PATH">/static/favicon.ico"/>
|
||||
|
||||
<style type="text/css">
|
||||
/* don't display 3rd & 4th column per default */
|
||||
td.third_plot_col, td.fourth_plot_col {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* show 3rd column when display area width is at least 1900 pixels wide */
|
||||
@media (min-width: 1900px) {
|
||||
td.third_plot_col {
|
||||
display: inline;
|
||||
}
|
||||
}
|
||||
|
||||
/* show 3rd & 4th column when display area width is at least 2530 pixels wide */
|
||||
@media (min-width: 2530px) {
|
||||
td.third_plot_col, td.fourth_plot_col {
|
||||
display: inline;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue