cellsSelector.css 691 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. .selection_border {
  2. border: solid 3px black;
  3. position: absolute;
  4. }
  5. .selection_overlay {
  6. font-size: 0;
  7. line-height: 0;
  8. padding: 0;
  9. position: absolute;
  10. }
  11. .cell_selection_border
  12. {
  13. background-color: transparent;
  14. border-collapse: separate;
  15. z-index: 2;
  16. }
  17. .cell_selection_border_top
  18. {
  19. border-top: solid 3px black;
  20. height: 0;
  21. }
  22. .cell_selection_border_right
  23. {
  24. border-right: solid 3px black;
  25. width: 0;
  26. }
  27. .cell_selection_border_bottom
  28. {
  29. border-bottom: solid 3px black;
  30. height: 0;
  31. }
  32. .cell_selection_border_left
  33. {
  34. border-left: solid 3px black;
  35. width: 0;
  36. }
  37. .multi_selection_overlay
  38. {
  39. background-color: #63B5FF;
  40. opacity: 0.2;
  41. filter: alpha(opacity=20);
  42. z-index: 1;
  43. }