Skip to content

Commit 4898e2f

Browse files
committed
Remove background-color: blue which has no effect in generated reports
1 parent 5a04824 commit 4898e2f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Src/ImgMergeFrm.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2288,7 +2288,7 @@ bool CImgMergeFrame::GenerateReport(const String& sFileName, bool allPages) cons
22882288
_T("table { table-layout: fixed; width: 100%; height: 100%; border-collapse: collapse; }\n")
22892289
_T("th {position: sticky; top: 0;}\n")
22902290
_T("td,th { border: solid 1px black; }\n")
2291-
_T(".title { color: white; background-color: blue; vertical-align: top; padding: 4px 4px; background: linear-gradient(mediumblue, darkblue);}\n")
2291+
_T(".title { color: white; vertical-align: top; padding: 4px 4px; background: linear-gradient(mediumblue, darkblue);}\n")
22922292
_T(".img { overflow: scroll; text-align: center; }\n")
22932293
_T("</style>\n")
22942294
_T("</head>\n")

Src/MergeDoc.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3210,7 +3210,7 @@ bool CMergeDoc::GenerateReport(const String& sFileName) const
32103210
_T("tr:first-child { position: sticky; top: 0; z-index: 99; }\n")
32113211
_T("td,th { word-break: break-all; padding: 0 3px; border: 1px solid #a0a0a0; }\n")
32123212
_T(".ln { position: sticky; left: 0; }\n")
3213-
_T(".title { font-weight: bold; color: white; background-color: blue; vertical-align: top; text-align: center; padding: 4px 4px; background: linear-gradient(mediumblue, darkblue);}\n")
3213+
_T(".title { font-weight: bold; color: white; vertical-align: top; text-align: center; padding: 4px 4px; background: linear-gradient(mediumblue, darkblue);}\n")
32143214
_T("%s")
32153215
_T("-->\n")
32163216
_T("</style>\n")
@@ -3342,7 +3342,7 @@ bool CMergeDoc::GenerateReport(const String& sFileName) const
33423342
_T("th { position: sticky; top: 0; }\n")
33433343
_T("td,th { word-break: break-all; font-size: %dpt; padding: 0 3px; }\n")
33443344
_T("tr { vertical-align: top; }\n")
3345-
_T(".title { font-weight: bold; color: white; background-color: blue; vertical-align: top; text-align: center; padding: 4px 4px; background: linear-gradient(mediumblue, darkblue);}\n")
3345+
_T(".title { font-weight: bold; color: white; vertical-align: top; text-align: center; padding: 4px 4px; background: linear-gradient(mediumblue, darkblue);}\n")
33463346
_T("%s")
33473347
_T("-->\n")
33483348
_T("</style>\n")

Src/WebPageDiffFrm.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1615,7 +1615,7 @@ bool CWebPageDiffFrame::GenerateReport(const String& sFileName, std::function<vo
16151615
_T("th {position: sticky; top: 0;}\n")
16161616
_T("td,th { border: solid 1px black; }\n")
16171617
_T("embed { width: 100%; height: calc(100vh - 56px) }\n")
1618-
_T(".title { color: white; background-color: blue; vertical-align: top; padding: 4px 4px; background: linear-gradient(mediumblue, darkblue);}\n")
1618+
_T(".title { color: white; vertical-align: top; padding: 4px 4px; background: linear-gradient(mediumblue, darkblue);}\n")
16191619
_T("</style>\n")
16201620
_T("</head>\n")
16211621
_T("<body>\n")

0 commit comments

Comments
 (0)