mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
32024b451c
http://svn.silverstripe.com/open/modules/cms/branches/2.2.2 ........ r50812 | sminnee | 2008-03-11 10:34:32 +1300 (Tue, 11 Mar 2008) | 1 line #2285 - Fixed widget editor ........ git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@50854 467b73ca-7a2a-4603-9d3b-597d59a354a9
59 lines
1002 B
CSS
59 lines
1002 B
CSS
div.availableWidgetsHolder,
|
|
div.usedWidgetsHolder {
|
|
width: 49%;
|
|
}
|
|
|
|
div.availableWidgetsHolder {
|
|
float: left;
|
|
}
|
|
|
|
div.usedWidgetsHolder {
|
|
float: right;
|
|
}
|
|
|
|
div.usedWidgets {
|
|
border: 1px #CCC dotted;
|
|
padding: 5px;
|
|
}
|
|
#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;
|
|
text-indent: 5px;
|
|
background: #000 url(../images/textures/obar-18.gif);
|
|
margin: 0;
|
|
cursor: move;
|
|
}
|