diff options
author | silverwind <me@silverwind.io> | 2019-02-05 22:59:26 +0100 |
---|---|---|
committer | techknowlogick <matti@mdranta.net> | 2019-02-05 16:59:26 -0500 |
commit | acaf5c96fe7f93440dfbd52dd60b4f1a5656d556 (patch) | |
tree | 973fb904799b123dc61f3922f9eef43c4bb50d39 /public/js | |
parent | c20034be31034f135f4e5f0a995ae82c318516c2 (diff) | |
download | gitea-acaf5c96fe7f93440dfbd52dd60b4f1a5656d556.tar.gz gitea-acaf5c96fe7f93440dfbd52dd60b4f1a5656d556.zip |
UI: Repo header tweaks (#5945)
* UI: Repo header tweaks
- Use basic buttons on the header buttons, matching gogs
- Make 'Manage topic' text smaller, remove margin-left with no topics
present
- Move various inline styles to CSS
- Use flexbox on header title and buttons
* fix indentation
* reverse media query wrapping
* fix inconsisten whitespace
Diffstat (limited to 'public/js')
-rw-r--r-- | public/js/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/public/js/index.js b/public/js/index.js index 810d835340..cbfca147a7 100644 --- a/public/js/index.js +++ b/public/js/index.js @@ -2605,7 +2605,7 @@ function initNavbarContentToggle() { function initTopicbar() { var mgrBtn = $("#manage_topic"), editDiv = $("#topic_edit"), - viewDiv = $("#repo-topic"), + viewDiv = $("#repo-topics"), saveBtn = $("#save_topic"), topicDropdown = $('#topic_edit .dropdown'), topicForm = $('#topic_edit.ui.form'), |