├── README.md ├── css ├── staging.css └── development.css ├── composer.json └── standout-staging.php /README.md: -------------------------------------------------------------------------------- 1 | wp-standout-staging 2 | -------------------------------------------------------------------------------- /css/staging.css: -------------------------------------------------------------------------------- 1 | #wpadminbar { 2 | background-color: red; 3 | } 4 | -------------------------------------------------------------------------------- /css/development.css: -------------------------------------------------------------------------------- 1 | #wpadminbar { 2 | background-color: blue; 3 | } 4 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "outlandish/standout-staging", 3 | "description": "This repository contains the WordPress plugin that makes staging and development versions of a website easily visible by a different color in the admin bar", 4 | "type": "wordpress-plugin", 5 | "license": "GPL-3.0+", 6 | "authors": [ 7 | { 8 | "name": "Outlandish.com", 9 | "email": "koyan@outlandish.com" 10 | } 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /standout-staging.php: -------------------------------------------------------------------------------- 1 |