emersonbottero / vitepress-plugin-search

Provide local search to your documentation site.
MIT License
239 stars 30 forks source link

Need the z-index increased #3

Closed brucetp closed 2 years ago

brucetp commented 2 years ago

It looks like the z-index needs increased to something above 20 for the modal. The vitepress tool bar wasn't greyed out. Also, in light mode the search item hover turns to white which isn't enough contrast. Just FYI on both of these. Great plugin!

Here's the modifications I made locally

.modal-back {
    z-index: 30;
}

.search-item:hover {
    color: var(--vp-c-brand);
}

.search-item:hover > p {
    color: var(--vp-c-brand);
}
emersonbottero commented 2 years ago

Should be fixes in the new version.. they changed the css in vitepress (is in alpha so they can.. 😁)