The following pull request was submitted through Github.
It can be accessed and reviewed at: https://github.com/lxc/linuxcontainers.org/pull/420

This e-mail was sent by the LXC bot, direct replies will not reach the author
unless they happen to be subscribed to this list.

=== Description (from pull-request) ===
Signed-off-by: Tobias Gerold <tob...@g3ro.eu>

* adds vertical border lines
* automatic width
* table headers text is bold
From 39f6087ea3aab4304ec29d98cddce89a34155aae Mon Sep 17 00:00:00 2001
From: Tobias Gerold <tob...@g3ro.eu>
Date: Tue, 2 Jun 2020 16:08:17 +0200
Subject: [PATCH]  Added css for tables

Signed-off-by: Tobias Gerold <tob...@g3ro.eu>
---
 static/css/local.css | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/static/css/local.css b/static/css/local.css
index ede6b00..baf1609 100644
--- a/static/css/local.css
+++ b/static/css/local.css
@@ -283,3 +283,26 @@ pre {
 .p-notification__response {
     max-width: none;
 }
+
+/* tables */
+table {
+  border-collapse: collapse;
+  width: auto;
+  table-layout: auto;
+}
+
+table, th, td {
+  border: 1px solid black;
+  background-color: #141414;
+}
+
+td {
+  text-align: center;
+  padding: 8px;
+}
+
+th {
+  font-weight: bold;
+  padding: 8px;
+  text-align: center;
+}
_______________________________________________
lxc-devel mailing list
lxc-devel@lists.linuxcontainers.org
http://lists.linuxcontainers.org/listinfo/lxc-devel

Reply via email to