summaryrefslogtreecommitdiffstats
path: root/public/js
diff options
context:
space:
mode:
author하윤 <themaymeow@gmail.com>2019-04-15 20:59:30 +0200
committertechknowlogick <matti@mdranta.net>2019-04-15 14:59:30 -0400
commit83d6e5e3f8df48fdb550c82d1db620e89f9f33e9 (patch)
treedf270fb2715321806fe8d3719cb409c3e7f93d8c /public/js
parent837116875efc8f27265e884499ecca69ef554014 (diff)
downloadgitea-83d6e5e3f8df48fdb550c82d1db620e89f9f33e9.tar.gz
gitea-83d6e5e3f8df48fdb550c82d1db620e89f9f33e9.zip
Update UI for topics labels on projects (#6639)
Diffstat (limited to 'public/js')
-rw-r--r--public/js/index.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/public/js/index.js b/public/js/index.js
index b5604ed82f..062ed7ce4d 100644
--- a/public/js/index.js
+++ b/public/js/index.js
@@ -2775,7 +2775,7 @@ function initTopicbar() {
var last = viewDiv.children("a").last();
for (var i=0; i < topicArray.length; i++) {
- $('<div class="ui green basic label topic" style="cursor:pointer;">'+topicArray[i]+'</div>').insertBefore(last)
+ $('<div class="ui small label topic" style="cursor:pointer;">'+topicArray[i]+'</div>').insertBefore(last)
}
}
editDiv.css('display', 'none');
@@ -2817,7 +2817,7 @@ function initTopicbar() {
basic: true,
},
className: {
- label: 'ui green basic label'
+ label: 'ui small label'
},
apiSettings: {
url: suburl + '/api/v1/topics/search?q={query}',