diff options
author | Unknwon <u@gogs.io> | 2017-06-03 02:58:54 -0400 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2017-06-03 02:58:54 -0400 |
commit | 16913ba8141c997367f5ec91126d2073b0324455 (patch) | |
tree | d1366ac761d3d768cd6b852dc9085d4f102cec0f /public/css | |
parent | 6bb9c442b2d95bf683702c089085bb50b987818f (diff) |
css: start using fixing width container
Get rid of responsive issue.
Also fixes #4527.
Diffstat (limited to 'public/css')
-rw-r--r-- | public/css/gogs.css | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/public/css/gogs.css b/public/css/gogs.css index a06f3deb..6f4979c2 100644 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -8,6 +8,11 @@ body { font-family: "PingFang SC", "Helvetica Neue", "Microsoft YaHei", Arial, Helvetica, sans-serif !important; background-color: #fff; overflow-y: scroll; + overflow-x: auto; + min-width: 1020px; +} +.ui.container { + width: 980px !important; } h1, h2, @@ -41,7 +46,6 @@ code.raw { pre.wrap, code.wrap { white-space: pre-wrap; - /* CSS 3 */ word-break: break-word; } .dont-break-out { @@ -3122,9 +3126,6 @@ footer .ui.language .menu { .admin.config .log-config table tbody tr td:first-child { width: 100px; } -.admin.config .log-config table tbody tr td:not(first-child) { - max-width: 0; -} .explore { padding-top: 15px; padding-bottom: 80px; |