mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
BUGFIX:fixed buttons in ie7/ie8 added missing background colour.
This commit is contained in:
parent
b0573155ec
commit
7ece1d3e4f
@ -1,5 +1,10 @@
|
|||||||
html { overflow: hidden; }
|
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; }
|
.field input.text, .field textarea, .field .TreeDropdownField { padding-left: 0; padding-right: 0; }
|
||||||
|
|
||||||
.ss-ui-button.cms-page-add-button { float: left; }
|
.ss-ui-button.cms-page-add-button { float: left; }
|
||||||
|
@ -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 { width: 40px; }
|
||||||
.cms-panel .cms-panel-content-collapsed h2, .cms-panel .cms-panel-content-collapsed h3 { display: none; }
|
.cms-panel .cms-panel-content-collapsed h2, .cms-panel .cms-panel-content-collapsed h3 { display: none; }
|
||||||
|
|
||||||
|
@ -2,6 +2,21 @@ html {
|
|||||||
overflow: hidden;
|
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 {
|
.field {
|
||||||
input.text,
|
input.text,
|
||||||
textarea,
|
textarea,
|
||||||
|
@ -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 {
|
||||||
.cms-panel-content-collapsed {
|
.cms-panel-content-collapsed {
|
||||||
width: 40px;
|
width: 40px;
|
||||||
|
Loading…
Reference in New Issue
Block a user