diff options
author | Kim "BKC" Carlbäcker <kim.carlbacker@gmail.com> | 2016-01-27 23:52:42 +0100 |
---|---|---|
committer | Kim "BKC" Carlbäcker <kim.carlbacker@gmail.com> | 2016-01-27 23:52:42 +0100 |
commit | 96dee1c3541b6d17f1cd61d78198ecf6abf23865 (patch) | |
tree | 66f79a33542b299f98a65af72890b5807eb84709 /public | |
parent | ab0ba4bbae121c9ba3cf0d49efc1c90ef7bb3ddc (diff) | |
download | gitea-96dee1c3541b6d17f1cd61d78198ecf6abf23865.tar.gz gitea-96dee1c3541b6d17f1cd61d78198ecf6abf23865.zip |
Split view fixed
Diffstat (limited to 'public')
-rwxr-xr-x | public/css/gogs.css | 3 | ||||
-rw-r--r-- | public/less/_base.less | 8 |
2 files changed, 11 insertions, 0 deletions
diff --git a/public/css/gogs.css b/public/css/gogs.css index 02032e83a7..0014c5fae0 100755 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -809,6 +809,9 @@ pre.wrap { .ui.right { float: right; } +.ui.container.fluid.padded { + padding: 0 10px 0 10px; +} .ui .text.red { color: #d95c5c !important; } diff --git a/public/less/_base.less b/public/less/_base.less index a63072fdcb..0322944442 100644 --- a/public/less/_base.less +++ b/public/less/_base.less @@ -101,6 +101,14 @@ pre { float: right; } + &.container { + &.fluid { + &.padded { + padding: 0 10px 0 10px; + } + } + } + .text { &.red { color: #d95c5c !important; |