modify hr's css
All checks were successful
pyrite-dev/taiga/pipeline/head This commit looks good

This commit is contained in:
Nishi 2026-03-09 02:19:47 +09:00
commit 583bf73c4d
Signed by: nishi
GPG key ID: 27EF69B208EB9343
3 changed files with 14 additions and 3 deletions

View file

@ -163,6 +163,11 @@ void simple_stylesheet(FILE* out, const char* top) {
fprintf(out, " font-family: Arial, Helvetica, sans-serif;\n");
fprintf(out, "}\n");
fprintf(out, "\n");
fprintf(out, "hr {\n");
fprintf(out, " border: none;\n");
fprintf(out, " border-bottom: solid 1px #808080;\n");
fprintf(out, "}\n");
fprintf(out, "\n");
for(i = 0; i < sizeof(messages) / sizeof(messages[0]); i++) {
fprintf(out, ".%s-message {\n", messages[i]);