52 lines
801 B
CSS
52 lines
801 B
CSS
/* CSS Document */
|
|
|
|
body.dragging, body.dragging * {
|
|
cursor: move !important;
|
|
}
|
|
|
|
.dragged {
|
|
position: absolute;
|
|
opacity: 0.5;
|
|
z-index: 2000;
|
|
}
|
|
|
|
ol.example{
|
|
width:100%;
|
|
list-style-position:outside;
|
|
list-style-type:disc ;
|
|
padding:0px;
|
|
}
|
|
|
|
ol.example li table,ol.example li{
|
|
border-radius: 4px;
|
|
}
|
|
|
|
ol.example li.example_sub {
|
|
margin:2px;
|
|
width:100%;
|
|
height:135px;
|
|
cursor:pointer;
|
|
list-style:none;
|
|
border-width:1px;
|
|
border-style:solid;
|
|
border-color:#cccccc;
|
|
}
|
|
|
|
ol.example li.placeholder {
|
|
position: relative;
|
|
margin:2px;
|
|
width:100%;
|
|
height:135px;
|
|
cursor:pointer;
|
|
list-style: none;
|
|
border-width:1px;
|
|
border-style:solid;
|
|
border-color:dimgray;
|
|
}
|
|
ol.example li.placeholder:before {
|
|
position: absolute;
|
|
}
|
|
|
|
ul li textarea {
|
|
vertical-align: top;
|
|
} |