| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- /*!
- * Handsontable ContextMenu
- */
- .htContextMenu {
- display: none;
- position: absolute;
- z-index: 1060; /* needs to be higher than 1050 - z-index for Twitter Bootstrap modal (#1569) */
- }
- .htContextMenu .ht_clone_top,
- .htContextMenu .ht_clone_left,
- .htContextMenu .ht_clone_corner,
- .htContextMenu .ht_clone_debug {
- display: none;
- }
- .htContextMenu table.htCore {
- border: 1px solid #ccc;
- border-bottom-width: 2px;
- border-right-width: 2px;
- }
- .htContextMenu .wtBorder {
- visibility: hidden;
- }
- .htContextMenu table tbody tr td {
- background: white;
- border-width: 0;
- padding: 4px 6px 0 6px;
- cursor: pointer;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .htContextMenu table tbody tr td:first-child {
- border: 0;
- }
- .htContextMenu table tbody tr td.htDimmed {
- font-style: normal;
- color: #323232;
- }
- .htContextMenu table tbody tr td.current,
- .htContextMenu table tbody tr td.zeroclipboard-is-hover {
- background: #f3f3f3;
- }
- .htContextMenu table tbody tr td.htSeparator {
- border-top: 1px solid #bbb;
- height: 0;
- padding: 0;
- cursor: default;
- }
- .htContextMenu table tbody tr td.htDisabled {
- color: #999;
- cursor: default;
- }
- .htContextMenu table tbody tr td.htDisabled:hover {
- background: #fff;
- color: #999;
- cursor: default;
- }
- .htContextMenu table tbody tr.htHidden {
- display: none;
- }
- .htContextMenu table tbody tr td .htItemWrapper {
- margin-left: 10px;
- margin-right: 6px;
- }
- .htContextMenu table tbody tr td div span.selected {
- margin-top: -2px;
- position: absolute;
- left: 4px;
- }
- .htContextMenu .ht_master .wtHolder {
- overflow: hidden;
- }
|