31 lines
456 B
CSS
31 lines
456 B
CSS
|
.connectedSortable {
|
||
|
list-style-type: none;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
overflow: auto;
|
||
|
min-height : 10px;
|
||
|
}
|
||
|
.connectedSortable div {
|
||
|
margin: 3px 3px 3px 0;
|
||
|
padding: 15px;
|
||
|
float: left;
|
||
|
text-align: center;
|
||
|
border:1px solid #CCCCCC;
|
||
|
}
|
||
|
.ui-state-highlight {
|
||
|
padding: 15px;
|
||
|
line-height: 1.2em;
|
||
|
height: 15px;
|
||
|
width: 15px;
|
||
|
}
|
||
|
|
||
|
.picto-icon{
|
||
|
float: right;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
.picto-icon i{
|
||
|
color: #ccc;
|
||
|
}
|
||
|
.picto-icon:hover i{
|
||
|
color: #555;
|
||
|
}
|