I would like to add a shadow to gnome-shell panel in default theme.
I've edited "/usr/share/gnome-shell/theme/gnome-shell.css"
and succesfully removed background color (atl+f2 + r to apply).
I've also added a box-shadow property like this:
#panel {
background-color: transparent;
font-weight: bold;
height: 1.86em;
box-shadow: 0px 3px 10px black;
}
...that, if applied to a div in a html page, would give me what I expect. Unfortunalelly it seems to be ignored by gnome-shell. Is something similar available in gnome-shell?