new fix for dark theme

change implementation of hl-tags in include/bbcode.php
insert class='default-highlight' instead of background-color: 'yellow' into span
add span.default-highlight definition to view/theme/redbasic/css/style.css

this works for all schemas incl. dark.
This commit is contained in:
phani00
2018-12-17 15:28:15 +00:00
parent d80b8ff30f
commit aace8a14ce
3 changed files with 28 additions and 25 deletions

View File

@@ -1803,3 +1803,13 @@ dl.bb-dl > dd > li {
.hover-fx-show:hover .hover-fx-hide {
opacity: 1;
}
/* default highlighted text if not specified by schema: */
span.default-highlight {
background-color: yellow;
color: #111;
margin: 0 2px;
padding: 2px 4px 2px 5px;
border-radius: 4px;
white-space: nowrap;
}