Skip to content

Instantly share code, notes, and snippets.

@ryanshoover
Last active July 26, 2016 16:09
Show Gist options
  • Select an option

  • Save ryanshoover/454c2ba78672ca4faade52135b9c258b to your computer and use it in GitHub Desktop.

Select an option

Save ryanshoover/454c2ba78672ca4faade52135b9c258b to your computer and use it in GitHub Desktop.
SCSS to style WP Engine Admin Bar in staging
// Style the wpadminbar based on site type
#wpadminbar {
body.developer & {
background-color: $teal;
}
body.devsite & {
background-color: $darkblue;
}
body.staging & {
background-color: $green;
}
body.production & {
background-color: $red;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment