css: show more content, reduce padding

fixes #2140
This commit is contained in:
Thomas Gelf 2020-06-06 23:50:14 +02:00
parent f70df23e72
commit b1245ac6d3
2 changed files with 23 additions and 0 deletions

View File

@ -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)

View File

@ -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;
}