13 lines
207 B
CSS
13 lines
207 B
CSS
.drag-content{
|
|
width:300px;
|
|
max-width:100%;
|
|
height:30px;
|
|
text-overflow: ellipsis;
|
|
cursor:move;
|
|
user-select: none;
|
|
background-color:black;
|
|
margin:5px;
|
|
border-radius:5px;
|
|
color:white;
|
|
padding:3px;
|
|
} |