Created
June 7, 2015 10:29
-
-
Save luoyetx/0e4367e30db95fb0ec32 to your computer and use it in GitHub Desktop.
remove bottom boder on title bars on gnome 3.16
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* ~/.config/gtk-3.0/gtk.css */ | |
| /* Get rid of unsightly line in ssd title bar and reduce button padding */ | |
| .ssd .titlebar { | |
| border: none; | |
| background-image: linear-gradient(to bottom, | |
| shade(@theme_bg_color, 1.042), | |
| shade(@theme_bg_color, 0.999)); | |
| box-shadow: none; | |
| border-top: 1px solid shade(@theme_bg_color, 1.072); | |
| } | |
| .ssd .titlebar:backdrop { | |
| background-image: linear-gradient(to bottom, @theme_bg_color); | |
| } | |
| .ssd .titlebar .button.titlebutton { | |
| padding: 3px; | |
| } | |
| .menubar { | |
| background-image: linear-gradient(to bottom, | |
| shade(@theme_bg_color, 0.999), | |
| shade(@theme_bg_color, 0.985)); | |
| border-bottom: 1px solid shade(@theme_bg_color, 0.679); | |
| } | |
| .menubar:backdrop { | |
| background-image: linear-gradient(to bottom, @theme_bg_color); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment