]> BookStack Code Mirror - bookstack/blobdiff - resources/assets/sass/_tables.scss
replace GPL diff lib with MIT lib
[bookstack] / resources / assets / sass / _tables.scss
index 768eb18e60698210df90924b29688abb067c3222..b23db436aeba9c63aefb67c82b6c992c21c2c7f1 100644 (file)
@@ -8,6 +8,7 @@ table.table {
     text-align: left;
     border: none;
     padding: $-xs $-xs;
+    vertical-align: middle;
   }
   th {
     font-weight: bold;
@@ -15,4 +16,28 @@ table.table {
   tr:hover {
     background-color: #EEE;
   }
+}
+
+table {
+  max-width: 100%;
+  thead {
+    background-color: #F8F8F8;
+    font-weight: 500;
+  }
+}
+
+table.no-style {
+  td {
+    border: 0;
+    padding: 0;
+  }
+}
+
+table.list-table {
+  margin: 0 -$-xs;
+  td {
+    border: 0;
+    vertical-align: middle;
+    padding: $-xs;
+  }
 }
\ No newline at end of file