Skip to content

Instantly share code, notes, and snippets.

@cdharrison
Last active August 3, 2019 01:53
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cdharrison/2afdf373fef5012c89e9 to your computer and use it in GitHub Desktop.
Save cdharrison/2afdf373fef5012c89e9 to your computer and use it in GitHub Desktop.
WordPress Post Status
.status-draft{
background: #FFFED8;
&:before{
content: 'DRAFT';
background: #7F7E46;
color: #fff;
display: block;
padding: 5px;
text-transform: uppercase;
}
}
.status-pending{
background: #FFFED8;
&:before{
content: 'PENDING REVIEW';
background: #FF7F47;
color: #fff;
display: block;
padding: 5px;
text-transform: uppercase;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment