From ec886fe3c46f6e3e54fe4e1df769dabed5588063 Mon Sep 17 00:00:00 2001 From: John Mayhew Date: Fri, 11 May 2012 11:34:06 -0700 Subject: fixed bug introduced when we removed the color toolbar. The styling of the color chips in the PI was broken due to a reliance on a css class from the colortoolbar reel. The requried class was copied to the properties.css file as a temporary fix. --- js/panels/properties.reel/properties.css | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'js/panels/properties.reel/properties.css') diff --git a/js/panels/properties.reel/properties.css b/js/panels/properties.reel/properties.css index 0928da3a..eee44561 100755 --- a/js/panels/properties.reel/properties.css +++ b/js/panels/properties.reel/properties.css @@ -4,6 +4,21 @@ (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. */ +/* Cleanup TODO - now that we removed the color toolbar from the tools panel, we no longer load the colortoolbar reel. + Currently the color chips in the property inspector rely on the colortoolbar button style so we + copied the class here. When we do the color feature cleanup we should remove this dependency. +*/ +.colortoolbar button { + float: left; + clear: both; + width: 27px; + height: 27px; + background: black; + border: 1px solid #000; + padding: 0; + margin: 0px; +} + .propertiesPanel { color:#FFF; overflow-x: hidden; -- cgit v1.2.3 From 6dfe2e62b1d7a71daf097aac3a31213d564e6122 Mon Sep 17 00:00:00 2001 From: Valerio Virgillito Date: Wed, 16 May 2012 00:54:30 -0700 Subject: Removing the old checkbox components. Created a new LabelCheckbox Signed-off-by: Valerio Virgillito --- js/panels/properties.reel/properties.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'js/panels/properties.reel/properties.css') diff --git a/js/panels/properties.reel/properties.css b/js/panels/properties.reel/properties.css index 0928da3a..756ecc5c 100755 --- a/js/panels/properties.reel/properties.css +++ b/js/panels/properties.reel/properties.css @@ -256,17 +256,17 @@ padding-right:6px; content: "•"; } -.propertiesPanel input.nj-skinned label { +.propertiesPanel .checkbox-label { position: absolute; - top: 0; - left: 15px; + top: 4px; + padding-left: 5px; + /*left: 15px;*/ font-size: 10px; width:55px; text-align: left; font-weight: normal; color:#FFF; } - .propertiesPanel input[type='radio'].nj-skinned { text-indent: 0px; line-height: 5px; -- cgit v1.2.3