BUGFIX:fixed buttons in ie7/ie8 added missing background colour.

This commit is contained in:
jbridson 2012-03-12 14:38:39 +13:00 committed by Ingo Schommer
parent b0573155ec
commit 7ece1d3e4f
4 changed files with 39 additions and 0 deletions

View File

@ -1,5 +1,10 @@
html { overflow: hidden; }
.cms .ss-ui-button { background-color: #e6e6e6; }
.cms .ss-ui-button.ui-state-hover { background-color: #f3f3f3; }
.cms .ss-ui-button.ss-ui-action-constructive { background-color: #669933; }
.cms .ss-ui-button.ss-ui-action-constructive.ui-state-hover { background-color: #73ac39; }
.field input.text, .field textarea, .field .TreeDropdownField { padding-left: 0; padding-right: 0; }
.ss-ui-button.cms-page-add-button { float: left; }

View File

@ -1,3 +1,8 @@
.cms .ss-ui-button { background-color: #e6e6e6; }
.cms .ss-ui-button.ui-state-hover { background-color: #f3f3f3; }
.cms .ss-ui-button.ss-ui-action-constructive { background-color: #669933; }
.cms .ss-ui-button.ss-ui-action-constructive.ui-state-hover { background-color: #73ac39; }
.cms-panel .cms-panel-content-collapsed { width: 40px; }
.cms-panel .cms-panel-content-collapsed h2, .cms-panel .cms-panel-content-collapsed h3 { display: none; }

View File

@ -2,6 +2,21 @@ html {
overflow: hidden;
}
//fix for background colors on buttons
.cms .ss-ui-button {
background-color: #e6e6e6;
&.ui-state-hover {
background-color:lighten(#e6e6e6, 5%);
}
&.ss-ui-action-constructive {
background-color:#669933;
&.ui-state-hover {
background-color:lighten(#669933, 5%);
}
}
}
//
.field {
input.text,
textarea,

View File

@ -1,3 +1,17 @@
//fix for background colors on buttons
.cms .ss-ui-button {
background-color: #e6e6e6;
&.ui-state-hover {
background-color:lighten(#e6e6e6, 5%);
}
&.ss-ui-action-constructive {
background-color:#669933;
&.ui-state-hover {
background-color:lighten(#669933, 5%);
}
}
}
.cms-panel {
.cms-panel-content-collapsed {
width: 40px;