better printing support: hide all IITC UI elements when printing, with a css "@media print"
This commit is contained in:
parent
69f3fb211b
commit
8f2bb08a6a
13
style.css
13
style.css
@ -1,5 +1,17 @@
|
||||
/* general rules ******************************************************/
|
||||
|
||||
/* for printing directly from the browser, hide all UI components
|
||||
* NOTE: @media needs to be first?
|
||||
*/
|
||||
@media print {
|
||||
.leaflet-control-container { display: none !important; }
|
||||
#chatcontrols, #chat, #chatinput { display: none !important; }
|
||||
#sidebartoggle, #sidebar { display: none !important; }
|
||||
#updatestatus { display: none !important; }
|
||||
#portal_highlight_select { display: none !important; }
|
||||
}
|
||||
|
||||
|
||||
html, body, #map {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
@ -7,6 +19,7 @@ html, body, #map {
|
||||
background: #0e3d4e;
|
||||
}
|
||||
|
||||
|
||||
body {
|
||||
font-size: 14px;
|
||||
font-family: "Roboto", "Helvetica Neue", Helvetica, sans-serif;
|
||||
|
Loading…
x
Reference in New Issue
Block a user