瀏覽代碼

:beetle: Fix broken tables

Classes can't be applied on native elements from markdown.

So classes need to be replaced by native elements.
DricomDragon 2 年之前
父節點
當前提交
666a4c8e0c
共有 1 個文件被更改,包括 26 次插入0 次删除
  1. 26 0
      web/include/css/custom/main.css

+ 26 - 0
web/include/css/custom/main.css

@@ -104,3 +104,29 @@ main a {
 .footer a {
     color: #1c7430;
 }
+
+/* Bootstrap class to element */
+/* In order to be working with as few classes as possible */
+table {
+    border-collapse: collapse;
+    width: 100%;
+    margin-bottom: 1rem;
+    background-color: transparent;
+}
+
+table th,
+table td {
+    padding: 0.75rem;
+    vertical-align: top;
+    border-top: 1px solid #dee2e6;
+}
+
+table thead th {
+    vertical-align: bottom;
+    border-bottom: 2px solid #dee2e6;
+}
+
+table tbody + tbody {
+    border-top: 2px solid #dee2e6;
+}
+