Last active
July 26, 2016 16:09
-
-
Save ryanshoover/454c2ba78672ca4faade52135b9c258b to your computer and use it in GitHub Desktop.
SCSS to style WP Engine Admin Bar in staging
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
| // 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