Fix the photo-params table: remove the erroneous padding at the bottom

This commit is contained in:
Eryn Wells 2022-11-15 17:18:12 -08:00
parent e0b7aae3db
commit 5dbec4ec08

View file

@ -90,7 +90,7 @@
width: 100%;
}
.photo-params .container {
.photo-params > .container {
display: block;
background-color: var(--photo-params-container-background-color);
border-radius: 10px;
@ -99,28 +99,29 @@
width: 66%;
}
.photo-params table {
.photo-params > .container > table {
background-color: var(--photo-params-background-color);
color: var(--photo-params-color);
border-collapse: collapse;
border-radius: 6px;
margin: 0;
table-layout: fixed;
text-align: center;
width: 100%;
}
.photo-params thead td {
.photo-params table > thead > tr > td {
border-bottom: 1px solid var(--photo-params-border-color);
font-size: 80%;
font-weight: bold;
}
.photo-params tr.exposure-attributes td {
.photo-params tr.exposure-attributes > td {
border-top: 1px solid var(--photo-params-border-color);
border-left: 1px solid var(--photo-params-border-color);
}
.photo-params tr.exposure-attributes td:first-child {
.photo-params tr.exposure-attributes > td:first-child {
border-left: none;
}