5b0a8f157d
- Updating DnD to use Sortable instead of draggable/dropppable (updating deps as well). - much simpler logic for DnD - Remove LESS for now since it's a bit yet overkill - fix moveFrame function
36 lines
No EOL
626 B
CSS
36 lines
No EOL
626 B
CSS
html, body {
|
|
height : 100%; width: 100%;
|
|
margin : 0;
|
|
overflow: hidden;
|
|
cursor : default;
|
|
font-family: arial;
|
|
font-size: 11px;
|
|
-webkit-touch-callout: none;
|
|
-webkit-user-select: none;
|
|
-khtml-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|
|
|
|
ul, li {
|
|
margin : 0;
|
|
padding : 0;
|
|
list-style-type: none;
|
|
}
|
|
|
|
|
|
/* Force apparition of scrollbars on leopard */
|
|
::-webkit-scrollbar {
|
|
-webkit-appearance: none;
|
|
width: 6px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
border-radius: 2px;
|
|
background-color: #666;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background-color: #444;
|
|
} |