creativetimofficial / ct-vue-black-dashboard-pro

Vue Black Dashboard PRO issues
15 stars 11 forks source link

Paginated tables demo: the search field has 2 reset buttons #24

Closed sfraysse closed 4 years ago

sfraysse commented 4 years ago

search

In the paginated tables demo, in the search field, when you type something, there is a white cross in a circle, to reset the field. Perfect.

But there is also a blue cross with the same function, which shouldn't be here. I didn't find a solution to remove it with CSS.

sfraysse commented 4 years ago

I found the solution. The blue cross is added by Chrome. The following CSS code removes it:

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}