summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--script/slx-fixes.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/script/slx-fixes.js b/script/slx-fixes.js
index 9cd93c05..a5864efb 100644
--- a/script/slx-fixes.js
+++ b/script/slx-fixes.js
@@ -43,8 +43,10 @@ $('.slx-decollapse').click(function () {
$(this).siblings('.collapse').removeClass('collapse');
});
+// Show not-allowed cursor for disabled links (not in btn-group as it messes up the style)
$('a.disabled').each(function() {
var $this = $(this);
+ if ($this.parent().hasClass('btn-group')) return;
var $hax = $('<div class="disabled-hack">');
$this.after($hax);
$hax.append($this);