1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-04-18 06:15:49 +02:00

Fix CSS change in dialog overlays breaking some cases

This commit is contained in:
chylex 2018-06-07 14:09:35 +02:00
parent 75d60a8182
commit 4a9049c7aa

View File

@ -248,17 +248,21 @@ a[data-full-url] {
/* Fix modal dialogs breaking when window size is too small */ /* Fix modal dialogs breaking when window size is too small */
/************************************************************/ /************************************************************/
.ovl:before, .overlay:before {
display: none !important;
}
.ovl, .overlay { .ovl, .overlay {
flex-direction: column; flex-direction: column;
justify-content: center; justify-content: center;
} }
.ovl[style="display: block;"], .overlay { .ovl[style="display: block;"] {
display: flex !important; display: flex !important;
} }
.overlay:before, .ovl:before { .overlay {
display: none !important; display: flex;
} }
/*******************************************/ /*******************************************/