mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
3e3c0c7237
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@102752 467b73ca-7a2a-4603-9d3b-597d59a354a9
69 lines
1.2 KiB
CSS
69 lines
1.2 KiB
CSS
div.availableWidgetsHolder {
|
|
width: 30%;
|
|
}
|
|
|
|
div.usedWidgetsHolder {
|
|
width: 66%;
|
|
}
|
|
|
|
div.availableWidgetsHolder {
|
|
float: left;
|
|
}
|
|
|
|
div.usedWidgetsHolder {
|
|
float: right;
|
|
}
|
|
|
|
.NoWidgets {
|
|
padding: 50px; /* Make this nice and big and easily 'droppable' */
|
|
}
|
|
|
|
div.usedWidgets div.Widget,
|
|
div.availableWidgets div.Widget {
|
|
width: 98%;
|
|
border: 1px solid #ddd;
|
|
border-top: none;
|
|
margin-bottom: 5px;
|
|
}
|
|
div.widgetDescription p,
|
|
div.widgetFields {
|
|
padding: 0 8px;
|
|
color: #666;
|
|
font-size: 11px;
|
|
}
|
|
|
|
p.deleteWidget {
|
|
margin: 0;
|
|
height: 22px;
|
|
line-height: 2.2;
|
|
font-size: 12px;
|
|
}
|
|
span.widgetDelete {
|
|
padding-left: 20px;
|
|
margin-right: 8px;
|
|
float: right;
|
|
background: url(../images/delete.gif) no-repeat left center;
|
|
cursor: pointer;
|
|
}
|
|
div.usedWidgets div.Widget h3,
|
|
div.availableWidgets div.Widget h3 {
|
|
font-size: 12px;
|
|
color: #fff;
|
|
line-height: 1.8;
|
|
padding: 0 5px;
|
|
margin: 0;
|
|
}
|
|
div.usedWidgets div.Widget h3 {
|
|
cursor: move;
|
|
background: #000 url(../images/handled-bg.png) right top;
|
|
}
|
|
div.availableWidgets div.Widget h3 {
|
|
cursor: pointer;
|
|
color: #444;
|
|
padding-right: 25px;
|
|
background: #ccc url(../images/add-bg.png) right center;
|
|
}
|
|
div.availableWidgets div.Widget h3:hover {
|
|
background: #ccc url(../images/add-bg-hover.png) right center;
|
|
}
|