81 lines
1.4 KiB
CSS
81 lines
1.4 KiB
CSS
div.dragable:hover {
|
|
border: 1px dashed #aaaaaa;
|
|
}
|
|
.dragable{
|
|
position: relative;
|
|
border: 1px dotted #cccccc;
|
|
}
|
|
.dragTrigger{
|
|
cursor: move;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
}
|
|
.dragTriggerWrap{
|
|
width: 100%;
|
|
height: 25px;
|
|
font-size: 10px;
|
|
color: #888888;
|
|
background-color: #cccccc;
|
|
border: 1px solid #888888;
|
|
text-align: right;
|
|
}
|
|
.dragTriggerWrap img {
|
|
border: none;
|
|
margin-top: 4px;
|
|
margin-right: 4px;
|
|
}
|
|
|
|
.dragging{
|
|
position: relative;
|
|
opacity:0.6;
|
|
-moz-opacity:0.6;
|
|
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=60);
|
|
cursor: pointer;
|
|
z-index: 2000;
|
|
}
|
|
.draggedOverTop{
|
|
position: relative;
|
|
border: 1px dotted #aaaaaa;
|
|
border-top: 8px #aaaaaa dotted;
|
|
}
|
|
.draggedOverBottom {
|
|
position: relative;
|
|
border: 1px dotted #aaaaaa;
|
|
border-bottom: 8px #aaaaaa dotted;
|
|
}
|
|
.hidden{
|
|
display: none;
|
|
}
|
|
.blank {
|
|
position: relative;
|
|
cursor: pointer;
|
|
background-color: white;
|
|
}
|
|
.blankOver {
|
|
position: relative;
|
|
cursor: pointer;
|
|
background-color: black;
|
|
}
|
|
.empty {
|
|
position: relative;
|
|
padding: 25px;
|
|
width: 50px;
|
|
height: 100px;
|
|
}
|
|
.dragging, .empty {
|
|
background-image: url(opaque.gif);
|
|
}
|
|
|
|
/* Make the buttons appear inside the drag toolbar */
|
|
.wg-content-position > *, .dragging {
|
|
position: relative;
|
|
}
|
|
.wg-content-position .wg-admin-toolbar,
|
|
.dragging .wg-admin-toolbar {
|
|
position: absolute;
|
|
left: auto;
|
|
top: 0px;
|
|
margin-top: 2px;
|
|
margin-left: 2px;
|
|
}
|
|
|