NobGit
public nobgit read

NobMail

Based on mailcow: dockerized

Languages

Repository composition by tracked source files.

PHP
PHP 49% JavaScript 35% HTML 9% CSS 4% Shell 2% Python 1% Lua 0% Perl 0% Ruby 0% SCSS 0%
Create file Wiki Documentation
Clone
https://nobgit.com/orgs/nobgit/nobmail.git
ssh://[email protected]:2222/orgs/nobgit/nobmail.git

Commit

Add proper cursor to remaining UI tables

bcad71cf
friedPotat0 <[email protected]> 7 years ago
data/web/css/site/mailbox.css    | 8 ++++++++
 data/web/css/site/quarantine.css | 4 ++--
 data/web/css/site/user.css       | 8 ++++++++
 3 files changed, 18 insertions(+), 2 deletions(-)

Diff

diff --git a/data/web/css/site/mailbox.css b/data/web/css/site/mailbox.css
index 61b6cfcf..50c09344 100644
--- a/data/web/css/site/mailbox.css
+++ b/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;
+}
diff --git a/data/web/css/site/quarantine.css b/data/web/css/site/quarantine.css
index 944e7c41..0ea3eeb8 100644
--- a/data/web/css/site/quarantine.css
+++ b/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;
 }
diff --git a/data/web/css/site/user.css b/data/web/css/site/user.css
index aa3ddad7..62428d0c 100644
--- a/data/web/css/site/user.css
+++ b/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;
 }
\ No newline at end of file