diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-04-16 21:35:43 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-04-16 21:35:43 +0200 |
commit | 7178e3956933242188fbd186f2b8308546bbb0fe (patch) | |
tree | 39432ebae5ee5f9598f18173700a1cea83545f11 /core | |
parent | e68006c0ce13255bc4858d3a8191746c2c831b00 (diff) | |
parent | 7110ecbf06e18ad98d40acb2c762f9f520dec430 (diff) | |
download | nextcloud-server-7178e3956933242188fbd186f2b8308546bbb0fe.tar.gz nextcloud-server-7178e3956933242188fbd186f2b8308546bbb0fe.zip |
Merge pull request #8235 from owncloud/fix-error-mobile
fix error display on smaller screens, fix #8090
Diffstat (limited to 'core')
-rw-r--r-- | core/css/mobile.css | 8 | ||||
-rw-r--r-- | core/css/styles.css | 4 |
2 files changed, 10 insertions, 2 deletions
diff --git a/core/css/mobile.css b/core/css/mobile.css index 821da619295..079fd2c017c 100644 --- a/core/css/mobile.css +++ b/core/css/mobile.css @@ -103,4 +103,12 @@ } +/* fix error display on smaller screens */ +.error-wide { + width: 100%; + margin-left: 0 !important; + -moz-box-sizing: border-box; + box-sizing: border-box; +} + } diff --git a/core/css/styles.css b/core/css/styles.css index 57e2c4479a1..6ca78893953 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -586,8 +586,8 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } } .error-wide { - width: 800px; - margin-left: -250px; + width: 700px; + margin-left: -200px !important; } /* Fixes for log in page, TODO should be removed some time */ |