diff --git a/frontend/index.html b/frontend/index.html index ba83baf..c25b7de 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -4403,17 +4403,17 @@ async function pysimPliRender() { PLI_QUALIFIERS.forEach(q => { const val = data[q.code] || ''; const hasCodec = !!PLI_CODECS[q.code]; - html += '
' - + '
' - + '' + q.code + '' - + '' + esc(q.name) + '' + html += '
' + + '
' + + '' + q.code + '' + + '' + esc(q.name) + '' + + '
' + + '
' + ''; + + ' class="flex-1 min-w-0 border border-gray-300 dark:border-slate-600 text-[10px] rounded px-1 py-0.5 dark:bg-slate-800 font-mono">'; if (hasCodec) { html += ''; - } else { - html += ''; } html += '
'; }); diff --git a/frontend/style.css b/frontend/style.css index cdb1ea1..bc7cd25 100644 --- a/frontend/style.css +++ b/frontend/style.css @@ -664,6 +664,10 @@ video { margin-right: 0.25rem; } +.mt-0\.5 { + margin-top: 0.125rem; +} + .mt-1 { margin-top: 0.25rem; } @@ -760,10 +764,6 @@ video { width: 6rem; } -.w-28 { - width: 7rem; -} - .w-32 { width: 8rem; } @@ -772,8 +772,8 @@ video { width: 9rem; } -.w-4 { - width: 1rem; +.w-40 { + width: 10rem; } .w-48 { @@ -882,6 +882,10 @@ video { align-items: center; } +.items-baseline { + align-items: baseline; +} + .justify-end { justify-content: flex-end; } @@ -898,6 +902,10 @@ video { gap: 0.25rem; } +.gap-1\.5 { + gap: 0.375rem; +} + .gap-2 { gap: 0.5rem; } @@ -1244,6 +1252,10 @@ video { font-size: 10px; } +.text-\[11px\] { + font-size: 11px; +} + .text-lg { font-size: 1.125rem; line-height: 1.75rem; @@ -1288,6 +1300,10 @@ video { line-height: 1.625; } +.leading-snug { + line-height: 1.375; +} + .text-amber-600 { --tw-text-opacity: 1; color: rgb(217 119 6 / var(--tw-text-opacity, 1));