Bug #43330
closedBE login shows unaesthetic scrollbars
100%
Description
In FF, IE9 and Chrome (and maybe others) the BE login page has visible scrollbars as the HTML is too big.
Just remove the HTML { height:100% } setting and things are fine.
Updated by Gerrit Code Review almost 12 years ago
- Status changed from New to Under Review
Patch set 1 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/16781
Updated by Markus Klein almost 12 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset be90763d0df86b74b9cf524678beca76ef18871d.
Updated by Christian Kuhn almost 12 years ago
- Status changed from Resolved to New
- Target version deleted (
6.0.0)
Updated by Christian Kuhn almost 12 years ago
- Complexity changed from easy to hard
Updated by Christian Kuhn almost 12 years ago
The patch broke page module drag & drop, see related issue. Reverted for now.
Updated by Torben Hansen almost 12 years ago
The extra margin is added from the #t3-login-form in /typo3/sysext/t3skin/stylesheets/structure/login_screen.css
I think you canĀ“t combine percentual and auto margins for this div-container.
Just remove the 10% top-margin and add a top-padding of 10% for the #t3-login-form. This should fix the problem without breaking the page module drag & drop
The resulting CSS looks like this:
#typo3-index-php #t3-login-form { margin: 0 auto; width: 430px; padding: 10% 0 0 0; }
Updated by Markus Klein almost 12 years ago
Thank you Torben for investigating this further.
Would you mind pushing your change to Gerrit?
Updated by Torben Hansen almost 12 years ago
Pushed to Gerrit - https://review.typo3.org/#/c/17067/
Updated by Gerrit Code Review almost 12 years ago
- Status changed from New to Under Review
Patch set 2 for branch TYPO3_6-0 has been pushed to the review server.
It is available at https://review.typo3.org/17067
Updated by Gerrit Code Review almost 12 years ago
Patch set 1 for branch master has been pushed to the review server.
It is available at https://review.typo3.org/17282
Updated by Torben Hansen almost 12 years ago
- Status changed from Under Review to Resolved
Applied in changeset 312915e507dac271e262039dafabf0a2342e4ece.