I'm trying use a Bootstrap 3 template and change how highlighted text looks.
By Default, when you select a word with a mouse, it is blue with a white background. I wanted to change only the blue color to sort of red, but when I use the following css, it overwrites whole styling:
<!-- language: lang-css -->::-moz-selection { /* Code for Firefox */
color: rgba(217,83,79,0.50);
}
::selection {
color: rgba(217,83,79,0.50);
}
Here's an example:
I've searched CSS files of bootstrap and the template but I can't find any styling. I was searching for ::selection
. How can I find it?