Is it possible to make Search Results transparent?
Solution 1:
I follow this steps to make it possible:
- Search for
gnome-shell.css
inside thegnome-shell
folder of your favorite theme... or the default one, too. - Open the CMD and login as SuperUser.
- Type
nano
and drag thegnome-shell.css
file to the CMD; hit Enter. - Open the search tool using Ctrl+W.
- Type
search-section-separator
; hit Enter. - Replace the default px value of
height
for1px
and thebackground-color
value fromtransparent
torgba(255, 255, 255, 0.16)
. - Go to
search-section-content
... it's just a few lines down or to the right side ofsearch-section-separator
. - In
background-color
, erase the rgba value [Example: rgba(42, 42, 42, 0.775)] and replace it withtransparent
instead. - Change the px default values in
border-shadow
andborder
to0px
. - Type Ctrl+O and hit Enter to finish the transformation.