From 2c432ee974a4b6433e967dbce5bbaade9705e443 Mon Sep 17 00:00:00 2001 From: John Mitchell Date: Fri, 12 Feb 2016 11:55:26 -0500 Subject: [PATCH] fix scheduler name border color issues --- awx/ui/client/legacy-styles/ansible-ui.less | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/awx/ui/client/legacy-styles/ansible-ui.less b/awx/ui/client/legacy-styles/ansible-ui.less index a9c4e6fc85..47eacf7f81 100644 --- a/awx/ui/client/legacy-styles/ansible-ui.less +++ b/awx/ui/client/legacy-styles/ansible-ui.less @@ -630,6 +630,14 @@ dd { box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 5px rgba(255, 88, 80, 0.6); } + .form-control.ng-dirty.ng-pristine { + border-color: #e1e1e1; + box-shadow: none; + } + + .form-control.ng-dirty.ng-pristine:focus { + border-color: #1678c4; + } /* For some reason TB 3 RC1 does not provide an input-mini */ .input-mini { @@ -2018,3 +2026,11 @@ button.dropdown-toggle, .list-actions button, .list-actions .checkbox-inline { margin-top: 10px; } + +.select2-container--disabled,.select2-container--disabled .select2-selection--single{ + cursor: not-allowed !important; +} + +.select2-container--disabled { + opacity: .35; +}