[fix](trx-frontend-http): fix Download/Remove button styling in recorder table
The Download button is an <a> tag which inherits default link styles (underline, mismatched font/sizing). Added text-decoration, display, font-family, and line-height to normalize both <a> and <button> elements. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Signed-off-by: Stan Grams <sjg@haxx.space>
This commit is contained in:
@@ -1244,8 +1244,12 @@ small { color: var(--text-muted); }
|
|||||||
gap: 0.4rem;
|
gap: 0.4rem;
|
||||||
}
|
}
|
||||||
.recorder-table .rec-file-btn {
|
.recorder-table .rec-file-btn {
|
||||||
|
display: inline-block;
|
||||||
padding: 0.2rem 0.5rem;
|
padding: 0.2rem 0.5rem;
|
||||||
font-size: 0.75rem;
|
font-size: 0.75rem;
|
||||||
|
font-family: inherit;
|
||||||
|
line-height: 1.4;
|
||||||
|
text-decoration: none;
|
||||||
border: 1px solid var(--border-light);
|
border: 1px solid var(--border-light);
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
background: var(--input-bg);
|
background: var(--input-bg);
|
||||||
|
|||||||
Reference in New Issue
Block a user