Fix showing icon for debug messages in HTML info

This commit is contained in:
Martchus 2020-12-01 01:53:50 +01:00
parent 4387e50202
commit e472e040e6
1 changed files with 3 additions and 1 deletions

View File

@ -398,7 +398,7 @@ public:
"th {" "th {"
"cursor: default;" "cursor: default;"
"}" "}"
"td.warning, td.critical, td.information {" "td.warning, td.critical, td.information, td.debug {"
"width: 18px;" "width: 18px;"
"background-repeat: no-repeat;" "background-repeat: no-repeat;"
"background-position:center;" "background-position:center;"
@ -417,6 +417,8 @@ public:
res.append(mkErrorIconData()); res.append(mkErrorIconData());
res.append(QStringLiteral(");}td.information {background-image: url(data:image/png;base64,")); res.append(QStringLiteral(");}td.information {background-image: url(data:image/png;base64,"));
res.append(mkInfoIconData()); res.append(mkInfoIconData());
res.append(QStringLiteral(");}td.debug {background-image: url(data:image/png;base64,"));
res.append(mkDebugIconData());
res.append(QStringLiteral(");}")); res.append(QStringLiteral(");}"));
} }
#endif #endif