Fix width of index table

main
Brian Picciano 2 years ago
parent d957041113
commit 0ad27f430d
  1. 9
      src/http/static/mediocre.css
  2. 4
      src/http/tpl/index.html

@ -63,6 +63,11 @@ table {
font-size: 0.8rem; font-size: 0.8rem;
} }
/* Undo the coloring that new.css does */
table tr:nth-child(even) {
background-color: initial;
}
table td { table td {
border: 0; border: 0;
margin: 0; margin: 0;
@ -73,7 +78,3 @@ table td input {
margin: 0; margin: 0;
width: 100%; width: 100%;
} }
table tr:nth-child(even) {
background-color: initial;
}

@ -14,7 +14,9 @@
<table> <table>
<colgroup> <colgroup>
<col span="1" style="width: 5rem;"> <col span="1" style="width: 6rem;">
<col span="1">
<col span="1" style="width: 50%;">
</colgroup> </colgroup>
{{ range .Payload.Posts }} {{ range .Payload.Posts }}

Loading…
Cancel
Save