Aris-t2 / ClassicThemeRestorer

Classic Theme Restorer for Australis UI (Firefox/Waterfox/Basilisk versions 45.x-56.x only!)
Mozilla Public License 2.0
182 stars 36 forks source link

How to hide "Search Glass" on OLD search bar ? #343

Closed GitCurious closed 7 years ago

GitCurious commented 7 years ago

I have tried some css snippets but can not find a way to hide the magnifying glass icon, ie: the "search glass" on the OLD style search bar.

Is this possible to do ?

Aris-t2 commented 7 years ago

Removing the search glass completely with "visibility: collapse" or "display: none" also changes searchbars height, so I suggest to hide it with "visibility: hidden" css code:

.search-go-button {
  visibility: hidden !important;
}

Add it to CTRs "custom css area" or to a Stylish style.

GitCurious commented 7 years ago

Thanks Aris, you`re a genius.

It worked perfectly (I didn`t know to use the visibility item)