Fix size of development disclosure instead of growing with the font size of the document
This commit is contained in:
parent
d174ae952d
commit
f1b60f443c
1 changed files with 16 additions and 5 deletions
|
@ -30,11 +30,11 @@ details:has(.photo-params.debug) {
|
|||
border: 1px solid var(--separator-color);
|
||||
border-radius: 6px;
|
||||
box-shadow: 4px 5px 5px var(--box-shadow-color);
|
||||
font-size: 1.75rem;
|
||||
font-size: 12px;
|
||||
padding: 0.5rem;
|
||||
position: fixed;
|
||||
left: 2rem;
|
||||
bottom: 2rem;
|
||||
left: 12px;
|
||||
bottom: 12px;
|
||||
width: max-content;
|
||||
}
|
||||
|
||||
|
@ -47,14 +47,25 @@ details:has(.photo-params.debug) {
|
|||
}
|
||||
|
||||
#debug-page-info > details > table {
|
||||
border-collapse: collapse;
|
||||
border: 0;
|
||||
border-color: rgb(var(--dk-gray));
|
||||
display: block;
|
||||
margin-block-start: 0.5em;
|
||||
margin-inline-start: 1em;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#debug-page-info > details > table > tbody {
|
||||
border: 1px solid;
|
||||
}
|
||||
|
||||
#debug-page-info > details > table > tbody + tbody {
|
||||
border-top: 1px solid;
|
||||
}
|
||||
|
||||
#debug-page-info > details > table > tbody > tr > td {
|
||||
border: 1px solid rgb(var(--dk-gray));
|
||||
border: 1px dotted;
|
||||
border-left: 1px solid;
|
||||
padding: 0.3em;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue