diff options
author | Unknwon <u@gogs.io> | 2016-01-06 04:57:14 +0800 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2016-01-06 04:57:14 +0800 |
commit | 19c234db3937e0b704f1d3e69d5346614df6f8f8 (patch) | |
tree | 50da350593ff3f1a42787d78561cc6c3de61bb10 | |
parent | 7392b6a755300e9f921535d2c1ec6358d4e8bfe8 (diff) | |
parent | cb8134da529d01cda8fdd07ef50740882b0e383b (diff) | |
download | gitea-19c234db3937e0b704f1d3e69d5346614df6f8f8.tar.gz gitea-19c234db3937e0b704f1d3e69d5346614df6f8f8.zip |
Merge pull request #2336 from andreynering/scroll-always-visible
Making scroll always visible.
-rwxr-xr-x | public/css/gogs.css | 1 | ||||
-rw-r--r-- | public/less/_base.less | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/public/css/gogs.css b/public/css/gogs.css index 1ed66997d2..459bf5359d 100755 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -718,6 +718,7 @@ body { font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif, '微软雅黑'; background-color: #FAFAFA; + overflow-y: scroll; } img { border-radius: 3px; diff --git a/public/less/_base.less b/public/less/_base.less index ab2785ff57..274a5cb779 100644 --- a/public/less/_base.less +++ b/public/less/_base.less @@ -3,6 +3,7 @@ body { font-family: 'Helvetica Neue',Arial,Helvetica,sans-serif,'微软雅黑'; background-color: #FAFAFA; + overflow-y: scroll; } img { border-radius: 3px; |