add padding
All checks were successful
pyrite-dev/taiga/pipeline/head This commit looks good

This commit is contained in:
Nishi 2026-03-03 02:41:58 +09:00
commit ee77f4db27
Signed by: nishi
GPG key ID: 27EF69B208EB9343
2 changed files with 7 additions and 2 deletions

View file

@ -100,6 +100,10 @@ void classic_stylesheet(FILE* out, const char* top) {
fprintf(out, " background-color: #dddddd;\n");
fprintf(out, "}\n");
fprintf(out, "\n");
fprintf(out, ".message-icon {\n");
fprintf(out, " padding-right: 5px;\n");
fprintf(out, "}\n");
fprintf(out, "\n");
for(i = 0; i < sizeof(messages) / sizeof(messages[0]); i += 2) {
fprintf(out, ".%s-message {\n", messages[i]);
fprintf(out, " border-top: solid 5px %s;\n", messages[i + 1]);