Fix some incorrect HTML

This commit is contained in:
Seeker4 2019-07-01 21:47:09 -07:00
parent 358830d364
commit 3e30850b75

View File

@ -64,6 +64,7 @@ void Welcome::refreshPage()
ui->cpapInfo->setHtml(GenerateCPAPHTML());
ui->oxiInfo->setHtml(GenerateOxiHTML());
// qDebug() << "CPAPhtml" << GenerateCPAPHTML();
}
void Welcome::on_dailyButton_clicked()
@ -126,11 +127,12 @@ QString Welcome::GenerateCPAPHTML()
QString html = QString("<html><head>")+
"</head>"
// "</head>"
"<style type='text/css'>"
"p,a,td,body { font-family: '"+QApplication::font().family()+"'; }"
"p,a,td,body { font-size: "+QString::number(QApplication::font().pointSize() + 2)+"px; }"
"</style>"
"</head>"
"<body leftmargin=5 topmargin=10 rightmargin=5 bottommargin=5 vertical-align=center align=center>";
@ -282,7 +284,7 @@ QString Welcome::GenerateOxiHTML()
}
QString html = QString("<html><head>")+
"</head>"
// "</head>"
"<style type='text/css'>"
"p,a,td,body { font-family: '"+QApplication::font().family()+"'; }"
"p,a,td,body { font-size: "+QString::number(QApplication::font().pointSize() + 2)+"px; }"