diff options
author | silverwind <me@silverwind.io> | 2017-08-14 00:49:38 +0200 |
---|---|---|
committer | Andrey Nering <andrey.nering@gmail.com> | 2017-08-13 19:49:38 -0300 |
commit | fc29a405e8c210fa62ad4cbe4250617e4b85d6c8 (patch) | |
tree | 8b42916d036abc7d6c8f77dbaa3db2ad2724fa68 /public | |
parent | 29f3a6e492daa80a2ce5e3693743aa2448f391d9 (diff) | |
download | gitea-fc29a405e8c210fa62ad4cbe4250617e4b85d6c8.tar.gz gitea-fc29a405e8c210fa62ad4cbe4250617e4b85d6c8.zip |
More tweaks to repo top panel (#2267)
* More tweaks to repo top panel
* undo hiding of compare button on master
* attempt to fix ci issue
* another ci attempt
Diffstat (limited to 'public')
-rw-r--r-- | public/css/index.css | 5 | ||||
-rw-r--r-- | public/less/_repository.less | 8 |
2 files changed, 11 insertions, 2 deletions
diff --git a/public/css/index.css b/public/css/index.css index 32fefb92e4..774b559621 100644 --- a/public/css/index.css +++ b/public/css/index.css @@ -1290,7 +1290,6 @@ footer .ui.language .menu { margin-bottom: 20px; } .repository #clone-panel { - margin-top: -8px; margin-left: 5px; width: 350px; } @@ -1318,6 +1317,10 @@ footer .ui.language .menu { .repository.file.list .choose.reference .header .icon { font-size: 1.4em; } +.repository.file.list .repo-path .section, +.repository.file.list .repo-path .divider { + display: inline; +} .repository.file.list #file-buttons { font-weight: normal; } diff --git a/public/less/_repository.less b/public/less/_repository.less index 2b254123e4..170eb4feb0 100644 --- a/public/less/_repository.less +++ b/public/less/_repository.less @@ -133,7 +133,6 @@ } #clone-panel { - margin-top: -8px; margin-left: 5px; width: 350px; @@ -167,6 +166,13 @@ font-size: 1.4em; } } + + .repo-path { + .section, .divider { + display: inline; + } + } + #file-buttons { font-weight: normal; .ui.button { |