1
1
mirror of https://github.com/go-gitea/gitea synced 2025-08-12 04:28:21 +00:00

Backport: Fix layout of the topics editing form (#4971) (#4993)

This commit is contained in:
Iwasa Kazmi
2018-09-29 19:06:11 +09:00
committed by Lauris BH
parent 93dcc6caef
commit 8f29f61a6b
4 changed files with 5 additions and 6 deletions

File diff suppressed because one or more lines are too long

View File

@@ -2309,7 +2309,7 @@ function initTopicbar() {
mgrBtn.click(function() {
viewDiv.hide();
editDiv.show();
editDiv.css('display', ''); // show Semantic UI Grid
})
saveBtn.click(function() {
@@ -2334,7 +2334,7 @@ function initTopicbar() {
}
}
}).done(function() {
editDiv.hide();
editDiv.css('display', 'none'); // hide Semantic UI Grid
viewDiv.show();
}).fail(function(xhr) {
alert(xhr.responseJSON.message)

View File

@@ -1743,7 +1743,6 @@ tbody.commit-list {
#topic_edit {
margin-top:5px;
display: none;
}
#repo-topic {