@odoo/o-spreadsheet 19.5.0-alpha.0 → 19.5.0-alpha.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/o_spreadsheet.cjs +54635 -52850
- package/dist/o_spreadsheet.css +95 -44
- package/dist/o_spreadsheet.esm.js +54380 -52595
- package/dist/o_spreadsheet.iife.js +54407 -52622
- package/dist/o_spreadsheet.min.iife.js +403 -403
- package/dist/o_spreadsheet.xml +290 -167
- package/dist/types/actions/action.d.ts +1 -7
- package/dist/types/actions/data_actions.d.ts +1 -0
- package/dist/types/actions/menu_items_actions.d.ts +2 -0
- package/dist/types/clipboard_handlers/default_clipboard.d.ts +1 -1
- package/dist/types/collaborative/ot/ot_helpers.d.ts +3 -1
- package/dist/types/components/autofill/autofill.d.ts +3 -0
- package/dist/types/{plugins/ui_feature/autofill.d.ts → components/autofill/autofill_store.d.ts} +7 -12
- package/dist/types/components/autofill/table_autofill_store.d.ts +6 -0
- package/dist/types/components/border_editor/border_editor_widget.d.ts +1 -0
- package/dist/types/components/clickable_cells_overlay/clickable_cells_overlay.d.ts +20 -0
- package/dist/types/components/collaborative_client_tag/collaborative_client_tag.d.ts +2 -0
- package/dist/types/components/composer/composer/abstract_composer_store.d.ts +3 -2
- package/dist/types/components/composer/composer/composer.d.ts +2 -1
- package/dist/types/components/composer/grid_composer/grid_composer.d.ts +1 -0
- package/dist/types/components/dashboard/clickable_cell_store.d.ts +1 -0
- package/dist/types/components/dashboard/dashboard.d.ts +7 -12
- package/dist/types/components/error_tooltip/error_tooltip.d.ts +2 -0
- package/dist/types/components/figures/chart/chartJs/chartjs_geo_projection_plugin.d.ts +12 -0
- package/dist/types/components/figures/chart/gauge/gauge_chart_component.d.ts +1 -0
- package/dist/types/components/figures/chart/scorecard/chart_scorecard.d.ts +3 -0
- package/dist/types/components/figures/figure/figure.d.ts +8 -9
- package/dist/types/components/figures/figure_carousel/figure_carousel.d.ts +7 -2
- package/dist/types/components/figures/figure_chart/figure_chart.d.ts +1 -2
- package/dist/types/components/figures/figure_container/figure_container.d.ts +4 -2
- package/dist/types/components/figures/figure_image/figure_image.d.ts +1 -2
- package/dist/types/components/filters/filter_menu/filter_menu.d.ts +1 -0
- package/dist/types/components/grid/grid.d.ts +8 -0
- package/dist/types/components/grid_add_rows_footer/grid_add_rows_footer.d.ts +1 -0
- package/dist/types/components/grid_overlay/grid_overlay.d.ts +6 -4
- package/dist/types/components/grid_popover/grid_popover.d.ts +1 -0
- package/dist/types/components/header_group/header_group_container.d.ts +2 -0
- package/dist/types/components/headers_overlay/headers_overlay.d.ts +3 -0
- package/dist/types/components/headers_overlay/unhide_headers.d.ts +4 -0
- package/dist/types/components/helpers/dom_helpers.d.ts +2 -0
- package/dist/types/components/helpers/figure_snap_helper.d.ts +3 -3
- package/dist/types/components/helpers/wheel_hook.d.ts +1 -1
- package/dist/types/components/helpers/zoom.d.ts +1 -5
- package/dist/types/components/highlight/border/border.d.ts +2 -0
- package/dist/types/components/highlight/corner/corner.d.ts +1 -0
- package/dist/types/components/highlight/highlight/highlight.d.ts +3 -0
- package/dist/types/components/link/link_display/link_display.d.ts +1 -0
- package/dist/types/components/link/link_editor/link_editor.d.ts +1 -0
- package/dist/types/components/paint_format_button/paint_format_store.d.ts +1 -1
- package/dist/types/components/popover/cell_popover_store.d.ts +2 -1
- package/dist/types/components/props_validation.d.ts +7 -7
- package/dist/types/components/scrollbar/scrollbar_horizontal.d.ts +3 -0
- package/dist/types/components/scrollbar/scrollbar_vertical.d.ts +5 -1
- package/dist/types/components/selection_input/selection_input_store.d.ts +1 -1
- package/dist/types/components/side_panel/carousel_panel/carousel_panel.d.ts +20 -2
- package/dist/types/components/side_panel/chart/building_blocks/chart_title/chart_title.d.ts +1 -0
- package/dist/types/components/side_panel/chart/chart_type_picker/chart_type_picker.d.ts +5 -18
- package/dist/types/components/side_panel/chart/chart_type_picker_popover/chart_type_picker_popover.d.ts +64 -0
- package/dist/types/components/side_panel/chart/common.d.ts +1 -1
- package/dist/types/components/side_panel/conditional_formatting/cf_editor/cell_is_rule_editor.d.ts +1 -1
- package/dist/types/components/side_panel/conditional_formatting/cf_editor/color_scale_rule_editor.d.ts +1 -1
- package/dist/types/components/side_panel/conditional_formatting/cf_editor/color_scale_rule_editor_threshold.d.ts +1 -1
- package/dist/types/components/side_panel/conditional_formatting/cf_editor/data_bar_rule_editor.d.ts +1 -1
- package/dist/types/components/side_panel/conditional_formatting/cf_editor/icon_set_rule_editor.d.ts +1 -1
- package/dist/types/components/side_panel/criterion_form/calendar_button/calendar_button.d.ts +13 -0
- package/dist/types/components/side_panel/criterion_form/date_criterion/date_criterion.d.ts +2 -0
- package/dist/types/components/side_panel/criterion_form/double_input_criterion/double_input_criterion.d.ts +3 -0
- package/dist/types/components/side_panel/data_sources_cleanup/data_sources_cleanup.d.ts +28 -0
- package/dist/types/components/side_panel/data_sources_cleanup/data_sources_cleanup_store.d.ts +13 -0
- package/dist/types/components/side_panel/find_and_replace/find_and_replace_store.d.ts +1 -0
- package/dist/types/components/side_panel/pivot/pivot_layout_configurator/pivot_layout_configurator.d.ts +0 -2
- package/dist/types/components/side_panel/pivot/pivot_side_panel/pivot_side_panel_store.d.ts +1 -0
- package/dist/types/components/side_panel/remove_duplicates/remove_duplicates.d.ts +3 -10
- package/dist/types/components/side_panel/side_panel/side_panel_store.d.ts +1 -1
- package/dist/types/components/side_panel/split_to_columns_panel/split_to_columns_panel.d.ts +4 -11
- package/dist/types/components/side_panel/split_to_columns_panel/split_to_columns_store.d.ts +33 -0
- package/dist/types/components/small_bottom_bar/small_bottom_bar.d.ts +1 -0
- package/dist/types/components/spreadsheet/spreadsheet.d.ts +2 -0
- package/dist/types/components/standalone_grid_canvas/standalone_grid_canvas.d.ts +2 -1
- package/dist/types/components/standalone_viewport/standalone_viewport.d.ts +56 -0
- package/dist/types/components/standalone_viewport/standalone_viewport_store.d.ts +28 -0
- package/dist/types/components/tables/hovered_table_store.d.ts +3 -6
- package/dist/types/components/tables/table_resizer/table_resizer.d.ts +1 -0
- package/dist/types/components/top_bar/zoom_editor/zoom_editor.d.ts +2 -1
- package/dist/types/constants.d.ts +4 -0
- package/dist/types/formulas/code_builder.d.ts +2 -1
- package/dist/types/formulas/compiler.d.ts +7 -0
- package/dist/types/functions/create_compute_function.d.ts +4 -3
- package/dist/types/functions/function_registry.d.ts +1 -5
- package/dist/types/functions/helper_matrices.d.ts +1 -0
- package/dist/types/functions/helper_statistical.d.ts +6 -0
- package/dist/types/functions/module_array.d.ts +41 -23
- package/dist/types/functions/module_database.d.ts +18 -6
- package/dist/types/functions/module_date.d.ts +70 -22
- package/dist/types/functions/module_engineering.d.ts +3 -1
- package/dist/types/functions/module_filter.d.ts +2 -2
- package/dist/types/functions/module_financial.d.ts +105 -35
- package/dist/types/functions/module_info.d.ts +33 -11
- package/dist/types/functions/module_logical.d.ts +16 -8
- package/dist/types/functions/module_lookup.d.ts +23 -15
- package/dist/types/functions/module_math.d.ts +125 -43
- package/dist/types/functions/module_operators.d.ts +7 -3
- package/dist/types/functions/module_statistical.d.ts +78 -22
- package/dist/types/functions/module_text.d.ts +70 -24
- package/dist/types/functions/module_web.d.ts +3 -1
- package/dist/types/helpers/carousel_helpers.d.ts +8 -3
- package/dist/types/helpers/figures/chart.d.ts +2 -0
- package/dist/types/helpers/figures/charts/chart_common.d.ts +0 -2
- package/dist/types/helpers/figures/charts/scorecard_chart_config_builder.d.ts +2 -0
- package/dist/types/helpers/figures/figure/figure.d.ts +3 -2
- package/dist/types/helpers/internal_viewport.d.ts +20 -10
- package/dist/types/helpers/misc.d.ts +2 -0
- package/dist/types/helpers/pivot/pivot_helpers.d.ts +2 -2
- package/dist/types/helpers/pivot/pivot_highlight.d.ts +2 -2
- package/dist/types/helpers/rectangle.d.ts +4 -0
- package/dist/types/helpers/text_helper.d.ts +6 -1
- package/dist/types/helpers/ui/split_to_columns_interactive.d.ts +1 -1
- package/dist/types/helpers/viewport_collection.d.ts +51 -21
- package/dist/types/helpers/zones.d.ts +1 -0
- package/dist/types/index.d.ts +29 -3
- package/dist/types/model.d.ts +1 -0
- package/dist/types/plugins/core/carousel.d.ts +8 -4
- package/dist/types/plugins/core/cell.d.ts +1 -0
- package/dist/types/plugins/core/chart.d.ts +2 -0
- package/dist/types/plugins/core/conditional_format.d.ts +2 -0
- package/dist/types/plugins/core/data_validation.d.ts +2 -0
- package/dist/types/plugins/core/formulas_provider.d.ts +8 -0
- package/dist/types/plugins/core/pivot.d.ts +1 -0
- package/dist/types/plugins/core/squisher.d.ts +1 -0
- package/dist/types/plugins/core_plugin.d.ts +7 -3
- package/dist/types/plugins/ui_core_views/cell_evaluation/evaluation_plugin.d.ts +10 -3
- package/dist/types/plugins/ui_core_views/pivot_ui.d.ts +3 -0
- package/dist/types/plugins/ui_feature/collaborative.d.ts +2 -1
- package/dist/types/plugins/ui_feature/ui_options.d.ts +1 -7
- package/dist/types/plugins/ui_feature/ui_sheet.d.ts +2 -1
- package/dist/types/plugins/ui_stateful/carousel_ui.d.ts +2 -2
- package/dist/types/plugins/{ui_feature → ui_stateful}/figure.d.ts +4 -0
- package/dist/types/plugins/ui_stateful/filter_evaluation.d.ts +2 -3
- package/dist/types/plugins/ui_stateful/header_positions.d.ts +2 -1
- package/dist/types/registries/chart_registry.d.ts +3 -0
- package/dist/types/registries/data_source_registry.d.ts +15 -0
- package/dist/types/registries/figures_registry.d.ts +4 -1
- package/dist/types/store_engine/dependency_container.d.ts +5 -0
- package/dist/types/store_engine/store_hooks.d.ts +6 -0
- package/dist/types/store_engine/store_registries.d.ts +4 -0
- package/dist/types/stores/array_formula_highlight.d.ts +1 -1
- package/dist/types/{plugins/ui_feature/automatic_sum.d.ts → stores/automatic_sum_store.d.ts} +5 -4
- package/dist/types/stores/checkbox_toggle.d.ts +9 -0
- package/dist/types/stores/client_focus_store.d.ts +1 -0
- package/dist/types/stores/data_cleanup_store.d.ts +31 -0
- package/dist/types/stores/main_viewport_store.d.ts +11 -0
- package/dist/types/stores/spreadsheet_store.d.ts +1 -1
- package/dist/types/stores/table_resize_store.d.ts +6 -0
- package/dist/types/stores/trim_whitespace_store.d.ts +9 -0
- package/dist/types/stores/viewports_store.d.ts +87 -0
- package/dist/types/stores/zoom_store.d.ts +14 -0
- package/dist/types/types/chart/radar_chart.d.ts +1 -1
- package/dist/types/types/chart/scorecard_chart.d.ts +2 -0
- package/dist/types/types/commands.d.ts +25 -58
- package/dist/types/types/core_getters.d.ts +3 -1
- package/dist/types/types/figure.d.ts +26 -3
- package/dist/types/types/functions.d.ts +14 -4
- package/dist/types/types/getters.d.ts +28 -11
- package/dist/types/types/misc.d.ts +19 -1
- package/dist/types/types/range.d.ts +1 -0
- package/dist/types/types/rendering.d.ts +1 -0
- package/dist/types/types/store_engine.d.ts +10 -3
- package/package.json +2 -2
- package/dist/types/plugins/ui_feature/checkbox_toggle.d.ts +0 -9
- package/dist/types/plugins/ui_feature/data_cleanup.d.ts +0 -16
- package/dist/types/plugins/ui_feature/split_to_columns.d.ts +0 -21
- package/dist/types/plugins/ui_feature/table_autofill.d.ts +0 -6
- package/dist/types/plugins/ui_feature/table_resize_ui.d.ts +0 -6
- package/dist/types/plugins/ui_stateful/sheetview.d.ts +0 -123
- /package/dist/types/plugins/{ui_feature → ui_stateful}/cell_computed_style.d.ts +0 -0
- /package/dist/types/plugins/{ui_feature → ui_stateful}/header_visibility_ui.d.ts +0 -0
- /package/dist/types/plugins/{ui_feature → ui_stateful}/table_computed_style.d.ts +0 -0
package/dist/o_spreadsheet.css
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
/*
|
|
3
3
|
* This file is generated by o-spreadsheet build tools. Do not edit it.
|
|
4
4
|
* @see https://github.com/odoo/o-spreadsheet
|
|
5
|
-
* @version 19.5.0-alpha.
|
|
6
|
-
* @date 2026-
|
|
7
|
-
* @hash
|
|
5
|
+
* @version 19.5.0-alpha.10
|
|
6
|
+
* @date 2026-08-10T12:33:48.907Z
|
|
7
|
+
* @hash 39a6fbc
|
|
8
8
|
*/
|
|
9
9
|
:root {
|
|
10
10
|
--os-gray-100: light-dark(#f9fafb, #1b1d26);
|
|
@@ -469,6 +469,40 @@
|
|
|
469
469
|
}
|
|
470
470
|
}
|
|
471
471
|
|
|
472
|
+
/* Originates from src/components/standalone_viewport/standalone_viewport.css */
|
|
473
|
+
.o-spreadsheet .o-standalone-viewport {
|
|
474
|
+
.o-col-resizer {
|
|
475
|
+
margin-left: -5px;
|
|
476
|
+
width: 11px;
|
|
477
|
+
cursor: e-resize;
|
|
478
|
+
|
|
479
|
+
.o-col-resizer-handle {
|
|
480
|
+
display: none;
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
&:hover,
|
|
484
|
+
&.dragging {
|
|
485
|
+
.o-col-resizer-handle {
|
|
486
|
+
margin-left: 5px;
|
|
487
|
+
display: block;
|
|
488
|
+
width: 2px;
|
|
489
|
+
background-color: var(--os-selection-border-color);
|
|
490
|
+
}
|
|
491
|
+
}
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
&:has(.o-col-resizer.dragging) {
|
|
495
|
+
.o-grid-overlay {
|
|
496
|
+
cursor: e-resize !important;
|
|
497
|
+
}
|
|
498
|
+
.o-col-resizer:hover:not(.dragging) {
|
|
499
|
+
.o-col-resizer-handle {
|
|
500
|
+
display: none;
|
|
501
|
+
}
|
|
502
|
+
}
|
|
503
|
+
}
|
|
504
|
+
}
|
|
505
|
+
|
|
472
506
|
/* Originates from src/components/spreadsheet_print/spreadsheet_print.css */
|
|
473
507
|
.o-spreadsheet .o-spreadsheet-print {
|
|
474
508
|
.o-print-header {
|
|
@@ -725,12 +759,12 @@
|
|
|
725
759
|
border-bottom: 1px solid var(--os-canvas-border-color);
|
|
726
760
|
border-right: 1px solid var(--os-canvas-border-color);
|
|
727
761
|
}
|
|
762
|
+
}
|
|
728
763
|
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
}
|
|
764
|
+
.o-grid-overlay {
|
|
765
|
+
position: absolute;
|
|
766
|
+
outline: none;
|
|
767
|
+
z-index: var(--os-components-importance-grid-overlay);
|
|
734
768
|
}
|
|
735
769
|
|
|
736
770
|
.o-button {
|
|
@@ -1331,12 +1365,29 @@
|
|
|
1331
1365
|
background-color: var(--os-alert-danger-bg);
|
|
1332
1366
|
}
|
|
1333
1367
|
.error-icon {
|
|
1334
|
-
right:
|
|
1335
|
-
top:
|
|
1368
|
+
right: 8px;
|
|
1369
|
+
top: 0;
|
|
1370
|
+
bottom: 0;
|
|
1371
|
+
pointer-events: none;
|
|
1336
1372
|
}
|
|
1337
1373
|
}
|
|
1338
1374
|
}
|
|
1339
1375
|
|
|
1376
|
+
/* Originates from src/components/side_panel/criterion_form/calendar_button/calendar_button.css */
|
|
1377
|
+
.o-spreadsheet {
|
|
1378
|
+
.o-calendar-button {
|
|
1379
|
+
position: relative;
|
|
1380
|
+
display: inline-block;
|
|
1381
|
+
}
|
|
1382
|
+
.o-calendar-input {
|
|
1383
|
+
position: absolute;
|
|
1384
|
+
pointer-events: none;
|
|
1385
|
+
right: 0;
|
|
1386
|
+
bottom: 0;
|
|
1387
|
+
visibility: hidden;
|
|
1388
|
+
}
|
|
1389
|
+
}
|
|
1390
|
+
|
|
1340
1391
|
/* Originates from src/components/side_panel/conditional_formatting/cf_preview/cf_preview.css */
|
|
1341
1392
|
.o-spreadsheet {
|
|
1342
1393
|
.o-cf-preview {
|
|
@@ -1676,22 +1727,8 @@
|
|
|
1676
1727
|
}
|
|
1677
1728
|
}
|
|
1678
1729
|
|
|
1679
|
-
/* Originates from src/components/side_panel/chart/
|
|
1730
|
+
/* Originates from src/components/side_panel/chart/chart_type_picker_popover/chart_type_picker_popover.css */
|
|
1680
1731
|
.o-spreadsheet {
|
|
1681
|
-
.o-section .o-select.o-type-selector {
|
|
1682
|
-
height: 30px;
|
|
1683
|
-
padding-left: 35px;
|
|
1684
|
-
padding-top: 5px;
|
|
1685
|
-
}
|
|
1686
|
-
.o-type-selector-preview {
|
|
1687
|
-
left: 5px;
|
|
1688
|
-
top: 3px;
|
|
1689
|
-
.o-chart-preview {
|
|
1690
|
-
width: 24px;
|
|
1691
|
-
height: 24px;
|
|
1692
|
-
}
|
|
1693
|
-
}
|
|
1694
|
-
|
|
1695
1732
|
.o-popover .o-chart-select-popover {
|
|
1696
1733
|
.o-chart-type-item {
|
|
1697
1734
|
cursor: pointer;
|
|
@@ -1711,6 +1748,23 @@
|
|
|
1711
1748
|
}
|
|
1712
1749
|
}
|
|
1713
1750
|
|
|
1751
|
+
/* Originates from src/components/side_panel/chart/chart_type_picker/chart_type_picker.css */
|
|
1752
|
+
.o-spreadsheet {
|
|
1753
|
+
.o-section .o-select.o-type-selector {
|
|
1754
|
+
height: 30px;
|
|
1755
|
+
padding-left: 35px;
|
|
1756
|
+
padding-top: 5px;
|
|
1757
|
+
}
|
|
1758
|
+
.o-type-selector-preview {
|
|
1759
|
+
left: 5px;
|
|
1760
|
+
top: 3px;
|
|
1761
|
+
.o-chart-preview {
|
|
1762
|
+
width: 24px;
|
|
1763
|
+
height: 24px;
|
|
1764
|
+
}
|
|
1765
|
+
}
|
|
1766
|
+
}
|
|
1767
|
+
|
|
1714
1768
|
/* Originates from src/components/side_panel/chart/building_blocks/text_styler/text_styler.css */
|
|
1715
1769
|
.o-spreadsheet {
|
|
1716
1770
|
.o-chart-title-designer {
|
|
@@ -1803,10 +1857,13 @@
|
|
|
1803
1857
|
/* Originates from src/components/side_panel/carousel_panel/carousel_panel.css */
|
|
1804
1858
|
.o-spreadsheet .o-carousel-panel {
|
|
1805
1859
|
.o-carousel-preview {
|
|
1806
|
-
height: 60px;
|
|
1807
1860
|
border-left: 5px solid transparent;
|
|
1808
1861
|
background-color: var(--os-white-bg);
|
|
1809
1862
|
|
|
1863
|
+
.o-preview-content {
|
|
1864
|
+
height: 60px;
|
|
1865
|
+
}
|
|
1866
|
+
|
|
1810
1867
|
&:not(:hover):not(.o-dragging) .o-drag-handle {
|
|
1811
1868
|
display: none !important;
|
|
1812
1869
|
}
|
|
@@ -2636,17 +2693,10 @@
|
|
|
2636
2693
|
z-index: 1;
|
|
2637
2694
|
|
|
2638
2695
|
overflow: hidden;
|
|
2639
|
-
padding-left: 4px; /* Align with MIN_CELL_TEXT_MARGIN */
|
|
2640
|
-
|
|
2641
|
-
border: 1px solid transparent;
|
|
2642
|
-
|
|
2643
|
-
&.o-carousel-header-floating {
|
|
2644
|
-
border: 1px solid var(--os-figure-border-color);
|
|
2645
|
-
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
|
2646
|
-
}
|
|
2647
2696
|
|
|
2648
2697
|
.o-carousel-title {
|
|
2649
2698
|
max-width: 60%;
|
|
2699
|
+
font-weight: 500;
|
|
2650
2700
|
}
|
|
2651
2701
|
|
|
2652
2702
|
.o-carousel-tabs {
|
|
@@ -2698,6 +2748,7 @@
|
|
|
2698
2748
|
div.o-figure {
|
|
2699
2749
|
color-scheme: light;
|
|
2700
2750
|
color: var(--os-text-body);
|
|
2751
|
+
border: 0px solid var(--os-figure-border-color);
|
|
2701
2752
|
|
|
2702
2753
|
position: absolute;
|
|
2703
2754
|
width: 100%;
|
|
@@ -2707,17 +2758,21 @@
|
|
|
2707
2758
|
&:focus {
|
|
2708
2759
|
outline: none;
|
|
2709
2760
|
}
|
|
2710
|
-
}
|
|
2711
2761
|
|
|
2712
|
-
|
|
2713
|
-
|
|
2714
|
-
|
|
2762
|
+
&.o-figure-shadow {
|
|
2763
|
+
box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
|
|
2764
|
+
}
|
|
2715
2765
|
|
|
2716
|
-
&.o-
|
|
2717
|
-
border-
|
|
2766
|
+
&.o-figure-rounded {
|
|
2767
|
+
border-radius: 6px;
|
|
2718
2768
|
}
|
|
2719
2769
|
}
|
|
2720
2770
|
|
|
2771
|
+
.o-figure-selection-border {
|
|
2772
|
+
z-index: 1;
|
|
2773
|
+
border: 2px solid var(--os-selection-border-color);
|
|
2774
|
+
}
|
|
2775
|
+
|
|
2721
2776
|
.o-figure-wrapper {
|
|
2722
2777
|
position: absolute;
|
|
2723
2778
|
box-sizing: content-box;
|
|
@@ -2864,10 +2919,6 @@
|
|
|
2864
2919
|
position: absolute;
|
|
2865
2920
|
cursor: pointer;
|
|
2866
2921
|
}
|
|
2867
|
-
|
|
2868
|
-
.o-grid.o-dashboard-grid {
|
|
2869
|
-
background-color: transparent;
|
|
2870
|
-
}
|
|
2871
2922
|
}
|
|
2872
2923
|
|
|
2873
2924
|
/* Originates from src/components/dashboard/clickable_cell_sort_icon/clickable_cell_sort_icon.css */
|