Modified the "notvisible" CSS class to account for edge cases.

In particular, I added absolute positioning and hidden overflow,
which ensures that if an element has a persistent min-width
(like a file input field apparently does), it doesn't affect its
parent.

(imported from commit 72e7a5bee2775fb6f229899ba849292eee76aa4a)
This commit is contained in:
Allen Rabinovich 2013-04-25 14:08:05 -07:00
parent 8760c1c7be
commit 417299bdfd

View File

@ -75,7 +75,11 @@ li, .table th, .table td {
.notvisible {
visibility: hidden !important;
width: 0px !important;
min-width: 0px !important;
min-height: 0px !important;
height: 0px !important;
overflow: hidden !important;
position: absolute !important;
}
/* Inline and block code */