handsontable 14.6.1 → 15.0.0-next-4472a60-20241203
Sign up to get free protection for your applications and to get access to all the features.
- package/3rdparty/walkontable/src/calculator/calculationType/renderedColumns.js +23 -0
- package/3rdparty/walkontable/src/calculator/calculationType/renderedColumns.mjs +23 -0
- package/3rdparty/walkontable/src/calculator/calculationType/renderedRows.js +23 -0
- package/3rdparty/walkontable/src/calculator/calculationType/renderedRows.mjs +23 -0
- package/3rdparty/walkontable/src/calculator/index.js +1 -2
- package/3rdparty/walkontable/src/calculator/index.mjs +2 -2
- package/3rdparty/walkontable/src/calculator/viewportBase.js +2 -0
- package/3rdparty/walkontable/src/calculator/viewportBase.mjs +2 -0
- package/3rdparty/walkontable/src/calculator/viewportRows.js +3 -3
- package/3rdparty/walkontable/src/calculator/viewportRows.mjs +3 -3
- package/3rdparty/walkontable/src/core/_base.js +29 -23
- package/3rdparty/walkontable/src/core/_base.mjs +29 -23
- package/3rdparty/walkontable/src/core/clone.js +1 -0
- package/3rdparty/walkontable/src/core/clone.mjs +1 -0
- package/3rdparty/walkontable/src/core/core.js +2 -0
- package/3rdparty/walkontable/src/core/core.mjs +2 -0
- package/3rdparty/walkontable/src/facade/core.js +12 -6
- package/3rdparty/walkontable/src/facade/core.mjs +12 -6
- package/3rdparty/walkontable/src/index.js +0 -1
- package/3rdparty/walkontable/src/index.mjs +2 -2
- package/3rdparty/walkontable/src/overlay/_base.js +8 -1
- package/3rdparty/walkontable/src/overlay/_base.mjs +8 -1
- package/3rdparty/walkontable/src/overlay/bottom.js +5 -6
- package/3rdparty/walkontable/src/overlay/bottom.mjs +5 -6
- package/3rdparty/walkontable/src/overlay/index.js +2 -0
- package/3rdparty/walkontable/src/overlay/inlineStart.js +8 -7
- package/3rdparty/walkontable/src/overlay/inlineStart.mjs +9 -8
- package/3rdparty/walkontable/src/overlay/top.js +9 -8
- package/3rdparty/walkontable/src/overlay/top.mjs +10 -9
- package/3rdparty/walkontable/src/overlays.js +10 -26
- package/3rdparty/walkontable/src/overlays.mjs +10 -26
- package/3rdparty/walkontable/src/renderer/colGroup.js +1 -1
- package/3rdparty/walkontable/src/renderer/colGroup.mjs +1 -1
- package/3rdparty/walkontable/src/renderer/index.js +4 -2
- package/3rdparty/walkontable/src/renderer/index.mjs +4 -2
- package/3rdparty/walkontable/src/renderer/table.js +13 -4
- package/3rdparty/walkontable/src/renderer/table.mjs +13 -4
- package/3rdparty/walkontable/src/scroll.js +46 -37
- package/3rdparty/walkontable/src/scroll.mjs +46 -37
- package/3rdparty/walkontable/src/selection/border/border.js +52 -58
- package/3rdparty/walkontable/src/selection/border/border.mjs +53 -59
- package/3rdparty/walkontable/src/selection/border/utils.js +26 -0
- package/3rdparty/walkontable/src/selection/border/utils.mjs +22 -0
- package/3rdparty/walkontable/src/selection/index.js +6 -4
- package/3rdparty/walkontable/src/selection/index.mjs +1 -1
- package/3rdparty/walkontable/src/selection/manager.js +3 -0
- package/3rdparty/walkontable/src/selection/manager.mjs +3 -0
- package/3rdparty/walkontable/src/selection/scanner.js +46 -11
- package/3rdparty/walkontable/src/selection/scanner.mjs +46 -11
- package/3rdparty/walkontable/src/settings.js +8 -9
- package/3rdparty/walkontable/src/settings.mjs +8 -9
- package/3rdparty/walkontable/src/table/master.js +1 -1
- package/3rdparty/walkontable/src/table/master.mjs +2 -2
- package/3rdparty/walkontable/src/table.js +25 -36
- package/3rdparty/walkontable/src/table.mjs +25 -36
- package/3rdparty/walkontable/src/types.js +1 -0
- package/3rdparty/walkontable/src/types.mjs +1 -0
- package/3rdparty/walkontable/src/utils/column.js +1 -43
- package/3rdparty/walkontable/src/utils/column.mjs +1 -43
- package/3rdparty/walkontable/src/utils/stylesHandler.js +295 -0
- package/3rdparty/walkontable/src/utils/stylesHandler.mjs +291 -0
- package/3rdparty/walkontable/src/viewport.js +94 -91
- package/3rdparty/walkontable/src/viewport.mjs +95 -92
- package/CHANGELOG.md +36 -0
- package/README.md +1 -1
- package/base.js +4 -4
- package/base.mjs +3 -3
- package/core/focusCatcher/focusDetector.js +1 -0
- package/core/focusCatcher/focusDetector.mjs +1 -0
- package/core/hooks/bucket.js +184 -0
- package/core/hooks/bucket.mjs +180 -0
- package/{pluginHooks.mjs → core/hooks/constants.js} +38 -486
- package/{pluginHooks.js → core/hooks/constants.mjs} +34 -489
- package/{pluginHooks.d.ts → core/hooks/index.d.ts} +22 -25
- package/core/hooks/index.js +385 -0
- package/core/hooks/index.mjs +381 -0
- package/core/index.js +2 -0
- package/core.d.ts +5 -3
- package/core.js +77 -35
- package/core.mjs +69 -27
- package/dataMap/dataMap.js +3 -0
- package/dataMap/dataMap.mjs +3 -0
- package/dataMap/dataSource.js +2 -0
- package/dataMap/dataSource.mjs +2 -0
- package/dataMap/metaManager/index.js +2 -0
- package/dataMap/metaManager/index.mjs +2 -0
- package/dataMap/metaManager/metaSchema.js +91 -5
- package/dataMap/metaManager/metaSchema.mjs +91 -5
- package/dataMap/metaManager/mods/dynamicCellMeta.js +2 -3
- package/dataMap/metaManager/mods/dynamicCellMeta.mjs +1 -1
- package/dataMap/metaManager/mods/extendMetaProperties.js +2 -0
- package/dataMap/metaManager/mods/extendMetaProperties.mjs +2 -0
- package/dist/handsontable.css +84 -72
- package/dist/handsontable.full.css +317 -304
- package/dist/handsontable.full.js +14826 -7294
- package/dist/handsontable.full.min.css +15 -10
- package/dist/handsontable.full.min.js +262 -69
- package/dist/handsontable.js +7826 -5552
- package/dist/handsontable.min.css +10 -6
- package/dist/handsontable.min.js +33 -33
- package/dist/languages/all.js +1 -1
- package/dist/languages/ar-AR.js +1 -1
- package/dist/languages/cs-CZ.js +1 -1
- package/dist/languages/de-CH.js +1 -1
- package/dist/languages/de-DE.js +1 -1
- package/dist/languages/en-US.js +1 -1
- package/dist/languages/es-MX.js +1 -1
- package/dist/languages/fr-FR.js +1 -1
- package/dist/languages/hr-HR.js +1 -1
- package/dist/languages/it-IT.js +1 -1
- package/dist/languages/ja-JP.js +1 -1
- package/dist/languages/ko-KR.js +1 -1
- package/dist/languages/lv-LV.js +1 -1
- package/dist/languages/nb-NO.js +1 -1
- package/dist/languages/nl-NL.js +1 -1
- package/dist/languages/pl-PL.js +1 -1
- package/dist/languages/pt-BR.js +1 -1
- package/dist/languages/ru-RU.js +1 -1
- package/dist/languages/sr-SP.js +1 -1
- package/dist/languages/zh-CN.js +1 -1
- package/dist/languages/zh-TW.js +1 -1
- package/editorManager.js +2 -2
- package/editorManager.mjs +2 -2
- package/editors/autocompleteEditor/autocompleteEditor.js +34 -16
- package/editors/autocompleteEditor/autocompleteEditor.mjs +34 -16
- package/editors/baseEditor/baseEditor.js +25 -18
- package/editors/baseEditor/baseEditor.mjs +26 -19
- package/editors/dateEditor/dateEditor.js +9 -0
- package/editors/dateEditor/dateEditor.mjs +10 -1
- package/editors/dropdownEditor/dropdownEditor.js +4 -3
- package/editors/dropdownEditor/dropdownEditor.mjs +3 -1
- package/editors/handsontableEditor/handsontableEditor.js +36 -2
- package/editors/handsontableEditor/handsontableEditor.mjs +36 -2
- package/editors/passwordEditor/passwordEditor.js +18 -0
- package/editors/passwordEditor/passwordEditor.mjs +18 -0
- package/editors/registry.js +2 -2
- package/editors/registry.mjs +1 -1
- package/editors/selectEditor/selectEditor.js +20 -9
- package/editors/selectEditor/selectEditor.mjs +20 -9
- package/editors/textEditor/textEditor.js +5 -12
- package/editors/textEditor/textEditor.mjs +6 -13
- package/focusManager.js +5 -7
- package/focusManager.mjs +5 -7
- package/helpers/array.js +2 -0
- package/helpers/array.mjs +2 -0
- package/helpers/data.js +3 -0
- package/helpers/data.mjs +3 -0
- package/helpers/dom/element.js +39 -18
- package/helpers/dom/element.mjs +38 -17
- package/helpers/mixed.js +3 -3
- package/helpers/mixed.mjs +3 -3
- package/helpers/moves.js +3 -0
- package/helpers/moves.mjs +3 -0
- package/helpers/number.js +1 -0
- package/helpers/number.mjs +1 -0
- package/helpers/object.js +2 -0
- package/helpers/object.mjs +2 -0
- package/helpers/themes.js +17 -0
- package/helpers/themes.mjs +13 -0
- package/i18n/index.js +2 -0
- package/i18n/languages/index.d.ts +8 -0
- package/i18n/languages/ja-JP.d.ts +1 -1
- package/i18n/phraseFormatters/substituteVariables.js +1 -0
- package/i18n/phraseFormatters/substituteVariables.mjs +1 -0
- package/index.d.ts +9 -1
- package/languages/all.js +1 -1
- package/languages/ar-AR.js +1 -1
- package/languages/cs-CZ.js +1 -1
- package/languages/de-CH.js +1 -1
- package/languages/de-DE.js +1 -1
- package/languages/en-US.js +1 -1
- package/languages/es-MX.js +1 -1
- package/languages/fr-FR.js +1 -1
- package/languages/hr-HR.js +1 -1
- package/languages/index.js +1 -1
- package/languages/it-IT.js +1 -1
- package/languages/ja-JP.js +1 -1
- package/languages/ko-KR.js +1 -1
- package/languages/lv-LV.js +1 -1
- package/languages/nb-NO.js +1 -1
- package/languages/nl-NL.js +1 -1
- package/languages/pl-PL.js +1 -1
- package/languages/pt-BR.js +1 -1
- package/languages/ru-RU.js +1 -1
- package/languages/sr-SP.js +1 -1
- package/languages/zh-CN.js +1 -1
- package/languages/zh-TW.js +1 -1
- package/package.json +22 -7
- package/plugins/autoColumnSize/autoColumnSize.js +22 -27
- package/plugins/autoColumnSize/autoColumnSize.mjs +22 -27
- package/plugins/autoRowSize/autoRowSize.js +20 -22
- package/plugins/autoRowSize/autoRowSize.mjs +21 -23
- package/plugins/autofill/autofill.js +4 -5
- package/plugins/autofill/autofill.mjs +1 -1
- package/plugins/base/base.d.ts +1 -1
- package/plugins/base/base.js +41 -0
- package/plugins/base/base.mjs +42 -1
- package/plugins/base/index.js +2 -1
- package/plugins/base/index.mjs +1 -1
- package/plugins/bindRowsWithHeaders/bindRowsWithHeaders.js +2 -5
- package/plugins/bindRowsWithHeaders/bindRowsWithHeaders.mjs +2 -5
- package/plugins/columnSorting/columnSorting.js +5 -4
- package/plugins/columnSorting/columnSorting.mjs +3 -1
- package/plugins/columnSorting/columnStatesManager.js +1 -0
- package/plugins/columnSorting/columnStatesManager.mjs +1 -0
- package/plugins/columnSorting/utils.js +3 -0
- package/plugins/columnSorting/utils.mjs +3 -0
- package/plugins/columnSummary/endpoints.js +3 -0
- package/plugins/columnSummary/endpoints.mjs +3 -0
- package/plugins/comments/commentEditor.js +9 -0
- package/plugins/comments/commentEditor.mjs +9 -0
- package/plugins/comments/comments.js +24 -18
- package/plugins/comments/comments.mjs +26 -20
- package/plugins/comments/editorResizeObserver.js +2 -0
- package/plugins/comments/editorResizeObserver.mjs +2 -0
- package/plugins/contextMenu/contextMenu.d.ts +2 -1
- package/plugins/contextMenu/contextMenu.js +6 -7
- package/plugins/contextMenu/contextMenu.mjs +1 -1
- package/plugins/contextMenu/menu/index.js +2 -0
- package/plugins/contextMenu/menu/menu.js +10 -5
- package/plugins/contextMenu/menu/menu.mjs +11 -6
- package/plugins/contextMenu/menu/positioner.js +4 -2
- package/plugins/contextMenu/menu/positioner.mjs +4 -2
- package/plugins/contextMenu/menu/shortcuts.js +3 -1
- package/plugins/contextMenu/menu/shortcuts.mjs +3 -1
- package/plugins/contextMenu/predefinedItems/alignment.js +7 -84
- package/plugins/contextMenu/predefinedItems/alignment.mjs +8 -85
- package/plugins/contextMenu/utils.js +0 -10
- package/plugins/contextMenu/utils.mjs +0 -9
- package/plugins/copyPaste/copyPaste.d.ts +1 -0
- package/plugins/copyPaste/copyPaste.js +32 -23
- package/plugins/copyPaste/copyPaste.mjs +24 -15
- package/plugins/customBorders/utils.js +2 -0
- package/plugins/customBorders/utils.mjs +2 -0
- package/plugins/dropdownMenu/dropdownMenu.d.ts +2 -1
- package/plugins/dropdownMenu/dropdownMenu.js +6 -7
- package/plugins/dropdownMenu/dropdownMenu.mjs +1 -1
- package/plugins/exportFile/types/csv.js +1 -0
- package/plugins/exportFile/types/csv.mjs +1 -0
- package/plugins/filters/component/condition.js +2 -0
- package/plugins/filters/component/condition.mjs +2 -0
- package/plugins/filters/component/operators.js +2 -0
- package/plugins/filters/component/operators.mjs +2 -0
- package/plugins/filters/component/value.js +3 -0
- package/plugins/filters/component/value.mjs +3 -0
- package/plugins/filters/conditionCollection.js +3 -0
- package/plugins/filters/conditionCollection.mjs +3 -0
- package/plugins/filters/conditionUpdateObserver.js +2 -0
- package/plugins/filters/conditionUpdateObserver.mjs +2 -0
- package/plugins/filters/filters.js +43 -13
- package/plugins/filters/filters.mjs +43 -13
- package/plugins/filters/logicalOperations/conjunction.js +2 -0
- package/plugins/filters/logicalOperations/conjunction.mjs +2 -0
- package/plugins/filters/logicalOperations/disjunction.js +2 -0
- package/plugins/filters/logicalOperations/disjunction.mjs +2 -0
- package/plugins/filters/logicalOperations/disjunctionWithExtraCondition.js +2 -0
- package/plugins/filters/logicalOperations/disjunctionWithExtraCondition.mjs +2 -0
- package/plugins/filters/menu/focusController.js +38 -14
- package/plugins/filters/menu/focusController.mjs +38 -14
- package/plugins/filters/ui/multipleSelect.js +10 -0
- package/plugins/filters/ui/multipleSelect.mjs +10 -0
- package/plugins/formulas/engine/register.js +3 -0
- package/plugins/formulas/engine/register.mjs +3 -0
- package/plugins/formulas/engine/settings.js +3 -0
- package/plugins/formulas/engine/settings.mjs +3 -0
- package/plugins/formulas/formulas.js +12 -7
- package/plugins/formulas/formulas.mjs +6 -1
- package/plugins/formulas/indexSyncer/axisSyncer.js +3 -0
- package/plugins/formulas/indexSyncer/axisSyncer.mjs +3 -0
- package/plugins/hiddenColumns/contextMenuItem/showColumn.js +2 -0
- package/plugins/hiddenColumns/contextMenuItem/showColumn.mjs +2 -0
- package/plugins/hiddenColumns/hiddenColumns.js +22 -30
- package/plugins/hiddenColumns/hiddenColumns.mjs +18 -26
- package/plugins/hiddenRows/contextMenuItem/showRow.js +2 -0
- package/plugins/hiddenRows/contextMenuItem/showRow.mjs +2 -0
- package/plugins/hiddenRows/hiddenRows.js +21 -29
- package/plugins/hiddenRows/hiddenRows.mjs +17 -25
- package/plugins/index.d.ts +3 -0
- package/plugins/index.js +3 -0
- package/plugins/index.mjs +3 -1
- package/plugins/manualColumnFreeze/manualColumnFreeze.js +7 -5
- package/plugins/manualColumnFreeze/manualColumnFreeze.mjs +3 -1
- package/plugins/manualColumnMove/manualColumnMove.js +6 -6
- package/plugins/manualColumnMove/manualColumnMove.mjs +4 -4
- package/plugins/manualColumnResize/manualColumnResize.js +26 -12
- package/plugins/manualColumnResize/manualColumnResize.mjs +26 -12
- package/plugins/manualRowMove/manualRowMove.js +8 -6
- package/plugins/manualRowMove/manualRowMove.mjs +6 -4
- package/plugins/manualRowResize/manualRowResize.js +3 -2
- package/plugins/manualRowResize/manualRowResize.mjs +4 -3
- package/plugins/mergeCells/cellsCollection.js +19 -3
- package/plugins/mergeCells/cellsCollection.mjs +20 -4
- package/plugins/mergeCells/mergeCells.d.ts +6 -2
- package/plugins/mergeCells/mergeCells.js +84 -56
- package/plugins/mergeCells/mergeCells.mjs +82 -54
- package/plugins/mergeCells/renderer.js +13 -3
- package/plugins/mergeCells/renderer.mjs +13 -3
- package/plugins/multiColumnSorting/domHelpers.js +2 -0
- package/plugins/multiColumnSorting/domHelpers.mjs +2 -0
- package/plugins/nestedHeaders/nestedHeaders.js +63 -16
- package/plugins/nestedHeaders/nestedHeaders.mjs +63 -16
- package/plugins/nestedHeaders/stateManager/index.js +1 -0
- package/plugins/nestedHeaders/stateManager/index.mjs +1 -0
- package/plugins/nestedRows/nestedRows.js +3 -0
- package/plugins/nestedRows/nestedRows.mjs +3 -0
- package/plugins/nestedRows/ui/headers.js +7 -1
- package/plugins/nestedRows/ui/headers.mjs +7 -1
- package/plugins/nestedRows/utils/rowMoveController.js +4 -0
- package/plugins/nestedRows/utils/rowMoveController.mjs +4 -0
- package/plugins/persistentState/persistentState.js +4 -4
- package/plugins/persistentState/persistentState.mjs +1 -1
- package/plugins/stretchColumns/calculator.js +162 -0
- package/plugins/stretchColumns/calculator.mjs +158 -0
- package/plugins/stretchColumns/index.d.ts +1 -0
- package/plugins/stretchColumns/index.js +7 -0
- package/plugins/stretchColumns/index.mjs +1 -0
- package/plugins/stretchColumns/strategies/_base.js +85 -0
- package/plugins/stretchColumns/strategies/_base.mjs +81 -0
- package/plugins/stretchColumns/strategies/all.js +71 -0
- package/plugins/stretchColumns/strategies/all.mjs +67 -0
- package/plugins/stretchColumns/strategies/last.js +79 -0
- package/plugins/stretchColumns/strategies/last.mjs +75 -0
- package/plugins/stretchColumns/stretchColumns.d.ts +11 -0
- package/plugins/stretchColumns/stretchColumns.js +222 -0
- package/plugins/stretchColumns/stretchColumns.mjs +218 -0
- package/plugins/trimRows/trimRows.js +2 -0
- package/plugins/trimRows/trimRows.mjs +2 -0
- package/plugins/undoRedo/undoRedo.js +9 -5
- package/plugins/undoRedo/undoRedo.mjs +8 -3
- package/renderers/checkboxRenderer/checkboxRenderer.js +19 -8
- package/renderers/checkboxRenderer/checkboxRenderer.mjs +18 -7
- package/selection/index.js +2 -0
- package/selection/range.js +2 -0
- package/selection/range.mjs +2 -0
- package/selection/selection.js +7 -2
- package/selection/selection.mjs +7 -2
- package/selection/utils.js +2 -0
- package/selection/utils.mjs +2 -0
- package/settings.d.ts +4 -1
- package/shortcutContexts/commands/extendCellsSelection/downByViewportHeight.js +1 -1
- package/shortcutContexts/commands/extendCellsSelection/downByViewportHeight.mjs +1 -1
- package/shortcutContexts/commands/extendCellsSelection/upByViewportHeight.js +1 -1
- package/shortcutContexts/commands/extendCellsSelection/upByViewportHeight.mjs +1 -1
- package/shortcutContexts/commands/index.js +2 -0
- package/shortcutContexts/commands/index.mjs +2 -0
- package/shortcutContexts/commands/scrollToFocusedCell.js +4 -4
- package/shortcutContexts/commands/scrollToFocusedCell.mjs +4 -4
- package/shortcutContexts/index.js +2 -0
- package/shortcutContexts/index.mjs +2 -0
- package/shortcuts/context.js +3 -0
- package/shortcuts/context.mjs +3 -0
- package/shortcuts/recorder.js +3 -3
- package/shortcuts/recorder.mjs +3 -3
- package/shortcuts/utils.js +1 -0
- package/shortcuts/utils.mjs +1 -0
- package/styles/handsontable.css +2307 -0
- package/styles/handsontable.min.css +30 -0
- package/styles/ht-theme-horizon.css +607 -0
- package/styles/ht-theme-horizon.min.css +30 -0
- package/styles/ht-theme-main.css +613 -0
- package/styles/ht-theme-main.min.css +30 -0
- package/tableView.js +205 -33
- package/tableView.mjs +206 -34
- package/translations/changesObservable/observable.js +2 -0
- package/translations/changesObservable/observable.mjs +2 -0
- package/translations/index.js +2 -0
- package/translations/indexMapper.js +4 -0
- package/translations/indexMapper.mjs +4 -0
- package/translations/mapCollections/index.js +2 -0
- package/translations/mapCollections/mapCollection.js +2 -0
- package/translations/mapCollections/mapCollection.mjs +2 -0
- package/translations/maps/index.js +2 -0
- package/translations/maps/linkedPhysicalIndexToValueMap.js +1 -0
- package/translations/maps/linkedPhysicalIndexToValueMap.mjs +1 -0
- package/translations/maps/utils/actionsOnIndexes.js +2 -0
- package/translations/maps/utils/actionsOnIndexes.mjs +2 -0
- package/translations/maps/utils/physicallyIndexed.js +1 -0
- package/translations/maps/utils/physicallyIndexed.mjs +1 -0
- package/utils/autoResize.js +11 -3
- package/utils/autoResize.mjs +11 -3
- package/utils/dataStructures/priorityMap.js +1 -0
- package/utils/dataStructures/priorityMap.mjs +1 -0
- package/utils/dataStructures/uniqueMap.js +2 -0
- package/utils/dataStructures/uniqueMap.mjs +2 -0
- package/utils/ghostTable.js +7 -3
- package/utils/ghostTable.mjs +7 -3
- package/utils/parseTable.js +4 -0
- package/utils/parseTable.mjs +4 -0
- package/3rdparty/walkontable/src/selection/border/constants.js +0 -15
- package/3rdparty/walkontable/src/selection/border/constants.mjs +0 -12
- package/3rdparty/walkontable/src/utils/columnStretching.js +0 -197
- package/3rdparty/walkontable/src/utils/columnStretching.mjs +0 -193
@@ -0,0 +1,2307 @@
|
|
1
|
+
/*!
|
2
|
+
* Copyright (c) HANDSONCODE sp. z o. o.
|
3
|
+
*
|
4
|
+
* HANDSONTABLE is a software distributed by HANDSONCODE sp. z o. o., a Polish corporation based in
|
5
|
+
* Gdynia, Poland, at Aleja Zwyciestwa 96-98, registered by the District Court in Gdansk under number
|
6
|
+
* 538651, EU tax ID number: PL5862294002, share capital: PLN 62,800.00.
|
7
|
+
*
|
8
|
+
* This software is protected by applicable copyright laws, including international treaties, and dual-
|
9
|
+
* licensed - depending on whether your use for commercial purposes, meaning intended for or
|
10
|
+
* resulting in commercial advantage or monetary compensation, or not.
|
11
|
+
*
|
12
|
+
* If your use is strictly personal or solely for evaluation purposes, meaning for the purposes of testing
|
13
|
+
* the suitability, performance, and usefulness of this software outside the production environment,
|
14
|
+
* you agree to be bound by the terms included in the "handsontable-non-commercial-license.pdf" file.
|
15
|
+
*
|
16
|
+
* Your use of this software for commercial purposes is subject to the terms included in an applicable
|
17
|
+
* license agreement.
|
18
|
+
*
|
19
|
+
* In any case, you must not make any such use of this software as to develop software which may be
|
20
|
+
* considered competitive with this software.
|
21
|
+
*
|
22
|
+
* UNLESS EXPRESSLY AGREED OTHERWISE, HANDSONCODE PROVIDES THIS SOFTWARE ON AN "AS IS"
|
23
|
+
* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, AND IN NO EVENT AND UNDER NO
|
24
|
+
* LEGAL THEORY, SHALL HANDSONCODE BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY DIRECT,
|
25
|
+
* INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER ARISING FROM
|
26
|
+
* USE OR INABILITY TO USE THIS SOFTWARE.
|
27
|
+
*
|
28
|
+
* Version: 15.0.0-next-4472a60-20241203
|
29
|
+
* Release date: 11/12/2024 (built at 03/12/2024 15:06:07)
|
30
|
+
*/
|
31
|
+
.ht-wrapper:not([class*=ht-theme]) {
|
32
|
+
--ht-cell-horizontal-padding: 8px;
|
33
|
+
--ht-cell-vertical-padding: 4px;
|
34
|
+
--ht-font-size: 14px;
|
35
|
+
--ht-line-height: 20px;
|
36
|
+
--ht-border-color: #222222;
|
37
|
+
--ht-foreground-color: #222222;
|
38
|
+
--ht-background-color: #ffffff;
|
39
|
+
--ht-header-foreground-color: #222222;
|
40
|
+
--ht-header-background-color: #f7f7f9;
|
41
|
+
--ht-header-row-foreground-color: #222222;
|
42
|
+
--ht-header-row-background-color: #f7f7f9;
|
43
|
+
--ht-cell-horizontal-border-color: #222222;
|
44
|
+
--ht-cell-vertical-border-color: #222222;
|
45
|
+
--ht-header-active-border-color: #1a42e8;
|
46
|
+
--ht-header-active-foreground-color: #ffffff;
|
47
|
+
--ht-header-active-background-color: #1a42e8;
|
48
|
+
--ht-header-row-active-foreground-color: #fff;
|
49
|
+
--ht-header-row-active-background-color: #1a42e8;
|
50
|
+
--ht-cell-selection-border-color: #1a42e8;
|
51
|
+
}
|
52
|
+
|
53
|
+
.handsontable {
|
54
|
+
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Helvetica Neue, Arial, sans-serif;
|
55
|
+
position: relative;
|
56
|
+
font-size: var(--ht-font-size);
|
57
|
+
line-height: var(--ht-line-height);
|
58
|
+
font-weight: var(--ht-font-weight);
|
59
|
+
letter-spacing: 0;
|
60
|
+
color: var(--ht-foreground-color);
|
61
|
+
/* Miscellaneous */
|
62
|
+
touch-action: manipulation;
|
63
|
+
scrollbar-width: thin;
|
64
|
+
scrollbar-color: var(--ht-scrollbar-thumb-color) var(--ht-scrollbar-track-color);
|
65
|
+
}
|
66
|
+
.handsontable::-webkit-scrollbar-track {
|
67
|
+
border-radius: var(--ht-scrollbar-border-radius);
|
68
|
+
}
|
69
|
+
.handsontable.ht-wrapper {
|
70
|
+
border-radius: var(--ht-wrapper-border-radius, 0);
|
71
|
+
}
|
72
|
+
.handsontable.ht-wrapper::before {
|
73
|
+
content: "";
|
74
|
+
display: block;
|
75
|
+
position: absolute;
|
76
|
+
inset: 0;
|
77
|
+
border: var(--ht-wrapper-border-width) solid var(--ht-wrapper-border-color);
|
78
|
+
border-radius: var(--ht-wrapper-border-radius, 0);
|
79
|
+
z-index: 999;
|
80
|
+
pointer-events: none;
|
81
|
+
overflow: hidden;
|
82
|
+
}
|
83
|
+
.handsontable.htHasScrollX .ht_master .wtHolder, .handsontable.htHasScrollY .ht_master .wtHolder {
|
84
|
+
background-color: var(--ht-background-color);
|
85
|
+
}
|
86
|
+
.handsontable tr.ht__row_even th {
|
87
|
+
background-color: var(--ht-row-header-even-background-color);
|
88
|
+
}
|
89
|
+
.handsontable tr.ht__row_even td {
|
90
|
+
background-color: var(--ht-row-cell-even-background-color);
|
91
|
+
}
|
92
|
+
.handsontable tr.ht__row_odd th {
|
93
|
+
background-color: var(--ht-row-header-odd-background-color);
|
94
|
+
}
|
95
|
+
.handsontable tr.ht__row_odd td {
|
96
|
+
background-color: var(--ht-row-cell-odd-background-color);
|
97
|
+
}
|
98
|
+
.handsontable th,
|
99
|
+
.handsontable td {
|
100
|
+
height: calc(var(--ht-cell-vertical-padding) * 2 + var(--ht-line-height) + 1px);
|
101
|
+
padding: var(--ht-cell-vertical-padding) var(--ht-cell-horizontal-padding);
|
102
|
+
vertical-align: top;
|
103
|
+
border-top-width: 0;
|
104
|
+
border-inline-start-width: 0;
|
105
|
+
border-inline-end-width: 1px;
|
106
|
+
border-bottom-width: 1px;
|
107
|
+
border-style: solid;
|
108
|
+
font-size: var(--ht-font-size, 14px);
|
109
|
+
line-height: var(--ht-line-height, 20px);
|
110
|
+
white-space: pre-wrap;
|
111
|
+
overflow: hidden;
|
112
|
+
outline: none;
|
113
|
+
outline-width: 0;
|
114
|
+
empty-cells: show;
|
115
|
+
box-sizing: border-box;
|
116
|
+
color: var(--ht-foreground-color);
|
117
|
+
border-top-color: var(--ht-cell-vertical-border-color);
|
118
|
+
border-bottom-color: var(--ht-cell-vertical-border-color);
|
119
|
+
border-inline-start-color: var(--ht-cell-horizontal-border-color);
|
120
|
+
border-inline-end-color: var(--ht-cell-horizontal-border-color);
|
121
|
+
}
|
122
|
+
.handsontable th.invisibleSelection,
|
123
|
+
.handsontable td.invisibleSelection {
|
124
|
+
outline: none;
|
125
|
+
}
|
126
|
+
.handsontable th.invisibleSelection::selection,
|
127
|
+
.handsontable td.invisibleSelection::selection {
|
128
|
+
background: transparent;
|
129
|
+
}
|
130
|
+
.handsontable td:first-of-type {
|
131
|
+
border-inline-start-width: 1px;
|
132
|
+
}
|
133
|
+
.handsontable th {
|
134
|
+
position: relative;
|
135
|
+
overflow: visible;
|
136
|
+
text-align: center;
|
137
|
+
font-weight: var(--ht-header-font-weight);
|
138
|
+
white-space: nowrap;
|
139
|
+
color: var(--ht-header-foreground-color);
|
140
|
+
background-color: var(--ht-header-background-color);
|
141
|
+
}
|
142
|
+
.handsontable th:last-child {
|
143
|
+
/* Foundation framework fix */
|
144
|
+
border-inline-start-width: 0;
|
145
|
+
border-inline-end-width: 1px;
|
146
|
+
border-bottom-width: 1px;
|
147
|
+
}
|
148
|
+
.handsontable th:first-child, .handsontable th:nth-child(2) {
|
149
|
+
border-inline-start-width: 1px;
|
150
|
+
}
|
151
|
+
.handsontable th.current {
|
152
|
+
box-shadow: inset 0 0 0 1px var(--ht-cell-selection-border-color);
|
153
|
+
}
|
154
|
+
.handsontable th.active {
|
155
|
+
color: var(--ht-header-active-foreground-color);
|
156
|
+
background-color: var(--ht-header-active-background-color);
|
157
|
+
}
|
158
|
+
.handsontable th.ht__highlight {
|
159
|
+
color: var(--ht-header-highlighted-foreground-color);
|
160
|
+
background-color: var(--ht-header-highlighted-background-color);
|
161
|
+
}
|
162
|
+
.handsontable th.ht__highlight .relative::after {
|
163
|
+
content: "";
|
164
|
+
display: block;
|
165
|
+
position: absolute;
|
166
|
+
background-color: var(--ht-accent-color);
|
167
|
+
}
|
168
|
+
.handsontable th.ht__active_highlight {
|
169
|
+
color: var(--ht-header-active-foreground-color);
|
170
|
+
background-color: var(--ht-header-active-background-color);
|
171
|
+
border-color: var(--ht-header-active-border-color);
|
172
|
+
box-shadow: -1px 0 0 0 var(--ht-header-active-border-color);
|
173
|
+
}
|
174
|
+
.handsontable tbody tr.ht__row_odd th.ht__highlight, .handsontable tbody tr.ht__row_even th.ht__highlight {
|
175
|
+
color: var(--ht-header-row-highlighted-foreground-color);
|
176
|
+
background-color: var(--ht-header-row-highlighted-background-color);
|
177
|
+
}
|
178
|
+
.handsontable tbody tr.ht__row_odd th.ht__active_highlight, .handsontable tbody tr.ht__row_even th.ht__active_highlight {
|
179
|
+
color: var(--ht-header-row-active-foreground-color);
|
180
|
+
background-color: var(--ht-header-row-active-background-color);
|
181
|
+
}
|
182
|
+
.handsontable tbody tr th {
|
183
|
+
padding: 0;
|
184
|
+
color: var(--ht-header-row-foreground-color);
|
185
|
+
background-color: var(--ht-header-row-background-color);
|
186
|
+
}
|
187
|
+
.handsontable tbody tr th .relative {
|
188
|
+
padding: var(--ht-cell-vertical-padding) var(--ht-cell-horizontal-padding);
|
189
|
+
height: 100%;
|
190
|
+
}
|
191
|
+
.handsontable tbody tr th .relative::after {
|
192
|
+
top: -1px;
|
193
|
+
right: -1px;
|
194
|
+
bottom: -1px;
|
195
|
+
width: var(--ht-header-highlighted-shadow-size);
|
196
|
+
}
|
197
|
+
.handsontable tbody tr th.ht__active_highlight {
|
198
|
+
box-shadow: 0 -1px 0 0 var(--ht-header-active-border-color);
|
199
|
+
}
|
200
|
+
.handsontable tbody tr td:first-child {
|
201
|
+
border-inline-start-color: var(--ht-border-color);
|
202
|
+
}
|
203
|
+
.handsontable tbody tr td:last-child {
|
204
|
+
border-inline-end-color: var(--ht-border-color);
|
205
|
+
}
|
206
|
+
.handsontable thead tr th {
|
207
|
+
padding: 0;
|
208
|
+
}
|
209
|
+
.handsontable thead tr th .relative {
|
210
|
+
padding: var(--ht-cell-vertical-padding) var(--ht-cell-horizontal-padding);
|
211
|
+
}
|
212
|
+
.handsontable thead tr th .relative::after {
|
213
|
+
left: -1px;
|
214
|
+
right: -1px;
|
215
|
+
bottom: -1px;
|
216
|
+
height: var(--ht-header-highlighted-shadow-size);
|
217
|
+
}
|
218
|
+
.handsontable thead tr th .relative .colHeader {
|
219
|
+
text-overflow: ellipsis;
|
220
|
+
overflow: hidden;
|
221
|
+
vertical-align: top;
|
222
|
+
max-width: calc(100% + 1px);
|
223
|
+
}
|
224
|
+
.handsontable thead tr th .relative:has(.collapsibleIndicator, .changeType) .colHeader {
|
225
|
+
max-width: calc(100% - (var(--ht-icon-size) + var(--ht-gap-size)));
|
226
|
+
}
|
227
|
+
.handsontable thead tr:not(:last-child) th {
|
228
|
+
/* Fix for - nested columns with hidden column */
|
229
|
+
overflow: hidden;
|
230
|
+
}
|
231
|
+
.handsontable .hide {
|
232
|
+
display: none;
|
233
|
+
}
|
234
|
+
.handsontable .relative {
|
235
|
+
position: relative;
|
236
|
+
box-sizing: border-box;
|
237
|
+
}
|
238
|
+
.handsontable .wtHider {
|
239
|
+
width: 0;
|
240
|
+
}
|
241
|
+
.handsontable .wtSpreader {
|
242
|
+
position: relative;
|
243
|
+
/* must be 0, otherwise blank space appears in scroll demo after scrolling max to the right */
|
244
|
+
width: 0;
|
245
|
+
height: auto;
|
246
|
+
}
|
247
|
+
.handsontable .htAutoSize {
|
248
|
+
position: absolute;
|
249
|
+
left: -99000px;
|
250
|
+
top: -99000px;
|
251
|
+
visibility: hidden;
|
252
|
+
}
|
253
|
+
.handsontable .htFocusCatcher {
|
254
|
+
position: absolute;
|
255
|
+
width: 0;
|
256
|
+
height: 0;
|
257
|
+
margin: 0;
|
258
|
+
padding: 0;
|
259
|
+
border: 0;
|
260
|
+
opacity: 0;
|
261
|
+
z-index: -1;
|
262
|
+
}
|
263
|
+
.handsontable table,
|
264
|
+
.handsontable tbody,
|
265
|
+
.handsontable thead,
|
266
|
+
.handsontable input,
|
267
|
+
.handsontable textarea,
|
268
|
+
.handsontable div {
|
269
|
+
box-sizing: content-box;
|
270
|
+
}
|
271
|
+
.handsontable input,
|
272
|
+
.handsontable textarea {
|
273
|
+
min-height: initial;
|
274
|
+
}
|
275
|
+
.handsontable .htCore {
|
276
|
+
width: 0;
|
277
|
+
margin: 0;
|
278
|
+
border-width: 0;
|
279
|
+
border-spacing: 0;
|
280
|
+
border-collapse: separate;
|
281
|
+
outline-width: 0;
|
282
|
+
table-layout: fixed;
|
283
|
+
cursor: default;
|
284
|
+
background-color: var(--ht-background-color);
|
285
|
+
}
|
286
|
+
.handsontable col {
|
287
|
+
width: 64px;
|
288
|
+
}
|
289
|
+
.handsontable col.rowHeader {
|
290
|
+
width: 64px;
|
291
|
+
}
|
292
|
+
.handsontable col.hidden {
|
293
|
+
width: 0 !important;
|
294
|
+
}
|
295
|
+
.handsontable span.colHeader {
|
296
|
+
display: inline-block;
|
297
|
+
line-height: var(--ht-line-height, 20px);
|
298
|
+
}
|
299
|
+
.handsontable tr.hidden {
|
300
|
+
display: none;
|
301
|
+
}
|
302
|
+
.handsontable tr.hidden td,
|
303
|
+
.handsontable tr.hidden th {
|
304
|
+
display: none;
|
305
|
+
}
|
306
|
+
.handsontable a {
|
307
|
+
color: var(--ht-link-color);
|
308
|
+
}
|
309
|
+
.handsontable a:hover {
|
310
|
+
color: var(--ht-link-hover-color);
|
311
|
+
}
|
312
|
+
.handsontable .ht_clone_top th:nth-child(2) {
|
313
|
+
border-inline-start-width: 0;
|
314
|
+
border-inline-end-width: 1px;
|
315
|
+
}
|
316
|
+
.handsontable.htRowHeaders thead tr th:nth-child(2) {
|
317
|
+
border-inline-start-width: 1px;
|
318
|
+
}
|
319
|
+
.handsontable tr:first-child th,
|
320
|
+
.handsontable tr:first-child td {
|
321
|
+
border-top-width: 1px;
|
322
|
+
}
|
323
|
+
.handsontable tr:last-child th,
|
324
|
+
.handsontable tr:last-child td {
|
325
|
+
border-bottom-color: var(--ht-border-color);
|
326
|
+
}
|
327
|
+
.handsontable .ht_master:not(.innerBorderInlineStart):not(.emptyColumns) ~ .handsontable tbody tr th, .handsontable .ht_master:not(.innerBorderInlineStart):not(.emptyColumns) ~ .handsontable:not(.ht_clone_top) thead tr th:first-child {
|
328
|
+
border-inline-end-width: 0;
|
329
|
+
border-inline-start-width: 1px;
|
330
|
+
}
|
331
|
+
.handsontable .ht_master:not(.innerBorderTop):not(.innerBorderBottom) thead tr:last-child th, .handsontable .ht_master:not(.innerBorderTop):not(.innerBorderBottom) ~ .handsontable thead tr:last-child th,
|
332
|
+
.handsontable .ht_master:not(.innerBorderTop):not(.innerBorderBottom) thead tr.lastChild th, .handsontable .ht_master:not(.innerBorderTop):not(.innerBorderBottom) ~ .handsontable thead tr.lastChild th {
|
333
|
+
border-bottom-width: 0;
|
334
|
+
}
|
335
|
+
.handsontable .ht_master table.htCore > thead,
|
336
|
+
.handsontable .ht_master table.htCore > tbody > tr > th,
|
337
|
+
.handsontable .ht_clone_inline_start table.htCore > thead {
|
338
|
+
visibility: hidden;
|
339
|
+
}
|
340
|
+
|
341
|
+
.ht_master,
|
342
|
+
.ht_clone_inline_start,
|
343
|
+
.ht_clone_top,
|
344
|
+
.ht_clone_bottom {
|
345
|
+
overflow: hidden;
|
346
|
+
}
|
347
|
+
.ht_master .wtHolder,
|
348
|
+
.ht_clone_inline_start .wtHolder,
|
349
|
+
.ht_clone_top .wtHolder,
|
350
|
+
.ht_clone_bottom .wtHolder {
|
351
|
+
overflow: hidden;
|
352
|
+
}
|
353
|
+
|
354
|
+
.ht_master .wtHolder {
|
355
|
+
overflow: auto;
|
356
|
+
}
|
357
|
+
|
358
|
+
[dir=rtl].handsontable td[dir=ltr] {
|
359
|
+
border-inline-end-width: 0;
|
360
|
+
border-inline-start-width: 1px;
|
361
|
+
}
|
362
|
+
[dir=rtl].handsontable tbody tr td[dir=ltr]:last-child {
|
363
|
+
border-inline-start-color: var(--ht-border-color);
|
364
|
+
}
|
365
|
+
|
366
|
+
.handsontable.ht-wrapper .ht_master .htCore thead tr:first-child th:first-child {
|
367
|
+
border-start-start-radius: var(--ht-wrapper-border-radius);
|
368
|
+
}
|
369
|
+
.handsontable.ht-wrapper .ht_master .htCore thead tr:first-child th:last-child {
|
370
|
+
border-start-end-radius: var(--ht-wrapper-border-radius);
|
371
|
+
}
|
372
|
+
.handsontable.ht-wrapper .ht_master .htCore tbody tr:first-child td:first-child {
|
373
|
+
border-start-start-radius: var(--ht-wrapper-border-radius);
|
374
|
+
}
|
375
|
+
.handsontable.ht-wrapper .ht_master .htCore tbody tr:first-child td:last-child {
|
376
|
+
border-start-end-radius: var(--ht-wrapper-border-radius);
|
377
|
+
}
|
378
|
+
.handsontable.ht-wrapper .ht_master .htCore tbody tr:last-child td:first-child {
|
379
|
+
border-end-start-radius: var(--ht-wrapper-border-radius);
|
380
|
+
}
|
381
|
+
.handsontable.ht-wrapper .ht_master .htCore tbody tr:last-child td:last-child {
|
382
|
+
border-end-end-radius: var(--ht-wrapper-border-radius);
|
383
|
+
}
|
384
|
+
.handsontable.ht-wrapper:has(.ht_clone_top thead tr th) .ht_master .htCore tbody tr:first-child td:first-child, .handsontable.ht-wrapper:has(.ht_clone_top tbody tr td) .ht_master .htCore tbody tr:first-child td:first-child {
|
385
|
+
border-start-start-radius: 0;
|
386
|
+
}
|
387
|
+
.handsontable.ht-wrapper:has(.ht_clone_top thead tr th) .ht_master .htCore tbody tr:first-child td:last-child, .handsontable.ht-wrapper:has(.ht_clone_top tbody tr td) .ht_master .htCore tbody tr:first-child td:last-child {
|
388
|
+
border-start-end-radius: 0;
|
389
|
+
}
|
390
|
+
.handsontable.ht-wrapper .ht_clone_top_inline_start_corner .htCore thead tr:first-child th:first-child {
|
391
|
+
border-start-start-radius: var(--ht-wrapper-border-radius) !important;
|
392
|
+
}
|
393
|
+
.handsontable.ht-wrapper .ht_clone_top_inline_start_corner .htCore tbody tr:first-child td:first-child,
|
394
|
+
.handsontable.ht-wrapper .ht_clone_top_inline_start_corner .htCore tbody tr:first-child th:first-child {
|
395
|
+
border-start-start-radius: var(--ht-wrapper-border-radius) !important;
|
396
|
+
}
|
397
|
+
.handsontable.ht-wrapper .ht_clone_top_inline_start_corner .htCore:has(thead tr th) tbody tr:first-child td:first-child,
|
398
|
+
.handsontable.ht-wrapper .ht_clone_top_inline_start_corner .htCore:has(thead tr th) tbody tr:first-child th:first-child {
|
399
|
+
border-start-start-radius: 0 !important;
|
400
|
+
}
|
401
|
+
.handsontable.ht-wrapper .ht_clone_bottom_inline_start_corner .htCore thead tr:last-child th:first-child {
|
402
|
+
border-end-start-radius: var(--ht-wrapper-border-radius) !important;
|
403
|
+
}
|
404
|
+
.handsontable.ht-wrapper .ht_clone_bottom_inline_start_corner .htCore tbody tr:last-child td:first-child,
|
405
|
+
.handsontable.ht-wrapper .ht_clone_bottom_inline_start_corner .htCore tbody tr:last-child th:first-child {
|
406
|
+
border-end-start-radius: var(--ht-wrapper-border-radius) !important;
|
407
|
+
}
|
408
|
+
.handsontable.ht-wrapper .ht_clone_bottom_inline_start_corner .htCore:has(thead tr td) tbody tr:last-child td:first-child,
|
409
|
+
.handsontable.ht-wrapper .ht_clone_bottom_inline_start_corner .htCore:has(thead tr td) tbody tr:last-child th:first-child {
|
410
|
+
border-end-start-radius: 0 !important;
|
411
|
+
}
|
412
|
+
.handsontable.ht-wrapper .ht_clone_top .htCore thead tr:first-child th:first-child {
|
413
|
+
border-start-start-radius: var(--ht-wrapper-border-radius);
|
414
|
+
}
|
415
|
+
.handsontable.ht-wrapper .ht_clone_top .htCore thead tr:first-child th:last-child {
|
416
|
+
border-start-end-radius: var(--ht-wrapper-border-radius);
|
417
|
+
}
|
418
|
+
.handsontable.ht-wrapper .ht_clone_top .htCore tbody tr:first-child td:first-child {
|
419
|
+
border-start-start-radius: var(--ht-wrapper-border-radius);
|
420
|
+
}
|
421
|
+
.handsontable.ht-wrapper .ht_clone_top .htCore tbody tr:first-child td:last-child {
|
422
|
+
border-start-end-radius: var(--ht-wrapper-border-radius);
|
423
|
+
}
|
424
|
+
.handsontable.ht-wrapper .ht_clone_top .htCore:has(thead tr th) tbody tr:first-child td:first-child {
|
425
|
+
border-start-start-radius: 0;
|
426
|
+
}
|
427
|
+
.handsontable.ht-wrapper .ht_clone_top .htCore:has(thead tr th) tbody tr:first-child td:last-child {
|
428
|
+
border-start-end-radius: 0;
|
429
|
+
}
|
430
|
+
.handsontable.ht-wrapper .ht_clone_inline_start .htCore thead tr:first-child th:first-child {
|
431
|
+
border-start-start-radius: var(--ht-wrapper-border-radius);
|
432
|
+
}
|
433
|
+
.handsontable.ht-wrapper .ht_clone_inline_start .htCore tbody tr:first-child td:first-child,
|
434
|
+
.handsontable.ht-wrapper .ht_clone_inline_start .htCore tbody tr:first-child th:first-child {
|
435
|
+
border-start-start-radius: var(--ht-wrapper-border-radius);
|
436
|
+
}
|
437
|
+
.handsontable.ht-wrapper .ht_clone_inline_start .htCore tbody tr:last-child td:first-child,
|
438
|
+
.handsontable.ht-wrapper .ht_clone_inline_start .htCore tbody tr:last-child th:first-child {
|
439
|
+
border-end-start-radius: var(--ht-wrapper-border-radius);
|
440
|
+
}
|
441
|
+
.handsontable.ht-wrapper .ht_clone_inline_start .htCore:has(thead tr th) tbody tr:first-child td:first-child,
|
442
|
+
.handsontable.ht-wrapper .ht_clone_inline_start .htCore:has(thead tr th) tbody tr:first-child th:first-child {
|
443
|
+
border-start-start-radius: 0;
|
444
|
+
}
|
445
|
+
.handsontable.ht-wrapper .ht_clone_bottom .htCore thead tr:last-child th:first-child {
|
446
|
+
border-end-start-radius: var(--ht-wrapper-border-radius);
|
447
|
+
}
|
448
|
+
.handsontable.ht-wrapper .ht_clone_bottom .htCore thead tr:last-child th:last-child {
|
449
|
+
border-end-end-radius: var(--ht-wrapper-border-radius);
|
450
|
+
}
|
451
|
+
.handsontable.ht-wrapper .ht_clone_bottom .htCore tbody tr:last-child td:first-child {
|
452
|
+
border-end-start-radius: var(--ht-wrapper-border-radius);
|
453
|
+
}
|
454
|
+
.handsontable.ht-wrapper .ht_clone_bottom .htCore tbody tr:last-child td:last-child {
|
455
|
+
border-end-end-radius: var(--ht-wrapper-border-radius);
|
456
|
+
}
|
457
|
+
.handsontable.ht-wrapper .ht_clone_bottom .htCore:has(thead tr th) tbody tr:last-child td:first-child {
|
458
|
+
border-end-start-radius: 0;
|
459
|
+
}
|
460
|
+
.handsontable.ht-wrapper .ht_clone_bottom .htCore:has(thead tr th) tbody tr:last-child td:last-child {
|
461
|
+
border-end-end-radius: 0;
|
462
|
+
}
|
463
|
+
.handsontable.ht-wrapper.htHasScrollX .htCore thead tr:last-child th:first-child,
|
464
|
+
.handsontable.ht-wrapper.htHasScrollX .htCore tbody tr:last-child td:first-child,
|
465
|
+
.handsontable.ht-wrapper.htHasScrollX .htCore tbody tr:last-child th:first-child {
|
466
|
+
border-end-start-radius: 0;
|
467
|
+
}
|
468
|
+
.handsontable.ht-wrapper.htHasScrollX .htCore thead tr:last-child th:last-child,
|
469
|
+
.handsontable.ht-wrapper.htHasScrollX .htCore tbody tr:last-child td:last-child,
|
470
|
+
.handsontable.ht-wrapper.htHasScrollX .htCore tbody tr:last-child th:last-child {
|
471
|
+
border-end-end-radius: 0;
|
472
|
+
}
|
473
|
+
.handsontable.ht-wrapper.htHasScrollY .htCore thead tr:first-child th:last-child,
|
474
|
+
.handsontable.ht-wrapper.htHasScrollY .htCore tbody tr:first-child td:last-child,
|
475
|
+
.handsontable.ht-wrapper.htHasScrollY .htCore tbody tr:first-child th:last-child {
|
476
|
+
border-start-end-radius: 0;
|
477
|
+
}
|
478
|
+
.handsontable.ht-wrapper.htHasScrollY .htCore thead tr:last-child th:last-child,
|
479
|
+
.handsontable.ht-wrapper.htHasScrollY .htCore tbody tr:last-child td:last-child,
|
480
|
+
.handsontable.ht-wrapper.htHasScrollY .htCore tbody tr:last-child th:last-child {
|
481
|
+
border-end-end-radius: 0;
|
482
|
+
}
|
483
|
+
|
484
|
+
.handsontable.mobile {
|
485
|
+
user-select: none;
|
486
|
+
-webkit-tap-highlight-color: transparent;
|
487
|
+
-webkit-overflow-scrolling: touch;
|
488
|
+
}
|
489
|
+
.handsontable.mobile .wtHolder {
|
490
|
+
user-select: none;
|
491
|
+
-webkit-tap-highlight-color: transparent;
|
492
|
+
-webkit-overflow-scrolling: touch;
|
493
|
+
}
|
494
|
+
.handsontable.mobile .handsontableInput:focus {
|
495
|
+
box-shadow: inset 0 0 0 2px var(--ht-accent-color);
|
496
|
+
-webkit-appearance: none;
|
497
|
+
}
|
498
|
+
.handsontable .topSelectionHandle,
|
499
|
+
.handsontable .topSelectionHandle-HitArea,
|
500
|
+
.handsontable .bottomSelectionHandle,
|
501
|
+
.handsontable .bottomSelectionHandle-HitArea {
|
502
|
+
inset-inline-start: -10000px;
|
503
|
+
inset-inline-end: unset;
|
504
|
+
top: -10000px;
|
505
|
+
z-index: 9999;
|
506
|
+
}
|
507
|
+
.handsontable.hide-tween {
|
508
|
+
-webkit-animation: opacity-hide 0.2s;
|
509
|
+
animation: opacity-hide 0.2s;
|
510
|
+
animation-fill-mode: forwards;
|
511
|
+
-webkit-animation-fill-mode: forwards;
|
512
|
+
}
|
513
|
+
.handsontable.show-tween {
|
514
|
+
-webkit-animation: opacity-show 0.3s;
|
515
|
+
animation: opacity-show 0.3s;
|
516
|
+
animation-fill-mode: forwards;
|
517
|
+
-webkit-animation-fill-mode: forwards;
|
518
|
+
}
|
519
|
+
|
520
|
+
.ht_clone_master {
|
521
|
+
z-index: 100;
|
522
|
+
}
|
523
|
+
|
524
|
+
.ht_clone_inline_start {
|
525
|
+
z-index: 120;
|
526
|
+
}
|
527
|
+
|
528
|
+
.ht_clone_bottom {
|
529
|
+
z-index: 130;
|
530
|
+
}
|
531
|
+
|
532
|
+
.ht_clone_bottom_inline_start_corner {
|
533
|
+
z-index: 150;
|
534
|
+
}
|
535
|
+
|
536
|
+
.ht_clone_top {
|
537
|
+
z-index: 160;
|
538
|
+
}
|
539
|
+
|
540
|
+
.ht_clone_top_inline_start_corner {
|
541
|
+
z-index: 180;
|
542
|
+
}
|
543
|
+
|
544
|
+
.ht_editor_hidden {
|
545
|
+
z-index: -1;
|
546
|
+
}
|
547
|
+
|
548
|
+
.ht_editor_visible {
|
549
|
+
z-index: 140;
|
550
|
+
}
|
551
|
+
|
552
|
+
.handsontable td.area {
|
553
|
+
position: relative;
|
554
|
+
}
|
555
|
+
.handsontable td.area::before {
|
556
|
+
content: "";
|
557
|
+
position: absolute;
|
558
|
+
inset: 0;
|
559
|
+
background: var(--ht-cell-selection-background-color, #1a42e8);
|
560
|
+
}
|
561
|
+
.handsontable td.area-1 {
|
562
|
+
position: relative;
|
563
|
+
}
|
564
|
+
.handsontable td.area-1::before {
|
565
|
+
content: "";
|
566
|
+
position: absolute;
|
567
|
+
inset: 0;
|
568
|
+
background: var(--ht-cell-selection-background-color, #1a42e8);
|
569
|
+
}
|
570
|
+
.handsontable td.area-2 {
|
571
|
+
position: relative;
|
572
|
+
}
|
573
|
+
.handsontable td.area-2::before {
|
574
|
+
content: "";
|
575
|
+
position: absolute;
|
576
|
+
inset: 0;
|
577
|
+
background: var(--ht-cell-selection-background-color, #1a42e8);
|
578
|
+
}
|
579
|
+
.handsontable td.area-3 {
|
580
|
+
position: relative;
|
581
|
+
}
|
582
|
+
.handsontable td.area-3::before {
|
583
|
+
content: "";
|
584
|
+
position: absolute;
|
585
|
+
inset: 0;
|
586
|
+
background: var(--ht-cell-selection-background-color, #1a42e8);
|
587
|
+
}
|
588
|
+
.handsontable td.area-4 {
|
589
|
+
position: relative;
|
590
|
+
}
|
591
|
+
.handsontable td.area-4::before {
|
592
|
+
content: "";
|
593
|
+
position: absolute;
|
594
|
+
inset: 0;
|
595
|
+
background: var(--ht-cell-selection-background-color, #1a42e8);
|
596
|
+
}
|
597
|
+
.handsontable td.area-5 {
|
598
|
+
position: relative;
|
599
|
+
}
|
600
|
+
.handsontable td.area-5::before {
|
601
|
+
content: "";
|
602
|
+
position: absolute;
|
603
|
+
inset: 0;
|
604
|
+
background: var(--ht-cell-selection-background-color, #1a42e8);
|
605
|
+
}
|
606
|
+
.handsontable td.area-6 {
|
607
|
+
position: relative;
|
608
|
+
}
|
609
|
+
.handsontable td.area-6::before {
|
610
|
+
content: "";
|
611
|
+
position: absolute;
|
612
|
+
inset: 0;
|
613
|
+
background: var(--ht-cell-selection-background-color, #1a42e8);
|
614
|
+
}
|
615
|
+
.handsontable td.area-7 {
|
616
|
+
position: relative;
|
617
|
+
}
|
618
|
+
.handsontable td.area-7::before {
|
619
|
+
content: "";
|
620
|
+
position: absolute;
|
621
|
+
inset: 0;
|
622
|
+
background: var(--ht-cell-selection-background-color, #1a42e8);
|
623
|
+
}
|
624
|
+
.handsontable td.area:before {
|
625
|
+
opacity: 0.14;
|
626
|
+
}
|
627
|
+
.handsontable td.area-1:before {
|
628
|
+
opacity: 0.21;
|
629
|
+
}
|
630
|
+
.handsontable td.area-2:before {
|
631
|
+
opacity: 0.28;
|
632
|
+
}
|
633
|
+
.handsontable td.area-3:before {
|
634
|
+
opacity: 0.35;
|
635
|
+
}
|
636
|
+
.handsontable td.area-4:before {
|
637
|
+
opacity: 0.42;
|
638
|
+
}
|
639
|
+
.handsontable td.area-5:before {
|
640
|
+
opacity: 0.49;
|
641
|
+
}
|
642
|
+
.handsontable td.area-6:before {
|
643
|
+
opacity: 0.56;
|
644
|
+
}
|
645
|
+
.handsontable td.area-7:before {
|
646
|
+
opacity: 0.63;
|
647
|
+
}
|
648
|
+
.handsontable td.area {
|
649
|
+
border-color: color-mix(in srgb, var(--ht-border-color), var(--ht-foreground-color) 10%);
|
650
|
+
}
|
651
|
+
.handsontable .wtBorder {
|
652
|
+
position: absolute;
|
653
|
+
font-size: 0;
|
654
|
+
}
|
655
|
+
.handsontable .wtBorder.hidden {
|
656
|
+
display: none !important;
|
657
|
+
}
|
658
|
+
.handsontable .wtBorder.current {
|
659
|
+
z-index: 10;
|
660
|
+
background-color: var(--ht-cell-selection-border-color) !important;
|
661
|
+
}
|
662
|
+
.handsontable .wtBorder.area {
|
663
|
+
z-index: 8;
|
664
|
+
background-color: var(--ht-cell-selection-border-color) !important;
|
665
|
+
}
|
666
|
+
.handsontable .wtBorder.fill {
|
667
|
+
z-index: 6;
|
668
|
+
background-color: var(--ht-cell-autofill-fill-border-color, #68696c) !important;
|
669
|
+
}
|
670
|
+
.handsontable .wtBorder.corner {
|
671
|
+
border-radius: var(--ht-cell-autofill-border-radius) !important;
|
672
|
+
background-color: var(--ht-cell-autofill-background-color, #1a42e8) !important;
|
673
|
+
border-color: var(--ht-cell-autofill-border-color) !important;
|
674
|
+
font-size: 0;
|
675
|
+
cursor: crosshair;
|
676
|
+
z-index: 10;
|
677
|
+
}
|
678
|
+
|
679
|
+
[dir=rtl].handsontable .wtBorder.corner {
|
680
|
+
margin-left: 0;
|
681
|
+
margin-right: -4px;
|
682
|
+
}
|
683
|
+
|
684
|
+
.hot-display-license-info {
|
685
|
+
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Helvetica Neue, Arial, sans-serif;
|
686
|
+
padding: var(--ht-license-vertical-padding, 16px) var(--ht-license-horizontal-padding, 16px);
|
687
|
+
font-size: calc(var(--ht-font-size) - 2px);
|
688
|
+
line-height: calc(var(--ht-line-height) - 2px);
|
689
|
+
color: var(--ht-license-foreground-color);
|
690
|
+
background-color: var(--ht-license-background-color, #f7f7f9);
|
691
|
+
text-align: left;
|
692
|
+
border: 1px solid var(--ht-border-color, #f7f7f9);
|
693
|
+
margin-top: 10px;
|
694
|
+
border-radius: var(--ht-wrapper-border-radius);
|
695
|
+
}
|
696
|
+
.hot-display-license-info a {
|
697
|
+
font-size: var(--ht-license-font-size);
|
698
|
+
color: var(--ht-link-color);
|
699
|
+
}
|
700
|
+
.hot-display-license-info a:hover {
|
701
|
+
color: var(--ht-link-hover-color);
|
702
|
+
}
|
703
|
+
|
704
|
+
.handsontable .htAutocompleteArrow {
|
705
|
+
position: relative;
|
706
|
+
cursor: default;
|
707
|
+
width: var(--ht-icon-size);
|
708
|
+
height: var(--ht-icon-size);
|
709
|
+
font-size: 0;
|
710
|
+
float: right;
|
711
|
+
top: calc((var(--ht-line-height) - var(--ht-icon-size)) / 2);
|
712
|
+
margin-inline-start: calc(var(--ht-gap-size) * 2);
|
713
|
+
}
|
714
|
+
.handsontable .htAutocompleteArrow::after {
|
715
|
+
content: "";
|
716
|
+
display: block;
|
717
|
+
position: absolute;
|
718
|
+
top: 0;
|
719
|
+
left: 0;
|
720
|
+
opacity: 0.6;
|
721
|
+
}
|
722
|
+
|
723
|
+
[dir=rtl].handsontable .htAutocompleteArrow {
|
724
|
+
float: left;
|
725
|
+
}
|
726
|
+
|
727
|
+
.handsontable .htCheckboxRendererInput {
|
728
|
+
position: relative;
|
729
|
+
display: inline-block;
|
730
|
+
width: var(--ht-checkbox-size);
|
731
|
+
height: var(--ht-checkbox-size);
|
732
|
+
margin: 0;
|
733
|
+
vertical-align: middle;
|
734
|
+
cursor: pointer;
|
735
|
+
appearance: none;
|
736
|
+
}
|
737
|
+
.handsontable .htCheckboxRendererInput::before {
|
738
|
+
content: "";
|
739
|
+
display: inline-block;
|
740
|
+
width: var(--ht-checkbox-size);
|
741
|
+
height: var(--ht-checkbox-size);
|
742
|
+
border-radius: var(--ht-checkbox-border-radius);
|
743
|
+
border: 1px solid var(--ht-checkbox-border-color);
|
744
|
+
background-color: var(--ht-checkbox-background-color);
|
745
|
+
box-sizing: border-box;
|
746
|
+
pointer-events: none;
|
747
|
+
transition: all var(--ht-table-transition) ease-in-out;
|
748
|
+
}
|
749
|
+
.handsontable .htCheckboxRendererInput::after {
|
750
|
+
content: "";
|
751
|
+
display: block;
|
752
|
+
position: absolute;
|
753
|
+
top: 0;
|
754
|
+
left: 0;
|
755
|
+
color: var(--ht-checkbox-icon-color);
|
756
|
+
pointer-events: none;
|
757
|
+
}
|
758
|
+
.handsontable .htCheckboxRendererInput:checked::before {
|
759
|
+
border-color: var(--ht-checkbox-checked-border-color);
|
760
|
+
background-color: var(--ht-checkbox-checked-background-color);
|
761
|
+
}
|
762
|
+
.handsontable .htCheckboxRendererInput:checked::after {
|
763
|
+
color: var(--ht-checkbox-checked-icon-color);
|
764
|
+
}
|
765
|
+
.handsontable .htCheckboxRendererInput:checked:disabled::before {
|
766
|
+
border-color: var(--ht-checkbox-checked-disabled-border-color);
|
767
|
+
background-color: var(--ht-checkbox-checked-disabled-background-color);
|
768
|
+
}
|
769
|
+
.handsontable .htCheckboxRendererInput:checked:disabled::after {
|
770
|
+
color: var(--ht-checkbox-checked-disabled-icon-color);
|
771
|
+
}
|
772
|
+
.handsontable .htCheckboxRendererInput:checked:focus::before {
|
773
|
+
border-color: var(--ht-checkbox-checked-focus-border-color);
|
774
|
+
background-color: var(--ht-checkbox-checked-focus-background-color);
|
775
|
+
outline: 1px solid var(--ht-checkbox-checked-focus-ring-color);
|
776
|
+
}
|
777
|
+
.handsontable .htCheckboxRendererInput:checked:focus::after {
|
778
|
+
color: var(--ht-checkbox-checked-focus-icon-color);
|
779
|
+
}
|
780
|
+
.handsontable .htCheckboxRendererInput:focus::before {
|
781
|
+
border-color: var(--ht-checkbox-focus-border-color);
|
782
|
+
background-color: var(--ht-checkbox-focus-background-color);
|
783
|
+
outline: 1px solid var(--ht-checkbox-focus-ring-color);
|
784
|
+
}
|
785
|
+
.handsontable .htCheckboxRendererInput:focus::after {
|
786
|
+
color: var(--ht-checkbox-focus-icon-color);
|
787
|
+
}
|
788
|
+
.handsontable .htCheckboxRendererInput:disabled {
|
789
|
+
cursor: initial;
|
790
|
+
}
|
791
|
+
.handsontable .htCheckboxRendererInput:disabled::before {
|
792
|
+
border-color: var(--ht-checkbox-disabled-border-color);
|
793
|
+
background-color: var(--ht-checkbox-disabled-background-color);
|
794
|
+
}
|
795
|
+
.handsontable .htCheckboxRendererInput:disabled::after {
|
796
|
+
color: var(--ht-checkbox-disabled-icon-color);
|
797
|
+
}
|
798
|
+
.handsontable .htCheckboxRendererInput:indeterminate::before {
|
799
|
+
background-color: red;
|
800
|
+
}
|
801
|
+
.handsontable .htCheckboxRendererInput.noValue {
|
802
|
+
opacity: 0.5;
|
803
|
+
}
|
804
|
+
.handsontable .htCheckboxRendererLabel {
|
805
|
+
display: inline-block;
|
806
|
+
position: relative;
|
807
|
+
font-size: inherit;
|
808
|
+
line-height: inherit;
|
809
|
+
cursor: pointer;
|
810
|
+
color: inherit;
|
811
|
+
margin: 0;
|
812
|
+
}
|
813
|
+
.handsontable .htCheckboxRendererLabel .htCheckboxRendererInput {
|
814
|
+
margin-top: -2px;
|
815
|
+
margin-inline-end: var(--ht-gap-size);
|
816
|
+
}
|
817
|
+
.handsontable .htCheckboxRendererLabel.fullWidth {
|
818
|
+
width: 100%;
|
819
|
+
}
|
820
|
+
|
821
|
+
.handsontable .htPlaceholder {
|
822
|
+
color: var(--ht-placeholder-color);
|
823
|
+
}
|
824
|
+
.handsontable .htDimmed {
|
825
|
+
color: var(--ht-read-only-color);
|
826
|
+
}
|
827
|
+
.handsontable .htLeft {
|
828
|
+
text-align: left;
|
829
|
+
}
|
830
|
+
.handsontable .htCenter {
|
831
|
+
text-align: center;
|
832
|
+
}
|
833
|
+
.handsontable .htRight {
|
834
|
+
text-align: right;
|
835
|
+
}
|
836
|
+
.handsontable .htJustify {
|
837
|
+
text-align: justify;
|
838
|
+
}
|
839
|
+
.handsontable .htTop {
|
840
|
+
vertical-align: top;
|
841
|
+
}
|
842
|
+
.handsontable .htMiddle {
|
843
|
+
vertical-align: middle;
|
844
|
+
}
|
845
|
+
.handsontable .htBottom {
|
846
|
+
vertical-align: bottom;
|
847
|
+
}
|
848
|
+
.handsontable .htInvalid {
|
849
|
+
/* gives priority over td.area selection background */
|
850
|
+
background-color: var(--ht-cell-error-background-color) !important;
|
851
|
+
}
|
852
|
+
.handsontable .htNoWrap {
|
853
|
+
white-space: nowrap;
|
854
|
+
}
|
855
|
+
.handsontable .htSearchResult {
|
856
|
+
background: var(--ht-cell-success-background-color) !important;
|
857
|
+
}
|
858
|
+
|
859
|
+
.handsontableInputHolder {
|
860
|
+
position: absolute;
|
861
|
+
top: 0;
|
862
|
+
left: 0;
|
863
|
+
}
|
864
|
+
.handsontableInputHolder .handsontableInput {
|
865
|
+
display: block;
|
866
|
+
margin: 0;
|
867
|
+
padding: calc(var(--ht-cell-vertical-padding, 4px) + 1px) calc(var(--ht-cell-horizontal-padding, 8px) + 1px);
|
868
|
+
font-family: inherit !important;
|
869
|
+
font-size: inherit !important;
|
870
|
+
line-height: inherit !important;
|
871
|
+
color: var(--ht-cell-editor-foreground-color);
|
872
|
+
background-color: var(--ht-cell-editor-background-color, #ffffff);
|
873
|
+
box-shadow: inset 0 0 0 var(--ht-cell-editor-border-width, 2px) var(--ht-cell-editor-border-color, #1a42e8), 0 0 var(--ht-cell-editor-shadow-blur-radius, 0) 0 var(--ht-cell-editor-shadow-color, transparent);
|
874
|
+
border: none;
|
875
|
+
-webkit-appearance: none !important;
|
876
|
+
box-sizing: border-box;
|
877
|
+
/* Miscellaneous */
|
878
|
+
outline-width: 0;
|
879
|
+
/* overwrite styles potentially made by a framework */
|
880
|
+
}
|
881
|
+
.handsontableInputHolder .handsontableInput:focus {
|
882
|
+
outline: none;
|
883
|
+
}
|
884
|
+
|
885
|
+
.htSelectEditor {
|
886
|
+
position: absolute;
|
887
|
+
}
|
888
|
+
.htSelectEditor select {
|
889
|
+
position: absolute;
|
890
|
+
inset: 0;
|
891
|
+
width: 100%;
|
892
|
+
height: 100%;
|
893
|
+
padding: calc(var(--ht-cell-vertical-padding, 4px) + 1px) calc(var(--ht-cell-horizontal-padding, 8px) + 1px);
|
894
|
+
padding-right: 26px;
|
895
|
+
margin: 0;
|
896
|
+
white-space: nowrap;
|
897
|
+
overflow: hidden;
|
898
|
+
text-overflow: ellipsis;
|
899
|
+
color: var(--ht-cell-editor-foreground-color);
|
900
|
+
background-color: var(--ht-cell-editor-background-color, #ffffff);
|
901
|
+
font-family: inherit !important;
|
902
|
+
font-size: inherit !important;
|
903
|
+
line-height: inherit !important;
|
904
|
+
box-shadow: inset 0 0 0 var(--ht-cell-editor-border-width, 2px) var(--ht-cell-editor-border-color, #1a42e8), 0 0 var(--ht-cell-editor-shadow-blur-radius, 0) 0 var(--ht-cell-editor-shadow-color, transparent);
|
905
|
+
border: none;
|
906
|
+
box-sizing: border-box;
|
907
|
+
-webkit-appearance: none !important;
|
908
|
+
}
|
909
|
+
.htSelectEditor select:focus {
|
910
|
+
outline: none;
|
911
|
+
}
|
912
|
+
.htSelectEditor .htAutocompleteArrow {
|
913
|
+
top: 50%;
|
914
|
+
transform: translateY(-50%);
|
915
|
+
margin-inline-end: 4px;
|
916
|
+
z-index: 1;
|
917
|
+
pointer-events: none;
|
918
|
+
}
|
919
|
+
|
920
|
+
.handsontable.listbox {
|
921
|
+
box-shadow: var(--ht-menu-shadow-x, 0) var(--ht-menu-shadow-y, 0) var(--ht-menu-shadow-blur, 8px) var(--ht-menu-shadow-color, rgba(0, 0, 0, 0.08));
|
922
|
+
margin: 0;
|
923
|
+
border: var(--ht-menu-border-width, 1px) solid var(--ht-menu-border-color, #e5e5e9);
|
924
|
+
}
|
925
|
+
.handsontable.listbox .ht_master {
|
926
|
+
overflow: hidden;
|
927
|
+
}
|
928
|
+
.handsontable.listbox .wtHolder {
|
929
|
+
overflow: auto;
|
930
|
+
}
|
931
|
+
.handsontable.listbox .wtHider {
|
932
|
+
border-radius: 0 !important;
|
933
|
+
}
|
934
|
+
.handsontable.listbox table {
|
935
|
+
overflow: hidden;
|
936
|
+
}
|
937
|
+
.handsontable.listbox table th,
|
938
|
+
.handsontable.listbox table tr:first-child th,
|
939
|
+
.handsontable.listbox table tr:last-child th,
|
940
|
+
.handsontable.listbox table tr:first-child td,
|
941
|
+
.handsontable.listbox table td {
|
942
|
+
border-color: transparent !important;
|
943
|
+
}
|
944
|
+
.handsontable.listbox table th,
|
945
|
+
.handsontable.listbox table td {
|
946
|
+
white-space: nowrap;
|
947
|
+
text-overflow: ellipsis;
|
948
|
+
border-radius: 0 !important;
|
949
|
+
}
|
950
|
+
.handsontable.listbox table td.htDimmed {
|
951
|
+
cursor: default;
|
952
|
+
font-style: inherit;
|
953
|
+
color: inherit;
|
954
|
+
}
|
955
|
+
.handsontable.listbox table .wtBorder {
|
956
|
+
visibility: hidden;
|
957
|
+
}
|
958
|
+
.handsontable.listbox table strong {
|
959
|
+
font-weight: var(--ht-font-weight);
|
960
|
+
color: inherit;
|
961
|
+
}
|
962
|
+
.handsontable.listbox table tr:hover td {
|
963
|
+
background: var(--ht-menu-item-hover-color, #e5e5e9);
|
964
|
+
cursor: pointer;
|
965
|
+
}
|
966
|
+
.handsontable.listbox table tr td:hover, .handsontable.listbox table tr td.current {
|
967
|
+
background: var(--ht-menu-item-hover-color, #e5e5e9);
|
968
|
+
cursor: pointer;
|
969
|
+
}
|
970
|
+
.handsontable.listbox table thead th {
|
971
|
+
height: auto !important;
|
972
|
+
text-align: left;
|
973
|
+
border-width: 0 1px 1px;
|
974
|
+
}
|
975
|
+
.handsontable.listbox table thead th > div {
|
976
|
+
padding-top: 8px;
|
977
|
+
padding-bottom: 8px;
|
978
|
+
}
|
979
|
+
.handsontable.listbox table thead th:first-child {
|
980
|
+
padding-left: 8px;
|
981
|
+
}
|
982
|
+
.handsontable.listbox .ht_clone_top .wtHider {
|
983
|
+
overflow: hidden;
|
984
|
+
}
|
985
|
+
.handsontable.listbox .ht_clone_top table {
|
986
|
+
border-radius: 0;
|
987
|
+
}
|
988
|
+
.handsontable.listbox .htBorders div {
|
989
|
+
background: none !important;
|
990
|
+
}
|
991
|
+
.handsontable.autocompleteEditor tr.ht__row_even th,
|
992
|
+
.handsontable.autocompleteEditor tr.ht__row_even td {
|
993
|
+
background-color: var(--ht-background-color, #ffffff);
|
994
|
+
}
|
995
|
+
.handsontable.autocompleteEditor tr.ht__row_odd th,
|
996
|
+
.handsontable.autocompleteEditor tr.ht__row_odd td {
|
997
|
+
background-color: var(--ht-background-color, #ffffff);
|
998
|
+
}
|
999
|
+
|
1000
|
+
.pika-single {
|
1001
|
+
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Helvetica Neue, Arial, sans-serif;
|
1002
|
+
box-shadow: var(--ht-menu-shadow-x, 0) var(--ht-menu-shadow-y, 0) var(--ht-menu-shadow-blur, 8px) var(--ht-menu-shadow-color, rgba(0, 0, 0, 0.08));
|
1003
|
+
position: relative;
|
1004
|
+
display: block;
|
1005
|
+
padding: 10px;
|
1006
|
+
font-size: var(--ht-font-size);
|
1007
|
+
line-height: var(--ht-line-height);
|
1008
|
+
font-weight: var(--ht-font-weight);
|
1009
|
+
color: var(--ht-foreground-color);
|
1010
|
+
background: var(--ht-background-color, #ffffff);
|
1011
|
+
border: var(--ht-menu-border-width, 1px) solid var(--ht-menu-border-color, #e5e5e9);
|
1012
|
+
border-radius: var(--ht-menu-border-radius);
|
1013
|
+
z-index: 9999;
|
1014
|
+
}
|
1015
|
+
.pika-single.is-hidden {
|
1016
|
+
display: none;
|
1017
|
+
}
|
1018
|
+
.pika-single .pika-row {
|
1019
|
+
background-color: transparent;
|
1020
|
+
}
|
1021
|
+
.pika-single .pika-title {
|
1022
|
+
display: flex;
|
1023
|
+
align-items: center;
|
1024
|
+
justify-content: center;
|
1025
|
+
}
|
1026
|
+
.pika-single .pika-label {
|
1027
|
+
position: relative;
|
1028
|
+
order: 2;
|
1029
|
+
padding: 5px;
|
1030
|
+
color: var(--ht-accent-color);
|
1031
|
+
}
|
1032
|
+
.pika-single .pika-label .pika-select {
|
1033
|
+
position: absolute;
|
1034
|
+
inset: 0;
|
1035
|
+
opacity: 0;
|
1036
|
+
cursor: pointer;
|
1037
|
+
}
|
1038
|
+
.pika-single .pika-prev,
|
1039
|
+
.pika-single .pika-next {
|
1040
|
+
width: 20px;
|
1041
|
+
height: 20px;
|
1042
|
+
white-space: nowrap;
|
1043
|
+
text-indent: -9999px;
|
1044
|
+
cursor: pointer;
|
1045
|
+
color: var(--ht-accent-color);
|
1046
|
+
background: none;
|
1047
|
+
border: none;
|
1048
|
+
}
|
1049
|
+
.pika-single .pika-prev {
|
1050
|
+
order: 1;
|
1051
|
+
margin-right: auto;
|
1052
|
+
}
|
1053
|
+
.pika-single .pika-next {
|
1054
|
+
order: 3;
|
1055
|
+
margin-left: auto;
|
1056
|
+
}
|
1057
|
+
.pika-single .pika-table thead {
|
1058
|
+
height: 50px;
|
1059
|
+
}
|
1060
|
+
.pika-single .pika-table th {
|
1061
|
+
padding: 1px;
|
1062
|
+
vertical-align: middle;
|
1063
|
+
}
|
1064
|
+
.pika-single .pika-table th abbr {
|
1065
|
+
text-decoration: none;
|
1066
|
+
font-weight: normal;
|
1067
|
+
border: none;
|
1068
|
+
cursor: initial;
|
1069
|
+
}
|
1070
|
+
.pika-single .pika-table td {
|
1071
|
+
padding: 1px;
|
1072
|
+
vertical-align: middle;
|
1073
|
+
}
|
1074
|
+
.pika-single .pika-table td.is-disabled .pika-button {
|
1075
|
+
pointer-events: none;
|
1076
|
+
opacity: 0.5;
|
1077
|
+
}
|
1078
|
+
.pika-single .pika-table td.is-today .pika-button {
|
1079
|
+
background: var(--ht-menu-item-hover-color);
|
1080
|
+
}
|
1081
|
+
.pika-single .pika-table td.is-selected .pika-button {
|
1082
|
+
background: var(--ht-accent-color, #1a42e8);
|
1083
|
+
color: var(--ht-background-color, #ffffff);
|
1084
|
+
}
|
1085
|
+
.pika-single .pika-table td.pika-week {
|
1086
|
+
width: 12.5%;
|
1087
|
+
text-align: center;
|
1088
|
+
}
|
1089
|
+
.pika-single .pika-table .pika-button {
|
1090
|
+
width: 100%;
|
1091
|
+
aspect-ratio: 1/1;
|
1092
|
+
background: transparent;
|
1093
|
+
color: var(--ht-foreground-color);
|
1094
|
+
border: none;
|
1095
|
+
border-radius: var(--ht-button-border-radius);
|
1096
|
+
margin: 0;
|
1097
|
+
padding: 10px;
|
1098
|
+
cursor: pointer;
|
1099
|
+
font-size: inherit;
|
1100
|
+
}
|
1101
|
+
.pika-single .pika-table .pika-button:hover {
|
1102
|
+
background: var(--ht-menu-item-hover-color);
|
1103
|
+
}
|
1104
|
+
|
1105
|
+
.handsontable .htUISelectCaption {
|
1106
|
+
width: 100%;
|
1107
|
+
padding: var(--ht-input-vertical-padding) var(--ht-input-horizontal-padding);
|
1108
|
+
padding-right: calc(var(--ht-input-horizontal-padding) + var(--ht-icon-size));
|
1109
|
+
margin: 0;
|
1110
|
+
font-family: inherit;
|
1111
|
+
font-size: var(--ht-font-size);
|
1112
|
+
line-height: var(--ht-line-height);
|
1113
|
+
font-weight: var(--ht-font-weight);
|
1114
|
+
border-radius: var(--ht-input-border-radius);
|
1115
|
+
box-sizing: border-box;
|
1116
|
+
cursor: pointer;
|
1117
|
+
outline: none !important;
|
1118
|
+
border: var(--ht-input-border-width) solid var(--ht-input-border-color);
|
1119
|
+
color: var(--ht-input-foreground-color);
|
1120
|
+
background-color: var(--ht-input-background-color);
|
1121
|
+
text-overflow: ellipsis;
|
1122
|
+
white-space: nowrap;
|
1123
|
+
overflow: hidden;
|
1124
|
+
}
|
1125
|
+
.handsontable .htUISelectCaption::after {
|
1126
|
+
content: "";
|
1127
|
+
display: block;
|
1128
|
+
position: absolute;
|
1129
|
+
right: calc(var(--ht-input-horizontal-padding) - var(--ht-icon-size) / 4);
|
1130
|
+
top: 50%;
|
1131
|
+
transform: translateY(-50%);
|
1132
|
+
}
|
1133
|
+
.handsontable .htUISelectCaption:hover {
|
1134
|
+
border-color: var(--ht-input-hover-border-color);
|
1135
|
+
color: var(--ht-input-hover-foreground-color);
|
1136
|
+
background-color: var(--ht-input-hover-background-color);
|
1137
|
+
}
|
1138
|
+
.handsontable .htUISelectCaption:disabled {
|
1139
|
+
border-color: var(--ht-input-disabled-border-color);
|
1140
|
+
color: var(--ht-input-disabled-foreground-color);
|
1141
|
+
background-color: var(--ht-input-disabled-background-color);
|
1142
|
+
}
|
1143
|
+
.handsontable .htUISelectCaption:focus {
|
1144
|
+
border-color: var(--ht-input-focus-border-color);
|
1145
|
+
color: var(--ht-input-focus-foreground-color);
|
1146
|
+
background-color: var(--ht-input-focus-background-color);
|
1147
|
+
}
|
1148
|
+
.handsontable .htUISelect {
|
1149
|
+
cursor: pointer;
|
1150
|
+
position: relative;
|
1151
|
+
outline: none !important;
|
1152
|
+
}
|
1153
|
+
.handsontable .htUISelect:focus .htUISelectCaption {
|
1154
|
+
border-color: var(--ht-input-focus-border-color);
|
1155
|
+
color: var(--ht-input-focus-foreground-color);
|
1156
|
+
background-color: var(--ht-input-focus-background-color);
|
1157
|
+
}
|
1158
|
+
|
1159
|
+
.handsontable .htFiltersMenuCondition .htUIInput input,
|
1160
|
+
.handsontable .htFiltersMenuValue .htUIMultipleSelectSearch input {
|
1161
|
+
width: 100%;
|
1162
|
+
padding: var(--ht-input-vertical-padding) var(--ht-input-horizontal-padding);
|
1163
|
+
font-family: inherit;
|
1164
|
+
font-size: var(--ht-font-size);
|
1165
|
+
line-height: var(--ht-line-height);
|
1166
|
+
font-weight: var(--ht-font-weight);
|
1167
|
+
border-radius: var(--ht-input-border-radius);
|
1168
|
+
box-sizing: border-box;
|
1169
|
+
cursor: pointer;
|
1170
|
+
outline: none !important;
|
1171
|
+
border: var(--ht-input-border-width) solid var(--ht-input-border-color);
|
1172
|
+
color: var(--ht-input-foreground-color);
|
1173
|
+
background-color: var(--ht-input-background-color);
|
1174
|
+
transition: var(--ht-table-transition) all ease-in-out;
|
1175
|
+
}
|
1176
|
+
.handsontable .htFiltersMenuCondition .htUIInput input:hover,
|
1177
|
+
.handsontable .htFiltersMenuValue .htUIMultipleSelectSearch input:hover {
|
1178
|
+
border-color: var(--ht-input-hover-border-color);
|
1179
|
+
color: var(--ht-input-hover-foreground-color);
|
1180
|
+
background-color: var(--ht-input-hover-background-color);
|
1181
|
+
}
|
1182
|
+
.handsontable .htFiltersMenuCondition .htUIInput input:disabled,
|
1183
|
+
.handsontable .htFiltersMenuValue .htUIMultipleSelectSearch input:disabled {
|
1184
|
+
border-color: var(--ht-input-disabled-border-color);
|
1185
|
+
color: var(--ht-input-disabled-foreground-color);
|
1186
|
+
background-color: var(--ht-input-disabled-background-color);
|
1187
|
+
}
|
1188
|
+
.handsontable .htFiltersMenuCondition .htUIInput input:focus,
|
1189
|
+
.handsontable .htFiltersMenuValue .htUIMultipleSelectSearch input:focus {
|
1190
|
+
border-color: var(--ht-input-focus-border-color);
|
1191
|
+
color: var(--ht-input-focus-foreground-color);
|
1192
|
+
background-color: var(--ht-input-focus-background-color);
|
1193
|
+
}
|
1194
|
+
.handsontable .htUIInput {
|
1195
|
+
position: relative;
|
1196
|
+
padding: 0;
|
1197
|
+
outline: none !important;
|
1198
|
+
text-align: center;
|
1199
|
+
}
|
1200
|
+
.handsontable .htUIInputIcon {
|
1201
|
+
position: absolute;
|
1202
|
+
}
|
1203
|
+
|
1204
|
+
.handsontable .htUIInput.htUIButton {
|
1205
|
+
cursor: pointer;
|
1206
|
+
display: inline-block;
|
1207
|
+
}
|
1208
|
+
.handsontable .htUIInput.htUIButton input {
|
1209
|
+
min-width: 64px;
|
1210
|
+
padding: var(--ht-button-vertical-padding) var(--ht-button-horizontal-padding);
|
1211
|
+
font-family: inherit;
|
1212
|
+
font-size: var(--ht-font-size);
|
1213
|
+
line-height: var(--ht-line-height);
|
1214
|
+
font-weight: var(--ht-font-weight);
|
1215
|
+
border-radius: var(--ht-button-border-radius);
|
1216
|
+
box-sizing: border-box;
|
1217
|
+
cursor: pointer;
|
1218
|
+
outline: none !important;
|
1219
|
+
border: 1px solid var(--ht-secondary-button-border-color);
|
1220
|
+
background-color: var(--ht-secondary-button-background-color);
|
1221
|
+
color: var(--ht-secondary-button-foreground-color);
|
1222
|
+
transition: var(--ht-table-transition) all ease-in-out;
|
1223
|
+
}
|
1224
|
+
.handsontable .htUIInput.htUIButton input:hover {
|
1225
|
+
border-color: var(--ht-secondary-button-hover-border-color);
|
1226
|
+
background-color: var(--ht-secondary-button-hover-background-color);
|
1227
|
+
color: var(--ht-secondary-button-hover-foreground-color);
|
1228
|
+
}
|
1229
|
+
.handsontable .htUIInput.htUIButton input:disabled {
|
1230
|
+
border-color: var(--ht-secondary-button-disabled-border-color);
|
1231
|
+
background-color: var(--ht-secondary-button-disabled-background-color);
|
1232
|
+
color: var(--ht-secondary-button-disabled-foreground-color);
|
1233
|
+
}
|
1234
|
+
.handsontable .htUIInput.htUIButton input:focus {
|
1235
|
+
border-color: var(--ht-secondary-button-focus-border-color);
|
1236
|
+
background-color: var(--ht-secondary-button-focus-background-color);
|
1237
|
+
color: var(--ht-secondary-button-focus-foreground-color);
|
1238
|
+
box-shadow: 0 0 0 1px var(--ht-accent-color);
|
1239
|
+
}
|
1240
|
+
.handsontable .htUIInput.htUIButtonOK {
|
1241
|
+
margin-inline-start: 0;
|
1242
|
+
margin-inline-end: calc(2 * var(--ht-gap-size, 2px));
|
1243
|
+
}
|
1244
|
+
.handsontable .htUIInput.htUIButtonOK input {
|
1245
|
+
border-color: var(--ht-primary-button-border-color);
|
1246
|
+
background-color: var(--ht-primary-button-background-color);
|
1247
|
+
color: var(--ht-primary-button-foreground-color);
|
1248
|
+
}
|
1249
|
+
.handsontable .htUIInput.htUIButtonOK input:hover {
|
1250
|
+
border-color: var(--ht-primary-button-hover-border-color);
|
1251
|
+
background-color: var(--ht-primary-button-hover-background-color);
|
1252
|
+
color: var(--ht-primary-button-hover-foreground-color);
|
1253
|
+
}
|
1254
|
+
.handsontable .htUIInput.htUIButtonOK input:disabled {
|
1255
|
+
border-color: var(--ht-primary-button-disabled-border-color);
|
1256
|
+
background-color: var(--ht-primary-button-disabled-background-color);
|
1257
|
+
color: var(--ht-primary-button-disabled-foreground-color);
|
1258
|
+
}
|
1259
|
+
.handsontable .htUIInput.htUIButtonOK input:focus {
|
1260
|
+
border-color: var(--ht-primary-button-focus-border-color);
|
1261
|
+
background-color: var(--ht-primary-button-focus-background-color);
|
1262
|
+
color: var(--ht-primary-button-focus-foreground-color);
|
1263
|
+
box-shadow: 0 0 0 1px var(--ht-accent-color);
|
1264
|
+
}
|
1265
|
+
|
1266
|
+
.handsontable .htUIRadio {
|
1267
|
+
position: relative;
|
1268
|
+
display: inline-flex;
|
1269
|
+
margin: 0;
|
1270
|
+
padding: var(--ht-gap-size) calc(2 * var(--ht-gap-size));
|
1271
|
+
padding-bottom: 0;
|
1272
|
+
align-items: center;
|
1273
|
+
gap: var(--ht-gap-size);
|
1274
|
+
cursor: pointer;
|
1275
|
+
}
|
1276
|
+
.handsontable .htUIRadio:first-child {
|
1277
|
+
padding-inline-start: 0;
|
1278
|
+
}
|
1279
|
+
.handsontable .htUIRadio > input[type=radio] {
|
1280
|
+
position: relative;
|
1281
|
+
width: var(--ht-checkbox-size);
|
1282
|
+
height: var(--ht-checkbox-size);
|
1283
|
+
margin: 0;
|
1284
|
+
appearance: none;
|
1285
|
+
cursor: pointer;
|
1286
|
+
}
|
1287
|
+
.handsontable .htUIRadio > input[type=radio]::before {
|
1288
|
+
content: "";
|
1289
|
+
display: block;
|
1290
|
+
position: absolute;
|
1291
|
+
inset: 0;
|
1292
|
+
border-radius: calc(0.5 * var(--ht-checkbox-size));
|
1293
|
+
border: 1px solid var(--ht-checkbox-border-color);
|
1294
|
+
background-color: var(--ht-checkbox-background-color);
|
1295
|
+
}
|
1296
|
+
.handsontable .htUIRadio > input[type=radio]::after {
|
1297
|
+
content: "";
|
1298
|
+
display: block;
|
1299
|
+
position: absolute;
|
1300
|
+
color: var(--ht-checkbox-background-color);
|
1301
|
+
}
|
1302
|
+
.handsontable .htUIRadio > input[type=radio]:checked::before {
|
1303
|
+
border-color: var(--ht-checkbox-checked-border-color);
|
1304
|
+
}
|
1305
|
+
.handsontable .htUIRadio > input[type=radio]:checked::after {
|
1306
|
+
color: var(--ht-checkbox-checked-background-color);
|
1307
|
+
}
|
1308
|
+
.handsontable .htUIRadio > input[type=radio]:checked:disabled {
|
1309
|
+
cursor: initial;
|
1310
|
+
}
|
1311
|
+
.handsontable .htUIRadio > input[type=radio]:checked:disabled::before {
|
1312
|
+
border-color: var(--ht-checkbox-checked-disabled-border-color);
|
1313
|
+
}
|
1314
|
+
.handsontable .htUIRadio > input[type=radio]:checked:disabled::after {
|
1315
|
+
color: var(--ht-checkbox-checked-disabled-background-color);
|
1316
|
+
}
|
1317
|
+
.handsontable .htUIRadio > input[type=radio]:checked:focus::before {
|
1318
|
+
border-color: var(--ht-checkbox-checked-focus-background-color);
|
1319
|
+
}
|
1320
|
+
.handsontable .htUIRadio > input[type=radio]:checked:focus::after {
|
1321
|
+
color: var(--ht-checkbox-checked-focus-background-color);
|
1322
|
+
}
|
1323
|
+
.handsontable .htUIRadio > input[type=radio]:disabled {
|
1324
|
+
cursor: initial;
|
1325
|
+
}
|
1326
|
+
.handsontable .htUIRadio > input[type=radio]:disabled::before {
|
1327
|
+
border-color: var(--ht-checkbox-disabled-border-color);
|
1328
|
+
}
|
1329
|
+
.handsontable .htUIRadio > input[type=radio]:disabled::after {
|
1330
|
+
color: var(--ht-checkbox-disabled-background-color);
|
1331
|
+
}
|
1332
|
+
.handsontable .htUIRadio > input[type=radio]:focus::before {
|
1333
|
+
border-color: var(--ht-checkbox-focus-background-color);
|
1334
|
+
}
|
1335
|
+
.handsontable .htUIRadio > input[type=radio]:focus::after {
|
1336
|
+
color: var(--ht-checkbox-focus-background-color);
|
1337
|
+
}
|
1338
|
+
.handsontable .htUIRadio label {
|
1339
|
+
vertical-align: middle;
|
1340
|
+
cursor: pointer;
|
1341
|
+
color: inherit;
|
1342
|
+
}
|
1343
|
+
.handsontable .htUIRadio label::before {
|
1344
|
+
content: "";
|
1345
|
+
display: block;
|
1346
|
+
position: absolute;
|
1347
|
+
inset: 0;
|
1348
|
+
}
|
1349
|
+
|
1350
|
+
.handsontable .collapsibleIndicator {
|
1351
|
+
top: calc((var(--ht-line-height) - var(--ht-icon-size)) / 2);
|
1352
|
+
margin-inline-start: var(--ht-gap-size);
|
1353
|
+
}
|
1354
|
+
.handsontable .collapsibleIndicator,
|
1355
|
+
.handsontable .ht_nestingButton {
|
1356
|
+
position: relative;
|
1357
|
+
width: var(--ht-icon-size);
|
1358
|
+
height: var(--ht-icon-size);
|
1359
|
+
box-sizing: border-box;
|
1360
|
+
border-radius: var(--ht-collapse-button-border-radius);
|
1361
|
+
overflow: hidden;
|
1362
|
+
cursor: pointer;
|
1363
|
+
/* hide text */
|
1364
|
+
text-indent: -100px;
|
1365
|
+
font-size: 0;
|
1366
|
+
float: right;
|
1367
|
+
}
|
1368
|
+
.handsontable .collapsibleIndicator::before,
|
1369
|
+
.handsontable .ht_nestingButton::before {
|
1370
|
+
content: "";
|
1371
|
+
display: block;
|
1372
|
+
position: absolute;
|
1373
|
+
top: 0;
|
1374
|
+
left: 0;
|
1375
|
+
transition: var(--ht-table-transition) all ease-in-out;
|
1376
|
+
}
|
1377
|
+
.handsontable .collapsibleIndicator.expanded, .handsontable .collapsibleIndicator.ht_nestingCollapse,
|
1378
|
+
.handsontable .ht_nestingButton.expanded,
|
1379
|
+
.handsontable .ht_nestingButton.ht_nestingCollapse {
|
1380
|
+
background-color: var(--ht-collapse-button-open-background-color);
|
1381
|
+
box-shadow: 0 0 0 1px var(--ht-collapse-button-open-border-color);
|
1382
|
+
}
|
1383
|
+
.handsontable .collapsibleIndicator.expanded::before, .handsontable .collapsibleIndicator.ht_nestingCollapse::before,
|
1384
|
+
.handsontable .ht_nestingButton.expanded::before,
|
1385
|
+
.handsontable .ht_nestingButton.ht_nestingCollapse::before {
|
1386
|
+
color: var(--ht-collapse-button-open-icon-color);
|
1387
|
+
}
|
1388
|
+
.handsontable .collapsibleIndicator.expanded:hover, .handsontable .collapsibleIndicator.ht_nestingCollapse:hover,
|
1389
|
+
.handsontable .ht_nestingButton.expanded:hover,
|
1390
|
+
.handsontable .ht_nestingButton.ht_nestingCollapse:hover {
|
1391
|
+
background-color: var(--ht-collapse-button-open-hover-background-color);
|
1392
|
+
box-shadow: 0 0 0 1px var(--ht-collapse-button-open-hover-border-color);
|
1393
|
+
}
|
1394
|
+
.handsontable .collapsibleIndicator.expanded:hover::before, .handsontable .collapsibleIndicator.ht_nestingCollapse:hover::before,
|
1395
|
+
.handsontable .ht_nestingButton.expanded:hover::before,
|
1396
|
+
.handsontable .ht_nestingButton.ht_nestingCollapse:hover::before {
|
1397
|
+
color: var(--ht-collapse-button-open-hover-icon-color);
|
1398
|
+
}
|
1399
|
+
.handsontable .collapsibleIndicator.collapsed, .handsontable .collapsibleIndicator.ht_nestingExpand,
|
1400
|
+
.handsontable .ht_nestingButton.collapsed,
|
1401
|
+
.handsontable .ht_nestingButton.ht_nestingExpand {
|
1402
|
+
background-color: var(--ht-collapse-button-close-background-color);
|
1403
|
+
box-shadow: 0 0 0 1px var(--ht-collapse-button-close-border-color);
|
1404
|
+
}
|
1405
|
+
.handsontable .collapsibleIndicator.collapsed::before, .handsontable .collapsibleIndicator.ht_nestingExpand::before,
|
1406
|
+
.handsontable .ht_nestingButton.collapsed::before,
|
1407
|
+
.handsontable .ht_nestingButton.ht_nestingExpand::before {
|
1408
|
+
color: var(--ht-collapse-button-close-icon-color);
|
1409
|
+
}
|
1410
|
+
.handsontable .collapsibleIndicator.collapsed:hover, .handsontable .collapsibleIndicator.ht_nestingExpand:hover,
|
1411
|
+
.handsontable .ht_nestingButton.collapsed:hover,
|
1412
|
+
.handsontable .ht_nestingButton.ht_nestingExpand:hover {
|
1413
|
+
background-color: var(--ht-collapse-button-close-hover-background-color);
|
1414
|
+
box-shadow: 0 0 0 1px var(--ht-collapse-button-close-hover-border-color);
|
1415
|
+
}
|
1416
|
+
.handsontable .collapsibleIndicator.collapsed:hover::before, .handsontable .collapsibleIndicator.ht_nestingExpand:hover::before,
|
1417
|
+
.handsontable .ht_nestingButton.collapsed:hover::before,
|
1418
|
+
.handsontable .ht_nestingButton.ht_nestingExpand:hover::before {
|
1419
|
+
color: var(--ht-collapse-button-close-hover-icon-color);
|
1420
|
+
}
|
1421
|
+
.handsontable th.ht__active_highlight .collapsibleIndicator.collapsed::before, .handsontable th.ht__active_highlight .collapsibleIndicator.ht_nestingExpand::before,
|
1422
|
+
.handsontable th.ht__active_highlight .ht_nestingButton.collapsed::before,
|
1423
|
+
.handsontable th.ht__active_highlight .ht_nestingButton.ht_nestingExpand::before {
|
1424
|
+
color: var(--ht-collapse-button-close-icon-active-color);
|
1425
|
+
}
|
1426
|
+
.handsontable th.ht__active_highlight .collapsibleIndicator.collapsed:hover::before, .handsontable th.ht__active_highlight .collapsibleIndicator.ht_nestingExpand:hover::before,
|
1427
|
+
.handsontable th.ht__active_highlight .ht_nestingButton.collapsed:hover::before,
|
1428
|
+
.handsontable th.ht__active_highlight .ht_nestingButton.ht_nestingExpand:hover::before {
|
1429
|
+
color: var(--ht-collapse-button-close-hover-icon-active-color);
|
1430
|
+
}
|
1431
|
+
.handsontable th.ht__active_highlight .collapsibleIndicator.expanded::before, .handsontable th.ht__active_highlight .collapsibleIndicator.ht_nestingCollapse::before,
|
1432
|
+
.handsontable th.ht__active_highlight .ht_nestingButton.expanded::before,
|
1433
|
+
.handsontable th.ht__active_highlight .ht_nestingButton.ht_nestingCollapse::before {
|
1434
|
+
color: var(--ht-collapse-button-open-icon-active-color);
|
1435
|
+
}
|
1436
|
+
.handsontable th.ht__active_highlight .collapsibleIndicator.expanded:hover::before, .handsontable th.ht__active_highlight .collapsibleIndicator.ht_nestingCollapse:hover::before,
|
1437
|
+
.handsontable th.ht__active_highlight .ht_nestingButton.expanded:hover::before,
|
1438
|
+
.handsontable th.ht__active_highlight .ht_nestingButton.ht_nestingCollapse:hover::before {
|
1439
|
+
color: var(--ht-collapse-button-open-hover-icon-active-color);
|
1440
|
+
}
|
1441
|
+
|
1442
|
+
[dir=rtl].handsontable .collapsibleIndicator,
|
1443
|
+
[dir=rtl].handsontable .ht_nestingButton {
|
1444
|
+
float: left;
|
1445
|
+
}
|
1446
|
+
|
1447
|
+
.handsontable thead th.hiddenHeader:not(:first-of-type) {
|
1448
|
+
display: none;
|
1449
|
+
}
|
1450
|
+
|
1451
|
+
.handsontable th.ht_nestingLevels > .relative {
|
1452
|
+
display: flex;
|
1453
|
+
align-items: center;
|
1454
|
+
gap: 5px;
|
1455
|
+
}
|
1456
|
+
.handsontable th.ht_nestingLevels span:last-child {
|
1457
|
+
padding-left: calc(var(--ht-icon-size) + 5px);
|
1458
|
+
}
|
1459
|
+
.handsontable th.ht_nestingLevels span.ht_nestingLevel {
|
1460
|
+
display: inline-block;
|
1461
|
+
}
|
1462
|
+
.handsontable th.ht_nestingLevels span.ht_nestingLevel_empty {
|
1463
|
+
position: relative;
|
1464
|
+
display: inline-block;
|
1465
|
+
width: 5px;
|
1466
|
+
height: 1px;
|
1467
|
+
order: -2;
|
1468
|
+
}
|
1469
|
+
.handsontable th.ht_nestingLevels .ht_nestingButton {
|
1470
|
+
position: relative;
|
1471
|
+
cursor: pointer;
|
1472
|
+
order: -1;
|
1473
|
+
}
|
1474
|
+
|
1475
|
+
.handsontable th.beforeHiddenColumn, .handsontable th.afterHiddenColumn {
|
1476
|
+
position: relative;
|
1477
|
+
}
|
1478
|
+
.handsontable th.beforeHiddenColumn::before, .handsontable th.beforeHiddenColumn::after, .handsontable th.afterHiddenColumn::before, .handsontable th.afterHiddenColumn::after {
|
1479
|
+
position: absolute;
|
1480
|
+
top: 50%;
|
1481
|
+
width: 10px !important;
|
1482
|
+
height: 10px !important;
|
1483
|
+
transform: translateY(-50%);
|
1484
|
+
color: var(--ht-hidden-indicator-color);
|
1485
|
+
}
|
1486
|
+
.handsontable th.beforeHiddenColumn::after {
|
1487
|
+
content: "";
|
1488
|
+
display: block;
|
1489
|
+
right: -2px;
|
1490
|
+
}
|
1491
|
+
.handsontable th.afterHiddenColumn::before {
|
1492
|
+
content: "";
|
1493
|
+
display: block;
|
1494
|
+
left: -2px;
|
1495
|
+
}
|
1496
|
+
.handsontable th.ht__active_highlight.beforeHiddenColumn::before, .handsontable th.ht__active_highlight.beforeHiddenColumn::after, .handsontable th.ht__active_highlight.afterHiddenColumn::before, .handsontable th.ht__active_highlight.afterHiddenColumn::after {
|
1497
|
+
color: var(--ht-icon-active-button-icon-color);
|
1498
|
+
}
|
1499
|
+
|
1500
|
+
[dir=rtl].handsontable th.beforeHiddenColumn::after {
|
1501
|
+
right: initial;
|
1502
|
+
left: -2px;
|
1503
|
+
transform: translateY(-50%) rotate(180deg);
|
1504
|
+
}
|
1505
|
+
[dir=rtl].handsontable th.afterHiddenColumn::before {
|
1506
|
+
right: -2px;
|
1507
|
+
left: initial;
|
1508
|
+
transform: translateY(-50%) rotate(180deg);
|
1509
|
+
}
|
1510
|
+
|
1511
|
+
.handsontable th.beforeHiddenRow, .handsontable th.afterHiddenRow {
|
1512
|
+
position: relative;
|
1513
|
+
}
|
1514
|
+
.handsontable th.beforeHiddenRow::before, .handsontable th.beforeHiddenRow::after, .handsontable th.afterHiddenRow::before, .handsontable th.afterHiddenRow::after {
|
1515
|
+
position: absolute;
|
1516
|
+
left: 50%;
|
1517
|
+
width: 10px !important;
|
1518
|
+
height: 10px !important;
|
1519
|
+
transform: translateX(-50%);
|
1520
|
+
color: var(--ht-hidden-indicator-color);
|
1521
|
+
}
|
1522
|
+
.handsontable th.beforeHiddenRow::after {
|
1523
|
+
content: "";
|
1524
|
+
display: block;
|
1525
|
+
bottom: -2px;
|
1526
|
+
}
|
1527
|
+
.handsontable th.afterHiddenRow::before {
|
1528
|
+
content: "";
|
1529
|
+
display: block;
|
1530
|
+
top: -2px;
|
1531
|
+
}
|
1532
|
+
.handsontable th.ht__active_highlight.beforeHiddenRow::before, .handsontable th.ht__active_highlight.beforeHiddenRow::after, .handsontable th.ht__active_highlight.afterHiddenRow::before, .handsontable th.ht__active_highlight.afterHiddenRow::after {
|
1533
|
+
color: var(--ht-icon-active-button-icon-color);
|
1534
|
+
}
|
1535
|
+
|
1536
|
+
.handsontable .changeType {
|
1537
|
+
position: relative;
|
1538
|
+
box-sizing: border-box;
|
1539
|
+
width: var(--ht-icon-size);
|
1540
|
+
height: var(--ht-icon-size);
|
1541
|
+
border-radius: var(--ht-icon-button-border-radius);
|
1542
|
+
box-shadow: 0 0 0 1px var(--ht-icon-button-border-color);
|
1543
|
+
border: none;
|
1544
|
+
color: inherit;
|
1545
|
+
padding: 0;
|
1546
|
+
margin: 0;
|
1547
|
+
background-color: var(--ht-icon-button-background-color);
|
1548
|
+
order: 1;
|
1549
|
+
z-index: 1;
|
1550
|
+
float: right;
|
1551
|
+
top: calc((var(--ht-line-height) - var(--ht-icon-size)) / 2);
|
1552
|
+
margin-inline-start: var(--ht-gap-size);
|
1553
|
+
}
|
1554
|
+
.handsontable .changeType::before {
|
1555
|
+
content: "";
|
1556
|
+
display: block;
|
1557
|
+
position: absolute;
|
1558
|
+
top: 0;
|
1559
|
+
left: 0;
|
1560
|
+
color: var(--ht-icon-button-icon-color);
|
1561
|
+
}
|
1562
|
+
.handsontable .changeType:hover {
|
1563
|
+
cursor: pointer;
|
1564
|
+
box-shadow: 0 0 0 1px var(--ht-icon-button-hover-border-color);
|
1565
|
+
background-color: var(--ht-icon-button-hover-background-color);
|
1566
|
+
}
|
1567
|
+
.handsontable .changeType:hover::before {
|
1568
|
+
color: var(--ht-icon-button-hover-icon-color);
|
1569
|
+
}
|
1570
|
+
.handsontable .ht__active_highlight .changeType {
|
1571
|
+
box-shadow: 0 0 0 1px var(--ht-icon-active-button-border-color);
|
1572
|
+
background-color: var(--ht-icon-active-button-background-color);
|
1573
|
+
}
|
1574
|
+
.handsontable .ht__active_highlight .changeType::before {
|
1575
|
+
color: var(--ht-icon-active-button-icon-color);
|
1576
|
+
}
|
1577
|
+
.handsontable .ht__active_highlight .changeType:hover {
|
1578
|
+
box-shadow: 0 0 0 1px var(--ht-icon-active-button-hover-border-color);
|
1579
|
+
background-color: var(--ht-icon-active-button-hover-background-color);
|
1580
|
+
}
|
1581
|
+
.handsontable .ht__active_highlight .changeType:hover::before {
|
1582
|
+
color: var(--ht-icon-active-button-hover-icon-color);
|
1583
|
+
}
|
1584
|
+
.handsontable th.htFiltersActive {
|
1585
|
+
background-color: var(--ht-header-filter-background-color);
|
1586
|
+
}
|
1587
|
+
.handsontable th.htFiltersActive.ht__active_highlight {
|
1588
|
+
background-color: color-mix(in srgb, var(--ht-header-active-background-color), var(--ht-header-filter-background-color) 20%);
|
1589
|
+
}
|
1590
|
+
.handsontable th.htFiltersActive.ht__active_highlight .changeType::after {
|
1591
|
+
background-color: var(--ht-header-active-foreground-color);
|
1592
|
+
}
|
1593
|
+
.handsontable.htDropdownMenu > .ht_master, .handsontable.htContextMenu > .ht_master, .handsontable.htFiltersConditionsMenu > .ht_master {
|
1594
|
+
box-shadow: var(--ht-menu-shadow-x, 0) var(--ht-menu-shadow-y, 0) var(--ht-menu-shadow-blur, 8px) var(--ht-menu-shadow-color, rgba(0, 0, 0, 0.08));
|
1595
|
+
border: var(--ht-menu-border-width, 1px) solid var(--ht-menu-border-color, #e5e5e9);
|
1596
|
+
border-radius: var(--ht-menu-border-radius);
|
1597
|
+
overflow: hidden;
|
1598
|
+
padding: var(--ht-menu-vertical-padding, 8px) var(--ht-menu-horizontal-padding, 0);
|
1599
|
+
background-color: var(--ht-background-color, #ffffff);
|
1600
|
+
}
|
1601
|
+
.handsontable.htDropdownMenu:not(.htGhostTable), .handsontable.htContextMenu:not(.htGhostTable), .handsontable.htFiltersConditionsMenu:not(.htGhostTable) {
|
1602
|
+
display: none;
|
1603
|
+
position: absolute;
|
1604
|
+
/* needs to be higher than 1050 - z-index for Twitter Bootstrap modal (#1569) */
|
1605
|
+
z-index: 1060;
|
1606
|
+
}
|
1607
|
+
.handsontable.htDropdownMenu .ht_clone_top,
|
1608
|
+
.handsontable.htDropdownMenu .ht_clone_bottom,
|
1609
|
+
.handsontable.htDropdownMenu .ht_clone_inline_start,
|
1610
|
+
.handsontable.htDropdownMenu .ht_clone_top_inline_start_corner,
|
1611
|
+
.handsontable.htDropdownMenu .ht_clone_bottom_inline_start_corner, .handsontable.htContextMenu .ht_clone_top,
|
1612
|
+
.handsontable.htContextMenu .ht_clone_bottom,
|
1613
|
+
.handsontable.htContextMenu .ht_clone_inline_start,
|
1614
|
+
.handsontable.htContextMenu .ht_clone_top_inline_start_corner,
|
1615
|
+
.handsontable.htContextMenu .ht_clone_bottom_inline_start_corner, .handsontable.htFiltersConditionsMenu .ht_clone_top,
|
1616
|
+
.handsontable.htFiltersConditionsMenu .ht_clone_bottom,
|
1617
|
+
.handsontable.htFiltersConditionsMenu .ht_clone_inline_start,
|
1618
|
+
.handsontable.htFiltersConditionsMenu .ht_clone_top_inline_start_corner,
|
1619
|
+
.handsontable.htFiltersConditionsMenu .ht_clone_bottom_inline_start_corner {
|
1620
|
+
display: none;
|
1621
|
+
}
|
1622
|
+
.handsontable.htDropdownMenu table.htCore, .handsontable.htContextMenu table.htCore, .handsontable.htFiltersConditionsMenu table.htCore {
|
1623
|
+
overflow: hidden;
|
1624
|
+
}
|
1625
|
+
.handsontable.htDropdownMenu .htCustomMenuRenderer .table.htCore, .handsontable.htContextMenu .htCustomMenuRenderer .table.htCore, .handsontable.htFiltersConditionsMenu .htCustomMenuRenderer .table.htCore {
|
1626
|
+
box-shadow: none;
|
1627
|
+
}
|
1628
|
+
.handsontable.htDropdownMenu.handsontable:focus, .handsontable.htContextMenu.handsontable:focus, .handsontable.htFiltersConditionsMenu.handsontable:focus {
|
1629
|
+
outline: none;
|
1630
|
+
}
|
1631
|
+
.handsontable.htDropdownMenu .wtBorder, .handsontable.htContextMenu .wtBorder, .handsontable.htFiltersConditionsMenu .wtBorder {
|
1632
|
+
visibility: hidden;
|
1633
|
+
}
|
1634
|
+
.handsontable.htDropdownMenu table tbody tr td, .handsontable.htContextMenu table tbody tr td, .handsontable.htFiltersConditionsMenu table tbody tr td {
|
1635
|
+
position: relative;
|
1636
|
+
padding: var(--ht-menu-item-vertical-padding, 4px) var(--ht-menu-item-horizontal-padding, 8px);
|
1637
|
+
border-width: 0;
|
1638
|
+
overflow: hidden;
|
1639
|
+
white-space: nowrap;
|
1640
|
+
text-overflow: ellipsis;
|
1641
|
+
background: var(--ht-background-color, #ffffff);
|
1642
|
+
cursor: pointer;
|
1643
|
+
transition: background calc(0.5 * var(--ht-table-transition)) ease-in-out;
|
1644
|
+
}
|
1645
|
+
.handsontable.htDropdownMenu table tbody tr td:first-child, .handsontable.htContextMenu table tbody tr td:first-child, .handsontable.htFiltersConditionsMenu table tbody tr td:first-child {
|
1646
|
+
border-top-width: 0;
|
1647
|
+
border-inline-end-width: 0;
|
1648
|
+
border-bottom-width: 0;
|
1649
|
+
border-inline-start-width: 0;
|
1650
|
+
}
|
1651
|
+
.handsontable.htDropdownMenu table tbody tr td.htDimmed, .handsontable.htContextMenu table tbody tr td.htDimmed, .handsontable.htFiltersConditionsMenu table tbody tr td.htDimmed {
|
1652
|
+
font-style: normal;
|
1653
|
+
color: var(--ht-foreground-color);
|
1654
|
+
}
|
1655
|
+
.handsontable.htDropdownMenu table tbody tr td:not(.handsontable.htDropdownMenu table tbody tr td.htCustomMenuRenderer, .handsontable.htDropdownMenu table tbody tr td.htDisabled, .handsontable.htContextMenu table tbody tr td.htCustomMenuRenderer, .handsontable.htContextMenu table tbody tr td.htDisabled, .handsontable.htFiltersConditionsMenu table tbody tr td.htCustomMenuRenderer, .handsontable.htFiltersConditionsMenu table tbody tr td.htDisabled):hover, .handsontable.htDropdownMenu table tbody tr td:not(.handsontable.htDropdownMenu table tbody tr td.htCustomMenuRenderer, .handsontable.htDropdownMenu table tbody tr td.htDisabled, .handsontable.htContextMenu table tbody tr td.htCustomMenuRenderer, .handsontable.htContextMenu table tbody tr td.htDisabled, .handsontable.htFiltersConditionsMenu table tbody tr td.htCustomMenuRenderer, .handsontable.htFiltersConditionsMenu table tbody tr td.htDisabled).current, .handsontable.htContextMenu table tbody tr td:not(.handsontable.htDropdownMenu table tbody tr td.htCustomMenuRenderer, .handsontable.htDropdownMenu table tbody tr td.htDisabled, .handsontable.htContextMenu table tbody tr td.htCustomMenuRenderer, .handsontable.htContextMenu table tbody tr td.htDisabled, .handsontable.htFiltersConditionsMenu table tbody tr td.htCustomMenuRenderer, .handsontable.htFiltersConditionsMenu table tbody tr td.htDisabled):hover, .handsontable.htContextMenu table tbody tr td:not(.handsontable.htDropdownMenu table tbody tr td.htCustomMenuRenderer, .handsontable.htDropdownMenu table tbody tr td.htDisabled, .handsontable.htContextMenu table tbody tr td.htCustomMenuRenderer, .handsontable.htContextMenu table tbody tr td.htDisabled, .handsontable.htFiltersConditionsMenu table tbody tr td.htCustomMenuRenderer, .handsontable.htFiltersConditionsMenu table tbody tr td.htDisabled).current, .handsontable.htFiltersConditionsMenu table tbody tr td:not(.handsontable.htDropdownMenu table tbody tr td.htCustomMenuRenderer, .handsontable.htDropdownMenu table tbody tr td.htDisabled, .handsontable.htContextMenu table tbody tr td.htCustomMenuRenderer, .handsontable.htContextMenu table tbody tr td.htDisabled, .handsontable.htFiltersConditionsMenu table tbody tr td.htCustomMenuRenderer, .handsontable.htFiltersConditionsMenu table tbody tr td.htDisabled):hover, .handsontable.htFiltersConditionsMenu table tbody tr td:not(.handsontable.htDropdownMenu table tbody tr td.htCustomMenuRenderer, .handsontable.htDropdownMenu table tbody tr td.htDisabled, .handsontable.htContextMenu table tbody tr td.htCustomMenuRenderer, .handsontable.htContextMenu table tbody tr td.htDisabled, .handsontable.htFiltersConditionsMenu table tbody tr td.htCustomMenuRenderer, .handsontable.htFiltersConditionsMenu table tbody tr td.htDisabled).current {
|
1656
|
+
background: var(--ht-menu-item-hover-color, #e5e5e9);
|
1657
|
+
cursor: pointer;
|
1658
|
+
}
|
1659
|
+
.handsontable.htDropdownMenu table tbody tr td.htSubmenu .htItemWrapper, .handsontable.htContextMenu table tbody tr td.htSubmenu .htItemWrapper, .handsontable.htFiltersConditionsMenu table tbody tr td.htSubmenu .htItemWrapper {
|
1660
|
+
margin-inline-end: calc(2 * var(--ht-gap-size, 4px) + var(--ht-icon-size));
|
1661
|
+
}
|
1662
|
+
.handsontable.htDropdownMenu table tbody tr td.htSubmenu .htItemWrapper::after, .handsontable.htContextMenu table tbody tr td.htSubmenu .htItemWrapper::after, .handsontable.htFiltersConditionsMenu table tbody tr td.htSubmenu .htItemWrapper::after {
|
1663
|
+
content: "";
|
1664
|
+
display: block;
|
1665
|
+
position: absolute;
|
1666
|
+
top: 50%;
|
1667
|
+
right: calc(var(--ht-menu-item-horizontal-padding) + var(--ht-gap-size) * 2);
|
1668
|
+
transform: translateY(-50%);
|
1669
|
+
}
|
1670
|
+
.handsontable.htDropdownMenu table tbody tr td.htSeparator, .handsontable.htContextMenu table tbody tr td.htSeparator, .handsontable.htFiltersConditionsMenu table tbody tr td.htSeparator {
|
1671
|
+
border-top: 1px solid var(--ht-border-color);
|
1672
|
+
height: 0;
|
1673
|
+
padding: 0;
|
1674
|
+
cursor: default;
|
1675
|
+
}
|
1676
|
+
.handsontable.htDropdownMenu table tbody tr td.htDisabled, .handsontable.htContextMenu table tbody tr td.htDisabled, .handsontable.htFiltersConditionsMenu table tbody tr td.htDisabled {
|
1677
|
+
color: var(--ht-disabled-color);
|
1678
|
+
cursor: default;
|
1679
|
+
}
|
1680
|
+
.handsontable.htDropdownMenu table tbody tr td.htDisabled:hover, .handsontable.htContextMenu table tbody tr td.htDisabled:hover, .handsontable.htFiltersConditionsMenu table tbody tr td.htDisabled:hover {
|
1681
|
+
background: var(--ht-background-color);
|
1682
|
+
color: var(--ht-disabled-color);
|
1683
|
+
}
|
1684
|
+
.handsontable.htDropdownMenu table tbody tr td.htHidden, .handsontable.htContextMenu table tbody tr td.htHidden, .handsontable.htFiltersConditionsMenu table tbody tr td.htHidden {
|
1685
|
+
display: none;
|
1686
|
+
}
|
1687
|
+
.handsontable.htDropdownMenu table tbody tr td:has(.htItemWrapper .selected), .handsontable.htContextMenu table tbody tr td:has(.htItemWrapper .selected), .handsontable.htFiltersConditionsMenu table tbody tr td:has(.htItemWrapper .selected) {
|
1688
|
+
background-color: var(--ht-menu-item-active-color);
|
1689
|
+
}
|
1690
|
+
.handsontable.htDropdownMenu table tbody tr td .htItemWrapper, .handsontable.htContextMenu table tbody tr td .htItemWrapper, .handsontable.htFiltersConditionsMenu table tbody tr td .htItemWrapper {
|
1691
|
+
margin-inline: calc(2 * var(--ht-gap-size, 4px));
|
1692
|
+
}
|
1693
|
+
.handsontable.htDropdownMenu table tbody tr td .htItemWrapper::before, .handsontable.htContextMenu table tbody tr td .htItemWrapper::before, .handsontable.htFiltersConditionsMenu table tbody tr td .htItemWrapper::before {
|
1694
|
+
vertical-align: text-bottom;
|
1695
|
+
margin-right: 12px;
|
1696
|
+
}
|
1697
|
+
.handsontable.htDropdownMenu table tbody tr td .htItemWrapper span.selected, .handsontable.htContextMenu table tbody tr td .htItemWrapper span.selected, .handsontable.htFiltersConditionsMenu table tbody tr td .htItemWrapper span.selected {
|
1698
|
+
font-size: 0;
|
1699
|
+
inset: 0;
|
1700
|
+
}
|
1701
|
+
.handsontable.htDropdownMenu table tbody tr td .htItemWrapper span.selected::after, .handsontable.htContextMenu table tbody tr td .htItemWrapper span.selected::after, .handsontable.htFiltersConditionsMenu table tbody tr td .htItemWrapper span.selected::after {
|
1702
|
+
content: "";
|
1703
|
+
display: block;
|
1704
|
+
position: absolute;
|
1705
|
+
top: 50%;
|
1706
|
+
right: calc(var(--ht-menu-item-horizontal-padding) + var(--ht-gap-size) * 2);
|
1707
|
+
color: var(--ht-accent-color);
|
1708
|
+
transform: translateY(-50%);
|
1709
|
+
}
|
1710
|
+
.handsontable.htDropdownMenu table tbody tr td div span.selected, .handsontable.htContextMenu table tbody tr td div span.selected, .handsontable.htFiltersConditionsMenu table tbody tr td div span.selected {
|
1711
|
+
position: absolute;
|
1712
|
+
inset-inline-end: 0;
|
1713
|
+
}
|
1714
|
+
.handsontable.htDropdownMenu table tbody tr td .htUIButton, .handsontable.htContextMenu table tbody tr td .htUIButton, .handsontable.htFiltersConditionsMenu table tbody tr td .htUIButton {
|
1715
|
+
width: calc(50% - var(--ht-gap-size));
|
1716
|
+
}
|
1717
|
+
.handsontable.htDropdownMenu table tbody tr td .htUIButton input, .handsontable.htContextMenu table tbody tr td .htUIButton input, .handsontable.htFiltersConditionsMenu table tbody tr td .htUIButton input {
|
1718
|
+
width: 100%;
|
1719
|
+
}
|
1720
|
+
.handsontable.htContextMenuSub_Alignment, .handsontable.htDropdownMenuSub_Alignment {
|
1721
|
+
margin-top: calc(var(--ht-menu-vertical-padding) * -1);
|
1722
|
+
}
|
1723
|
+
.handsontable .htUIClearAll a,
|
1724
|
+
.handsontable .htUISelectAll a {
|
1725
|
+
padding: var(--ht-gap-size);
|
1726
|
+
display: inline-block;
|
1727
|
+
text-decoration: none;
|
1728
|
+
}
|
1729
|
+
.handsontable .htUIMultipleSelect .ht_master .wtHolder {
|
1730
|
+
overflow-y: scroll !important;
|
1731
|
+
background: transparent;
|
1732
|
+
}
|
1733
|
+
.handsontable .htUIMultipleSelect .ht_master .wtHolder .htCore {
|
1734
|
+
box-shadow: none;
|
1735
|
+
}
|
1736
|
+
|
1737
|
+
[dir=rtl].handsontable.htDropdownMenu table tbody tr td.htSubmenu .htItemWrapper::after, [dir=rtl].handsontable.htContextMenu table tbody tr td.htSubmenu .htItemWrapper::after, [dir=rtl].handsontable.htFiltersConditionsMenu table tbody tr td.htSubmenu .htItemWrapper::after {
|
1738
|
+
left: calc(4 * var(--ht-gap-size));
|
1739
|
+
right: auto;
|
1740
|
+
transform: translateY(-50%) rotate(180deg);
|
1741
|
+
}
|
1742
|
+
[dir=rtl].handsontable.htDropdownMenu table tbody tr td .htItemWrapper span.selected::after, [dir=rtl].handsontable.htContextMenu table tbody tr td .htItemWrapper span.selected::after, [dir=rtl].handsontable.htFiltersConditionsMenu table tbody tr td .htItemWrapper span.selected::after {
|
1743
|
+
left: calc(4 * var(--ht-gap-size));
|
1744
|
+
right: auto;
|
1745
|
+
}
|
1746
|
+
[dir=rtl].handsontable .changeType {
|
1747
|
+
float: left;
|
1748
|
+
}
|
1749
|
+
|
1750
|
+
.handsontable.htFiltersConditionsMenu:not(.htGhostTable) {
|
1751
|
+
z-index: 1070;
|
1752
|
+
}
|
1753
|
+
.handsontable .ht_master table td.htCustomMenuRenderer {
|
1754
|
+
cursor: auto;
|
1755
|
+
}
|
1756
|
+
.handsontable .ht_master table td.htCustomMenuRenderer.htFiltersMenuActionBar {
|
1757
|
+
padding-top: calc(var(--ht-menu-item-vertical-padding, 4px) * 2);
|
1758
|
+
}
|
1759
|
+
.handsontable .htFiltersMenuLabel {
|
1760
|
+
font-size: calc(var(--ht-font-size) - 2px);
|
1761
|
+
line-height: calc(var(--ht-line-height) - 4px);
|
1762
|
+
font-weight: var(--ht-font-weight);
|
1763
|
+
margin-bottom: calc(var(--ht-gap-size, 2px) * 2);
|
1764
|
+
}
|
1765
|
+
.handsontable .htFiltersMenuLabel:empty {
|
1766
|
+
display: none;
|
1767
|
+
}
|
1768
|
+
.handsontable .htFiltersMenuCondition {
|
1769
|
+
padding-top: calc(var(--ht-gap-size, 2px) * 3) !important;
|
1770
|
+
padding-bottom: 0 !important;
|
1771
|
+
}
|
1772
|
+
.handsontable .htFiltersMenuCondition .border {
|
1773
|
+
border-bottom: 1px solid var(--ht-border-color) !important;
|
1774
|
+
}
|
1775
|
+
.handsontable .htFiltersMenuCondition .htUIInput {
|
1776
|
+
margin-top: calc(var(--ht-gap-size, 2px) * 2);
|
1777
|
+
}
|
1778
|
+
.handsontable .htFiltersMenuValue {
|
1779
|
+
padding-top: calc(var(--ht-gap-size, 2px) * 3) !important;
|
1780
|
+
padding-bottom: 0 !important;
|
1781
|
+
border-bottom: 1px solid var(--ht-border-color) !important;
|
1782
|
+
}
|
1783
|
+
.handsontable .htFiltersMenuOperators {
|
1784
|
+
padding-top: calc(var(--ht-gap-size, 2px) * 2) !important;
|
1785
|
+
padding-bottom: 0 !important;
|
1786
|
+
}
|
1787
|
+
.handsontable .htUISelectionControls {
|
1788
|
+
padding-top: calc(var(--ht-gap-size, 2px) * 2) !important;
|
1789
|
+
padding-bottom: var(--ht-gap-size, 2px) !important;
|
1790
|
+
margin: 0 calc(var(--ht-gap-size, 2px) * -1);
|
1791
|
+
}
|
1792
|
+
.handsontable .htUIMultipleSelectHot {
|
1793
|
+
--ht-cell-vertical-padding: calc(
|
1794
|
+
var(--ht-menu-item-horizontal-padding, 2px) +
|
1795
|
+
var(--ht-gap-size, 2px) * 2);
|
1796
|
+
overflow: initial !important;
|
1797
|
+
width: calc(100% + var(--ht-menu-item-horizontal-padding, 2px) * 2 + var(--ht-gap-size, 2px) * 4);
|
1798
|
+
margin: 0 calc((var(--ht-menu-item-horizontal-padding, 2px) + var(--ht-gap-size, 2px) * 2) * -1);
|
1799
|
+
}
|
1800
|
+
.handsontable .htUIMultipleSelectHot::before {
|
1801
|
+
content: "";
|
1802
|
+
display: block;
|
1803
|
+
position: absolute;
|
1804
|
+
top: -1px;
|
1805
|
+
left: 0;
|
1806
|
+
width: 100%;
|
1807
|
+
height: 1px;
|
1808
|
+
background-color: var(--ht-border-color);
|
1809
|
+
}
|
1810
|
+
.handsontable .htUIMultipleSelectHot .wtHolder {
|
1811
|
+
padding: 0;
|
1812
|
+
overflow-x: hidden;
|
1813
|
+
box-sizing: border-box;
|
1814
|
+
}
|
1815
|
+
.handsontable .htUIMultipleSelectHot .wtHolder .wtSpreader {
|
1816
|
+
padding: calc(var(--ht-gap-size) * 2) 0;
|
1817
|
+
}
|
1818
|
+
.handsontable .htUIMultipleSelectHot .wtHolder td {
|
1819
|
+
height: auto;
|
1820
|
+
padding: 4px var(--ht-cell-vertical-padding);
|
1821
|
+
}
|
1822
|
+
.handsontable .htUIClearAll,
|
1823
|
+
.handsontable .htUISelectAll {
|
1824
|
+
display: inline-block;
|
1825
|
+
margin-right: var(--ht-gap-size, 4px);
|
1826
|
+
margin-bottom: var(--ht-gap-size, 4px);
|
1827
|
+
}
|
1828
|
+
.handsontable .htUIClearAll a,
|
1829
|
+
.handsontable .htUISelectAll a {
|
1830
|
+
color: var(--ht-link-color);
|
1831
|
+
border-radius: var(--ht-button-border-radius);
|
1832
|
+
}
|
1833
|
+
.handsontable .htUIClearAll a:hover,
|
1834
|
+
.handsontable .htUISelectAll a:hover {
|
1835
|
+
color: var(--ht-link-hover-color);
|
1836
|
+
}
|
1837
|
+
.handsontable .htUIClearAll a:focus,
|
1838
|
+
.handsontable .htUISelectAll a:focus {
|
1839
|
+
outline: 1px solid var(--ht-link-hover-color);
|
1840
|
+
}
|
1841
|
+
.handsontable .htUIMultipleSelect .ht_master .wtHolder {
|
1842
|
+
overflow-y: auto;
|
1843
|
+
}
|
1844
|
+
.handsontable .htUIMultipleSelect .ht_master .wtHolder .wtHider,
|
1845
|
+
.handsontable .htUIMultipleSelect .ht_master .wtHolder .htCore,
|
1846
|
+
.handsontable .htUIMultipleSelect .ht_master .wtHolder tr,
|
1847
|
+
.handsontable .htUIMultipleSelect .ht_master .wtHolder td {
|
1848
|
+
background: none;
|
1849
|
+
}
|
1850
|
+
|
1851
|
+
.handsontable .htCommentCell {
|
1852
|
+
position: relative;
|
1853
|
+
}
|
1854
|
+
.handsontable .htCommentCell::after {
|
1855
|
+
content: "";
|
1856
|
+
display: block;
|
1857
|
+
position: absolute;
|
1858
|
+
top: 0;
|
1859
|
+
inset-inline-end: 0;
|
1860
|
+
inset-inline-start: unset;
|
1861
|
+
border-inline-start: var(--ht-comments-indicator-size, 4px) solid transparent;
|
1862
|
+
border-inline-end: none;
|
1863
|
+
border-top: var(--ht-comments-indicator-size, 4px) solid var(--ht-comments-indicator-color, #1a42e8);
|
1864
|
+
}
|
1865
|
+
|
1866
|
+
.htCommentsContainer .htComments {
|
1867
|
+
display: none;
|
1868
|
+
z-index: 1059;
|
1869
|
+
position: absolute;
|
1870
|
+
}
|
1871
|
+
.htCommentsContainer .htCommentTextArea {
|
1872
|
+
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Helvetica Neue, Arial, sans-serif;
|
1873
|
+
box-shadow: var(--ht-menu-shadow-x, 0) var(--ht-menu-shadow-y, 0) var(--ht-menu-shadow-blur, 8px) var(--ht-menu-shadow-color, rgba(0, 0, 0, 0.08));
|
1874
|
+
width: 240px;
|
1875
|
+
height: 88px;
|
1876
|
+
font-size: var(--ht-font-size);
|
1877
|
+
line-height: var(--ht-line-height);
|
1878
|
+
font-weight: var(--ht-font-weight);
|
1879
|
+
margin: 0 -1px;
|
1880
|
+
padding: var(--ht-comments-textarea-vertical-padding) var(--ht-comments-textarea-horizontal-padding);
|
1881
|
+
border: var(--ht-comments-textarea-border-width, 1px) solid var(--ht-comments-textarea-border-color, transparent);
|
1882
|
+
border-inline-start: var(--ht-comments-textarea-border-width, 1px) solid var(--ht-comments-textarea-border-color, #1a42e8);
|
1883
|
+
color: var(--ht-comments-textarea-foreground-color);
|
1884
|
+
background-color: var(--ht-comments-textarea-background-color, #ffffff);
|
1885
|
+
outline: 0 !important;
|
1886
|
+
box-sizing: border-box;
|
1887
|
+
-webkit-appearance: none;
|
1888
|
+
}
|
1889
|
+
.htCommentsContainer .htCommentTextArea:focus {
|
1890
|
+
border: var(--ht-comments-textarea-focus-border-width, 1px) solid var(--ht-comments-textarea-focus-border-color, #1a42e8);
|
1891
|
+
color: var(--ht-comments-textarea-focus-foreground-color);
|
1892
|
+
background-color: var(--ht-comments-textarea-focus-background-color, #ffffff);
|
1893
|
+
}
|
1894
|
+
|
1895
|
+
.handsontable .columnSorting {
|
1896
|
+
position: relative;
|
1897
|
+
}
|
1898
|
+
.handsontable .columnSorting.sortAction {
|
1899
|
+
padding-inline-start: var(--ht-icon-size, 16px);
|
1900
|
+
padding-inline-end: var(--ht-icon-size, 16px);
|
1901
|
+
min-width: calc(var(--ht-icon-size, 16px) + 8px);
|
1902
|
+
max-width: calc(100% - var(--ht-icon-size, 16px) * 2 - 4px);
|
1903
|
+
}
|
1904
|
+
.handsontable .columnSorting.sortAction:hover {
|
1905
|
+
text-decoration: none;
|
1906
|
+
cursor: pointer;
|
1907
|
+
}
|
1908
|
+
.handsontable .columnSorting.sortAction::before {
|
1909
|
+
content: "";
|
1910
|
+
display: block;
|
1911
|
+
width: var(--ht-icon-size, 16px);
|
1912
|
+
position: absolute;
|
1913
|
+
top: 50%;
|
1914
|
+
right: 2px;
|
1915
|
+
transform: translateY(-50%);
|
1916
|
+
text-align: right;
|
1917
|
+
}
|
1918
|
+
.handsontable .htLeft .columnSorting.sortAction {
|
1919
|
+
padding-inline-start: 0;
|
1920
|
+
}
|
1921
|
+
.handsontable .htRight .columnSorting.sortAction {
|
1922
|
+
padding-inline-start: var(--ht-icon-size, 16px);
|
1923
|
+
padding-inline-end: var(--ht-gap-size, 4px);
|
1924
|
+
}
|
1925
|
+
.handsontable .htRight .columnSorting.sortAction::before {
|
1926
|
+
left: 2px;
|
1927
|
+
right: auto;
|
1928
|
+
text-align: left;
|
1929
|
+
}
|
1930
|
+
|
1931
|
+
[dir=rtl] .handsontable .columnSorting.sortAction::before {
|
1932
|
+
left: 2px;
|
1933
|
+
right: auto;
|
1934
|
+
text-align: left;
|
1935
|
+
}
|
1936
|
+
[dir=rtl] .handsontable .htRight .columnSorting.sortAction {
|
1937
|
+
padding-inline-start: var(--ht-gap-size, 4px);
|
1938
|
+
padding-inline-end: var(--ht-icon-size, 16px);
|
1939
|
+
}
|
1940
|
+
[dir=rtl] .handsontable .htLeft .columnSorting.sortAction {
|
1941
|
+
padding-inline-start: var(--ht-icon-size, 16px);
|
1942
|
+
padding-inline-end: var(--ht-gap-size, 4px);
|
1943
|
+
}
|
1944
|
+
[dir=rtl] .handsontable .htLeft .columnSorting.sortAction::before {
|
1945
|
+
left: auto;
|
1946
|
+
right: 2px;
|
1947
|
+
text-align: right;
|
1948
|
+
}
|
1949
|
+
|
1950
|
+
.htGhostTable .htCore span.colHeader.columnSorting:not(.indicatorDisabled)::before {
|
1951
|
+
content: "*";
|
1952
|
+
display: inline-block;
|
1953
|
+
position: relative;
|
1954
|
+
/* The multi-line header and header with longer text need more padding to not hide arrow,
|
1955
|
+
we make header wider in `GhostTable` to make some space for arrow which is positioned absolutely in the main table */
|
1956
|
+
padding-right: 20px;
|
1957
|
+
}
|
1958
|
+
|
1959
|
+
.handsontable .colHeader.columnSorting::after {
|
1960
|
+
content: "";
|
1961
|
+
display: block;
|
1962
|
+
width: 8px;
|
1963
|
+
position: absolute;
|
1964
|
+
top: 50%;
|
1965
|
+
right: 0;
|
1966
|
+
transform: translateY(-50%);
|
1967
|
+
margin-top: 4px;
|
1968
|
+
font-size: 8px;
|
1969
|
+
text-align: right;
|
1970
|
+
}
|
1971
|
+
.handsontable .colHeader.columnSorting[class^=sort-]::after, .handsontable .colHeader.columnSorting[class*=" sort-"]::after {
|
1972
|
+
content: "+";
|
1973
|
+
}
|
1974
|
+
.handsontable .colHeader.columnSorting.sort-1::after {
|
1975
|
+
content: "1";
|
1976
|
+
}
|
1977
|
+
.handsontable .colHeader.columnSorting.sort-2::after {
|
1978
|
+
content: "2";
|
1979
|
+
}
|
1980
|
+
.handsontable .colHeader.columnSorting.sort-3::after {
|
1981
|
+
content: "3";
|
1982
|
+
}
|
1983
|
+
.handsontable .colHeader.columnSorting.sort-4::after {
|
1984
|
+
content: "4";
|
1985
|
+
}
|
1986
|
+
.handsontable .colHeader.columnSorting.sort-5::after {
|
1987
|
+
content: "5";
|
1988
|
+
}
|
1989
|
+
.handsontable .colHeader.columnSorting.sort-6::after {
|
1990
|
+
content: "6";
|
1991
|
+
}
|
1992
|
+
.handsontable .colHeader.columnSorting.sort-7::after {
|
1993
|
+
content: "7";
|
1994
|
+
}
|
1995
|
+
.handsontable .htRight .colHeader.columnSorting::after {
|
1996
|
+
left: 0;
|
1997
|
+
right: auto;
|
1998
|
+
text-align: left;
|
1999
|
+
}
|
2000
|
+
|
2001
|
+
[dir=rtl] .handsontable .colHeader.columnSorting::after {
|
2002
|
+
left: 0;
|
2003
|
+
right: auto;
|
2004
|
+
text-align: left;
|
2005
|
+
}
|
2006
|
+
[dir=rtl] .handsontable .htLeft .colHeader.columnSorting::after {
|
2007
|
+
left: auto;
|
2008
|
+
right: 0;
|
2009
|
+
text-align: right;
|
2010
|
+
}
|
2011
|
+
|
2012
|
+
.htGhostTable th div button.changeType + span.colHeader.columnSorting:not(.indicatorDisabled) {
|
2013
|
+
padding-right: var(--ht-gap-size);
|
2014
|
+
}
|
2015
|
+
|
2016
|
+
.handsontable .htRowHeaders .ht_master.innerBorderInlineStart ~ .ht_clone_top_inline_start_corner th:nth-child(2), .handsontable .htRowHeaders .ht_master.innerBorderInlineStart ~ .ht_clone_inline_start td:first-of-type {
|
2017
|
+
border-left: 0 none;
|
2018
|
+
}
|
2019
|
+
.handsontable .ht_clone_top_inline_start_corner th.ht__active_highlight {
|
2020
|
+
box-shadow: none;
|
2021
|
+
}
|
2022
|
+
.handsontable .ht_clone_top_inline_start_corner th:not(.handsontable .ht_clone_top_inline_start_corner th.ht__active_highlight,
|
2023
|
+
.handsontable .ht_clone_top_inline_start_corner td.ht__active_highlight,
|
2024
|
+
.handsontable .ht_clone_top th.ht__active_highlight,
|
2025
|
+
.handsontable .ht_clone_top td.ht__active_highlight,
|
2026
|
+
.handsontable .ht_clone_bottom_inline_start_corner th.ht__active_highlight,
|
2027
|
+
.handsontable .ht_clone_bottom_inline_start_corner td.ht__active_highlight,
|
2028
|
+
.handsontable .ht_clone_bottom th.ht__active_highlight,
|
2029
|
+
.handsontable .ht_clone_bottom td.ht__active_highlight),
|
2030
|
+
.handsontable .ht_clone_top_inline_start_corner td:not(.handsontable .ht_clone_top_inline_start_corner th.ht__active_highlight,
|
2031
|
+
.handsontable .ht_clone_top_inline_start_corner td.ht__active_highlight,
|
2032
|
+
.handsontable .ht_clone_top th.ht__active_highlight,
|
2033
|
+
.handsontable .ht_clone_top td.ht__active_highlight,
|
2034
|
+
.handsontable .ht_clone_bottom_inline_start_corner th.ht__active_highlight,
|
2035
|
+
.handsontable .ht_clone_bottom_inline_start_corner td.ht__active_highlight,
|
2036
|
+
.handsontable .ht_clone_bottom th.ht__active_highlight,
|
2037
|
+
.handsontable .ht_clone_bottom td.ht__active_highlight),
|
2038
|
+
.handsontable .ht_clone_top th:not(.handsontable .ht_clone_top_inline_start_corner th.ht__active_highlight,
|
2039
|
+
.handsontable .ht_clone_top_inline_start_corner td.ht__active_highlight,
|
2040
|
+
.handsontable .ht_clone_top th.ht__active_highlight,
|
2041
|
+
.handsontable .ht_clone_top td.ht__active_highlight,
|
2042
|
+
.handsontable .ht_clone_bottom_inline_start_corner th.ht__active_highlight,
|
2043
|
+
.handsontable .ht_clone_bottom_inline_start_corner td.ht__active_highlight,
|
2044
|
+
.handsontable .ht_clone_bottom th.ht__active_highlight,
|
2045
|
+
.handsontable .ht_clone_bottom td.ht__active_highlight),
|
2046
|
+
.handsontable .ht_clone_top td:not(.handsontable .ht_clone_top_inline_start_corner th.ht__active_highlight,
|
2047
|
+
.handsontable .ht_clone_top_inline_start_corner td.ht__active_highlight,
|
2048
|
+
.handsontable .ht_clone_top th.ht__active_highlight,
|
2049
|
+
.handsontable .ht_clone_top td.ht__active_highlight,
|
2050
|
+
.handsontable .ht_clone_bottom_inline_start_corner th.ht__active_highlight,
|
2051
|
+
.handsontable .ht_clone_bottom_inline_start_corner td.ht__active_highlight,
|
2052
|
+
.handsontable .ht_clone_bottom th.ht__active_highlight,
|
2053
|
+
.handsontable .ht_clone_bottom td.ht__active_highlight),
|
2054
|
+
.handsontable .ht_clone_bottom_inline_start_corner th:not(.handsontable .ht_clone_top_inline_start_corner th.ht__active_highlight,
|
2055
|
+
.handsontable .ht_clone_top_inline_start_corner td.ht__active_highlight,
|
2056
|
+
.handsontable .ht_clone_top th.ht__active_highlight,
|
2057
|
+
.handsontable .ht_clone_top td.ht__active_highlight,
|
2058
|
+
.handsontable .ht_clone_bottom_inline_start_corner th.ht__active_highlight,
|
2059
|
+
.handsontable .ht_clone_bottom_inline_start_corner td.ht__active_highlight,
|
2060
|
+
.handsontable .ht_clone_bottom th.ht__active_highlight,
|
2061
|
+
.handsontable .ht_clone_bottom td.ht__active_highlight),
|
2062
|
+
.handsontable .ht_clone_bottom_inline_start_corner td:not(.handsontable .ht_clone_top_inline_start_corner th.ht__active_highlight,
|
2063
|
+
.handsontable .ht_clone_top_inline_start_corner td.ht__active_highlight,
|
2064
|
+
.handsontable .ht_clone_top th.ht__active_highlight,
|
2065
|
+
.handsontable .ht_clone_top td.ht__active_highlight,
|
2066
|
+
.handsontable .ht_clone_bottom_inline_start_corner th.ht__active_highlight,
|
2067
|
+
.handsontable .ht_clone_bottom_inline_start_corner td.ht__active_highlight,
|
2068
|
+
.handsontable .ht_clone_bottom th.ht__active_highlight,
|
2069
|
+
.handsontable .ht_clone_bottom td.ht__active_highlight),
|
2070
|
+
.handsontable .ht_clone_bottom th:not(.handsontable .ht_clone_top_inline_start_corner th.ht__active_highlight,
|
2071
|
+
.handsontable .ht_clone_top_inline_start_corner td.ht__active_highlight,
|
2072
|
+
.handsontable .ht_clone_top th.ht__active_highlight,
|
2073
|
+
.handsontable .ht_clone_top td.ht__active_highlight,
|
2074
|
+
.handsontable .ht_clone_bottom_inline_start_corner th.ht__active_highlight,
|
2075
|
+
.handsontable .ht_clone_bottom_inline_start_corner td.ht__active_highlight,
|
2076
|
+
.handsontable .ht_clone_bottom th.ht__active_highlight,
|
2077
|
+
.handsontable .ht_clone_bottom td.ht__active_highlight),
|
2078
|
+
.handsontable .ht_clone_bottom td:not(.handsontable .ht_clone_top_inline_start_corner th.ht__active_highlight,
|
2079
|
+
.handsontable .ht_clone_top_inline_start_corner td.ht__active_highlight,
|
2080
|
+
.handsontable .ht_clone_top th.ht__active_highlight,
|
2081
|
+
.handsontable .ht_clone_top td.ht__active_highlight,
|
2082
|
+
.handsontable .ht_clone_bottom_inline_start_corner th.ht__active_highlight,
|
2083
|
+
.handsontable .ht_clone_bottom_inline_start_corner td.ht__active_highlight,
|
2084
|
+
.handsontable .ht_clone_bottom th.ht__active_highlight,
|
2085
|
+
.handsontable .ht_clone_bottom td.ht__active_highlight) {
|
2086
|
+
border-color: var(--ht-border-color);
|
2087
|
+
}
|
2088
|
+
.handsontable .ht_clone_inline_start th:not(.handsontable .ht_clone_inline_start th.ht__active_highlight,
|
2089
|
+
.handsontable .ht_clone_inline_start td.ht__active_highlight),
|
2090
|
+
.handsontable .ht_clone_inline_start td:not(.handsontable .ht_clone_inline_start th.ht__active_highlight,
|
2091
|
+
.handsontable .ht_clone_inline_start td.ht__active_highlight) {
|
2092
|
+
border-inline-start-color: var(--ht-border-color);
|
2093
|
+
border-inline-end-color: var(--ht-border-color);
|
2094
|
+
}
|
2095
|
+
|
2096
|
+
.handsontable .manualColumnResizer {
|
2097
|
+
position: absolute;
|
2098
|
+
top: 0;
|
2099
|
+
width: 10px;
|
2100
|
+
margin: 0;
|
2101
|
+
cursor: col-resize;
|
2102
|
+
background: none;
|
2103
|
+
opacity: 0;
|
2104
|
+
z-index: 210;
|
2105
|
+
}
|
2106
|
+
.handsontable .manualColumnResizer::before, .handsontable .manualColumnResizer::after {
|
2107
|
+
content: "";
|
2108
|
+
display: block;
|
2109
|
+
position: absolute;
|
2110
|
+
top: 50%;
|
2111
|
+
left: 1px;
|
2112
|
+
width: 2px;
|
2113
|
+
height: calc(100% - 12px);
|
2114
|
+
max-height: 16px;
|
2115
|
+
background: var(--ht-resize-indicator-color);
|
2116
|
+
border-radius: 2px;
|
2117
|
+
transform: translateY(-50%);
|
2118
|
+
}
|
2119
|
+
.handsontable .manualColumnResizer::after {
|
2120
|
+
left: auto;
|
2121
|
+
right: 0;
|
2122
|
+
}
|
2123
|
+
.handsontable .manualColumnResizer:hover, .handsontable .manualColumnResizer.active {
|
2124
|
+
opacity: 1;
|
2125
|
+
}
|
2126
|
+
.handsontable .manualColumnResizerGuide {
|
2127
|
+
position: absolute;
|
2128
|
+
inset-inline-end: unset;
|
2129
|
+
top: 0;
|
2130
|
+
width: 0;
|
2131
|
+
margin-inline-start: 5px;
|
2132
|
+
margin-inline-end: unset;
|
2133
|
+
display: none;
|
2134
|
+
border-inline-end: 1px solid var(--ht-accent-color);
|
2135
|
+
border-inline-start: none;
|
2136
|
+
}
|
2137
|
+
.handsontable .manualColumnResizerGuide.active {
|
2138
|
+
display: block;
|
2139
|
+
z-index: 209;
|
2140
|
+
}
|
2141
|
+
|
2142
|
+
.handsontable .manualRowResizer {
|
2143
|
+
position: absolute;
|
2144
|
+
left: 0;
|
2145
|
+
z-index: 210;
|
2146
|
+
height: 10px;
|
2147
|
+
margin: 0;
|
2148
|
+
cursor: row-resize;
|
2149
|
+
background: none;
|
2150
|
+
opacity: 0;
|
2151
|
+
transition: opacity 0.2s ease-in-out;
|
2152
|
+
}
|
2153
|
+
.handsontable .manualRowResizer::before, .handsontable .manualRowResizer::after {
|
2154
|
+
content: "";
|
2155
|
+
display: block;
|
2156
|
+
position: absolute;
|
2157
|
+
top: 1px;
|
2158
|
+
left: 50%;
|
2159
|
+
width: calc(100% - 12px);
|
2160
|
+
max-width: 16px;
|
2161
|
+
height: 2px;
|
2162
|
+
background: var(--ht-resize-indicator-color);
|
2163
|
+
border-radius: 2px;
|
2164
|
+
transform: translateX(-50%);
|
2165
|
+
}
|
2166
|
+
.handsontable .manualRowResizer::after {
|
2167
|
+
top: auto;
|
2168
|
+
bottom: 0;
|
2169
|
+
}
|
2170
|
+
.handsontable .manualRowResizer:hover, .handsontable .manualRowResizer.active {
|
2171
|
+
opacity: 1;
|
2172
|
+
}
|
2173
|
+
.handsontable .manualRowResizerGuide {
|
2174
|
+
position: absolute;
|
2175
|
+
left: 0;
|
2176
|
+
bottom: 0;
|
2177
|
+
height: 0;
|
2178
|
+
margin-top: 4px;
|
2179
|
+
display: none;
|
2180
|
+
border-bottom: 1px solid var(--ht-accent-color);
|
2181
|
+
border-top: none;
|
2182
|
+
}
|
2183
|
+
.handsontable .manualRowResizerGuide.active {
|
2184
|
+
display: block;
|
2185
|
+
z-index: 209;
|
2186
|
+
}
|
2187
|
+
|
2188
|
+
.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-0]:before {
|
2189
|
+
opacity: 0.14;
|
2190
|
+
}
|
2191
|
+
|
2192
|
+
.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-1]:before {
|
2193
|
+
opacity: 0.21;
|
2194
|
+
}
|
2195
|
+
|
2196
|
+
.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-2]:before {
|
2197
|
+
opacity: 0.28;
|
2198
|
+
}
|
2199
|
+
|
2200
|
+
.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-3]:before {
|
2201
|
+
opacity: 0.35;
|
2202
|
+
}
|
2203
|
+
|
2204
|
+
.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-4]:before {
|
2205
|
+
opacity: 0.42;
|
2206
|
+
}
|
2207
|
+
|
2208
|
+
.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-5]:before {
|
2209
|
+
opacity: 0.49;
|
2210
|
+
}
|
2211
|
+
|
2212
|
+
.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-6]:before {
|
2213
|
+
opacity: 0.56;
|
2214
|
+
}
|
2215
|
+
|
2216
|
+
.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-7]:before {
|
2217
|
+
opacity: 0.63;
|
2218
|
+
}
|
2219
|
+
|
2220
|
+
.handsontable .wtHider {
|
2221
|
+
position: relative;
|
2222
|
+
}
|
2223
|
+
.handsontable .ht__manualColumnMove.after-selection--columns thead th.ht__highlight, .handsontable.ht__manualColumnMove.after-selection--columns thead th.ht__highlight {
|
2224
|
+
cursor: move;
|
2225
|
+
cursor: -moz-grab;
|
2226
|
+
cursor: -webkit-grab;
|
2227
|
+
cursor: grab;
|
2228
|
+
}
|
2229
|
+
.handsontable .ht__manualColumnMove.on-moving--columns *,
|
2230
|
+
.handsontable .ht__manualColumnMove.on-moving--columns thead th.ht__highlight, .handsontable.ht__manualColumnMove.on-moving--columns *,
|
2231
|
+
.handsontable.ht__manualColumnMove.on-moving--columns thead th.ht__highlight {
|
2232
|
+
cursor: move;
|
2233
|
+
cursor: -moz-grabbing;
|
2234
|
+
cursor: -webkit-grabbing;
|
2235
|
+
cursor: grabbing;
|
2236
|
+
}
|
2237
|
+
.handsontable .ht__manualColumnMove.on-moving--columns .manualColumnResizer, .handsontable.ht__manualColumnMove.on-moving--columns .manualColumnResizer {
|
2238
|
+
display: none;
|
2239
|
+
}
|
2240
|
+
.handsontable .ht__manualColumnMove--guideline, .handsontable .ht__manualColumnMove--backlight, .handsontable.ht__manualColumnMove--guideline, .handsontable.ht__manualColumnMove--backlight {
|
2241
|
+
position: absolute;
|
2242
|
+
height: 100%;
|
2243
|
+
display: none;
|
2244
|
+
}
|
2245
|
+
.handsontable .ht__manualColumnMove--guideline, .handsontable.ht__manualColumnMove--guideline {
|
2246
|
+
width: 1px;
|
2247
|
+
top: 0;
|
2248
|
+
margin-inline-start: -0.5px;
|
2249
|
+
margin-inline-end: 0;
|
2250
|
+
z-index: 205;
|
2251
|
+
background: var(--ht-move-indicator-color, #1a42e8);
|
2252
|
+
}
|
2253
|
+
.handsontable .ht__manualColumnMove--backlight, .handsontable.ht__manualColumnMove--backlight {
|
2254
|
+
display: none;
|
2255
|
+
z-index: 205;
|
2256
|
+
pointer-events: none;
|
2257
|
+
background: var(--ht-move-backlight-color);
|
2258
|
+
}
|
2259
|
+
.handsontable .on-moving--columns.show-ui .ht__manualColumnMove--guideline,
|
2260
|
+
.handsontable .on-moving--columns .ht__manualColumnMove--backlight, .handsontable.on-moving--columns.show-ui .ht__manualColumnMove--guideline,
|
2261
|
+
.handsontable.on-moving--columns .ht__manualColumnMove--backlight {
|
2262
|
+
display: block;
|
2263
|
+
}
|
2264
|
+
|
2265
|
+
.handsontable .wtHider {
|
2266
|
+
position: relative;
|
2267
|
+
}
|
2268
|
+
.handsontable .ht__manualRowMove.after-selection--rows tbody th.ht__highlight, .handsontable.ht__manualRowMove.after-selection--rows tbody th.ht__highlight {
|
2269
|
+
cursor: move;
|
2270
|
+
cursor: -moz-grab;
|
2271
|
+
cursor: -webkit-grab;
|
2272
|
+
cursor: grab;
|
2273
|
+
}
|
2274
|
+
.handsontable .ht__manualRowMove.on-moving--rows *,
|
2275
|
+
.handsontable .ht__manualRowMove.on-moving--rows tbody th.ht__highlight, .handsontable.ht__manualRowMove.on-moving--rows *,
|
2276
|
+
.handsontable.ht__manualRowMove.on-moving--rows tbody th.ht__highlight {
|
2277
|
+
cursor: move;
|
2278
|
+
cursor: -moz-grabbing;
|
2279
|
+
cursor: -webkit-grabbing;
|
2280
|
+
cursor: grabbing;
|
2281
|
+
}
|
2282
|
+
.handsontable .ht__manualRowMove.on-moving--rows .manualRowResizer, .handsontable.ht__manualRowMove.on-moving--rows .manualRowResizer {
|
2283
|
+
display: none;
|
2284
|
+
}
|
2285
|
+
.handsontable .ht__manualRowMove--guideline, .handsontable .ht__manualRowMove--backlight, .handsontable.ht__manualRowMove--guideline, .handsontable.ht__manualRowMove--backlight {
|
2286
|
+
position: absolute;
|
2287
|
+
width: 100%;
|
2288
|
+
display: none;
|
2289
|
+
}
|
2290
|
+
.handsontable .ht__manualRowMove--guideline, .handsontable.ht__manualRowMove--guideline {
|
2291
|
+
height: 1px;
|
2292
|
+
left: 0;
|
2293
|
+
margin-top: -0.5px;
|
2294
|
+
z-index: 205;
|
2295
|
+
background: var(--ht-move-indicator-color);
|
2296
|
+
}
|
2297
|
+
.handsontable .ht__manualRowMove--backlight, .handsontable.ht__manualRowMove--backlight {
|
2298
|
+
display: none;
|
2299
|
+
z-index: 205;
|
2300
|
+
pointer-events: none;
|
2301
|
+
background: var(--ht-move-backlight-color);
|
2302
|
+
}
|
2303
|
+
.handsontable .on-moving--rows.show-ui .ht__manualRowMove--guideline,
|
2304
|
+
.handsontable .on-moving--rows .ht__manualRowMove--backlight, .handsontable.on-moving--rows.show-ui .ht__manualRowMove--guideline,
|
2305
|
+
.handsontable.on-moving--rows .ht__manualRowMove--backlight {
|
2306
|
+
display: block;
|
2307
|
+
}
|