1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-06-15 23:00:36 +02:00

Desktop: Highlight row backgroung in table

This commit is contained in:
Laurent Cozic
2019-02-10 17:16:11 +00:00
parent ea9f1dc91d
commit f0020b3393
3 changed files with 18 additions and 1 deletions

View File

@ -635,6 +635,9 @@ class MdToHtml {
tr:nth-child(even) {
background-color: ` + style.htmlTableBackgroundColor + `;
}
tr:hover {
background-color: ` + style.raisedBackgroundColor + `;
}
hr {
border: none;
border-bottom: 2px solid ` + style.htmlDividerColor + `;