Last active
May 26, 2020 17:06
-
-
Save PHLAK/cdce371ebbb23208c3b8c457c3925163 to your computer and use it in GitHub Desktop.
Gnome Switcher stylesheet (Ubuntu 20.04 theme)
This file contains 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
.switcher-box-layout { | |
background-color: #323030; | |
border-radius: 4px; | |
box-shadow: 0 2px 8px rgba(24, 28, 32, .8); | |
color: #AAA; | |
font-family: Ubuntu, sans-serif; | |
margin-top: 100px; | |
overflow: hidden; | |
} | |
StEntry.switcher-entry { | |
background-color: #323030; | |
border: none; | |
border-radius: 0; | |
border-top-left-radius: 4px; | |
border-top-right-radius: 4px; | |
box-shadow: none; | |
color: #FFF; | |
margin: .6em; | |
} | |
.switcher-box { | |
border-top: 1px solid #1A1D23; | |
} | |
.switcher-box:hover { | |
background-color: #3F3C3C; | |
} | |
.switcher-box:last-child { | |
border-radius: 0 0 4px 4px; | |
} | |
.switcher-icon, .switcher-label { | |
padding: .6em; | |
} | |
.switcher-label { | |
padding-left: 0; | |
} | |
.switcher-highlight { | |
background-color: #e95420; | |
color: #FFF; | |
} | |
.switcher-highlight:hover { | |
background-color: #e95420; | |
color: #FFF; | |
} | |
.switcher-shortcut { | |
padding-left: .6em; | |
padding-right: .6em; | |
text-align: center; | |
} |
Install by replacing stylesheet.css
in ~/.local/share/gnome-shell/extensions/[email protected]/
with this one.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Old