From 5dec69b682241bdcd5b8ac52612c94c52ded4eab Mon Sep 17 00:00:00 2001 From: Azareal Date: Wed, 10 Apr 2019 20:29:55 +1000 Subject: [PATCH] Mover rows are more obvious links on Nox. Mover rows are now bolded when selected on Nox. Fixed a bug where moves would get submitted multiple times. --- public/global.js | 1 + themes/nox/public/main.css | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/public/global.js b/public/global.js index 32be662c..608dcdb5 100644 --- a/public/global.js +++ b/public/global.js @@ -1083,6 +1083,7 @@ function mainInit(){ console.log("fid: " + fid); forumToMoveTo = fid; + $("#mover_submit").unbind("click"); $("#mover_submit").click(function(event){ event.preventDefault(); bulkActionSender("move",selectedTopics,forumToMoveTo); diff --git a/themes/nox/public/main.css b/themes/nox/public/main.css index 7883a71d..a4eefa9a 100644 --- a/themes/nox/public/main.css +++ b/themes/nox/public/main.css @@ -300,6 +300,10 @@ h1, h2, h3, h4, h5 { } .pane_row { margin-top: 2px; + cursor: pointer; +} +.pane_selected { + font-weight: bold; } .pane_buttons { margin-top: 8px;