Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Nüsse <felix.nuesse@t-online.de>2022-05-26 13:00:48 +0300
committerFelix Nüsse <felix.nuesse@t-online.de>2022-05-26 13:00:48 +0300
commitdd42e33569bd631dc734bc0158308e77499b97af (patch)
tree7754210b1c8d010789c08461df6a9f443a6a2c5e
parentfd0bd231a04420d54f44b214bc157d6189d7d2e8 (diff)
make tables look good
Signed-off-by: Felix Nüsse <felix.nuesse@t-online.de>
-rw-r--r--src/components/AppHelp.vue19
1 files changed, 18 insertions, 1 deletions
diff --git a/src/components/AppHelp.vue b/src/components/AppHelp.vue
index 094e2718..354deb52 100644
--- a/src/components/AppHelp.vue
+++ b/src/components/AppHelp.vue
@@ -183,12 +183,29 @@ export default {
table {
width: 70%;
+ border: 1px lightgray solid;
+ border-spacing: 0;
+
+ border-collapse:separate;
+ border-radius:6px;
}
th {
font-style: oblique;
+ font-weight: bold;
+ border-top: none;
+}
+
+th , td {
+ padding: 5px;
+ border-left: 1px lightgray solid;
}
+
+td:first-child, th:first-child {
+ border-left: none;
+}
+
tr:nth-child(even) {
- background-color: #dddddd;
+ background-color: #eeeeee;
}
</style>