2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-20 20:00:36 +03:00

Drop the .hidden and .visible classes, save for the print ones

— Moves print display utils to display utils file
— Removes all other .hidden- utils
— Expands on .invisible and it's mixin to provide options for visibility: visible and visibility: hidden
This commit is contained in:
Mark Otto
2017-03-03 12:58:57 -08:00
committed by Mark Otto
parent ebe405a01b
commit 4778190d78
3 changed files with 43 additions and 52 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
// Visibility
@mixin invisible {
visibility: hidden !important;
@mixin invisible($visibility) {
visibility: $visibility !important;
}