Fixed display issues w/ user login
authorAlexander Ebert <ebert@woltlab.com>
Tue, 24 May 2016 14:08:50 +0000 (16:08 +0200)
committerAlexander Ebert <ebert@woltlab.com>
Tue, 24 May 2016 14:08:59 +0000 (16:08 +0200)
wcfsetup/install/files/style/ui/userLogin.scss

index 43a1c7a72e5b5a2d917534beedfa636ec1481fe6..f54938d9de6af43041ba51727bff3bb371759881 100644 (file)
                column-gap: 40px;
                
                > .section {
+                       /* Sections should never be split, but Firefox, IE and Edge don't seem
+                          to care about this despite advertising the support for it. We can work
+                          around this by using `overflow: hidden` which magically does the job,
+                          but doesn't affect Chrome which properly breaks anyway. */
+                       
                        margin-top: 0;
+                       overflow: hidden; /* Fix for Firefox, IE and Edge */
                        
                        -webkit-column-break-inside: avoid; /* Chrome, Safari, Opera */
                        page-break-inside: avoid; /* Firefox */