From 7d9224ba8b054a5583b8bf78fccd10f79c4b5bb0 Mon Sep 17 00:00:00 2001 From: Ashesh Vashi Date: Thu, 23 Jul 2015 18:31:56 +0530 Subject: [PATCH] Changed the disabled control looks different from the eneabled. Changed the width of fieldset-content. --- web/pgadmin/static/css/overrides.css | 27 +++++++++++++++++++-------- 1 file changed, 19 insertions(+), 8 deletions(-) diff --git a/web/pgadmin/static/css/overrides.css b/web/pgadmin/static/css/overrides.css index b17e4719d..73854585e 100644 --- a/web/pgadmin/static/css/overrides.css +++ b/web/pgadmin/static/css/overrides.css @@ -244,7 +244,7 @@ iframe { .pgadmin-control-group { margin: 0px; - padding: 1px 0px; + padding: 2px 0px; } .fieldset-content .pgadmin-control-group:nth-child(even): { @@ -273,13 +273,14 @@ iframe { } .obj_properties fieldset > .fieldset-content { - border-radius: 8px; - padding: 12px 8px; - margin: 0px; - border-color: darkolivegreen; - border-width: 1.5px; - border-style: double; - background-color: #F2F2F2; + border-radius: 10px; + padding: 5px 10px; + width: 99.8%; + margin: 0 0.1%; + border-color: #92AFC8; + border-width: 3px; + border-style: ridge; + background-color: ##D7D8DD; } .obj_properties .badge { @@ -408,3 +409,13 @@ iframe { background-image: url('/browser/server/static/img/serverbad.png') !important; border-radius: 10px } + +.form-control { + color: #333333; +} + +.form-control[disabled], +.form-control[readonly], +fieldset[disabled] .form-control { + color: #666666; +}