From b1245ac6d34a56bbed94936604be60d7c352a005 Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Sat, 6 Jun 2020 23:50:14 +0200 Subject: [PATCH] css: show more content, reduce padding fixes #2140 --- doc/82-Changelog.md | 1 + public/css/module.less | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) diff --git a/doc/82-Changelog.md b/doc/82-Changelog.md index 78563559..bdecee0c 100644 --- a/doc/82-Changelog.md +++ b/doc/82-Changelog.md @@ -20,6 +20,7 @@ next (will be 1.8.0) * FEATURE: Allow to disable the Director frontend / UI (#2007) * FEATURE: Endpoints table now shows the object type (e.g. external) (#2050) * FEATURE: make sure that form label and fields stay close together (#2136) +* FEATURE: show more content, reduce padding (expect on mobile) (#2140) ### Import and Sync * FEATURE: allow to define update-only Sync Rules (#2059) diff --git a/public/css/module.less b/public/css/module.less index d153b3cf..c767f0bd 100644 --- a/public/css/module.less +++ b/public/css/module.less @@ -7,6 +7,28 @@ div.action-bar a:focus, .tabs a:focus { } } +table.common-table td { + padding-top: 0.2em; + padding-bottom: 0.2em; + vertical-align: middle; + + p { + word-break: break-word; + } +} + +#layout.minimal-layout table.common-table td { + padding-top: 0.5em; + padding-bottom: 0.5em; +} + +table.common-table thead th { + border-bottom: 1px solid @text-color; +} +table.common-table tbody td { + border-bottom: 1px solid @gray-lighter; +} + a:before { text-decoration: none; }