backgrid-sizeable-columns.css 657 B

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. backgrid-sizeable-columns
  3. https://github.com/WRidder/backgrid-sizeable-columns
  4. Copyright (c) 2014 Wilbert van de Ridder
  5. Licensed under the MIT @license.
  6. */
  7. table.backgrid {
  8. overflow: hidden;
  9. position: relative;
  10. }
  11. .backgrid .resizeHandler {
  12. width: 16px;
  13. height: 100%;
  14. margin-left: -8px;
  15. top: 0;
  16. position: absolute;
  17. cursor: col-resize;
  18. z-index: 2;
  19. }
  20. .backgrid .resizeHandler.grid-draggable {
  21. opacity: 1;
  22. width: 1px;
  23. margin-left: 0px;
  24. background-color: #000;
  25. }
  26. .backgrid .resizeHandler .grid-draggable-cursor {
  27. cursor: col-resize;
  28. width: 100px;
  29. margin-left: -50px;
  30. height: 100%;
  31. }