Skip to content

Instantly share code, notes, and snippets.

@hadinajafi
Last active January 11, 2021 13:58
Show Gist options
  • Save hadinajafi/ad5ea817937a56baecff60052a3fda24 to your computer and use it in GitHub Desktop.
Save hadinajafi/ad5ea817937a56baecff60052a3fda24 to your computer and use it in GitHub Desktop.
Some Gnome shell tweaks to improve look & feel
stage {
font-size: 10.5pt;
font-weight: 400;
color: rgba(0,0,0,0.75);
}
/* add an activity icon on top of the left corner. something like apple icon, ubuntu icon, etc. */
#panel #panelActivities.panel-button > * {
background-image: url("assets/activities.svg");
background-position: center top;
width: 20px;
height: 20px;
background-color: transparent !important;
background-gradient-direction: none !important;
border: none;
color: transparent;
}
/* my favorite panel style: very small and space saver, light gray color. very similar to apple top panel. */
#panel {
background-color: rgba(255,255,255,0.75);
font-size: 9.5pt;
height: 1.75em;
text-shadow: none;
box-shadow: 0 2px 15px rgba(0,0,0,0.1), 0 2px 6px rgba(0,0,0,0.35);
background-gradient-direction: none;
/*border-radius: 0 0 6px 6px;*/
}
/* enable apps icon on top panel application menu. */
#panel .panel-button .app-menu-icon {
-st-icon-style: symbolic;
icon-size: 16px;
margin-left: 0;
margin-right: 0;
}
/* my favorite panel & font sizes */
/* TOP BAR */
#panel {
background-color: rgba(241, 241, 241, 0.85);
/* transition from solid to transparent */
transition-duration: 250ms;
font-size: 9.75pt;
font-weight: bold;
height: 1.75em;
box-shadow: 0 0 8px rgba(0, 0, 0, 0.2), 0 0 4px rgba(0, 0, 0, 0.3);
}
/* Overview search style. font, spacing*/
.list-search-result-content {
spacing: 12px;
/*padding: 12px; // removed it to make the search results more compact & more results displays */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment