mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-09-18 09:44:20 +08:00
43 lines
1.2 KiB
CSS
43 lines
1.2 KiB
CSS
.switch-for-switchable {
|
|
margin:0 0 -34px;
|
|
overflow:auto;
|
|
}
|
|
.switch-for-switchable .switch-button-group {
|
|
float:right;
|
|
padding:4px 0;
|
|
}
|
|
.switch-for-switchable .switch-button {
|
|
background: #F5F5F5;
|
|
border:1px solid #999999;
|
|
color:#2D2F25;
|
|
cursor:pointer;
|
|
display:block;
|
|
float:left;
|
|
text-align:center;
|
|
height:24px;
|
|
width:24px;
|
|
}
|
|
.switch-for-switchable .summary-view {
|
|
background:url("images/summary-view.gif") no-repeat left top;
|
|
border-right:1px solid #bcbcbc;
|
|
border-radius:3px 0 0 3px;
|
|
-moz-border-radius:3px 0 0 3px;
|
|
-webkit-border-radius:3px 0 0 3px;
|
|
}
|
|
.switch-for-switchable.summary-switched .summary-view {
|
|
background:url("images/summary-view-on.gif") no-repeat left top;
|
|
border-color:#bb8b2d;
|
|
cursor:default;
|
|
}
|
|
.switch-for-switchable .detail-view {
|
|
background:url("images/detail-view.gif") no-repeat left top;
|
|
border-right:1px solid #898989;
|
|
border-radius:0 3px 3px 0;
|
|
-moz-border-radius:0 3px 3px 0;
|
|
-webkit-border-radius:0 3px 3px 0;
|
|
}
|
|
.switch-for-switchable.detail-switched .detail-view {
|
|
background:url("images/detail-view-on.gif") no-repeat left top;
|
|
border-color:#bb8b2d;
|
|
cursor:default;
|
|
} |