nestable.css 1.5 KB

12345678910111213141516171819202122232425262728293031323334
  1. .dd { position: relative; display: block; margin: 10px; padding: 0; list-style: none; font-size: 13px; line-height: 20px; }
  2. .dd-list { display: block; position: relative; margin: 0; padding: 0; list-style: none; }
  3. .dd-list .dd-list { padding-left: 30px; }
  4. .dd-collapsed .dd-list { display: none; }
  5. .dd-item,
  6. .dd-empty,
  7. .dd-placeholder { display: block; position: relative; margin: 0; padding: 0;}
  8. .dd-handle {
  9. display: block;
  10. margin: 1px 0;
  11. padding: 8px 10px;
  12. color: #333;
  13. text-decoration: none;
  14. border: 1px solid #ddd;
  15. background: #fff;
  16. }
  17. .dd-handle:hover { color: #2ea8e5; background: #fff; }
  18. .dd-item > button { display: block; position: relative; cursor: pointer; float: left; width: 25px; height: 20px; margin: 5px 0; padding: 0; text-indent: 100%; white-space: nowrap; overflow: hidden; border: 0; background: transparent; font-size: 12px; line-height: 1; text-align: center; font-weight: bold; }
  19. .dd-item > button:before { content: '+'; display: block; position: absolute; width: 100%; text-align: center; text-indent: 0; }
  20. .dd-item > button[data-action="collapse"]:before { content: '-'; }
  21. .dd-placeholder { margin: 5px 0; padding: 0; min-height: 30px; background: #f2fbff; border: 1px dashed #b6bcbf; box-sizing: border-box; -moz-box-sizing: border-box; }
  22. .dd-dragel { position: absolute; pointer-events: none; z-index: 9999; }
  23. .dd-dragel > .dd-item .dd-handle { margin-top: 0; }
  24. .dd-dragel .dd-handle {
  25. -webkit-box-shadow: 2px 4px 6px 0 rgba(0,0,0,.1);
  26. box-shadow: 2px 4px 6px 0 rgba(0,0,0,.1);
  27. }