diff options
author | Marc Englund <marc.englund@itmill.com> | 2006-11-29 16:02:57 +0000 |
---|---|---|
committer | Marc Englund <marc.englund@itmill.com> | 2006-11-29 16:02:57 +0000 |
commit | ed2c8425e98142023be91f997b0d90df874e70c6 (patch) | |
tree | 24219d312b830c40961294ff235f4ffb9ddd481c /WebContent | |
parent | a6cd7bc875b46bf54ee5a2962bd60ae8e1608bbe (diff) | |
download | vaadin-framework-ed2c8425e98142023be91f997b0d90df874e70c6.tar.gz vaadin-framework-ed2c8425e98142023be91f997b0d90df874e70c6.zip |
panel border fix
svn changeset:124/svn branch:toolkit
Diffstat (limited to 'WebContent')
-rw-r--r-- | WebContent/themes/default/theme.css | 2 | ||||
-rw-r--r-- | WebContent/themes/default/theme.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/WebContent/themes/default/theme.css b/WebContent/themes/default/theme.css index e63affa8c2..69f78368bc 100644 --- a/WebContent/themes/default/theme.css +++ b/WebContent/themes/default/theme.css @@ -176,7 +176,7 @@ IMG.overlay { color: CaptionText;
background-color: ActiveCaption;
}
-.panel-light .borderlight {
+.panel .border, .panel-light .border {
border: 2px groove ThreeDHighlight;
}
diff --git a/WebContent/themes/default/theme.js b/WebContent/themes/default/theme.js index 6ac94987df..7d1508f5b2 100644 --- a/WebContent/themes/default/theme.js +++ b/WebContent/themes/default/theme.js @@ -1350,7 +1350,7 @@ DefaultTheme.prototype.renderPanel = function(renderer,uidl,target,layoutInfo) { }
if ("light"==style) {
theme.addCSSClass(div,"light");
- borderStyle += "light";
+ //borderStyle += "light";
}
// Create extra DIV for visual layout
|