mirror of
https://github.com/zulip/zulip.git
synced 2026-07-12 21:04:41 +08:00
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:
parent
8760c1c7be
commit
417299bdfd
@ -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 */
|
||||
|
||||
Loading…
Reference in New Issue
Block a user