Fix the photo-params table: remove the erroneous padding at the bottom
This commit is contained in:
parent
e0b7aae3db
commit
5dbec4ec08
1 changed files with 6 additions and 5 deletions
|
@ -90,7 +90,7 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.photo-params .container {
|
.photo-params > .container {
|
||||||
display: block;
|
display: block;
|
||||||
background-color: var(--photo-params-container-background-color);
|
background-color: var(--photo-params-container-background-color);
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
|
@ -99,28 +99,29 @@
|
||||||
width: 66%;
|
width: 66%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.photo-params table {
|
.photo-params > .container > table {
|
||||||
background-color: var(--photo-params-background-color);
|
background-color: var(--photo-params-background-color);
|
||||||
color: var(--photo-params-color);
|
color: var(--photo-params-color);
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
|
margin: 0;
|
||||||
table-layout: fixed;
|
table-layout: fixed;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.photo-params thead td {
|
.photo-params table > thead > tr > td {
|
||||||
border-bottom: 1px solid var(--photo-params-border-color);
|
border-bottom: 1px solid var(--photo-params-border-color);
|
||||||
font-size: 80%;
|
font-size: 80%;
|
||||||
font-weight: bold;
|
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-top: 1px solid var(--photo-params-border-color);
|
||||||
border-left: 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;
|
border-left: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue