@elastic/eui 95.10.0 → 95.11.0
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/eui_theme_dark.css +0 -923
- package/dist/eui_theme_dark.min.css +1 -1
- package/dist/eui_theme_light.css +0 -923
- package/dist/eui_theme_light.min.css +1 -1
- package/es/components/basic_table/basic_table.js +4 -3
- package/es/components/basic_table/collapsed_item_actions.js +24 -31
- package/es/components/datagrid/body/cell/data_grid_cell.js +98 -86
- package/es/components/datagrid/body/cell/data_grid_cell.styles.js +107 -0
- package/es/components/datagrid/body/cell/data_grid_cell_actions.js +13 -3
- package/es/components/datagrid/body/cell/data_grid_cell_actions.styles.js +33 -0
- package/es/components/datagrid/body/cell/data_grid_cell_popover.js +21 -12
- package/es/components/datagrid/body/cell/data_grid_cell_popover.styles.js +19 -0
- package/es/components/datagrid/body/cell/focus_utils.js +18 -20
- package/es/components/datagrid/body/data_grid_body.js +20 -4
- package/es/components/datagrid/body/data_grid_body.styles.js +26 -0
- package/es/components/datagrid/body/data_grid_body_custom.js +18 -6
- package/es/components/datagrid/body/data_grid_body_virtualized.js +18 -6
- package/es/components/datagrid/body/footer/data_grid_footer.styles.js +24 -0
- package/es/components/datagrid/body/footer/data_grid_footer_row.js +10 -5
- package/es/components/datagrid/body/header/column_actions.js +16 -4
- package/es/components/datagrid/body/header/data_grid_column_resizer.js +14 -7
- package/es/components/datagrid/body/header/data_grid_column_resizer.styles.js +36 -0
- package/es/components/datagrid/body/header/data_grid_control_header_cell.js +1 -3
- package/es/components/datagrid/body/header/data_grid_header_cell.js +40 -66
- package/es/components/datagrid/body/header/data_grid_header_cell.styles.js +29 -0
- package/es/components/datagrid/body/header/data_grid_header_cell_wrapper.js +4 -1
- package/es/components/datagrid/body/header/data_grid_header_cell_wrapper.styles.js +27 -0
- package/es/components/datagrid/body/header/data_grid_header_row.js +8 -2
- package/es/components/datagrid/body/header/data_grid_header_row.styles.js +21 -0
- package/es/components/datagrid/controls/column_selector.js +17 -8
- package/es/components/datagrid/controls/column_selector.styles.js +22 -0
- package/es/components/datagrid/controls/column_sorting.js +7 -2
- package/es/components/datagrid/controls/column_sorting.styles.js +35 -0
- package/es/components/datagrid/controls/column_sorting_draggable.js +19 -14
- package/es/components/datagrid/controls/data_grid_toolbar.js +8 -1
- package/es/components/datagrid/controls/data_grid_toolbar.styles.js +18 -0
- package/es/components/datagrid/controls/data_grid_toolbar_control.js +27 -27
- package/es/components/datagrid/controls/display_selector.js +14 -3
- package/es/components/datagrid/controls/fullscreen_selector.js +8 -5
- package/es/components/datagrid/controls/fullscreen_selector.styles.js +20 -0
- package/es/components/datagrid/controls/keyboard_shortcuts.js +7 -3
- package/es/components/datagrid/controls/keyboard_shortcuts.styles.js +18 -0
- package/es/components/datagrid/data_grid.a11y.js +1 -0
- package/es/components/datagrid/data_grid.js +16 -8
- package/es/components/datagrid/data_grid.stories.utils.js +1386 -0
- package/es/components/datagrid/data_grid.styles.js +88 -0
- package/es/components/datagrid/{utils → pagination}/data_grid_pagination.js +30 -30
- package/es/components/datagrid/pagination/data_grid_pagination.styles.js +16 -0
- package/es/components/datagrid/pagination/index.js +9 -0
- package/es/components/datagrid/utils/row_heights.js +13 -15
- package/es/components/datagrid/utils/scrolling.js +14 -7
- package/es/components/datagrid/utils/scrolling.styles.js +30 -0
- package/es/components/flyout/flyout_resizable.js +6 -2
- package/es/components/flyout/flyout_resizable.styles.js +34 -5
- package/es/components/popover/popover.js +1 -1
- package/es/components/text/text.js +25 -9
- package/es/components/text/text_align.js +19 -6
- package/es/components/text/text_color.js +14 -11
- package/es/components/text/types.js +1 -0
- package/eui.d.ts +581 -108
- package/i18ntokens.json +392 -356
- package/lib/components/basic_table/basic_table.js +4 -3
- package/lib/components/basic_table/collapsed_item_actions.js +23 -30
- package/lib/components/datagrid/body/cell/data_grid_cell.js +95 -83
- package/lib/components/datagrid/body/cell/data_grid_cell.styles.js +111 -0
- package/lib/components/datagrid/body/cell/data_grid_cell_actions.js +13 -3
- package/lib/components/datagrid/body/cell/data_grid_cell_actions.styles.js +38 -0
- package/lib/components/datagrid/body/cell/data_grid_cell_popover.js +20 -11
- package/lib/components/datagrid/body/cell/data_grid_cell_popover.styles.js +24 -0
- package/lib/components/datagrid/body/cell/focus_utils.js +17 -19
- package/lib/components/datagrid/body/data_grid_body.js +20 -4
- package/lib/components/datagrid/body/data_grid_body.styles.js +30 -0
- package/lib/components/datagrid/body/data_grid_body_custom.js +18 -6
- package/lib/components/datagrid/body/data_grid_body_virtualized.js +18 -6
- package/lib/components/datagrid/body/footer/data_grid_footer.styles.js +30 -0
- package/lib/components/datagrid/body/footer/data_grid_footer_row.js +11 -6
- package/lib/components/datagrid/body/header/column_actions.js +16 -4
- package/lib/components/datagrid/body/header/data_grid_column_resizer.js +14 -7
- package/lib/components/datagrid/body/header/data_grid_column_resizer.styles.js +39 -0
- package/lib/components/datagrid/body/header/data_grid_control_header_cell.js +1 -3
- package/lib/components/datagrid/body/header/data_grid_header_cell.js +47 -74
- package/lib/components/datagrid/body/header/data_grid_header_cell.styles.js +34 -0
- package/lib/components/datagrid/body/header/data_grid_header_cell_wrapper.js +3 -0
- package/lib/components/datagrid/body/header/data_grid_header_cell_wrapper.styles.js +32 -0
- package/lib/components/datagrid/body/header/data_grid_header_row.js +8 -2
- package/lib/components/datagrid/body/header/data_grid_header_row.styles.js +27 -0
- package/lib/components/datagrid/controls/column_selector.js +17 -8
- package/lib/components/datagrid/controls/column_selector.styles.js +28 -0
- package/lib/components/datagrid/controls/column_sorting.js +7 -2
- package/lib/components/datagrid/controls/column_sorting.styles.js +41 -0
- package/lib/components/datagrid/controls/column_sorting_draggable.js +19 -14
- package/lib/components/datagrid/controls/data_grid_toolbar.js +8 -1
- package/lib/components/datagrid/controls/data_grid_toolbar.styles.js +24 -0
- package/lib/components/datagrid/controls/data_grid_toolbar_control.js +27 -27
- package/lib/components/datagrid/controls/display_selector.js +13 -2
- package/lib/components/datagrid/controls/fullscreen_selector.js +7 -4
- package/lib/components/datagrid/controls/fullscreen_selector.styles.js +26 -0
- package/lib/components/datagrid/controls/keyboard_shortcuts.js +6 -2
- package/lib/components/datagrid/controls/keyboard_shortcuts.styles.js +24 -0
- package/lib/components/datagrid/data_grid.a11y.js +1 -0
- package/lib/components/datagrid/data_grid.js +15 -7
- package/lib/components/datagrid/data_grid.stories.utils.js +1391 -0
- package/lib/components/datagrid/data_grid.styles.js +94 -0
- package/lib/components/datagrid/{utils → pagination}/data_grid_pagination.js +30 -30
- package/lib/components/datagrid/pagination/data_grid_pagination.styles.js +22 -0
- package/lib/components/datagrid/pagination/index.js +18 -0
- package/lib/components/datagrid/utils/row_heights.js +13 -14
- package/lib/components/datagrid/utils/scrolling.js +14 -7
- package/lib/components/datagrid/utils/scrolling.styles.js +36 -0
- package/lib/components/flyout/flyout_resizable.js +6 -2
- package/lib/components/flyout/flyout_resizable.styles.js +34 -5
- package/lib/components/popover/popover.js +1 -1
- package/lib/components/text/text.js +25 -9
- package/lib/components/text/text_align.js +19 -6
- package/lib/components/text/text_color.js +14 -11
- package/lib/components/text/types.js +5 -0
- package/optimize/es/components/basic_table/basic_table.js +4 -3
- package/optimize/es/components/basic_table/collapsed_item_actions.js +24 -31
- package/optimize/es/components/datagrid/body/cell/data_grid_cell.js +87 -81
- package/optimize/es/components/datagrid/body/cell/data_grid_cell.styles.js +107 -0
- package/optimize/es/components/datagrid/body/cell/data_grid_cell_actions.js +13 -3
- package/optimize/es/components/datagrid/body/cell/data_grid_cell_actions.styles.js +33 -0
- package/optimize/es/components/datagrid/body/cell/data_grid_cell_popover.js +21 -12
- package/optimize/es/components/datagrid/body/cell/data_grid_cell_popover.styles.js +19 -0
- package/optimize/es/components/datagrid/body/cell/focus_utils.js +18 -20
- package/optimize/es/components/datagrid/body/data_grid_body.js +9 -2
- package/optimize/es/components/datagrid/body/data_grid_body.styles.js +26 -0
- package/optimize/es/components/datagrid/body/data_grid_body_custom.js +7 -4
- package/optimize/es/components/datagrid/body/data_grid_body_virtualized.js +7 -4
- package/optimize/es/components/datagrid/body/footer/data_grid_footer.styles.js +24 -0
- package/optimize/es/components/datagrid/body/footer/data_grid_footer_row.js +10 -5
- package/optimize/es/components/datagrid/body/header/column_actions.js +16 -4
- package/optimize/es/components/datagrid/body/header/data_grid_column_resizer.js +14 -7
- package/optimize/es/components/datagrid/body/header/data_grid_column_resizer.styles.js +36 -0
- package/optimize/es/components/datagrid/body/header/data_grid_control_header_cell.js +1 -3
- package/optimize/es/components/datagrid/body/header/data_grid_header_cell.js +40 -61
- package/optimize/es/components/datagrid/body/header/data_grid_header_cell.styles.js +29 -0
- package/optimize/es/components/datagrid/body/header/data_grid_header_cell_wrapper.js +4 -1
- package/optimize/es/components/datagrid/body/header/data_grid_header_cell_wrapper.styles.js +27 -0
- package/optimize/es/components/datagrid/body/header/data_grid_header_row.js +8 -2
- package/optimize/es/components/datagrid/body/header/data_grid_header_row.styles.js +21 -0
- package/optimize/es/components/datagrid/controls/column_selector.js +17 -8
- package/optimize/es/components/datagrid/controls/column_selector.styles.js +22 -0
- package/optimize/es/components/datagrid/controls/column_sorting.js +7 -2
- package/optimize/es/components/datagrid/controls/column_sorting.styles.js +35 -0
- package/optimize/es/components/datagrid/controls/column_sorting_draggable.js +19 -14
- package/optimize/es/components/datagrid/controls/data_grid_toolbar.js +8 -1
- package/optimize/es/components/datagrid/controls/data_grid_toolbar.styles.js +18 -0
- package/optimize/es/components/datagrid/controls/data_grid_toolbar_control.js +27 -27
- package/optimize/es/components/datagrid/controls/display_selector.js +14 -3
- package/optimize/es/components/datagrid/controls/fullscreen_selector.js +8 -5
- package/optimize/es/components/datagrid/controls/fullscreen_selector.styles.js +20 -0
- package/optimize/es/components/datagrid/controls/keyboard_shortcuts.js +7 -3
- package/optimize/es/components/datagrid/controls/keyboard_shortcuts.styles.js +18 -0
- package/optimize/es/components/datagrid/data_grid.a11y.js +1 -0
- package/optimize/es/components/datagrid/data_grid.js +16 -8
- package/optimize/es/components/datagrid/data_grid.stories.utils.js +333 -0
- package/optimize/es/components/datagrid/data_grid.styles.js +88 -0
- package/optimize/es/components/datagrid/{utils → pagination}/data_grid_pagination.js +30 -30
- package/optimize/es/components/datagrid/pagination/data_grid_pagination.styles.js +16 -0
- package/optimize/es/components/datagrid/pagination/index.js +9 -0
- package/optimize/es/components/datagrid/utils/row_heights.js +13 -15
- package/optimize/es/components/datagrid/utils/scrolling.js +14 -7
- package/optimize/es/components/datagrid/utils/scrolling.styles.js +30 -0
- package/optimize/es/components/flyout/flyout_resizable.js +6 -2
- package/optimize/es/components/flyout/flyout_resizable.styles.js +34 -5
- package/optimize/es/components/popover/popover.js +1 -1
- package/optimize/es/components/text/text.js +9 -4
- package/optimize/es/components/text/text_align.js +4 -2
- package/optimize/es/components/text/text_color.js +1 -2
- package/optimize/es/components/text/types.js +1 -0
- package/optimize/lib/components/basic_table/basic_table.js +4 -3
- package/optimize/lib/components/basic_table/collapsed_item_actions.js +23 -30
- package/optimize/lib/components/datagrid/body/cell/data_grid_cell.js +84 -78
- package/optimize/lib/components/datagrid/body/cell/data_grid_cell.styles.js +111 -0
- package/optimize/lib/components/datagrid/body/cell/data_grid_cell_actions.js +13 -3
- package/optimize/lib/components/datagrid/body/cell/data_grid_cell_actions.styles.js +39 -0
- package/optimize/lib/components/datagrid/body/cell/data_grid_cell_popover.js +20 -11
- package/optimize/lib/components/datagrid/body/cell/data_grid_cell_popover.styles.js +25 -0
- package/optimize/lib/components/datagrid/body/cell/focus_utils.js +17 -19
- package/optimize/lib/components/datagrid/body/data_grid_body.js +9 -2
- package/optimize/lib/components/datagrid/body/data_grid_body.styles.js +30 -0
- package/optimize/lib/components/datagrid/body/data_grid_body_custom.js +7 -4
- package/optimize/lib/components/datagrid/body/data_grid_body_virtualized.js +7 -4
- package/optimize/lib/components/datagrid/body/footer/data_grid_footer.styles.js +30 -0
- package/optimize/lib/components/datagrid/body/footer/data_grid_footer_row.js +10 -5
- package/optimize/lib/components/datagrid/body/header/column_actions.js +16 -4
- package/optimize/lib/components/datagrid/body/header/data_grid_column_resizer.js +14 -7
- package/optimize/lib/components/datagrid/body/header/data_grid_column_resizer.styles.js +39 -0
- package/optimize/lib/components/datagrid/body/header/data_grid_control_header_cell.js +1 -3
- package/optimize/lib/components/datagrid/body/header/data_grid_header_cell.js +43 -63
- package/optimize/lib/components/datagrid/body/header/data_grid_header_cell.styles.js +34 -0
- package/optimize/lib/components/datagrid/body/header/data_grid_header_cell_wrapper.js +3 -0
- package/optimize/lib/components/datagrid/body/header/data_grid_header_cell_wrapper.styles.js +32 -0
- package/optimize/lib/components/datagrid/body/header/data_grid_header_row.js +8 -2
- package/optimize/lib/components/datagrid/body/header/data_grid_header_row.styles.js +27 -0
- package/optimize/lib/components/datagrid/controls/column_selector.js +17 -8
- package/optimize/lib/components/datagrid/controls/column_selector.styles.js +28 -0
- package/optimize/lib/components/datagrid/controls/column_sorting.js +7 -2
- package/optimize/lib/components/datagrid/controls/column_sorting.styles.js +41 -0
- package/optimize/lib/components/datagrid/controls/column_sorting_draggable.js +19 -14
- package/optimize/lib/components/datagrid/controls/data_grid_toolbar.js +8 -1
- package/optimize/lib/components/datagrid/controls/data_grid_toolbar.styles.js +24 -0
- package/optimize/lib/components/datagrid/controls/data_grid_toolbar_control.js +27 -27
- package/optimize/lib/components/datagrid/controls/display_selector.js +13 -2
- package/optimize/lib/components/datagrid/controls/fullscreen_selector.js +7 -4
- package/optimize/lib/components/datagrid/controls/fullscreen_selector.styles.js +26 -0
- package/optimize/lib/components/datagrid/controls/keyboard_shortcuts.js +6 -2
- package/optimize/lib/components/datagrid/controls/keyboard_shortcuts.styles.js +24 -0
- package/optimize/lib/components/datagrid/data_grid.a11y.js +1 -0
- package/optimize/lib/components/datagrid/data_grid.js +15 -7
- package/optimize/lib/components/datagrid/data_grid.stories.utils.js +341 -0
- package/optimize/lib/components/datagrid/data_grid.styles.js +94 -0
- package/{test-env/components/datagrid/utils → optimize/lib/components/datagrid/pagination}/data_grid_pagination.js +29 -31
- package/optimize/lib/components/datagrid/pagination/data_grid_pagination.styles.js +22 -0
- package/optimize/lib/components/datagrid/pagination/index.js +18 -0
- package/optimize/lib/components/datagrid/utils/row_heights.js +13 -14
- package/optimize/lib/components/datagrid/utils/scrolling.js +14 -7
- package/optimize/lib/components/datagrid/utils/scrolling.styles.js +36 -0
- package/optimize/lib/components/flyout/flyout_resizable.js +6 -2
- package/optimize/lib/components/flyout/flyout_resizable.styles.js +34 -5
- package/optimize/lib/components/popover/popover.js +1 -1
- package/optimize/lib/components/text/text.js +9 -4
- package/optimize/lib/components/text/text_align.js +4 -2
- package/optimize/lib/components/text/text_color.js +1 -2
- package/optimize/lib/components/text/types.js +5 -0
- package/package.json +3 -3
- package/src/themes/amsterdam/theme_dark.scss +0 -7
- package/src/themes/amsterdam/theme_light.scss +0 -7
- package/test-env/components/basic_table/basic_table.js +4 -3
- package/test-env/components/basic_table/collapsed_item_actions.js +23 -30
- package/test-env/components/datagrid/body/cell/data_grid_cell.js +90 -83
- package/test-env/components/datagrid/body/cell/data_grid_cell.styles.js +111 -0
- package/test-env/components/datagrid/body/cell/data_grid_cell_actions.js +13 -3
- package/test-env/components/datagrid/body/cell/data_grid_cell_actions.styles.js +39 -0
- package/test-env/components/datagrid/body/cell/data_grid_cell_popover.js +20 -11
- package/test-env/components/datagrid/body/cell/data_grid_cell_popover.styles.js +25 -0
- package/test-env/components/datagrid/body/cell/focus_utils.js +17 -19
- package/test-env/components/datagrid/body/data_grid_body.js +20 -4
- package/test-env/components/datagrid/body/data_grid_body.styles.js +30 -0
- package/test-env/components/datagrid/body/data_grid_body_custom.js +18 -6
- package/test-env/components/datagrid/body/data_grid_body_virtualized.js +18 -6
- package/test-env/components/datagrid/body/footer/data_grid_footer.styles.js +30 -0
- package/test-env/components/datagrid/body/footer/data_grid_footer_row.js +10 -5
- package/test-env/components/datagrid/body/header/column_actions.js +16 -4
- package/test-env/components/datagrid/body/header/data_grid_column_resizer.js +14 -7
- package/test-env/components/datagrid/body/header/data_grid_column_resizer.styles.js +39 -0
- package/test-env/components/datagrid/body/header/data_grid_control_header_cell.js +1 -3
- package/test-env/components/datagrid/body/header/data_grid_header_cell.js +43 -67
- package/test-env/components/datagrid/body/header/data_grid_header_cell.styles.js +34 -0
- package/test-env/components/datagrid/body/header/data_grid_header_cell_wrapper.js +3 -0
- package/test-env/components/datagrid/body/header/data_grid_header_cell_wrapper.styles.js +32 -0
- package/test-env/components/datagrid/body/header/data_grid_header_row.js +8 -2
- package/test-env/components/datagrid/body/header/data_grid_header_row.styles.js +27 -0
- package/test-env/components/datagrid/controls/column_selector.js +17 -8
- package/test-env/components/datagrid/controls/column_selector.styles.js +28 -0
- package/test-env/components/datagrid/controls/column_sorting.js +7 -2
- package/test-env/components/datagrid/controls/column_sorting.styles.js +41 -0
- package/test-env/components/datagrid/controls/column_sorting_draggable.js +19 -14
- package/test-env/components/datagrid/controls/data_grid_toolbar.js +8 -1
- package/test-env/components/datagrid/controls/data_grid_toolbar.styles.js +24 -0
- package/test-env/components/datagrid/controls/data_grid_toolbar_control.js +27 -27
- package/test-env/components/datagrid/controls/display_selector.js +13 -2
- package/test-env/components/datagrid/controls/fullscreen_selector.js +7 -4
- package/test-env/components/datagrid/controls/fullscreen_selector.styles.js +26 -0
- package/test-env/components/datagrid/controls/keyboard_shortcuts.js +6 -2
- package/test-env/components/datagrid/controls/keyboard_shortcuts.styles.js +24 -0
- package/test-env/components/datagrid/data_grid.a11y.js +1 -0
- package/test-env/components/datagrid/data_grid.js +15 -7
- package/test-env/components/datagrid/data_grid.stories.utils.js +1386 -0
- package/test-env/components/datagrid/data_grid.styles.js +94 -0
- package/{optimize/lib/components/datagrid/utils → test-env/components/datagrid/pagination}/data_grid_pagination.js +29 -31
- package/test-env/components/datagrid/pagination/data_grid_pagination.styles.js +22 -0
- package/test-env/components/datagrid/pagination/index.js +18 -0
- package/test-env/components/datagrid/utils/row_heights.js +13 -14
- package/test-env/components/datagrid/utils/scrolling.js +14 -7
- package/test-env/components/datagrid/utils/scrolling.styles.js +36 -0
- package/test-env/components/flyout/flyout_resizable.js +6 -2
- package/test-env/components/flyout/flyout_resizable.styles.js +34 -5
- package/test-env/components/popover/popover.js +1 -1
- package/test-env/components/text/text.js +25 -9
- package/test-env/components/text/text_align.js +19 -6
- package/test-env/components/text/text_color.js +14 -11
- package/test-env/components/text/types.js +5 -0
- package/src/components/datagrid/_data_grid.scss +0 -121
- package/src/components/datagrid/_data_grid_data_row.scss +0 -303
- package/src/components/datagrid/_index.scss +0 -12
- package/src/components/datagrid/_mixins.scss +0 -84
- package/src/components/datagrid/_variables.scss +0 -11
- package/src/components/datagrid/body/footer/_data_grid_footer_row.scss +0 -47
- package/src/components/datagrid/body/header/_data_grid_column_resizer.scss +0 -48
- package/src/components/datagrid/body/header/_data_grid_header_row.scss +0 -219
- package/src/components/datagrid/controls/_data_grid_column_selector.scss +0 -19
- package/src/components/datagrid/controls/_data_grid_column_sorting.scss +0 -43
- package/src/components/datagrid/controls/_data_grid_display.scss +0 -3
- package/src/components/datagrid/controls/_data_grid_keyboard_shortcuts.scss +0 -11
- package/src/components/datagrid/controls/_data_grid_toolbar.scss +0 -55
- package/src/components/index.scss +0 -3
- package/src/themes/amsterdam/overrides/_data_grid.scss +0 -5
- package/src/themes/amsterdam/overrides/_index.scss +0 -1
package/dist/eui_theme_dark.css
CHANGED
|
@@ -170,927 +170,4 @@ The following files still use the Sass version:
|
|
|
170
170
|
-webkit-transform: translateY(1px);
|
|
171
171
|
transform: translateY(1px);
|
|
172
172
|
}
|
|
173
|
-
}
|
|
174
|
-
.euiDataGrid {
|
|
175
|
-
display: -webkit-flex;
|
|
176
|
-
display: flex;
|
|
177
|
-
-webkit-flex-direction: column;
|
|
178
|
-
flex-direction: column;
|
|
179
|
-
-webkit-align-items: stretch;
|
|
180
|
-
align-items: stretch;
|
|
181
|
-
overflow: hidden;
|
|
182
|
-
height: 100%;
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
.euiDataGrid--fullScreen {
|
|
186
|
-
height: 100%;
|
|
187
|
-
position: fixed;
|
|
188
|
-
top: 0;
|
|
189
|
-
left: 0;
|
|
190
|
-
right: 0;
|
|
191
|
-
bottom: 0;
|
|
192
|
-
z-index: 999;
|
|
193
|
-
background: #1D1E24;
|
|
194
|
-
}
|
|
195
|
-
.euiDataGrid--fullScreen .euiDataGrid__pagination {
|
|
196
|
-
padding-bottom: 4px;
|
|
197
|
-
background: #25262E;
|
|
198
|
-
box-shadow: 1px 0 0 1px #343741;
|
|
199
|
-
}
|
|
200
|
-
|
|
201
|
-
.euiDataGrid__content {
|
|
202
|
-
-webkit-flex-grow: 1;
|
|
203
|
-
flex-grow: 1;
|
|
204
|
-
height: 100%;
|
|
205
|
-
max-width: 100%;
|
|
206
|
-
width: 100%;
|
|
207
|
-
overflow: hidden;
|
|
208
|
-
z-index: 1;
|
|
209
|
-
position: relative;
|
|
210
|
-
background: #141519;
|
|
211
|
-
font-feature-settings: "tnum" 1;
|
|
212
|
-
}
|
|
213
|
-
|
|
214
|
-
.euiDataGrid__customRenderBody {
|
|
215
|
-
scrollbar-color: rgba(152, 162, 179, 0.5) #1D1E24;
|
|
216
|
-
scrollbar-width: thin;
|
|
217
|
-
height: 100%;
|
|
218
|
-
width: 100%;
|
|
219
|
-
overflow: auto;
|
|
220
|
-
}
|
|
221
|
-
.euiDataGrid__customRenderBody::-webkit-scrollbar {
|
|
222
|
-
width: 16px;
|
|
223
|
-
height: 16px;
|
|
224
|
-
}
|
|
225
|
-
.euiDataGrid__customRenderBody::-webkit-scrollbar-thumb {
|
|
226
|
-
background-color: rgba(152, 162, 179, 0.5);
|
|
227
|
-
background-clip: content-box;
|
|
228
|
-
border-radius: 16px;
|
|
229
|
-
border: 6px solid #1D1E24;
|
|
230
|
-
}
|
|
231
|
-
.euiDataGrid__customRenderBody::-webkit-scrollbar-corner, .euiDataGrid__customRenderBody::-webkit-scrollbar-track {
|
|
232
|
-
background-color: #1D1E24;
|
|
233
|
-
}
|
|
234
|
-
|
|
235
|
-
.euiDataGrid__pagination {
|
|
236
|
-
z-index: 2;
|
|
237
|
-
padding-top: 4px;
|
|
238
|
-
-webkit-flex-grow: 0;
|
|
239
|
-
flex-grow: 0;
|
|
240
|
-
}
|
|
241
|
-
|
|
242
|
-
.euiDataGrid__restrictBody {
|
|
243
|
-
height: 100vh;
|
|
244
|
-
overflow: hidden;
|
|
245
|
-
}
|
|
246
|
-
.euiDataGrid__restrictBody .euiHeader[data-fixed-header] {
|
|
247
|
-
z-index: 998 !important;
|
|
248
|
-
}
|
|
249
|
-
.euiDataGrid__restrictBody .euiOverlayMask[data-relative-to-header=below] {
|
|
250
|
-
top: 0;
|
|
251
|
-
}
|
|
252
|
-
.euiDataGrid__restrictBody .euiFlyout {
|
|
253
|
-
top: 0;
|
|
254
|
-
height: 100%;
|
|
255
|
-
}
|
|
256
|
-
|
|
257
|
-
.euiDataGrid__focusWrap {
|
|
258
|
-
height: 100%;
|
|
259
|
-
}
|
|
260
|
-
|
|
261
|
-
.euiDataGrid__virtualized {
|
|
262
|
-
scrollbar-color: rgba(152, 162, 179, 0.5) #1D1E24;
|
|
263
|
-
scrollbar-width: thin;
|
|
264
|
-
scroll-padding: 0;
|
|
265
|
-
}
|
|
266
|
-
.euiDataGrid__virtualized::-webkit-scrollbar {
|
|
267
|
-
width: 16px;
|
|
268
|
-
height: 16px;
|
|
269
|
-
}
|
|
270
|
-
.euiDataGrid__virtualized::-webkit-scrollbar-thumb {
|
|
271
|
-
background-color: rgba(152, 162, 179, 0.5);
|
|
272
|
-
background-clip: content-box;
|
|
273
|
-
border-radius: 16px;
|
|
274
|
-
border: 6px solid #1D1E24;
|
|
275
|
-
}
|
|
276
|
-
.euiDataGrid__virtualized::-webkit-scrollbar-corner, .euiDataGrid__virtualized::-webkit-scrollbar-track {
|
|
277
|
-
background-color: #1D1E24;
|
|
278
|
-
}
|
|
279
|
-
|
|
280
|
-
.euiDataGrid__scrollOverlay {
|
|
281
|
-
position: absolute;
|
|
282
|
-
top: -1px;
|
|
283
|
-
right: 0;
|
|
284
|
-
bottom: 0;
|
|
285
|
-
left: 0;
|
|
286
|
-
pointer-events: none;
|
|
287
|
-
box-shadow: inset 0 0 0 1px #343741;
|
|
288
|
-
}
|
|
289
|
-
.euiDataGrid--bordersHorizontal .euiDataGrid__scrollOverlay {
|
|
290
|
-
box-shadow: inset 0 -2px 0 -1px #343741;
|
|
291
|
-
}
|
|
292
|
-
.euiDataGrid__scrollOverlay .euiDataGrid__scrollBarOverlayBottom {
|
|
293
|
-
position: absolute;
|
|
294
|
-
width: 100%;
|
|
295
|
-
height: 1px;
|
|
296
|
-
background-color: #343741;
|
|
297
|
-
}
|
|
298
|
-
.euiDataGrid__scrollOverlay .euiDataGrid__scrollBarOverlayRight {
|
|
299
|
-
position: absolute;
|
|
300
|
-
height: 100%;
|
|
301
|
-
width: 1px;
|
|
302
|
-
background-color: #343741;
|
|
303
|
-
}
|
|
304
|
-
|
|
305
|
-
.euiDataGridHeader {
|
|
306
|
-
display: -webkit-flex;
|
|
307
|
-
display: flex;
|
|
308
|
-
z-index: 999;
|
|
309
|
-
background: #1D1E24;
|
|
310
|
-
position: -webkit-sticky;
|
|
311
|
-
position: sticky;
|
|
312
|
-
top: 0;
|
|
313
|
-
width: -webkit-fit-content;
|
|
314
|
-
width: -moz-fit-content;
|
|
315
|
-
width: fit-content;
|
|
316
|
-
}
|
|
317
|
-
|
|
318
|
-
.euiDataGridHeaderCell {
|
|
319
|
-
font-size: 14px;
|
|
320
|
-
font-size: 1rem;
|
|
321
|
-
line-height: 1.7142857143rem;
|
|
322
|
-
position: relative;
|
|
323
|
-
display: -webkit-flex;
|
|
324
|
-
display: flex;
|
|
325
|
-
-webkit-flex: 0 0 auto;
|
|
326
|
-
flex: 0 0 auto;
|
|
327
|
-
-webkit-align-items: center;
|
|
328
|
-
align-items: center;
|
|
329
|
-
padding: 6px;
|
|
330
|
-
font-weight: 700;
|
|
331
|
-
}
|
|
332
|
-
.euiDataGridHeaderCell > [data-focus-lock-disabled] {
|
|
333
|
-
display: -webkit-flex;
|
|
334
|
-
display: flex;
|
|
335
|
-
-webkit-align-items: center;
|
|
336
|
-
align-items: center;
|
|
337
|
-
gap: 4px;
|
|
338
|
-
width: 100%;
|
|
339
|
-
}
|
|
340
|
-
.euiDataGridHeaderCell:focus, .euiDataGridHeaderCell--hasColumnActions:focus-within, .euiDataGridHeaderCell--isActionsPopoverOpen {
|
|
341
|
-
outline: none;
|
|
342
|
-
}
|
|
343
|
-
.euiDataGridHeaderCell:focus::after, .euiDataGridHeaderCell--hasColumnActions:focus-within::after, .euiDataGridHeaderCell--isActionsPopoverOpen::after {
|
|
344
|
-
content: "";
|
|
345
|
-
display: block;
|
|
346
|
-
width: 100%;
|
|
347
|
-
height: 100%;
|
|
348
|
-
position: absolute;
|
|
349
|
-
top: 0;
|
|
350
|
-
left: 0;
|
|
351
|
-
border: 2px solid var(--euiDataGridCellOutlineColor, #36A2EF);
|
|
352
|
-
border-radius: 3px;
|
|
353
|
-
z-index: 2;
|
|
354
|
-
pointer-events: none;
|
|
355
|
-
}
|
|
356
|
-
.euiDataGridHeaderCell:focus:focus-visible {
|
|
357
|
-
outline: none;
|
|
358
|
-
}
|
|
359
|
-
.euiDataGridHeaderCell .euiDataGridHeaderCell__content {
|
|
360
|
-
-webkit-flex-grow: 1;
|
|
361
|
-
flex-grow: 1;
|
|
362
|
-
}
|
|
363
|
-
.euiDataGridHeaderCell:not(.euiDataGridHeaderCell--controlColumn) .euiDataGridHeaderCell__button {
|
|
364
|
-
position: relative;
|
|
365
|
-
display: -webkit-flex;
|
|
366
|
-
display: flex;
|
|
367
|
-
-webkit-align-items: center;
|
|
368
|
-
align-items: center;
|
|
369
|
-
gap: 4px;
|
|
370
|
-
width: 100%;
|
|
371
|
-
border-radius: 4px;
|
|
372
|
-
font-weight: 700;
|
|
373
|
-
outline: none;
|
|
374
|
-
}
|
|
375
|
-
.euiDataGridHeaderCell:not(.euiDataGridHeaderCell--controlColumn) .euiDataGridHeaderCell__button:focus-visible {
|
|
376
|
-
outline: none;
|
|
377
|
-
}
|
|
378
|
-
.euiDataGridHeaderCell:not(.euiDataGridHeaderCell--controlColumn) [data-focus-lock-disabled=false] .euiDataGridHeaderCell__button {
|
|
379
|
-
outline: 2px solid currentColor;
|
|
380
|
-
color: #36A2EF;
|
|
381
|
-
}
|
|
382
|
-
.euiDataGridHeaderCell:not(.euiDataGridHeaderCell--controlColumn) [data-focus-lock-disabled=false] .euiDataGridHeaderCell__button:focus-visible {
|
|
383
|
-
outline-style: auto;
|
|
384
|
-
}
|
|
385
|
-
.euiDataGridHeaderCell:not(.euiDataGridHeaderCell--controlColumn) [data-focus-lock-disabled=false] .euiDataGridHeaderCell__button:not(:focus-visible) {
|
|
386
|
-
outline: none;
|
|
387
|
-
}
|
|
388
|
-
.euiDataGridHeaderCell:not(.euiDataGridHeaderCell--controlColumn) .euiDataGridHeaderCell__content {
|
|
389
|
-
max-width: 100%;
|
|
390
|
-
overflow: hidden !important;
|
|
391
|
-
text-overflow: ellipsis !important;
|
|
392
|
-
white-space: nowrap !important;
|
|
393
|
-
text-align: left;
|
|
394
|
-
}
|
|
395
|
-
.euiDataGridHeaderCell:not(.euiDataGridHeaderCell--controlColumn) .euiDataGridHeaderCell__sortingArrow {
|
|
396
|
-
-webkit-flex: 0 0 auto;
|
|
397
|
-
flex: 0 0 auto;
|
|
398
|
-
}
|
|
399
|
-
.euiDataGridHeaderCell:not(.euiDataGridHeaderCell--controlColumn) .euiDataGridHeaderCell__icon {
|
|
400
|
-
-webkit-flex: 0 0 auto;
|
|
401
|
-
flex: 0 0 auto;
|
|
402
|
-
margin-left: auto;
|
|
403
|
-
display: -webkit-flex;
|
|
404
|
-
display: flex;
|
|
405
|
-
-webkit-align-items: center;
|
|
406
|
-
align-items: center;
|
|
407
|
-
-webkit-justify-content: center;
|
|
408
|
-
justify-content: center;
|
|
409
|
-
width: 0;
|
|
410
|
-
height: 16px;
|
|
411
|
-
overflow: hidden;
|
|
412
|
-
opacity: 0;
|
|
413
|
-
transition: width 150ms ease-in, opacity 350ms ease-in;
|
|
414
|
-
}
|
|
415
|
-
.euiDataGridHeaderCell:not(.euiDataGridHeaderCell--controlColumn):focus-within .euiDataGridHeaderCell__button, .euiDataGridHeaderCell:not(.euiDataGridHeaderCell--controlColumn):hover .euiDataGridHeaderCell__button,
|
|
416
|
-
.euiDataGridHeaderCell:not(.euiDataGridHeaderCell--controlColumn) .euiPopover-isOpen .euiDataGridHeaderCell__button {
|
|
417
|
-
padding: 4px;
|
|
418
|
-
}
|
|
419
|
-
.euiDataGridHeaderCell:not(.euiDataGridHeaderCell--controlColumn):focus-within .euiDataGridHeaderCell__icon, .euiDataGridHeaderCell:not(.euiDataGridHeaderCell--controlColumn):hover .euiDataGridHeaderCell__icon,
|
|
420
|
-
.euiDataGridHeaderCell:not(.euiDataGridHeaderCell--controlColumn) .euiPopover-isOpen .euiDataGridHeaderCell__icon {
|
|
421
|
-
width: 16px;
|
|
422
|
-
opacity: 1;
|
|
423
|
-
}
|
|
424
|
-
.euiDataGridHeaderCell.euiDataGridHeaderCell--numeric .euiDataGridHeaderCell__content, .euiDataGridHeaderCell.euiDataGridHeaderCell--currency .euiDataGridHeaderCell__content {
|
|
425
|
-
text-align: right;
|
|
426
|
-
}
|
|
427
|
-
|
|
428
|
-
.euiDataGridHeader__action--selected {
|
|
429
|
-
font-weight: 700 !important;
|
|
430
|
-
}
|
|
431
|
-
|
|
432
|
-
.euiDataGrid--bordersNone.euiDataGrid--bordersHorizontal .euiDataGridHeader {
|
|
433
|
-
background: #1D1E24;
|
|
434
|
-
}
|
|
435
|
-
|
|
436
|
-
.euiDataGrid--headerUnderline .euiDataGridHeaderCell {
|
|
437
|
-
border-top: none;
|
|
438
|
-
border-left: none;
|
|
439
|
-
border-right: none;
|
|
440
|
-
border-bottom: 2px solid #343741;
|
|
441
|
-
border-bottom-color: #DFE5EF;
|
|
442
|
-
}
|
|
443
|
-
|
|
444
|
-
.euiDataGrid--bordersNone.euiDataGrid--headerUnderline .euiDataGridHeaderCell {
|
|
445
|
-
border-bottom: 2px solid #343741;
|
|
446
|
-
border-color: #DFE5EF;
|
|
447
|
-
}
|
|
448
|
-
|
|
449
|
-
.euiDataGrid--headerShade .euiDataGridHeaderCell {
|
|
450
|
-
background: #212229;
|
|
451
|
-
}
|
|
452
|
-
|
|
453
|
-
.euiDataGrid--headerShade.euiDataGrid--bordersAll .euiDataGridHeaderCell {
|
|
454
|
-
border-right: 1px solid #343741;
|
|
455
|
-
border-bottom: 1px solid #343741;
|
|
456
|
-
border-left: none;
|
|
457
|
-
}
|
|
458
|
-
.euiDataGrid--headerShade.euiDataGrid--bordersAll .euiDataGridHeaderCell:first-of-type {
|
|
459
|
-
border-left: 1px solid #343741;
|
|
460
|
-
}
|
|
461
|
-
|
|
462
|
-
.euiDataGrid--headerShade.euiDataGrid--bordersHorizontal .euiDataGridHeaderCell {
|
|
463
|
-
border-top: none;
|
|
464
|
-
border-bottom: 1px solid #343741;
|
|
465
|
-
}
|
|
466
|
-
|
|
467
|
-
.euiDataGrid--bordersNone .euiDataGridHeaderCell {
|
|
468
|
-
border: none;
|
|
469
|
-
}
|
|
470
|
-
|
|
471
|
-
.euiDataGrid--borderhorizontal .euiDataGridHeaderCell {
|
|
472
|
-
border-top: none;
|
|
473
|
-
border-right: none;
|
|
474
|
-
border-left: none;
|
|
475
|
-
}
|
|
476
|
-
|
|
477
|
-
.euiDataGrid--fontSizeSmall .euiDataGridHeaderCell {
|
|
478
|
-
font-size: 12px;
|
|
479
|
-
font-size: 0.8571428571rem;
|
|
480
|
-
line-height: 1.1428571429rem;
|
|
481
|
-
}
|
|
482
|
-
|
|
483
|
-
.euiDataGrid--fontSizeLarge .euiDataGridHeaderCell {
|
|
484
|
-
font-size: 14px;
|
|
485
|
-
font-size: 1rem;
|
|
486
|
-
line-height: 1.7142857143rem;
|
|
487
|
-
}
|
|
488
|
-
|
|
489
|
-
.euiDataGrid--paddingSmall .euiDataGridHeaderCell {
|
|
490
|
-
padding: 4px;
|
|
491
|
-
}
|
|
492
|
-
|
|
493
|
-
.euiDataGrid--paddingLarge .euiDataGridHeaderCell {
|
|
494
|
-
padding: 8px;
|
|
495
|
-
}
|
|
496
|
-
|
|
497
|
-
.euiDataGrid--noControls.euiDataGrid--bordersAll .euiDataGridHeaderCell {
|
|
498
|
-
border-top: 1px solid #343741;
|
|
499
|
-
}
|
|
500
|
-
|
|
501
|
-
.euiDataGrid--noControls.euiDataGrid--bordersHorizontal .euiDataGridHeaderCell {
|
|
502
|
-
border-top: 1px solid #343741;
|
|
503
|
-
}
|
|
504
|
-
|
|
505
|
-
.euiDataGridFooter {
|
|
506
|
-
display: -webkit-flex;
|
|
507
|
-
display: flex;
|
|
508
|
-
width: -webkit-fit-content;
|
|
509
|
-
width: -moz-fit-content;
|
|
510
|
-
width: fit-content;
|
|
511
|
-
}
|
|
512
|
-
|
|
513
|
-
.euiDataGridRowCell.euiDataGridFooterCell {
|
|
514
|
-
-webkit-flex: 0 0 auto;
|
|
515
|
-
flex: 0 0 auto;
|
|
516
|
-
position: relative;
|
|
517
|
-
font-weight: 700;
|
|
518
|
-
}
|
|
519
|
-
|
|
520
|
-
.euiDataGrid--stickyFooter .euiDataGridFooter {
|
|
521
|
-
position: -webkit-sticky;
|
|
522
|
-
position: sticky;
|
|
523
|
-
bottom: 0;
|
|
524
|
-
}
|
|
525
|
-
|
|
526
|
-
.euiDataGrid--footerOverline .euiDataGridRowCell.euiDataGridFooterCell {
|
|
527
|
-
border-top: 2px solid #343741;
|
|
528
|
-
border-top-color: #DFE5EF !important;
|
|
529
|
-
background: #1D1E24 !important;
|
|
530
|
-
}
|
|
531
|
-
|
|
532
|
-
.euiDataGrid--bordersNone .euiDataGridRowCell.euiDataGridFooterCell {
|
|
533
|
-
border-left: none;
|
|
534
|
-
border-right: none;
|
|
535
|
-
}
|
|
536
|
-
|
|
537
|
-
.euiDataGrid--bordersHorizontal .euiDataGridRowCell.euiDataGridFooterCell {
|
|
538
|
-
border-left: none;
|
|
539
|
-
border-right: none;
|
|
540
|
-
}
|
|
541
|
-
|
|
542
|
-
.euiDataGrid--footerShade .euiDataGridRowCell.euiDataGridFooterCell {
|
|
543
|
-
background: #212229;
|
|
544
|
-
}
|
|
545
|
-
|
|
546
|
-
.euiDataGridColumnResizer {
|
|
547
|
-
position: absolute;
|
|
548
|
-
top: 0;
|
|
549
|
-
right: -8px;
|
|
550
|
-
height: 100%;
|
|
551
|
-
width: 16px;
|
|
552
|
-
cursor: ew-resize;
|
|
553
|
-
opacity: 0;
|
|
554
|
-
z-index: 2;
|
|
555
|
-
}
|
|
556
|
-
.euiDataGridColumnResizer::after {
|
|
557
|
-
content: "";
|
|
558
|
-
position: absolute;
|
|
559
|
-
left: 7px;
|
|
560
|
-
top: 0;
|
|
561
|
-
bottom: 0;
|
|
562
|
-
width: 3px;
|
|
563
|
-
background-color: #36A2EF;
|
|
564
|
-
}
|
|
565
|
-
.euiDataGridColumnResizer:hover, .euiDataGridColumnResizer:active {
|
|
566
|
-
opacity: 1;
|
|
567
|
-
}
|
|
568
|
-
.euiDataGridColumnResizer:hover ~ .euiDataGridHeaderCell__content, .euiDataGridColumnResizer:active ~ .euiDataGridHeaderCell__content {
|
|
569
|
-
-webkit-user-select: none;
|
|
570
|
-
-moz-user-select: none;
|
|
571
|
-
user-select: none;
|
|
572
|
-
}
|
|
573
|
-
|
|
574
|
-
.euiDataGridHeaderCell:last-child .euiDataGridColumnResizer {
|
|
575
|
-
right: 0;
|
|
576
|
-
width: 8px;
|
|
577
|
-
}
|
|
578
|
-
.euiDataGridHeaderCell:last-child .euiDataGridColumnResizer::after {
|
|
579
|
-
left: auto;
|
|
580
|
-
right: 0;
|
|
581
|
-
}
|
|
582
|
-
|
|
583
|
-
.euiDataGridRow {
|
|
584
|
-
background-color: #1D1E24;
|
|
585
|
-
}
|
|
586
|
-
|
|
587
|
-
.euiDataGridRowCell {
|
|
588
|
-
position: relative;
|
|
589
|
-
border-right: solid 1px #24272e;
|
|
590
|
-
border-bottom: 1px solid #343741;
|
|
591
|
-
--euiDataGridCellOutlineColor: #36A2EF;
|
|
592
|
-
}
|
|
593
|
-
.euiDataGridRowCell .euiDataGridRowCell__content {
|
|
594
|
-
font-size: 14px;
|
|
595
|
-
font-size: 1rem;
|
|
596
|
-
line-height: 1.7142857143rem;
|
|
597
|
-
padding: 6px;
|
|
598
|
-
height: 100%;
|
|
599
|
-
overflow: hidden;
|
|
600
|
-
}
|
|
601
|
-
.euiDataGridRowCell .euiDataGridRowCell__content--autoHeight {
|
|
602
|
-
height: auto;
|
|
603
|
-
}
|
|
604
|
-
.euiDataGridRowCell .euiDataGridRowCell__content--lineCountHeight {
|
|
605
|
-
padding-bottom: 0;
|
|
606
|
-
border-bottom: 6px solid transparent;
|
|
607
|
-
}
|
|
608
|
-
.euiDataGridRowCell > [data-focus-lock-disabled] {
|
|
609
|
-
height: 100%;
|
|
610
|
-
}
|
|
611
|
-
.euiDataGridRowCell.euiDataGridRowCell--firstColumn {
|
|
612
|
-
border-left: 1px solid #343741;
|
|
613
|
-
}
|
|
614
|
-
.euiDataGridRowCell.euiDataGridRowCell--lastColumn {
|
|
615
|
-
border-right-color: #343741;
|
|
616
|
-
}
|
|
617
|
-
.euiDataGridRowCell:hover, .euiDataGridRowCell:focus, .euiDataGridRowCell.euiDataGridRowCell--open {
|
|
618
|
-
outline: none;
|
|
619
|
-
}
|
|
620
|
-
.euiDataGridRowCell:hover::after, .euiDataGridRowCell:focus::after, .euiDataGridRowCell.euiDataGridRowCell--open::after {
|
|
621
|
-
content: "";
|
|
622
|
-
display: block;
|
|
623
|
-
width: 100%;
|
|
624
|
-
height: 100%;
|
|
625
|
-
position: absolute;
|
|
626
|
-
top: 0;
|
|
627
|
-
left: 0;
|
|
628
|
-
border: 2px solid var(--euiDataGridCellOutlineColor, #36A2EF);
|
|
629
|
-
border-radius: 3px;
|
|
630
|
-
z-index: 2;
|
|
631
|
-
pointer-events: none;
|
|
632
|
-
}
|
|
633
|
-
.euiDataGridRowCell:focus:focus-visible {
|
|
634
|
-
outline: none;
|
|
635
|
-
}
|
|
636
|
-
.euiDataGridRowCell:hover:not(:focus, :focus-within, .euiDataGridRowCell--open) {
|
|
637
|
-
--euiDataGridCellOutlineColor: #98A2B3;
|
|
638
|
-
}
|
|
639
|
-
.euiDataGridRowCell:hover:not(:focus, :focus-within, .euiDataGridRowCell--open) .euiDataGridRowCell__actions {
|
|
640
|
-
-webkit-animation-delay: 350ms;
|
|
641
|
-
animation-delay: 350ms;
|
|
642
|
-
}
|
|
643
|
-
.euiDataGridRowCell:hover .euiDataGridRowCell__actions, .euiDataGridRowCell:focus .euiDataGridRowCell__actions, .euiDataGridRowCell:focus-within .euiDataGridRowCell__actions, .euiDataGridRowCell.euiDataGridRowCell--open .euiDataGridRowCell__actions, .euiDataGridRowCell[data-keyboard-closing] .euiDataGridRowCell__actions {
|
|
644
|
-
-webkit-animation-duration: 90ms;
|
|
645
|
-
animation-duration: 90ms;
|
|
646
|
-
-webkit-animation-name: euiDataGridCellActionsSlideIn;
|
|
647
|
-
animation-name: euiDataGridCellActionsSlideIn;
|
|
648
|
-
-webkit-animation-iteration-count: 1;
|
|
649
|
-
animation-iteration-count: 1;
|
|
650
|
-
-webkit-animation-fill-mode: forwards;
|
|
651
|
-
animation-fill-mode: forwards;
|
|
652
|
-
}
|
|
653
|
-
.euiDataGridRowCell:not(:hover):not(:focus):not(.euiDataGridRowCell--open):not([data-keyboard-closing]) .euiDataGridRowCell__actions {
|
|
654
|
-
display: none;
|
|
655
|
-
}
|
|
656
|
-
.euiDataGridRowCell.euiDataGridRowCell--numeric {
|
|
657
|
-
text-align: right;
|
|
658
|
-
}
|
|
659
|
-
.euiDataGridRowCell.euiDataGridRowCell--currency {
|
|
660
|
-
text-align: right;
|
|
661
|
-
}
|
|
662
|
-
.euiDataGridRowCell.euiDataGridRowCell--uppercase {
|
|
663
|
-
text-transform: uppercase;
|
|
664
|
-
}
|
|
665
|
-
.euiDataGridRowCell.euiDataGridRowCell--lowercase {
|
|
666
|
-
text-transform: lowercase;
|
|
667
|
-
}
|
|
668
|
-
.euiDataGridRowCell.euiDataGridRowCell--capitalize {
|
|
669
|
-
text-transform: capitalize;
|
|
670
|
-
}
|
|
671
|
-
|
|
672
|
-
.euiDataGridRowCell__popover {
|
|
673
|
-
scrollbar-color: rgba(152, 162, 179, 0.5) transparent;
|
|
674
|
-
scrollbar-width: thin;
|
|
675
|
-
overflow: auto;
|
|
676
|
-
z-index: 1000 !important;
|
|
677
|
-
-webkit-filter: none;
|
|
678
|
-
filter: none;
|
|
679
|
-
box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25), 0 3.6px 13px rgba(0, 0, 0, 0.175), 0 8.4px 23px rgba(0, 0, 0, 0.15), 0 23px 35px rgba(0, 0, 0, 0.125);
|
|
680
|
-
-webkit-animation-duration: 250ms;
|
|
681
|
-
animation-duration: 250ms;
|
|
682
|
-
-webkit-animation-name: euiDataGridCellPopover;
|
|
683
|
-
animation-name: euiDataGridCellPopover;
|
|
684
|
-
}
|
|
685
|
-
.euiDataGridRowCell__popover::-webkit-scrollbar {
|
|
686
|
-
width: 16px;
|
|
687
|
-
height: 16px;
|
|
688
|
-
}
|
|
689
|
-
.euiDataGridRowCell__popover::-webkit-scrollbar-thumb {
|
|
690
|
-
background-color: rgba(152, 162, 179, 0.5);
|
|
691
|
-
background-clip: content-box;
|
|
692
|
-
border-radius: 16px;
|
|
693
|
-
border: 6px solid transparent;
|
|
694
|
-
}
|
|
695
|
-
.euiDataGridRowCell__popover::-webkit-scrollbar-corner, .euiDataGridRowCell__popover::-webkit-scrollbar-track {
|
|
696
|
-
background-color: transparent;
|
|
697
|
-
}
|
|
698
|
-
|
|
699
|
-
.euiDataGridRowCell--controlColumn .euiDataGridRowCell__content {
|
|
700
|
-
max-height: 100%;
|
|
701
|
-
height: auto;
|
|
702
|
-
display: -webkit-flex;
|
|
703
|
-
display: flex;
|
|
704
|
-
-webkit-align-items: center;
|
|
705
|
-
align-items: center;
|
|
706
|
-
}
|
|
707
|
-
.euiDataGridRowCell--controlColumn .euiDataGridRowCell__content.euiDataGridRowCell__content--defaultHeight {
|
|
708
|
-
height: 100%;
|
|
709
|
-
}
|
|
710
|
-
|
|
711
|
-
.euiDataGridRowCell__actions,
|
|
712
|
-
.euiDataGridRowCell__actions + [data-euiportal] > .euiPopover {
|
|
713
|
-
position: absolute;
|
|
714
|
-
bottom: 100%;
|
|
715
|
-
}
|
|
716
|
-
.euiDataGridRowCell--alignLeft .euiDataGridRowCell__actions,
|
|
717
|
-
.euiDataGridRowCell--alignLeft .euiDataGridRowCell__actions + [data-euiportal] > .euiPopover {
|
|
718
|
-
left: 0;
|
|
719
|
-
}
|
|
720
|
-
.euiDataGridRowCell--alignRight .euiDataGridRowCell__actions,
|
|
721
|
-
.euiDataGridRowCell--alignRight .euiDataGridRowCell__actions + [data-euiportal] > .euiPopover {
|
|
722
|
-
right: 0;
|
|
723
|
-
}
|
|
724
|
-
|
|
725
|
-
.euiDataGridRowCell__actions {
|
|
726
|
-
z-index: 998;
|
|
727
|
-
margin-bottom: -1px;
|
|
728
|
-
display: -webkit-flex;
|
|
729
|
-
display: flex;
|
|
730
|
-
gap: 2px;
|
|
731
|
-
padding-inline: 2px;
|
|
732
|
-
background-color: var(--euiDataGridCellOutlineColor);
|
|
733
|
-
color: #1D1E24;
|
|
734
|
-
border: 1px solid var(--euiDataGridCellOutlineColor);
|
|
735
|
-
border-top-left-radius: 3px;
|
|
736
|
-
border-top-right-radius: 3px;
|
|
737
|
-
-webkit-transform: scaleY(0);
|
|
738
|
-
transform: scaleY(0);
|
|
739
|
-
-webkit-transform-origin: bottom;
|
|
740
|
-
transform-origin: bottom;
|
|
741
|
-
}
|
|
742
|
-
.euiDataGridRowCell[data-gridcell-visible-row-index="0"] > .euiDataGridRowCell__actions {
|
|
743
|
-
z-index: 999;
|
|
744
|
-
}
|
|
745
|
-
.euiDataGridRowCell--alignLeft .euiDataGridRowCell__actions {
|
|
746
|
-
border-bottom-right-radius: 3px;
|
|
747
|
-
}
|
|
748
|
-
.euiDataGridRowCell--alignRight .euiDataGridRowCell__actions {
|
|
749
|
-
border-bottom-left-radius: 3px;
|
|
750
|
-
}
|
|
751
|
-
.euiDataGridRowCell__actions::after {
|
|
752
|
-
content: "";
|
|
753
|
-
position: absolute;
|
|
754
|
-
top: 100%;
|
|
755
|
-
height: 2px;
|
|
756
|
-
width: 2px;
|
|
757
|
-
background-color: var(--euiDataGridCellOutlineColor);
|
|
758
|
-
}
|
|
759
|
-
.euiDataGridRowCell--alignLeft .euiDataGridRowCell__actions::after {
|
|
760
|
-
left: -1px;
|
|
761
|
-
}
|
|
762
|
-
.euiDataGridRowCell--alignRight .euiDataGridRowCell__actions::after {
|
|
763
|
-
right: -1px;
|
|
764
|
-
}
|
|
765
|
-
|
|
766
|
-
.euiDataGridRowCell__actionButtonIcon {
|
|
767
|
-
height: 20px;
|
|
768
|
-
width: 16px;
|
|
769
|
-
border-radius: 0;
|
|
770
|
-
/* Force all cell action buttons to match EUI colors */
|
|
771
|
-
/* Manually increase the size of the expand cell icon - it's a bit small by default */
|
|
772
|
-
}
|
|
773
|
-
.euiDataGridRowCell__actionButtonIcon,
|
|
774
|
-
.euiDataGridRowCell__actionButtonIcon svg {
|
|
775
|
-
background-color: transparent !important;
|
|
776
|
-
color: currentColor !important;
|
|
777
|
-
fill: currentColor !important;
|
|
778
|
-
}
|
|
779
|
-
.euiDataGridRowCell__actionButtonIcon.euiDataGridRowCell__expandCell .euiIcon {
|
|
780
|
-
width: 120%;
|
|
781
|
-
height: 100%;
|
|
782
|
-
}
|
|
783
|
-
|
|
784
|
-
.euiDataGrid--stripes .euiDataGridRow--striped {
|
|
785
|
-
background-color: #25262E;
|
|
786
|
-
}
|
|
787
|
-
|
|
788
|
-
.euiDataGrid--rowHoverHighlight .euiDataGridRow:hover {
|
|
789
|
-
background-color: #2E2D25;
|
|
790
|
-
}
|
|
791
|
-
|
|
792
|
-
.euiDataGrid--bordersNone .euiDataGridRowCell {
|
|
793
|
-
border-color: transparent !important;
|
|
794
|
-
}
|
|
795
|
-
|
|
796
|
-
.euiDataGrid--bordersHorizontal .euiDataGridRowCell {
|
|
797
|
-
border-right-color: transparent;
|
|
798
|
-
border-left-color: transparent;
|
|
799
|
-
}
|
|
800
|
-
|
|
801
|
-
.euiDataGrid--fontSizeSmall .euiDataGridRowCell .euiDataGridRowCell__content {
|
|
802
|
-
font-size: 12px;
|
|
803
|
-
font-size: 0.8571428571rem;
|
|
804
|
-
line-height: 1.1428571429rem;
|
|
805
|
-
}
|
|
806
|
-
|
|
807
|
-
.euiDataGrid--fontSizeLarge .euiDataGridRowCell .euiDataGridRowCell__content {
|
|
808
|
-
font-size: 14px;
|
|
809
|
-
font-size: 1rem;
|
|
810
|
-
line-height: 1.7142857143rem;
|
|
811
|
-
}
|
|
812
|
-
|
|
813
|
-
.euiDataGrid--paddingSmall .euiDataGridRowCell .euiDataGridRowCell__content {
|
|
814
|
-
padding: 4px;
|
|
815
|
-
}
|
|
816
|
-
.euiDataGrid--paddingSmall .euiDataGridRowCell .euiDataGridRowCell__content--lineCountHeight {
|
|
817
|
-
padding-bottom: 0;
|
|
818
|
-
border-bottom: 4px solid transparent;
|
|
819
|
-
}
|
|
820
|
-
|
|
821
|
-
.euiDataGrid--paddingLarge .euiDataGridRowCell .euiDataGridRowCell__content {
|
|
822
|
-
padding: 8px;
|
|
823
|
-
}
|
|
824
|
-
.euiDataGrid--paddingLarge .euiDataGridRowCell .euiDataGridRowCell__content--lineCountHeight {
|
|
825
|
-
padding-bottom: 0;
|
|
826
|
-
border-bottom: 8px solid transparent;
|
|
827
|
-
}
|
|
828
|
-
|
|
829
|
-
@-webkit-keyframes euiDataGridCellActionsSlideIn {
|
|
830
|
-
from {
|
|
831
|
-
-webkit-transform: scaleY(0);
|
|
832
|
-
transform: scaleY(0);
|
|
833
|
-
}
|
|
834
|
-
to {
|
|
835
|
-
-webkit-transform: scaleY(1);
|
|
836
|
-
transform: scaleY(1);
|
|
837
|
-
}
|
|
838
|
-
}
|
|
839
|
-
|
|
840
|
-
@keyframes euiDataGridCellActionsSlideIn {
|
|
841
|
-
from {
|
|
842
|
-
-webkit-transform: scaleY(0);
|
|
843
|
-
transform: scaleY(0);
|
|
844
|
-
}
|
|
845
|
-
to {
|
|
846
|
-
-webkit-transform: scaleY(1);
|
|
847
|
-
transform: scaleY(1);
|
|
848
|
-
}
|
|
849
|
-
}
|
|
850
|
-
@-webkit-keyframes euiDataGridCellPopover {
|
|
851
|
-
from {
|
|
852
|
-
opacity: 0;
|
|
853
|
-
}
|
|
854
|
-
to {
|
|
855
|
-
opacity: 1;
|
|
856
|
-
}
|
|
857
|
-
}
|
|
858
|
-
@keyframes euiDataGridCellPopover {
|
|
859
|
-
from {
|
|
860
|
-
opacity: 0;
|
|
861
|
-
}
|
|
862
|
-
to {
|
|
863
|
-
opacity: 1;
|
|
864
|
-
}
|
|
865
|
-
}
|
|
866
|
-
.euiDataGrid__controls {
|
|
867
|
-
background: #141519;
|
|
868
|
-
position: relative;
|
|
869
|
-
z-index: 2;
|
|
870
|
-
border: 1px solid #343741;
|
|
871
|
-
padding: 4px 4px 4px 0;
|
|
872
|
-
display: -webkit-flex;
|
|
873
|
-
display: flex;
|
|
874
|
-
-webkit-justify-content: space-between;
|
|
875
|
-
justify-content: space-between;
|
|
876
|
-
-webkit-align-items: center;
|
|
877
|
-
align-items: center;
|
|
878
|
-
}
|
|
879
|
-
|
|
880
|
-
.euiDataGrid__rightControls {
|
|
881
|
-
white-space: nowrap;
|
|
882
|
-
}
|
|
883
|
-
.euiDataGrid__rightControls:only-child {
|
|
884
|
-
margin-left: auto;
|
|
885
|
-
}
|
|
886
|
-
.euiDataGrid__rightControls > * + * {
|
|
887
|
-
margin-left: 8px;
|
|
888
|
-
}
|
|
889
|
-
|
|
890
|
-
.euiDataGrid__leftControls > * + * {
|
|
891
|
-
margin-left: 2px;
|
|
892
|
-
}
|
|
893
|
-
|
|
894
|
-
.euiDataGrid--bordersNone .euiDataGrid__controls {
|
|
895
|
-
border: none;
|
|
896
|
-
background: #1D1E24;
|
|
897
|
-
}
|
|
898
|
-
|
|
899
|
-
.euiDataGrid--bordersHorizontal .euiDataGrid__controls {
|
|
900
|
-
border-right: none;
|
|
901
|
-
border-left: none;
|
|
902
|
-
border-top: none;
|
|
903
|
-
background: #1D1E24;
|
|
904
|
-
}
|
|
905
|
-
|
|
906
|
-
.euiDataGrid__controlScroll {
|
|
907
|
-
scrollbar-color: rgba(152, 162, 179, 0.5) transparent;
|
|
908
|
-
scrollbar-width: thin;
|
|
909
|
-
height: 100%;
|
|
910
|
-
overflow-y: auto;
|
|
911
|
-
overflow-x: hidden;
|
|
912
|
-
max-height: 400px;
|
|
913
|
-
padding: 8px;
|
|
914
|
-
margin: -8px;
|
|
915
|
-
}
|
|
916
|
-
.euiDataGrid__controlScroll::-webkit-scrollbar {
|
|
917
|
-
width: 16px;
|
|
918
|
-
height: 16px;
|
|
919
|
-
}
|
|
920
|
-
.euiDataGrid__controlScroll::-webkit-scrollbar-thumb {
|
|
921
|
-
background-color: rgba(152, 162, 179, 0.5);
|
|
922
|
-
background-clip: content-box;
|
|
923
|
-
border-radius: 16px;
|
|
924
|
-
border: 6px solid transparent;
|
|
925
|
-
}
|
|
926
|
-
.euiDataGrid__controlScroll::-webkit-scrollbar-corner, .euiDataGrid__controlScroll::-webkit-scrollbar-track {
|
|
927
|
-
background-color: transparent;
|
|
928
|
-
}
|
|
929
|
-
.euiDataGrid__controlScroll:focus {
|
|
930
|
-
outline: none; /* 1 */
|
|
931
|
-
}
|
|
932
|
-
.euiDataGrid__controlScroll[tabindex="0"]:focus:focus-visible {
|
|
933
|
-
outline-style: auto; /* 2 */
|
|
934
|
-
}
|
|
935
|
-
|
|
936
|
-
.euiDataGridColumnSelector__item {
|
|
937
|
-
padding: 4px;
|
|
938
|
-
}
|
|
939
|
-
.euiDataGridColumnSelector__item-isDragging {
|
|
940
|
-
box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25), 0 3.6px 13px rgba(0, 0, 0, 0.175), 0 8.4px 23px rgba(0, 0, 0, 0.15), 0 23px 35px rgba(0, 0, 0, 0.125);
|
|
941
|
-
background: #1D1E24;
|
|
942
|
-
}
|
|
943
|
-
|
|
944
|
-
.euiDataGridColumnSelector__columnList {
|
|
945
|
-
scrollbar-color: rgba(152, 162, 179, 0.5) transparent;
|
|
946
|
-
scrollbar-width: thin;
|
|
947
|
-
height: 100%;
|
|
948
|
-
overflow-y: auto;
|
|
949
|
-
overflow-x: hidden;
|
|
950
|
-
-webkit-mask-image: linear-gradient(to bottom, rgba(255, 0, 0, 0.1) 0%, red 7.5px, red calc(100% - 7.5px), rgba(255, 0, 0, 0.1) 100%);
|
|
951
|
-
mask-image: linear-gradient(to bottom, rgba(255, 0, 0, 0.1) 0%, red 7.5px, red calc(100% - 7.5px), rgba(255, 0, 0, 0.1) 100%);
|
|
952
|
-
-webkit-transform: translateZ(0);
|
|
953
|
-
transform: translateZ(0);
|
|
954
|
-
max-height: 400px;
|
|
955
|
-
margin: 0 -8px;
|
|
956
|
-
}
|
|
957
|
-
.euiDataGridColumnSelector__columnList::-webkit-scrollbar {
|
|
958
|
-
width: 16px;
|
|
959
|
-
height: 16px;
|
|
960
|
-
}
|
|
961
|
-
.euiDataGridColumnSelector__columnList::-webkit-scrollbar-thumb {
|
|
962
|
-
background-color: rgba(152, 162, 179, 0.5);
|
|
963
|
-
background-clip: content-box;
|
|
964
|
-
border-radius: 16px;
|
|
965
|
-
border: 6px solid transparent;
|
|
966
|
-
}
|
|
967
|
-
.euiDataGridColumnSelector__columnList::-webkit-scrollbar-corner, .euiDataGridColumnSelector__columnList::-webkit-scrollbar-track {
|
|
968
|
-
background-color: transparent;
|
|
969
|
-
}
|
|
970
|
-
.euiDataGridColumnSelector__columnList:focus {
|
|
971
|
-
outline: none; /* 1 */
|
|
972
|
-
}
|
|
973
|
-
.euiDataGridColumnSelector__columnList[tabindex="0"]:focus:focus-visible {
|
|
974
|
-
outline-style: auto; /* 2 */
|
|
975
|
-
}
|
|
976
|
-
|
|
977
|
-
.euiDataGridColumnSelector__itemLabel {
|
|
978
|
-
font-size: 12px;
|
|
979
|
-
font-size: 0.8571428571rem;
|
|
980
|
-
line-height: 1.1428571429rem;
|
|
981
|
-
}
|
|
982
|
-
|
|
983
|
-
.euiDataGridColumnSorting__item-isDragging {
|
|
984
|
-
box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25), 0 3.6px 13px rgba(0, 0, 0, 0.175), 0 8.4px 23px rgba(0, 0, 0, 0.15), 0 23px 35px rgba(0, 0, 0, 0.125);
|
|
985
|
-
background: #1D1E24;
|
|
986
|
-
}
|
|
987
|
-
|
|
988
|
-
.euiDataGridColumnSorting__fieldList {
|
|
989
|
-
scrollbar-color: rgba(152, 162, 179, 0.5) transparent;
|
|
990
|
-
scrollbar-width: thin;
|
|
991
|
-
height: 100%;
|
|
992
|
-
overflow-y: auto;
|
|
993
|
-
overflow-x: hidden;
|
|
994
|
-
-webkit-mask-image: linear-gradient(to bottom, rgba(255, 0, 0, 0.1) 0%, red 7.5px, red calc(100% - 7.5px), rgba(255, 0, 0, 0.1) 100%);
|
|
995
|
-
mask-image: linear-gradient(to bottom, rgba(255, 0, 0, 0.1) 0%, red 7.5px, red calc(100% - 7.5px), rgba(255, 0, 0, 0.1) 100%);
|
|
996
|
-
-webkit-transform: translateZ(0);
|
|
997
|
-
transform: translateZ(0);
|
|
998
|
-
padding-top: 4px;
|
|
999
|
-
padding-bottom: 4px;
|
|
1000
|
-
max-height: 300px;
|
|
1001
|
-
}
|
|
1002
|
-
.euiDataGridColumnSorting__fieldList::-webkit-scrollbar {
|
|
1003
|
-
width: 16px;
|
|
1004
|
-
height: 16px;
|
|
1005
|
-
}
|
|
1006
|
-
.euiDataGridColumnSorting__fieldList::-webkit-scrollbar-thumb {
|
|
1007
|
-
background-color: rgba(152, 162, 179, 0.5);
|
|
1008
|
-
background-clip: content-box;
|
|
1009
|
-
border-radius: 16px;
|
|
1010
|
-
border: 6px solid transparent;
|
|
1011
|
-
}
|
|
1012
|
-
.euiDataGridColumnSorting__fieldList::-webkit-scrollbar-corner, .euiDataGridColumnSorting__fieldList::-webkit-scrollbar-track {
|
|
1013
|
-
background-color: transparent;
|
|
1014
|
-
}
|
|
1015
|
-
.euiDataGridColumnSorting__fieldList:focus {
|
|
1016
|
-
outline: none; /* 1 */
|
|
1017
|
-
}
|
|
1018
|
-
.euiDataGridColumnSorting__fieldList[tabindex="0"]:focus:focus-visible {
|
|
1019
|
-
outline-style: auto; /* 2 */
|
|
1020
|
-
}
|
|
1021
|
-
|
|
1022
|
-
.euiDataGridColumnSorting__field {
|
|
1023
|
-
display: block;
|
|
1024
|
-
padding: 4px 8px;
|
|
1025
|
-
width: 100%;
|
|
1026
|
-
outline-offset: -2px;
|
|
1027
|
-
}
|
|
1028
|
-
.euiDataGridColumnSorting__field:hover {
|
|
1029
|
-
cursor: pointer;
|
|
1030
|
-
text-decoration: underline;
|
|
1031
|
-
}
|
|
1032
|
-
.euiDataGridColumnSorting__field:focus {
|
|
1033
|
-
cursor: pointer;
|
|
1034
|
-
text-decoration: underline;
|
|
1035
|
-
background-color: rgba(54, 162, 239, 0.2);
|
|
1036
|
-
}
|
|
1037
|
-
.euiDataGridColumnSorting__field:disabled {
|
|
1038
|
-
cursor: not-allowed;
|
|
1039
|
-
text-decoration: none;
|
|
1040
|
-
color: #515761;
|
|
1041
|
-
}
|
|
1042
|
-
|
|
1043
|
-
.euiDataGridColumnSorting__name {
|
|
1044
|
-
padding-right: 24px;
|
|
1045
|
-
}
|
|
1046
|
-
@media only screen and (max-width: 574px) {
|
|
1047
|
-
.euiDataGridColumnSorting__name {
|
|
1048
|
-
padding-right: 4px;
|
|
1049
|
-
}
|
|
1050
|
-
}
|
|
1051
|
-
@media only screen and (min-width: 575px) and (max-width: 767px) {
|
|
1052
|
-
.euiDataGridColumnSorting__name {
|
|
1053
|
-
padding-right: 4px;
|
|
1054
|
-
}
|
|
1055
|
-
}
|
|
1056
|
-
|
|
1057
|
-
.euiDataGridColumnSorting__order {
|
|
1058
|
-
min-width: 200px;
|
|
1059
|
-
}
|
|
1060
|
-
@media only screen and (max-width: 574px) {
|
|
1061
|
-
.euiDataGridColumnSorting__order {
|
|
1062
|
-
min-width: unset;
|
|
1063
|
-
}
|
|
1064
|
-
}
|
|
1065
|
-
@media only screen and (min-width: 575px) and (max-width: 767px) {
|
|
1066
|
-
.euiDataGridColumnSorting__order {
|
|
1067
|
-
min-width: unset;
|
|
1068
|
-
}
|
|
1069
|
-
}
|
|
1070
|
-
.euiDataGridColumnSorting__order .euiButtonGroup__buttons {
|
|
1071
|
-
border: none;
|
|
1072
|
-
}
|
|
1073
|
-
.euiDataGridColumnSorting__order .euiButtonGroupButton {
|
|
1074
|
-
font-size: 12px;
|
|
1075
|
-
}
|
|
1076
|
-
|
|
1077
|
-
.euiDataGrid__displayPopoverPanel {
|
|
1078
|
-
width: 416px;
|
|
1079
|
-
}
|
|
1080
|
-
|
|
1081
|
-
.euiDataGrid__keyboardShortcuts {
|
|
1082
|
-
display: block;
|
|
1083
|
-
max-inline-size: 400px;
|
|
1084
|
-
max-block-size: 80vh;
|
|
1085
|
-
overflow-y: auto;
|
|
1086
|
-
overflow-block: auto;
|
|
1087
|
-
}
|
|
1088
|
-
.euiDataGrid__keyboardShortcuts .euiDescriptionList {
|
|
1089
|
-
row-gap: 0;
|
|
1090
|
-
}
|
|
1091
|
-
|
|
1092
|
-
.euiDataGrid--fontSizeLarge .euiDataGridRowCell {
|
|
1093
|
-
font-size: 16px;
|
|
1094
|
-
font-size: 1.1428571429rem;
|
|
1095
|
-
line-height: 1.7142857143rem;
|
|
1096
173
|
}
|