getgrav / getgrav/grav-plugin-custom-css
CSS for hover in pulldown-menus
- Dominant language
- PHP
- Stars
- 11
- Forks
- 3
- PR merge metrics
- No merged PRs in 30d
Description
Hi, I need help on a specific css issue (see picture)

Link to site: https://bonifatius-gmbh.de/de/karriere
The green element should not be there... I would need #B21123 instead
I tried to inject the custom settings with the plugin: https://github.com/getgrav/grav-plugin-custom-css
Even thought, other settings (like ::selection) are being accepted, the green hover in pull- down seems to be resistant.
Any idea, or is it just not possible to change (with no npm comp... this is a webserver only with no terminal...)?
Thx a lot & br
`::selection {
background: #B21123;
color: white;
}
a:hover {
color: #B21123;
}
::selection {
background-color: #B21123;
color: white;
}
input::selection {
background-color: #B21123;
color: white;
}
select::-webkit-select-value {
background-color: #B21123;
color: white;
}
select:-moz-focusring {
color: transparent;
text-shadow: 0 0 0 #B21123;
}
select::-ms-value {
background-color: #B21123;
color: white;
}`
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.