]> jfr.im git - irc/unrealircd/unrealircd-webpanel.git/commitdiff
Server-Bans: underline on hover at mask (even though clicking actually works
authorBram Matthys <redacted>
Wed, 26 Apr 2023 16:49:21 +0000 (18:49 +0200)
committerBram Matthys <redacted>
Wed, 26 Apr 2023 16:49:21 +0000 (18:49 +0200)
in all rows... hm...)

css/unrealircd-admin.css
server-bans/index.php

index ab6e95be61e5a3c7e1e1741ac4ceb288bda31d85..0999bc6134ded44dcf90d715a79d69d3a54a1486 100644 (file)
@@ -265,3 +265,10 @@ body {
         height: calc(100% - 60px - 50px);
     }
 }
+
+.virtuallink {
+       text-decoration: none;
+}
+.virtuallink:hover {
+       text-decoration: underline;
+}
index 902e7ac8d0bf045b35c96578b6fffd1757b2c216..64e9ec5afbd7b5b706e2d0ccaeee157b9d8e32f2 100644 (file)
@@ -213,7 +213,7 @@ $(document).ready( function () {
                },
                'columns': [
                        { 'data': 'Select', 'responsivePriority': 1 },
-                       { 'data': 'Mask', 'responsivePriority': 2 },
+                       { 'data': 'Mask', 'responsivePriority': 2, 'className':'virtuallink' },
                        { 'data': 'Type', 'responsivePriority': 3 },
                        { 'data': 'Duration', 'responsivePriority': 4 },
                        { 'data': 'Reason', 'responsivePriority': 5, 'render': DataTable.render.ellipsis(50, false) },