all repos — searchix @ 408aed03d3454330120475ca53838a2f4fe28ea3

Search engine for NixOS, nix-darwin, home-manager and NUR users

feat: display results in a table, showing details on click

Alan Pearce
commit

408aed03d3454330120475ca53838a2f4fe28ea3

parent

d40c0e188a7fe1b36887f59c4a9958faa81b3d44

1 file changed, 20 insertions(+), 2 deletions(-)

changed files
M frontend/static/style.cssfrontend/static/style.css
@@ -58,7 +58,7 @@ margin: unset;
} section { - border-top: none; + border: none; margin: unset; padding: unset; }
@@ -75,7 +75,8 @@ dd {
margin-inline-start: 1rem; } -dd > p { +dd > p, +td > p { margin: unset; }
@@ -125,3 +126,20 @@
blockquote > p { margin: unset; } + +dialog { + max-width: unset; + width: min(var(--min-width), 90%); +} + +dialog > button { + float: right; +} + +dialog > h2 { + margin-top: 0.5rem; +} + +table { + width: 100%; +}