Antergos / Numix-Frost

Numix is a modern flat theme with a combination of light and dark elements.
http://fav.me/d5ygul6
GNU General Public License v3.0
47 stars 11 forks source link

Bad shadow at terminal #23

Closed miguelcarax closed 8 years ago

miguelcarax commented 8 years ago

The problem is that the shadown looks bad at terminal.

image

make-nz commented 8 years ago

Great theme, thanks! Having the same issue, and since I'm doing web development I had an idea what's going on... The css box shadow blurring is simply cut off! It does not fade out before it reaches the edges of the surrounding div element. numix-shadowsprob1 (Try with your cursor. The transparent border, where you can grab the window is much wider on the left. This is where the shadow fades out just nicely. On the right it is cut of.)

@miguelcarax You can fix this with a user css file in your home .config (~/.config/gtk-3.0/gtk.css) To remove the shadow use: .window-frame{ box-shadow: none; } or reduce the shadow: .window-frame{ box-shadow: 1px 1px 5px 3px rgba(0,0,0,0.2); } You need to restart gnome-shell after you have saved your gtk.css, hit "alt+f2" and type "r" in the box. As to make this a bug fix in the master... well someone other may have to do this. It's my first day on Gnome3 and Antergos...

Hope this helps Cheers