Style fixes

Change-Id: I88e0545e3b44ee01707f399bfeb86a26d5bcf786
diff --git a/views/style/sass/lib/data_table.scss b/views/style/sass/lib/data_table.scss
deleted file mode 100644
index a572620..0000000
--- a/views/style/sass/lib/data_table.scss
+++ /dev/null
@@ -1,24 +0,0 @@
-table.dataTable thead{
-  th div.DataTables_sort_wrapper{
-    font-weight: normal !important;
-  }
-  tr {
-    background-color: $thead-background;
-
-    th.ui-state-default {
-      background: transparent !important;
-      color: #fff !important;
-    }
-  }
-}
-
-table.dataTable tr.odd,
-table.dataTable tr.odd td.sorting_1{
-  background-color: $gray-lighter !important;
-}
-table.dataTable tr.even td.sorting_1{
-  background-color: #fff;
-}
-table.dataTable thead th div.DataTables_sort_wrapper {
-  font-weight: bold;
-}
\ No newline at end of file
diff --git a/views/style/sass/lib/table.scss b/views/style/sass/lib/table.scss
new file mode 100644
index 0000000..19aa21a
--- /dev/null
+++ b/views/style/sass/lib/table.scss
@@ -0,0 +1,7 @@
+table {
+  th {
+    a {
+      color: #000;
+    }
+  }
+}
\ No newline at end of file
diff --git a/views/style/sass/xos.scss b/views/style/sass/xos.scss
index da33f42..b421a18 100644
--- a/views/style/sass/xos.scss
+++ b/views/style/sass/xos.scss
@@ -3,7 +3,7 @@
 @import "lib/header";
 @import "lib/nav";
 @import "lib/footer";
-@import "lib/data_table";
+@import "lib/table";
 @import "lib/tabs";
 @import "lib/login";
 @import 'lib/breadcrumb';
@@ -91,6 +91,7 @@
   }
 
   #content-main {
+    /*padding: ($grid-gutter-width / 2);*/
     padding-bottom: 60px;
   }
 }
@@ -226,7 +227,7 @@
 /** Setting overflow and 1kpx to deal with inlines/forms overlapping on 
     browser resizes **/
 #content-main {
-    overflow-x:auto;
+    /*overflow-x:auto;*/
     /*min-width: 1000px;*/
 }