remove color from style.css (default) but add a little padding; add color & border radius to dark.css.

This commit is contained in:
phani00 2018-12-18 17:54:39 +01:00
parent b97143e9db
commit 2354bb5427
2 changed files with 7 additions and 1 deletions

View File

@ -1807,5 +1807,5 @@ dl.bb-dl > dd > li {
/* default highlighted text if not specified by schema: */
span.default-highlight {
background-color: yellow;
color: #4d4d4d;
padding: 2px 4px;
}

View File

@ -494,3 +494,9 @@ a.text-dark:focus, a.text-dark:hover {
color: red !important;
text-decoration: none;
}
/* fix color for highlithed text */
span.default-highlight {
color: #333;
border-radius: 4px;
}