From 8b120e5c15b5ed1e0570c95e93191ddc726cf56c Mon Sep 17 00:00:00 2001 From: Joseph Kennedy Date: Mon, 28 Aug 2017 20:54:26 -0400 Subject: [PATCH] Added label-enabled and label-disabled to base css --- netbox/project-static/css/base.css | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/netbox/project-static/css/base.css b/netbox/project-static/css/base.css index 573c1c967..43f8ac78b 100644 --- a/netbox/project-static/css/base.css +++ b/netbox/project-static/css/base.css @@ -384,4 +384,18 @@ td .progress { } textarea { font-family: Consolas, Lucida Console, monospace; +} +.label-enabled { + background-color: #6fd86f; +} +.label-enabled[href]:hover, +.label-enabled[href]:focus { + background-color: #3ccd3c; +} +.label-disabled { + background-color: #d86f6f; +} +.label-disabled[href]:hover, +.label-disabled[href]:focus { + background-color: #cd3c3c; } \ No newline at end of file