From 7879616c2e40fb02c77190c6014e8ace1131a8b2 Mon Sep 17 00:00:00 2001
From: Aaron Christian <achristian@acromediainc.com>
Date: Fri, 11 Aug 2017 15:15:24 -0700
Subject: [PATCH] Table colours.

---
 css/colors.css |  5 +++++
 css/tables.css | 15 +++++++++++++--
 2 files changed, 18 insertions(+), 2 deletions(-)

diff --git a/css/colors.css b/css/colors.css
index 9f58606..f41e405 100644
--- a/css/colors.css
+++ b/css/colors.css
@@ -11,6 +11,11 @@
 
   /* Sets the background color to the theme background color. */
   /*--mdc-theme--background: #f2f2f2;*/
+
+  /* grey */
+  --mdc-theme--grey-f3: #F3F3F3;
+  --mdc-theme--grey-f0: #F0F0F0;
+  --mdc-theme--grey-ccc: #ccc;
 }
 
 /*body {*/
diff --git a/css/tables.css b/css/tables.css
index 4366ce8..9050cd9 100644
--- a/css/tables.css
+++ b/css/tables.css
@@ -20,8 +20,9 @@ th {
 [dir="rtl"] th {
   text-align: right;
 }
+
 thead th {
-  background: #f5f5f2;
+  background: var(--mdc-theme--grey-f3, #F3F3F3);
   border: solid #bfbfba;
   border-width: 1px 0;
   color: #333;
@@ -41,7 +42,7 @@ thead > tr {
 }
 tbody tr:hover,
 tbody tr:focus {
-  background: #f7fcff;
+  background: var(--mdc-theme--grey-f0, #F3F3F3);
 }
 /* See colors.css */
 tbody tr.color-warning:hover,
@@ -150,3 +151,13 @@ th.select-all {
     display: none;
   }
 }
+
+/*-- tabledrag.module.css --*/
+.draggable a.tabledrag-handle {
+  margin-left: 0;
+  padding-right: 1em;
+  color: inherit;
+}
+.tabledrag-handle .material-icons {
+  font-size: 1.4em;
+}
\ No newline at end of file
-- 
2.7.4.windows.1

