2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-08 17:22:31 +03:00

Fixes #6190: Add print utility classes

This commit is contained in:
Mark Otto
2013-02-05 22:17:28 -08:00
parent 6a9cd513c0
commit 0fe9148b91
6 changed files with 32 additions and 9 deletions
+9
View File
@@ -48,3 +48,12 @@
// Hide
.hidden-phone { display: none !important; }
}
// Print utilities
.visible-print { display: none !important; }
.hidden-print { }
@media print {
.visible-print { display: inherit !important; }
.hidden-print { display: none !important; }
}