hide bookmarks tab for printing, with "@media print" css

This commit is contained in:
Jon Atkins
2014-07-09 05:42:26 +01:00
parent 8f2bb08a6a
commit ed62714734
2 changed files with 9 additions and 3 deletions

View File

@ -2,7 +2,7 @@
// @id iitc-plugin-bookmarks@ZasoGD
// @name IITC plugin: Bookmarks for maps and portals
// @category Controls
// @version 0.2.11.@@DATETIMEVERSION@@
// @version 0.2.12.@@DATETIMEVERSION@@
// @namespace https://github.com/jonatkins/ingress-intel-total-conversion
// @updateURL @@UPDATEURL@@
// @downloadURL @@DOWNLOADURL@@

View File

@ -1,3 +1,9 @@
/* hide when printing */
@media print {
#bkmrksTrigger { display: none !important; }
}
#bookmarksBox *{
display:block;
padding:0;
@ -243,7 +249,7 @@
border-left-width:0;
}
#bkmrksTrigger{
display:block !important;
display:block;
position:absolute;
overflow:hidden;
top:0;
@ -713,4 +719,4 @@
}
#bkmrksSetbox{
text-align:center;
}
}