e326adb1e8fc90651f1ea30d1a5aaefde5804df6747881351efec89f060475abdba40230db85be6909104a969219a1df4293a63c28fdf89704327d5d8a39ea 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /*!
  2. * Handsontable ContextMenu
  3. */
  4. .htContextMenu {
  5. display: none;
  6. position: absolute;
  7. z-index: 1060; /* needs to be higher than 1050 - z-index for Twitter Bootstrap modal (#1569) */
  8. }
  9. .htContextMenu .ht_clone_top,
  10. .htContextMenu .ht_clone_left,
  11. .htContextMenu .ht_clone_corner,
  12. .htContextMenu .ht_clone_debug {
  13. display: none;
  14. }
  15. .htContextMenu table.htCore {
  16. border: 1px solid #ccc;
  17. border-bottom-width: 2px;
  18. border-right-width: 2px;
  19. }
  20. .htContextMenu .wtBorder {
  21. visibility: hidden;
  22. }
  23. .htContextMenu table tbody tr td {
  24. background: white;
  25. border-width: 0;
  26. padding: 4px 6px 0 6px;
  27. cursor: pointer;
  28. overflow: hidden;
  29. white-space: nowrap;
  30. text-overflow: ellipsis;
  31. }
  32. .htContextMenu table tbody tr td:first-child {
  33. border: 0;
  34. }
  35. .htContextMenu table tbody tr td.htDimmed {
  36. font-style: normal;
  37. color: #323232;
  38. }
  39. .htContextMenu table tbody tr td.current,
  40. .htContextMenu table tbody tr td.zeroclipboard-is-hover {
  41. background: #f3f3f3;
  42. }
  43. .htContextMenu table tbody tr td.htSeparator {
  44. border-top: 1px solid #bbb;
  45. height: 0;
  46. padding: 0;
  47. cursor: default;
  48. }
  49. .htContextMenu table tbody tr td.htDisabled {
  50. color: #999;
  51. cursor: default;
  52. }
  53. .htContextMenu table tbody tr td.htDisabled:hover {
  54. background: #fff;
  55. color: #999;
  56. cursor: default;
  57. }
  58. .htContextMenu table tbody tr.htHidden {
  59. display: none;
  60. }
  61. .htContextMenu table tbody tr td .htItemWrapper {
  62. margin-left: 10px;
  63. margin-right: 6px;
  64. }
  65. .htContextMenu table tbody tr td div span.selected {
  66. margin-top: -2px;
  67. position: absolute;
  68. left: 4px;
  69. }
  70. .htContextMenu .ht_master .wtHolder {
  71. overflow: hidden;
  72. }