Browse Source

Add proper cursor to remaining UI tables

friedPotat0 6 years ago
parent
commit
bcad71cfaa
3 changed files with 18 additions and 2 deletions
  1. 8 0
      data/web/css/site/mailbox.css
  2. 2 2
      data/web/css/site/quarantine.css
  3. 8 0
      data/web/css/site/user.css

+ 8 - 0
data/web/css/site/mailbox.css

@@ -53,3 +53,11 @@ table.footable>tbody>tr.footable-empty>td {
   font-family:Consolas,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New, monospace;
   font-size:smaller;
 }
+
+table tbody tr {
+  cursor: pointer;
+}
+
+table tbody tr td input[type="checkbox"] {
+  cursor: pointer;
+}

+ 2 - 2
data/web/css/site/quarantine.css

@@ -58,10 +58,10 @@ span.mail-address-item {
   margin-right: 7px;
 }
 
-table tbody span.footable-toggle {
+table tbody tr {
   cursor: pointer;
 }
 
-#quarantinetable tbody tr {
+table tbody tr td input[type="checkbox"] {
   cursor: pointer;
 }

+ 8 - 0
data/web/css/site/user.css

@@ -39,4 +39,12 @@ table.footable>tbody>tr.footable-empty>td {
 }
 body {
   overflow-y:scroll;
+}
+
+table tbody tr {
+  cursor: pointer;
+}
+
+table tbody tr td input[type="checkbox"] {
+  cursor: pointer;
 }