Quickie: More visible marking of search hits
Posted: 2020-09-13 07:45
AppGini highlights hits in Table View after search. Depending on the selected theme, the hits are highlighted in color.
In my theme, this emphasis is not clear enough for my personal taste. Therefore I have adapted the presentation via CSS:
CSS code
Result
You can have different opinions about color and style. I am only interested in this post to show you the possibility. You can adapt it to your own needs with a little CSS knowledge.
In my theme, this emphasis is not clear enough for my personal taste. Therefore I have adapted the presentation via CSS:
CSS code
Code: Select all
span[data-jquery-mark="true"] {
background-color: yellow;
padding: 1px 4px;
border: 1px solid silver;
}
You can have different opinions about color and style. I am only interested in this post to show you the possibility. You can adapt it to your own needs with a little CSS knowledge.