@elastic/eui 65.0.1 → 67.0.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_charts_theme.js +330 -330
- package/dist/eui_charts_theme.js.map +1 -1
- package/dist/eui_theme_dark.css +28 -444
- package/dist/eui_theme_dark.json +0 -6
- package/dist/eui_theme_dark.json.d.ts +0 -6
- package/dist/eui_theme_dark.min.css +1 -1
- package/dist/eui_theme_light.css +28 -444
- package/dist/eui_theme_light.json +0 -6
- package/dist/eui_theme_light.json.d.ts +0 -6
- package/dist/eui_theme_light.min.css +1 -1
- package/es/components/basic_table/basic_table.js +13 -2
- package/es/components/basic_table/in_memory_table.js +13 -2
- package/es/components/button/button_display/_button_display.js +10 -1
- package/es/components/button/button_empty/button_empty.js +10 -1
- package/es/components/card/card.styles.js +2 -2
- package/es/components/collapsible_nav/collapsible_nav.js +0 -5
- package/es/components/combo_box/combo_box.js +2 -15
- package/es/components/datagrid/body/data_grid_body.js +17 -6
- package/es/components/datagrid/body/data_grid_cell.js +29 -12
- package/es/components/datagrid/body/header/data_grid_header_cell.js +17 -6
- package/es/components/datagrid/body/header/data_grid_header_row.js +17 -6
- package/es/components/datagrid/data_grid.js +17 -6
- package/es/components/datagrid/utils/in_memory.js +17 -6
- package/es/components/date_picker/auto_refresh/auto_refresh.js +6 -1
- package/es/components/date_picker/react-datepicker/original.package.json +124 -0
- package/es/components/date_picker/super_date_picker/date_popover/date_popover_button.js +6 -2
- package/es/components/description_list/description_list.js +11 -3
- package/es/components/description_list/description_list_context.js +2 -1
- package/es/components/description_list/description_list_description.js +3 -1
- package/es/components/description_list/description_list_description.styles.js +5 -2
- package/es/components/description_list/description_list_title.js +3 -2
- package/es/components/description_list/description_list_title.styles.js +7 -3
- package/es/components/description_list/description_list_types.js +2 -1
- package/es/components/expression/expression.js +12 -2
- package/es/components/form/field_search/field_search.js +6 -16
- package/es/components/form/range/range_input.js +1 -1
- package/es/components/header/header_links/header_link.js +10 -1
- package/es/components/header/header_section/header_section_item.js +4 -3
- package/es/components/icon/icon.js +3 -10
- package/es/components/image/image.js +6 -1
- package/es/components/image/image_fullscreen_wrapper.js +2 -3
- package/es/components/list_group/list_group.js +7 -1
- package/es/components/list_group/list_group_item.js +10 -3
- package/es/components/list_group/pinnable_list_group/pinnable_list_group.js +13 -1
- package/es/components/modal/modal.js +1 -3
- package/es/components/notification/notification_event.js +24 -5
- package/es/components/observer/mutation_observer/mutation_observer.js +1 -1
- package/es/components/overlay_mask/overlay_mask.js +27 -65
- package/es/components/overlay_mask/overlay_mask.styles.js +28 -0
- package/es/components/page/page_content/page_content.js +1 -2
- package/es/components/page/page_content/page_content_body.js +1 -2
- package/es/components/page/page_content/page_content_header.js +1 -2
- package/es/components/page/page_content/page_content_header_section.js +1 -2
- package/es/components/page/page_section/page_section.js +15 -3
- package/es/components/page/page_side_bar/page_side_bar.js +1 -2
- package/es/components/page/page_sidebar/page_sidebar.js +5 -1
- package/es/components/page/page_template.js +3 -1
- package/es/components/page_template/empty_prompt/page_empty_prompt.js +11 -1
- package/es/components/page_template/page_template.js +18 -2
- package/es/components/pagination/pagination.js +17 -4
- package/es/components/pagination/pagination.styles.js +31 -0
- package/es/components/pagination/pagination_button.js +17 -5
- package/es/components/pagination/pagination_button.styles.js +30 -0
- package/es/components/pagination/pagination_button_arrow.js +5 -0
- package/es/components/progress/progress.js +6 -1
- package/es/components/provider/cache/cache_provider.js +3 -9
- package/es/components/provider/provider.js +25 -2
- package/es/components/resizable_container/resizable_panel.js +6 -1
- package/es/components/side_nav/side_nav.js +5 -0
- package/es/components/suggest/suggest.js +10 -1
- package/es/components/table/table_row_cell.js +4 -6
- package/es/components/tabs/tabbed_content/tabbed_content.js +2 -19
- package/es/components/tool_tip/tool_tip.js +42 -66
- package/es/components/tool_tip/tool_tip.styles.js +107 -0
- package/es/components/tool_tip/tool_tip_anchor.js +73 -0
- package/es/components/tool_tip/tool_tip_arrow.js +20 -0
- package/es/components/tool_tip/tool_tip_popover.js +48 -101
- package/es/global_styling/functions/logicals.json +56 -0
- package/es/global_styling/index.js +2 -1
- package/es/global_styling/mixins/_typography.js +1 -1
- package/es/global_styling/utility/animations.js +13 -0
- package/es/services/theme/hooks.js +11 -16
- package/eui.d.ts +157 -61
- package/i18ntokens.json +72 -72
- package/lib/components/basic_table/basic_table.js +13 -2
- package/lib/components/basic_table/in_memory_table.js +13 -2
- package/lib/components/button/button_display/_button_display.js +10 -1
- package/lib/components/button/button_empty/button_empty.js +10 -1
- package/lib/components/card/card.styles.js +2 -2
- package/lib/components/collapsible_nav/collapsible_nav.js +0 -5
- package/lib/components/combo_box/combo_box.js +2 -15
- package/lib/components/datagrid/body/data_grid_body.js +17 -6
- package/lib/components/datagrid/body/data_grid_cell.js +29 -12
- package/lib/components/datagrid/body/header/data_grid_header_cell.js +17 -6
- package/lib/components/datagrid/body/header/data_grid_header_row.js +17 -6
- package/lib/components/datagrid/data_grid.js +17 -6
- package/lib/components/datagrid/utils/in_memory.js +17 -6
- package/lib/components/date_picker/auto_refresh/auto_refresh.js +6 -1
- package/lib/components/date_picker/react-datepicker/original.package.json +124 -0
- package/lib/components/date_picker/super_date_picker/date_popover/date_popover_button.js +6 -1
- package/lib/components/description_list/description_list.js +11 -3
- package/lib/components/description_list/description_list_context.js +2 -1
- package/lib/components/description_list/description_list_description.js +3 -1
- package/lib/components/description_list/description_list_description.styles.js +5 -2
- package/lib/components/description_list/description_list_title.js +3 -2
- package/lib/components/description_list/description_list_title.styles.js +7 -3
- package/lib/components/description_list/description_list_types.js +4 -2
- package/lib/components/expression/expression.js +12 -2
- package/lib/components/form/field_search/field_search.js +6 -16
- package/lib/components/form/range/range_input.js +1 -1
- package/lib/components/header/header_links/header_link.js +10 -1
- package/lib/components/header/header_section/header_section_item.js +4 -3
- package/lib/components/icon/icon.js +3 -10
- package/lib/components/image/image.js +6 -1
- package/lib/components/image/image_fullscreen_wrapper.js +2 -3
- package/lib/components/list_group/list_group.js +7 -1
- package/lib/components/list_group/list_group_item.js +10 -3
- package/lib/components/list_group/pinnable_list_group/pinnable_list_group.js +13 -1
- package/lib/components/modal/modal.js +1 -3
- package/lib/components/notification/notification_event.js +27 -8
- package/lib/components/observer/mutation_observer/mutation_observer.js +1 -1
- package/lib/components/overlay_mask/overlay_mask.js +27 -65
- package/lib/components/overlay_mask/overlay_mask.styles.js +34 -0
- package/lib/components/page/page_content/page_content.js +1 -2
- package/lib/components/page/page_content/page_content_body.js +1 -2
- package/lib/components/page/page_content/page_content_header.js +1 -2
- package/lib/components/page/page_content/page_content_header_section.js +1 -2
- package/lib/components/page/page_section/page_section.js +15 -3
- package/lib/components/page/page_side_bar/page_side_bar.js +1 -2
- package/lib/components/page/page_sidebar/page_sidebar.js +5 -1
- package/lib/components/page/page_template.js +3 -1
- package/lib/components/page_template/empty_prompt/page_empty_prompt.js +11 -1
- package/lib/components/page_template/page_template.js +18 -2
- package/lib/components/pagination/pagination.js +18 -3
- package/lib/components/pagination/pagination.styles.js +34 -0
- package/lib/components/pagination/pagination_button.js +9 -4
- package/lib/components/pagination/pagination_button.styles.js +45 -0
- package/lib/components/pagination/pagination_button_arrow.js +7 -0
- package/lib/components/progress/progress.js +6 -1
- package/lib/components/provider/cache/cache_provider.js +3 -11
- package/lib/components/provider/provider.js +31 -6
- package/lib/components/resizable_container/resizable_panel.js +6 -1
- package/lib/components/side_nav/side_nav.js +5 -0
- package/lib/components/suggest/suggest.js +10 -1
- package/lib/components/table/table_row_cell.js +4 -6
- package/lib/components/tabs/tabbed_content/tabbed_content.js +2 -19
- package/lib/components/tool_tip/tool_tip.js +43 -64
- package/lib/components/tool_tip/tool_tip.styles.js +123 -0
- package/lib/components/tool_tip/tool_tip_anchor.js +87 -0
- package/lib/components/tool_tip/tool_tip_arrow.js +28 -0
- package/lib/components/tool_tip/tool_tip_popover.js +49 -98
- package/lib/global_styling/functions/logicals.json +56 -0
- package/lib/global_styling/index.js +13 -0
- package/lib/global_styling/mixins/_typography.js +1 -1
- package/lib/global_styling/utility/animations.js +15 -0
- package/lib/services/theme/hooks.js +10 -15
- package/optimize/es/components/card/card.styles.js +2 -2
- package/optimize/es/components/combo_box/combo_box.js +2 -15
- package/optimize/es/components/date_picker/react-datepicker/original.package.json +124 -0
- package/optimize/es/components/date_picker/super_date_picker/date_popover/date_popover_button.js +0 -1
- package/optimize/es/components/description_list/description_list.js +5 -2
- package/optimize/es/components/description_list/description_list_context.js +2 -1
- package/optimize/es/components/description_list/description_list_description.js +3 -1
- package/optimize/es/components/description_list/description_list_description.styles.js +5 -2
- package/optimize/es/components/description_list/description_list_title.js +3 -2
- package/optimize/es/components/description_list/description_list_title.styles.js +7 -3
- package/optimize/es/components/description_list/description_list_types.js +2 -1
- package/optimize/es/components/form/field_search/field_search.js +6 -16
- package/optimize/es/components/form/range/range_input.js +1 -1
- package/optimize/es/components/header/header_section/header_section_item.js +4 -3
- package/optimize/es/components/icon/icon.js +3 -10
- package/optimize/es/components/image/image_fullscreen_wrapper.js +2 -3
- package/optimize/es/components/list_group/list_group_item.js +3 -2
- package/optimize/es/components/modal/modal.js +1 -3
- package/optimize/es/components/notification/notification_event.js +10 -4
- package/optimize/es/components/observer/mutation_observer/mutation_observer.js +1 -1
- package/optimize/es/components/overlay_mask/overlay_mask.js +27 -60
- package/optimize/es/components/overlay_mask/overlay_mask.styles.js +28 -0
- package/optimize/es/components/page/page_content/page_content.js +1 -2
- package/optimize/es/components/page/page_content/page_content_body.js +1 -2
- package/optimize/es/components/page/page_content/page_content_header.js +1 -2
- package/optimize/es/components/page/page_content/page_content_header_section.js +1 -2
- package/optimize/es/components/page/page_section/page_section.js +4 -2
- package/optimize/es/components/page/page_side_bar/page_side_bar.js +1 -2
- package/optimize/es/components/page/page_sidebar/page_sidebar.js +5 -1
- package/optimize/es/components/page/page_template.js +3 -1
- package/optimize/es/components/pagination/pagination.js +17 -4
- package/optimize/es/components/pagination/pagination.styles.js +31 -0
- package/optimize/es/components/pagination/pagination_button.js +7 -4
- package/optimize/es/components/pagination/pagination_button.styles.js +30 -0
- package/optimize/es/components/pagination/pagination_button_arrow.js +5 -0
- package/optimize/es/components/provider/cache/cache_provider.js +3 -9
- package/optimize/es/components/provider/provider.js +25 -2
- package/optimize/es/components/suggest/suggest.js +4 -1
- package/optimize/es/components/tabs/tabbed_content/tabbed_content.js +2 -19
- package/optimize/es/components/tool_tip/tool_tip.js +42 -66
- package/optimize/es/components/tool_tip/tool_tip.styles.js +107 -0
- package/optimize/es/components/tool_tip/tool_tip_anchor.js +60 -0
- package/optimize/es/components/tool_tip/tool_tip_arrow.js +20 -0
- package/optimize/es/components/tool_tip/tool_tip_popover.js +46 -87
- package/optimize/es/global_styling/functions/logicals.json +56 -0
- package/optimize/es/global_styling/index.js +2 -1
- package/optimize/es/global_styling/mixins/_typography.js +1 -1
- package/optimize/es/global_styling/utility/animations.js +13 -0
- package/optimize/es/services/theme/hooks.js +11 -16
- package/optimize/lib/components/card/card.styles.js +2 -2
- package/optimize/lib/components/combo_box/combo_box.js +2 -15
- package/optimize/lib/components/date_picker/react-datepicker/original.package.json +124 -0
- package/optimize/lib/components/description_list/description_list.js +5 -2
- package/optimize/lib/components/description_list/description_list_context.js +2 -1
- package/optimize/lib/components/description_list/description_list_description.js +3 -1
- package/optimize/lib/components/description_list/description_list_description.styles.js +5 -2
- package/optimize/lib/components/description_list/description_list_title.js +3 -2
- package/optimize/lib/components/description_list/description_list_title.styles.js +7 -3
- package/optimize/lib/components/description_list/description_list_types.js +4 -2
- package/optimize/lib/components/form/field_search/field_search.js +6 -16
- package/optimize/lib/components/form/range/range_input.js +1 -1
- package/optimize/lib/components/header/header_section/header_section_item.js +4 -3
- package/optimize/lib/components/icon/icon.js +3 -10
- package/optimize/lib/components/image/image_fullscreen_wrapper.js +2 -3
- package/optimize/lib/components/list_group/list_group_item.js +3 -2
- package/optimize/lib/components/modal/modal.js +1 -3
- package/optimize/lib/components/notification/notification_event.js +11 -11
- package/optimize/lib/components/observer/mutation_observer/mutation_observer.js +1 -1
- package/optimize/lib/components/overlay_mask/overlay_mask.js +27 -59
- package/optimize/lib/components/overlay_mask/overlay_mask.styles.js +34 -0
- package/optimize/lib/components/page/page_content/page_content.js +1 -2
- package/optimize/lib/components/page/page_content/page_content_body.js +1 -2
- package/optimize/lib/components/page/page_content/page_content_header.js +1 -2
- package/optimize/lib/components/page/page_content/page_content_header_section.js +1 -2
- package/optimize/lib/components/page/page_section/page_section.js +4 -2
- package/optimize/lib/components/page/page_side_bar/page_side_bar.js +1 -2
- package/optimize/lib/components/page/page_sidebar/page_sidebar.js +5 -1
- package/optimize/lib/components/page/page_template.js +3 -1
- package/optimize/lib/components/pagination/pagination.js +18 -3
- package/optimize/lib/components/pagination/pagination.styles.js +34 -0
- package/optimize/lib/components/pagination/pagination_button.js +9 -4
- package/optimize/lib/components/pagination/pagination_button.styles.js +45 -0
- package/optimize/lib/components/pagination/pagination_button_arrow.js +7 -0
- package/optimize/lib/components/provider/cache/cache_provider.js +3 -11
- package/optimize/lib/components/provider/provider.js +31 -6
- package/optimize/lib/components/suggest/suggest.js +4 -1
- package/optimize/lib/components/tabs/tabbed_content/tabbed_content.js +2 -19
- package/optimize/lib/components/tool_tip/tool_tip.js +42 -64
- package/optimize/lib/components/tool_tip/tool_tip.styles.js +125 -0
- package/optimize/lib/components/tool_tip/tool_tip_anchor.js +75 -0
- package/optimize/lib/components/tool_tip/tool_tip_arrow.js +35 -0
- package/optimize/lib/components/tool_tip/tool_tip_popover.js +47 -88
- package/optimize/lib/global_styling/functions/logicals.json +56 -0
- package/optimize/lib/global_styling/index.js +13 -0
- package/optimize/lib/global_styling/mixins/_typography.js +1 -1
- package/optimize/lib/global_styling/utility/animations.js +17 -0
- package/optimize/lib/services/theme/hooks.js +10 -15
- package/package.json +2 -2
- package/src/components/badge/_badge.scss +0 -5
- package/src/components/datagrid/_data_grid_data_row.scss +7 -0
- package/src/components/datagrid/body/header/_data_grid_header_row.scss +1 -1
- package/src/components/filter_group/_filter_group.scss +3 -1
- package/src/components/flex/_flex_group.scss +2 -11
- package/src/components/flex/_flex_item.scss +0 -6
- package/src/components/form/field_search/_field_search.scss +0 -5
- package/src/components/form/form_control_layout/_form_control_layout_delimited.scss +0 -3
- package/src/components/form/form_row/_form_row.scss +0 -1
- package/src/components/header/header_section/_header_section_item.scss +1 -1
- package/src/components/index.scss +0 -4
- package/src/components/list_group/_list_group_item.scss +3 -25
- package/src/components/modal/_modal.scss +5 -20
- package/src/components/page/page_content/_page_content.scss +0 -1
- package/src/components/table/_responsive.scss +0 -1
- package/src/components/table/_table.scss +0 -5
- package/src/global_styling/mixins/_form.scss +0 -4
- package/src/global_styling/mixins/_helpers.scss +0 -8
- package/src/global_styling/mixins/_tool_tip.scss +3 -6
- package/src/global_styling/mixins/_typography.scss +1 -5
- package/src/global_styling/utility/_index.scss +0 -1
- package/src/themes/amsterdam/overrides/_index.scss +0 -2
- package/test-env/components/basic_table/basic_table.js +13 -2
- package/test-env/components/basic_table/in_memory_table.js +13 -2
- package/test-env/components/button/button_display/_button_display.js +10 -1
- package/test-env/components/button/button_empty/button_empty.js +10 -1
- package/test-env/components/card/card.styles.js +2 -2
- package/test-env/components/collapsible_nav/collapsible_nav.js +0 -5
- package/test-env/components/combo_box/combo_box.js +2 -15
- package/test-env/components/datagrid/body/data_grid_body.js +17 -6
- package/test-env/components/datagrid/body/data_grid_cell.js +29 -12
- package/test-env/components/datagrid/body/header/data_grid_header_cell.js +17 -6
- package/test-env/components/datagrid/body/header/data_grid_header_row.js +17 -6
- package/test-env/components/datagrid/data_grid.js +17 -6
- package/test-env/components/datagrid/utils/in_memory.js +17 -6
- package/test-env/components/date_picker/auto_refresh/auto_refresh.js +6 -1
- package/test-env/components/date_picker/react-datepicker/original.package.json +124 -0
- package/test-env/components/date_picker/super_date_picker/date_popover/date_popover_button.js +6 -1
- package/test-env/components/description_list/description_list.js +11 -3
- package/test-env/components/description_list/description_list_context.js +2 -1
- package/test-env/components/description_list/description_list_description.js +3 -1
- package/test-env/components/description_list/description_list_description.styles.js +5 -2
- package/test-env/components/description_list/description_list_title.js +3 -2
- package/test-env/components/description_list/description_list_title.styles.js +7 -3
- package/test-env/components/description_list/description_list_types.js +4 -2
- package/test-env/components/expression/expression.js +12 -2
- package/test-env/components/form/field_search/field_search.js +6 -16
- package/test-env/components/form/range/range_input.js +1 -1
- package/test-env/components/header/header_links/header_link.js +10 -1
- package/test-env/components/header/header_section/header_section_item.js +4 -3
- package/test-env/components/image/image.js +6 -1
- package/test-env/components/image/image_fullscreen_wrapper.js +2 -3
- package/test-env/components/list_group/list_group.js +7 -1
- package/test-env/components/list_group/list_group_item.js +10 -3
- package/test-env/components/list_group/pinnable_list_group/pinnable_list_group.js +13 -1
- package/test-env/components/modal/modal.js +1 -3
- package/test-env/components/notification/notification_event.js +24 -15
- package/test-env/components/observer/mutation_observer/mutation_observer.js +1 -1
- package/test-env/components/overlay_mask/overlay_mask.js +27 -64
- package/test-env/components/overlay_mask/overlay_mask.styles.js +34 -0
- package/test-env/components/page/page_content/page_content.js +1 -2
- package/test-env/components/page/page_content/page_content_body.js +1 -2
- package/test-env/components/page/page_content/page_content_header.js +1 -2
- package/test-env/components/page/page_content/page_content_header_section.js +1 -2
- package/test-env/components/page/page_section/page_section.js +15 -3
- package/test-env/components/page/page_side_bar/page_side_bar.js +1 -2
- package/test-env/components/page/page_sidebar/page_sidebar.js +5 -1
- package/test-env/components/page/page_template.js +3 -1
- package/test-env/components/page_template/empty_prompt/page_empty_prompt.js +11 -1
- package/test-env/components/page_template/page_template.js +18 -2
- package/test-env/components/pagination/pagination.js +18 -3
- package/test-env/components/pagination/pagination.styles.js +34 -0
- package/test-env/components/pagination/pagination_button.js +9 -4
- package/test-env/components/pagination/pagination_button.styles.js +45 -0
- package/test-env/components/pagination/pagination_button_arrow.js +7 -0
- package/test-env/components/progress/progress.js +6 -1
- package/test-env/components/provider/cache/cache_provider.js +3 -11
- package/test-env/components/provider/provider.js +31 -6
- package/test-env/components/resizable_container/resizable_panel.js +6 -1
- package/test-env/components/side_nav/side_nav.js +5 -0
- package/test-env/components/suggest/suggest.js +10 -1
- package/test-env/components/table/table_row_cell.js +4 -6
- package/test-env/components/tabs/tabbed_content/tabbed_content.js +2 -19
- package/test-env/components/tool_tip/tool_tip.js +42 -64
- package/test-env/components/tool_tip/tool_tip.styles.js +125 -0
- package/test-env/components/tool_tip/tool_tip_anchor.js +84 -0
- package/test-env/components/tool_tip/tool_tip_arrow.js +35 -0
- package/test-env/components/tool_tip/tool_tip_popover.js +49 -89
- package/test-env/global_styling/functions/logicals.json +56 -0
- package/test-env/global_styling/index.js +13 -0
- package/test-env/global_styling/mixins/_typography.js +1 -1
- package/test-env/global_styling/utility/animations.js +17 -0
- package/test-env/services/theme/hooks.js +10 -15
- package/src/components/call_out/_index.scss +0 -3
- package/src/components/call_out/_mixins.scss +0 -23
- package/src/components/call_out/_variables.scss +0 -7
- package/src/components/overlay_mask/_index.scss +0 -1
- package/src/components/overlay_mask/_overlay_mask.scss +0 -33
- package/src/components/pagination/_index.scss +0 -2
- package/src/components/pagination/_pagination.scss +0 -30
- package/src/components/pagination/_pagination_button.scss +0 -37
- package/src/components/tool_tip/_index.scss +0 -1
- package/src/components/tool_tip/_tool_tip.scss +0 -121
- package/src/global_styling/utility/_utility.scss +0 -15
- package/src/themes/amsterdam/overrides/_overlay_mask.scss +0 -3
- package/src/themes/amsterdam/overrides/_tooltip.scss +0 -7
package/dist/eui_theme_dark.css
CHANGED
|
@@ -129,20 +129,6 @@ SOFTWARE.
|
|
|
129
129
|
-webkit-transform: translateY(1px);
|
|
130
130
|
transform: translateY(1px); } }
|
|
131
131
|
|
|
132
|
-
/**
|
|
133
|
-
* IE doesn't properly wrap groups if it is within a flex-item of a flex-group.
|
|
134
|
-
* Adding the following styles to the flex-item that contains the wrapping group, will fix IE.
|
|
135
|
-
* https://github.com/philipwalton/flexbugs/issues/104
|
|
136
|
-
*/
|
|
137
|
-
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
|
|
138
|
-
.euiIEFlexWrapFix {
|
|
139
|
-
-webkit-flex-grow: 1;
|
|
140
|
-
flex-grow: 1;
|
|
141
|
-
-webkit-flex-shrink: 1;
|
|
142
|
-
flex-shrink: 1;
|
|
143
|
-
-webkit-flex-basis: 0%;
|
|
144
|
-
flex-basis: 0%; } }
|
|
145
|
-
|
|
146
132
|
/**
|
|
147
133
|
* LEGEND
|
|
148
134
|
* __day-name : Week headers like Su, Mo, etc
|
|
@@ -468,11 +454,6 @@ SOFTWARE.
|
|
|
468
454
|
.react-datepicker__month-read-view,
|
|
469
455
|
.react-datepicker__month-year-read-view {
|
|
470
456
|
transition-property: box-shadow, background-image, background-size; } }
|
|
471
|
-
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
|
|
472
|
-
.react-datepicker__year-read-view,
|
|
473
|
-
.react-datepicker__month-read-view,
|
|
474
|
-
.react-datepicker__month-year-read-view {
|
|
475
|
-
line-height: 1em; } }
|
|
476
457
|
.react-datepicker__year-read-view::-webkit-input-placeholder,
|
|
477
458
|
.react-datepicker__month-read-view::-webkit-input-placeholder,
|
|
478
459
|
.react-datepicker__month-year-read-view::-webkit-input-placeholder {
|
|
@@ -522,8 +503,7 @@ SOFTWARE.
|
|
|
522
503
|
max-width: 100%;
|
|
523
504
|
overflow: hidden !important;
|
|
524
505
|
text-overflow: ellipsis !important;
|
|
525
|
-
white-space: nowrap !important;
|
|
526
|
-
word-wrap: normal !important; }
|
|
506
|
+
white-space: nowrap !important; }
|
|
527
507
|
|
|
528
508
|
.react-datepicker__year-dropdown-container,
|
|
529
509
|
.react-datepicker__month-dropdown-container {
|
|
@@ -729,8 +709,7 @@ SOFTWARE.
|
|
|
729
709
|
max-width: 100%;
|
|
730
710
|
overflow: hidden !important;
|
|
731
711
|
text-overflow: ellipsis !important;
|
|
732
|
-
white-space: nowrap !important;
|
|
733
|
-
word-wrap: normal !important; }
|
|
712
|
+
white-space: nowrap !important; }
|
|
734
713
|
|
|
735
714
|
.react-datepicker__month {
|
|
736
715
|
text-align: center;
|
|
@@ -811,9 +790,6 @@ SOFTWARE.
|
|
|
811
790
|
overflow: hidden !important;
|
|
812
791
|
text-overflow: ellipsis !important;
|
|
813
792
|
white-space: nowrap !important;
|
|
814
|
-
word-wrap: normal !important;
|
|
815
|
-
-webkit-flex: 1 1 auto;
|
|
816
|
-
flex: 1 1 auto;
|
|
817
793
|
text-align: inherit;
|
|
818
794
|
font-weight: inherit;
|
|
819
795
|
line-height: inherit;
|
|
@@ -823,8 +799,6 @@ SOFTWARE.
|
|
|
823
799
|
.euiBadge .euiBadge__childButton:not(:disabled):hover, .euiBadge .euiBadge__childButton:not(:disabled):focus {
|
|
824
800
|
text-decoration: underline; }
|
|
825
801
|
.euiBadge .euiBadge__iconButton {
|
|
826
|
-
-webkit-flex: 0 0 auto;
|
|
827
|
-
flex: 0 0 auto;
|
|
828
802
|
font-size: 0;
|
|
829
803
|
margin-left: 4px; }
|
|
830
804
|
.euiBadge .euiBadge__iconButton:focus {
|
|
@@ -840,15 +814,9 @@ SOFTWARE.
|
|
|
840
814
|
overflow: hidden !important;
|
|
841
815
|
text-overflow: ellipsis !important;
|
|
842
816
|
white-space: nowrap !important;
|
|
843
|
-
word-wrap: normal !important;
|
|
844
|
-
-webkit-flex: 1 1 auto;
|
|
845
|
-
flex: 1 1 auto;
|
|
846
817
|
cursor: default; }
|
|
847
|
-
.euiBadge .euiBadge__icon {
|
|
848
|
-
-
|
|
849
|
-
flex: 0 0 auto; }
|
|
850
|
-
.euiBadge .euiBadge__icon:not(:only-child) {
|
|
851
|
-
margin-left: 4px; }
|
|
818
|
+
.euiBadge .euiBadge__icon:not(:only-child) {
|
|
819
|
+
margin-left: 4px; }
|
|
852
820
|
.euiBadge.euiBadge--iconLeft .euiBadge__content {
|
|
853
821
|
-webkit-flex-direction: row-reverse;
|
|
854
822
|
flex-direction: row-reverse; }
|
|
@@ -2199,9 +2167,6 @@ SOFTWARE.
|
|
|
2199
2167
|
@supports (-moz-appearance: none) {
|
|
2200
2168
|
.euiComboBox .euiComboBox__inputWrap {
|
|
2201
2169
|
transition-property: box-shadow, background-image, background-size; } }
|
|
2202
|
-
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
|
|
2203
|
-
.euiComboBox .euiComboBox__inputWrap {
|
|
2204
|
-
line-height: 1em; } }
|
|
2205
2170
|
.euiComboBox .euiComboBox__inputWrap::-webkit-input-placeholder {
|
|
2206
2171
|
color: #81858f;
|
|
2207
2172
|
opacity: 1; }
|
|
@@ -2381,7 +2346,6 @@ SOFTWARE.
|
|
|
2381
2346
|
overflow: hidden !important;
|
|
2382
2347
|
text-overflow: ellipsis !important;
|
|
2383
2348
|
white-space: nowrap !important;
|
|
2384
|
-
word-wrap: normal !important;
|
|
2385
2349
|
line-height: 24px;
|
|
2386
2350
|
font-size: 14px;
|
|
2387
2351
|
padding: 0;
|
|
@@ -2394,7 +2358,6 @@ SOFTWARE.
|
|
|
2394
2358
|
overflow: hidden !important;
|
|
2395
2359
|
text-overflow: ellipsis !important;
|
|
2396
2360
|
white-space: nowrap !important;
|
|
2397
|
-
word-wrap: normal !important;
|
|
2398
2361
|
padding-right: 40px;
|
|
2399
2362
|
position: absolute;
|
|
2400
2363
|
pointer-events: none;
|
|
@@ -2416,7 +2379,6 @@ SOFTWARE.
|
|
|
2416
2379
|
|
|
2417
2380
|
.euiComboBoxOptionsList__empty {
|
|
2418
2381
|
overflow-wrap: break-word !important;
|
|
2419
|
-
word-wrap: break-word !important;
|
|
2420
2382
|
word-break: break-word;
|
|
2421
2383
|
/* 2 */
|
|
2422
2384
|
padding: 8px;
|
|
@@ -2554,7 +2516,6 @@ SOFTWARE.
|
|
|
2554
2516
|
|
|
2555
2517
|
.euiContextMenuPanelTitle {
|
|
2556
2518
|
overflow-wrap: break-word !important;
|
|
2557
|
-
word-wrap: break-word !important;
|
|
2558
2519
|
word-break: break-word;
|
|
2559
2520
|
color: #DFE5EF;
|
|
2560
2521
|
font-size: 14px;
|
|
@@ -2816,7 +2777,6 @@ SOFTWARE.
|
|
|
2816
2777
|
overflow: hidden !important;
|
|
2817
2778
|
text-overflow: ellipsis !important;
|
|
2818
2779
|
white-space: nowrap !important;
|
|
2819
|
-
word-wrap: normal !important;
|
|
2820
2780
|
font-size: 14px;
|
|
2821
2781
|
font-size: 1rem;
|
|
2822
2782
|
line-height: 1.71429rem;
|
|
@@ -2830,7 +2790,6 @@ SOFTWARE.
|
|
|
2830
2790
|
overflow: hidden !important;
|
|
2831
2791
|
text-overflow: ellipsis !important;
|
|
2832
2792
|
white-space: nowrap !important;
|
|
2833
|
-
word-wrap: normal !important;
|
|
2834
2793
|
font-size: 14px;
|
|
2835
2794
|
font-size: 1rem;
|
|
2836
2795
|
line-height: 1.71429rem;
|
|
@@ -3107,9 +3066,6 @@ SOFTWARE.
|
|
|
3107
3066
|
word-break: break-all;
|
|
3108
3067
|
transition: background 150ms ease-in;
|
|
3109
3068
|
background-size: 100%; }
|
|
3110
|
-
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
|
|
3111
|
-
.euiDatePopoverButton {
|
|
3112
|
-
line-height: 1em; } }
|
|
3113
3069
|
.euiDatePopoverButton::-webkit-input-placeholder {
|
|
3114
3070
|
color: #81858f;
|
|
3115
3071
|
opacity: 1; }
|
|
@@ -3260,9 +3216,6 @@ SOFTWARE.
|
|
|
3260
3216
|
-webkit-justify-content: space-between;
|
|
3261
3217
|
justify-content: space-between;
|
|
3262
3218
|
text-align: left; }
|
|
3263
|
-
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
|
|
3264
|
-
.euiSuperDatePicker__prettyFormat {
|
|
3265
|
-
line-height: 1em; } }
|
|
3266
3219
|
.euiSuperDatePicker__prettyFormat::-webkit-input-placeholder {
|
|
3267
3220
|
color: #81858f;
|
|
3268
3221
|
opacity: 1; }
|
|
@@ -3451,7 +3404,6 @@ SOFTWARE.
|
|
|
3451
3404
|
overflow: hidden !important;
|
|
3452
3405
|
text-overflow: ellipsis !important;
|
|
3453
3406
|
white-space: nowrap !important;
|
|
3454
|
-
word-wrap: normal !important;
|
|
3455
3407
|
overflow: hidden;
|
|
3456
3408
|
white-space: nowrap;
|
|
3457
3409
|
text-align: left;
|
|
@@ -3651,7 +3603,6 @@ SOFTWARE.
|
|
|
3651
3603
|
text-transform: capitalize; }
|
|
3652
3604
|
.euiDataGridRowCell .euiDataGridRowCell__definedHeight {
|
|
3653
3605
|
overflow-wrap: break-word !important;
|
|
3654
|
-
word-wrap: break-word !important;
|
|
3655
3606
|
word-break: break-word;
|
|
3656
3607
|
-webkit-flex-grow: 1;
|
|
3657
3608
|
flex-grow: 1; }
|
|
@@ -3662,7 +3613,6 @@ SOFTWARE.
|
|
|
3662
3613
|
overflow: hidden !important;
|
|
3663
3614
|
text-overflow: ellipsis !important;
|
|
3664
3615
|
white-space: nowrap !important;
|
|
3665
|
-
word-wrap: normal !important;
|
|
3666
3616
|
overflow: hidden;
|
|
3667
3617
|
white-space: nowrap; }
|
|
3668
3618
|
|
|
@@ -3672,7 +3622,10 @@ SOFTWARE.
|
|
|
3672
3622
|
overflow: auto;
|
|
3673
3623
|
max-width: 400px !important;
|
|
3674
3624
|
max-height: 400px !important;
|
|
3675
|
-
z-index: 1000 !important;
|
|
3625
|
+
z-index: 1000 !important;
|
|
3626
|
+
-webkit-filter: none;
|
|
3627
|
+
filter: none;
|
|
3628
|
+
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); }
|
|
3676
3629
|
.euiDataGridRowCell__popover::-webkit-scrollbar {
|
|
3677
3630
|
width: 16px;
|
|
3678
3631
|
height: 16px; }
|
|
@@ -4308,7 +4261,6 @@ SOFTWARE.
|
|
|
4308
4261
|
overflow: hidden !important;
|
|
4309
4262
|
text-overflow: ellipsis !important;
|
|
4310
4263
|
white-space: nowrap !important;
|
|
4311
|
-
word-wrap: normal !important;
|
|
4312
4264
|
min-width: 48px; }
|
|
4313
4265
|
.euiFilterButton__textShift::after {
|
|
4314
4266
|
display: block;
|
|
@@ -4349,8 +4301,7 @@ SOFTWARE.
|
|
|
4349
4301
|
max-width: 100%;
|
|
4350
4302
|
overflow: hidden !important;
|
|
4351
4303
|
text-overflow: ellipsis !important;
|
|
4352
|
-
white-space: nowrap !important;
|
|
4353
|
-
word-wrap: normal !important; }
|
|
4304
|
+
white-space: nowrap !important; }
|
|
4354
4305
|
|
|
4355
4306
|
.euiFilterSelect__items {
|
|
4356
4307
|
scrollbar-color: rgba(152, 162, 179, 0.5) transparent;
|
|
@@ -4382,27 +4333,18 @@ SOFTWARE.
|
|
|
4382
4333
|
color: #98A2B3;
|
|
4383
4334
|
font-size: 14px; }
|
|
4384
4335
|
|
|
4385
|
-
/**
|
|
4386
|
-
* 1. Not always needed, but fixes an IE11 issue when flex-groups are nested under display: flex elements.
|
|
4387
|
-
* 2. IE requires a unit to grow.
|
|
4388
|
-
*/
|
|
4389
4336
|
.euiFlexGroup {
|
|
4390
4337
|
display: -webkit-flex;
|
|
4391
4338
|
display: flex;
|
|
4392
4339
|
-webkit-align-items: stretch;
|
|
4393
4340
|
align-items: stretch;
|
|
4394
4341
|
-webkit-flex-grow: 1;
|
|
4395
|
-
flex-grow: 1;
|
|
4396
|
-
/* 1 */ }
|
|
4342
|
+
flex-grow: 1; }
|
|
4397
4343
|
.euiFlexGroup .euiFlexItem {
|
|
4398
4344
|
-webkit-flex-grow: 1;
|
|
4399
4345
|
flex-grow: 1;
|
|
4400
4346
|
-webkit-flex-basis: 0%;
|
|
4401
|
-
flex-basis: 0%;
|
|
4402
|
-
/* 2 */ }
|
|
4403
|
-
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
|
|
4404
|
-
.euiFlexGroup .euiFlexItem {
|
|
4405
|
-
min-width: 1px; } }
|
|
4347
|
+
flex-basis: 0%; }
|
|
4406
4348
|
|
|
4407
4349
|
.euiFlexGroup--gutterExtraSmall {
|
|
4408
4350
|
margin: -2px; }
|
|
@@ -4841,8 +4783,6 @@ SOFTWARE.
|
|
|
4841
4783
|
|
|
4842
4784
|
/**
|
|
4843
4785
|
* 1. Allow EuiPanels to expand to fill the item.
|
|
4844
|
-
* 2. IE11 hack forces inner content of flex items to respect a higher parent's width (mostly) and
|
|
4845
|
-
* not cause weird wrapping issues.
|
|
4846
4786
|
*/
|
|
4847
4787
|
.euiFlexItem {
|
|
4848
4788
|
display: -webkit-flex;
|
|
@@ -4855,10 +4795,6 @@ SOFTWARE.
|
|
|
4855
4795
|
* 1. We need the extra specificity here to override the FlexGroup > FlexItem styles.
|
|
4856
4796
|
* 2. FlexItem can be manually set to not grow if needed.
|
|
4857
4797
|
*/ }
|
|
4858
|
-
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
|
|
4859
|
-
.euiFlexItem {
|
|
4860
|
-
min-width: 1px;
|
|
4861
|
-
/* 2 */ } }
|
|
4862
4798
|
.euiFlexItem.euiFlexItem--flexGrowZero {
|
|
4863
4799
|
/* 1 */
|
|
4864
4800
|
-webkit-flex-grow: 0;
|
|
@@ -5345,9 +5281,6 @@ SOFTWARE.
|
|
|
5345
5281
|
@supports (-moz-appearance: none) {
|
|
5346
5282
|
.euiFieldNumber {
|
|
5347
5283
|
transition-property: box-shadow, background-image, background-size; } }
|
|
5348
|
-
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
|
|
5349
|
-
.euiFieldNumber {
|
|
5350
|
-
line-height: 1em; } }
|
|
5351
5284
|
.euiFieldNumber::-webkit-input-placeholder {
|
|
5352
5285
|
color: #81858f;
|
|
5353
5286
|
opacity: 1; }
|
|
@@ -5474,9 +5407,6 @@ SOFTWARE.
|
|
|
5474
5407
|
@supports (-moz-appearance: none) {
|
|
5475
5408
|
.euiFieldPassword {
|
|
5476
5409
|
transition-property: box-shadow, background-image, background-size; } }
|
|
5477
|
-
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
|
|
5478
|
-
.euiFieldPassword {
|
|
5479
|
-
line-height: 1em; } }
|
|
5480
5410
|
.euiFieldPassword::-webkit-input-placeholder {
|
|
5481
5411
|
color: #81858f;
|
|
5482
5412
|
opacity: 1; }
|
|
@@ -5575,7 +5505,6 @@ SOFTWARE.
|
|
|
5575
5505
|
/*
|
|
5576
5506
|
* 1. Fix for Safari to ensure that it renders like a normal text input
|
|
5577
5507
|
* and doesn't add extra spacing around text
|
|
5578
|
-
* 2. Remove the X clear button from input type search in Chrome and IE
|
|
5579
5508
|
*/
|
|
5580
5509
|
.euiFieldSearch {
|
|
5581
5510
|
max-width: 400px;
|
|
@@ -5610,9 +5539,6 @@ SOFTWARE.
|
|
|
5610
5539
|
@supports (-moz-appearance: none) {
|
|
5611
5540
|
.euiFieldSearch {
|
|
5612
5541
|
transition-property: box-shadow, background-image, background-size; } }
|
|
5613
|
-
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
|
|
5614
|
-
.euiFieldSearch {
|
|
5615
|
-
line-height: 1em; } }
|
|
5616
5542
|
.euiFieldSearch::-webkit-input-placeholder {
|
|
5617
5543
|
color: #81858f;
|
|
5618
5544
|
opacity: 1; }
|
|
@@ -5709,9 +5635,6 @@ SOFTWARE.
|
|
|
5709
5635
|
.euiFieldSearch::-webkit-search-decoration, .euiFieldSearch::-webkit-search-cancel-button {
|
|
5710
5636
|
-webkit-appearance: none;
|
|
5711
5637
|
/* 1, 2 */ }
|
|
5712
|
-
.euiFieldSearch::-ms-clear {
|
|
5713
|
-
display: none;
|
|
5714
|
-
/* 2 */ }
|
|
5715
5638
|
|
|
5716
5639
|
.euiFieldSearch--compressed {
|
|
5717
5640
|
padding-left: 32px; }
|
|
@@ -5749,9 +5672,6 @@ SOFTWARE.
|
|
|
5749
5672
|
@supports (-moz-appearance: none) {
|
|
5750
5673
|
.euiFieldText {
|
|
5751
5674
|
transition-property: box-shadow, background-image, background-size; } }
|
|
5752
|
-
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
|
|
5753
|
-
.euiFieldText {
|
|
5754
|
-
line-height: 1em; } }
|
|
5755
5675
|
.euiFieldText::-webkit-input-placeholder {
|
|
5756
5676
|
color: #81858f;
|
|
5757
5677
|
opacity: 1; }
|
|
@@ -5970,7 +5890,6 @@ SOFTWARE.
|
|
|
5970
5890
|
overflow: hidden !important;
|
|
5971
5891
|
text-overflow: ellipsis !important;
|
|
5972
5892
|
white-space: nowrap !important;
|
|
5973
|
-
word-wrap: normal !important;
|
|
5974
5893
|
line-height: 16px; }
|
|
5975
5894
|
.euiFilePicker:not(.euiFilePicker--large):not(.euiFilePicker-hasFiles) .euiFilePicker__promptText {
|
|
5976
5895
|
color: #535966; }
|
|
@@ -6123,9 +6042,6 @@ SOFTWARE.
|
|
|
6123
6042
|
@supports (-moz-appearance: none) {
|
|
6124
6043
|
.euiSelect {
|
|
6125
6044
|
transition-property: box-shadow, background-image, background-size; } }
|
|
6126
|
-
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
|
|
6127
|
-
.euiSelect {
|
|
6128
|
-
line-height: 1em; } }
|
|
6129
6045
|
.euiSelect::-webkit-input-placeholder {
|
|
6130
6046
|
color: #81858f;
|
|
6131
6047
|
opacity: 1; }
|
|
@@ -6320,9 +6236,6 @@ SOFTWARE.
|
|
|
6320
6236
|
@supports (-moz-appearance: none) {
|
|
6321
6237
|
.euiSuperSelectControl {
|
|
6322
6238
|
transition-property: box-shadow, background-image, background-size; } }
|
|
6323
|
-
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
|
|
6324
|
-
.euiSuperSelectControl {
|
|
6325
|
-
line-height: 1em; } }
|
|
6326
6239
|
.euiSuperSelectControl::-webkit-input-placeholder {
|
|
6327
6240
|
color: #81858f;
|
|
6328
6241
|
opacity: 1; }
|
|
@@ -6500,7 +6413,6 @@ SOFTWARE.
|
|
|
6500
6413
|
overflow: hidden !important;
|
|
6501
6414
|
text-overflow: ellipsis !important;
|
|
6502
6415
|
white-space: nowrap !important;
|
|
6503
|
-
word-wrap: normal !important;
|
|
6504
6416
|
-webkit-flex-shrink: 0;
|
|
6505
6417
|
flex-shrink: 0;
|
|
6506
6418
|
height: 100%;
|
|
@@ -6631,8 +6543,6 @@ SOFTWARE.
|
|
|
6631
6543
|
transition-property: box-shadow, background-image, background-size; } }
|
|
6632
6544
|
.euiFormControlLayoutDelimited[class*='--compressed'] .euiFormControlLayoutDelimited__input {
|
|
6633
6545
|
height: 100%;
|
|
6634
|
-
padding-top: 0;
|
|
6635
|
-
padding-bottom: 0;
|
|
6636
6546
|
padding-left: 8px;
|
|
6637
6547
|
padding-right: 8px; }
|
|
6638
6548
|
.euiFormControlLayoutDelimited[class*='--compressed'] .euiFormControlLayoutIcons {
|
|
@@ -6672,9 +6582,7 @@ SOFTWARE.
|
|
|
6672
6582
|
.euiFormControlLayoutDelimited .euiFormControlLayoutIcons {
|
|
6673
6583
|
position: static;
|
|
6674
6584
|
padding-left: 12px;
|
|
6675
|
-
padding-right: 12px;
|
|
6676
|
-
-webkit-flex-shrink: 0;
|
|
6677
|
-
flex-shrink: 0; }
|
|
6585
|
+
padding-right: 12px; }
|
|
6678
6586
|
.euiFormControlLayoutDelimited .euiFormControlLayoutIcons:not(.euiFormControlLayoutIcons--right) {
|
|
6679
6587
|
-webkit-order: -1;
|
|
6680
6588
|
order: -1; }
|
|
@@ -6795,7 +6703,6 @@ SOFTWARE.
|
|
|
6795
6703
|
font-size: 0.85714rem;
|
|
6796
6704
|
line-height: 1.14286rem;
|
|
6797
6705
|
overflow-wrap: break-word !important;
|
|
6798
|
-
word-wrap: break-word !important;
|
|
6799
6706
|
word-break: break-word;
|
|
6800
6707
|
color: #DFE5EF;
|
|
6801
6708
|
font-weight: 600; }
|
|
@@ -6820,7 +6727,6 @@ SOFTWARE.
|
|
|
6820
6727
|
font-size: 0.85714rem;
|
|
6821
6728
|
line-height: 1.14286rem;
|
|
6822
6729
|
overflow-wrap: break-word !important;
|
|
6823
|
-
word-wrap: break-word !important;
|
|
6824
6730
|
word-break: break-word;
|
|
6825
6731
|
color: #DFE5EF;
|
|
6826
6732
|
font-weight: 600;
|
|
@@ -6882,8 +6788,7 @@ SOFTWARE.
|
|
|
6882
6788
|
align-items: stretch; }
|
|
6883
6789
|
.euiFormRow--horizontal .euiFormRow__label {
|
|
6884
6790
|
-webkit-hyphens: auto;
|
|
6885
|
-
hyphens: auto;
|
|
6886
|
-
max-width: 100%; }
|
|
6791
|
+
hyphens: auto; }
|
|
6887
6792
|
.euiFormRow--horizontal .euiFormRow__labelWrapper {
|
|
6888
6793
|
display: block;
|
|
6889
6794
|
line-height: 31px;
|
|
@@ -7654,9 +7559,6 @@ SOFTWARE.
|
|
|
7654
7559
|
@supports (-moz-appearance: none) {
|
|
7655
7560
|
.euiTextArea {
|
|
7656
7561
|
transition-property: box-shadow, background-image, background-size; } }
|
|
7657
|
-
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
|
|
7658
|
-
.euiTextArea {
|
|
7659
|
-
line-height: 1em; } }
|
|
7660
7562
|
.euiTextArea::-webkit-input-placeholder {
|
|
7661
7563
|
color: #81858f;
|
|
7662
7564
|
opacity: 1; }
|
|
@@ -7866,7 +7768,6 @@ SOFTWARE.
|
|
|
7866
7768
|
|
|
7867
7769
|
.euiHeaderLogo__text {
|
|
7868
7770
|
overflow-wrap: break-word !important;
|
|
7869
|
-
word-wrap: break-word !important;
|
|
7870
7771
|
word-break: break-word;
|
|
7871
7772
|
color: #DFE5EF;
|
|
7872
7773
|
font-size: 22px;
|
|
@@ -7884,7 +7785,6 @@ SOFTWARE.
|
|
|
7884
7785
|
height: 24px; }
|
|
7885
7786
|
.euiHeaderLogo__text {
|
|
7886
7787
|
overflow-wrap: break-word !important;
|
|
7887
|
-
word-wrap: break-word !important;
|
|
7888
7788
|
word-break: break-word;
|
|
7889
7789
|
color: #DFE5EF;
|
|
7890
7790
|
font-size: 16px;
|
|
@@ -7911,7 +7811,6 @@ SOFTWARE.
|
|
|
7911
7811
|
opacity: 1; }
|
|
7912
7812
|
.euiHeaderAlert .euiHeaderAlert__title {
|
|
7913
7813
|
overflow-wrap: break-word !important;
|
|
7914
|
-
word-wrap: break-word !important;
|
|
7915
7814
|
word-break: break-word;
|
|
7916
7815
|
color: #DFE5EF;
|
|
7917
7816
|
font-size: 16px;
|
|
@@ -8171,13 +8070,9 @@ SOFTWARE.
|
|
|
8171
8070
|
align-items: center;
|
|
8172
8071
|
transition: background-color 150ms;
|
|
8173
8072
|
position: relative; }
|
|
8174
|
-
.euiListGroupItem.euiListGroupItem-isActive, .euiListGroupItem.euiListGroupItem-isClickable:hover {
|
|
8175
|
-
background-color: rgba(52, 55, 65, 0.25); }
|
|
8176
|
-
.euiListGroupItem.euiListGroupItem-isClickable:focus-within {
|
|
8073
|
+
.euiListGroupItem.euiListGroupItem-isActive, .euiListGroupItem.euiListGroupItem-isClickable:hover, .euiListGroupItem.euiListGroupItem-isClickable:focus-within {
|
|
8177
8074
|
background-color: rgba(52, 55, 65, 0.25); }
|
|
8178
|
-
.euiListGroupItem.euiListGroupItem--ghost.euiListGroupItem-isClickable:hover {
|
|
8179
|
-
background-color: rgba(255, 255, 255, 0.1); }
|
|
8180
|
-
.euiListGroupItem.euiListGroupItem--ghost.euiListGroupItem-isClickable:focus-within {
|
|
8075
|
+
.euiListGroupItem.euiListGroupItem--ghost.euiListGroupItem-isClickable:hover, .euiListGroupItem.euiListGroupItem--ghost.euiListGroupItem-isClickable:focus-within {
|
|
8181
8076
|
background-color: rgba(255, 255, 255, 0.1); }
|
|
8182
8077
|
.euiListGroupItem.euiListGroupItem-isClickable:hover .euiListGroupItem__button,
|
|
8183
8078
|
.euiListGroupItem .euiListGroupItem__button:hover,
|
|
@@ -8191,17 +8086,6 @@ SOFTWARE.
|
|
|
8191
8086
|
background-color: transparent;
|
|
8192
8087
|
text-decoration: none; }
|
|
8193
8088
|
|
|
8194
|
-
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
|
|
8195
|
-
.euiListGroupItem__button:hover,
|
|
8196
|
-
.euiListGroupItem__button:focus {
|
|
8197
|
-
background-color: rgba(52, 55, 65, 0.25);
|
|
8198
|
-
border-radius: 6px; }
|
|
8199
|
-
.euiListGroupItem__button:hover .euiListGroupItem--ghost .euiListGroupItem__button:hover,
|
|
8200
|
-
.euiListGroupItem__button:hover .euiListGroupItem--ghost .euiListGroupItem__button:focus,
|
|
8201
|
-
.euiListGroupItem__button:focus .euiListGroupItem--ghost .euiListGroupItem__button:hover,
|
|
8202
|
-
.euiListGroupItem__button:focus .euiListGroupItem--ghost .euiListGroupItem__button:focus {
|
|
8203
|
-
background-color: rgba(255, 255, 255, 0.1); } }
|
|
8204
|
-
|
|
8205
8089
|
.euiListGroupItem__text,
|
|
8206
8090
|
.euiListGroupItem__button {
|
|
8207
8091
|
line-height: 24px;
|
|
@@ -8210,8 +8094,8 @@ SOFTWARE.
|
|
|
8210
8094
|
display: flex;
|
|
8211
8095
|
-webkit-align-items: center;
|
|
8212
8096
|
align-items: center;
|
|
8213
|
-
-webkit-flex: 1
|
|
8214
|
-
flex: 1
|
|
8097
|
+
-webkit-flex-grow: 1;
|
|
8098
|
+
flex-grow: 1;
|
|
8215
8099
|
text-align: left;
|
|
8216
8100
|
max-width: 100%;
|
|
8217
8101
|
font-weight: inherit; }
|
|
@@ -8648,9 +8532,6 @@ SOFTWARE.
|
|
|
8648
8532
|
background-size: 0% 100%;
|
|
8649
8533
|
margin: 0;
|
|
8650
8534
|
transition: box-shadow 150ms ease-in, background-image 150ms ease-in, background-size 150ms ease-in, background-color 150ms ease-in; }
|
|
8651
|
-
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
|
|
8652
|
-
.euiMarkdownEditorTextArea {
|
|
8653
|
-
line-height: 1em; } }
|
|
8654
8535
|
.euiMarkdownEditorTextArea::-webkit-input-placeholder {
|
|
8655
8536
|
color: #81858f;
|
|
8656
8537
|
opacity: 1; }
|
|
@@ -8716,18 +8597,15 @@ SOFTWARE.
|
|
|
8716
8597
|
-webkit-transform: translateY(-1px);
|
|
8717
8598
|
transform: translateY(-1px); }
|
|
8718
8599
|
|
|
8719
|
-
/**
|
|
8720
|
-
* 1. Fix IE overflow issue (min-height) by adding a separate wrapper for the
|
|
8721
|
-
* flex display. https://github.com/philipwalton/flexbugs#flexbug-3
|
|
8722
|
-
* 2. IE has trouble with min-widths on flex elements. Use the pixel value
|
|
8723
|
-
* from our forms since that's usually the smallest we want them.
|
|
8724
|
-
*/
|
|
8725
8600
|
.euiModal {
|
|
8726
8601
|
border: 1px solid #343741;
|
|
8727
8602
|
box-shadow: 0 2.7px 9px rgba(0, 0, 0, 0.325), 0 9.4px 24px rgba(0, 0, 0, 0.225), 0 21.8px 43px rgba(0, 0, 0, 0.2);
|
|
8728
8603
|
display: -webkit-flex;
|
|
8729
8604
|
display: flex;
|
|
8730
|
-
|
|
8605
|
+
-webkit-flex-direction: column;
|
|
8606
|
+
flex-direction: column;
|
|
8607
|
+
max-height: 75vh;
|
|
8608
|
+
overflow: hidden;
|
|
8731
8609
|
position: relative;
|
|
8732
8610
|
background-color: #1D1E24;
|
|
8733
8611
|
border-radius: 6px;
|
|
@@ -8738,16 +8616,6 @@ SOFTWARE.
|
|
|
8738
8616
|
max-width: calc(100vw - 16px); }
|
|
8739
8617
|
.euiModal:focus {
|
|
8740
8618
|
outline: none; }
|
|
8741
|
-
.euiModal .euiModal__flex {
|
|
8742
|
-
/* 1 */
|
|
8743
|
-
-webkit-flex: 1 1 auto;
|
|
8744
|
-
flex: 1 1 auto;
|
|
8745
|
-
display: -webkit-flex;
|
|
8746
|
-
display: flex;
|
|
8747
|
-
-webkit-flex-direction: column;
|
|
8748
|
-
flex-direction: column;
|
|
8749
|
-
max-height: 75vh;
|
|
8750
|
-
overflow: hidden; }
|
|
8751
8619
|
|
|
8752
8620
|
.euiModal--maxWidth-default {
|
|
8753
8621
|
max-width: MIN(768px, calc(100vw - 16px)); }
|
|
@@ -8770,7 +8638,6 @@ SOFTWARE.
|
|
|
8770
8638
|
|
|
8771
8639
|
.euiModalHeader__title {
|
|
8772
8640
|
overflow-wrap: break-word !important;
|
|
8773
|
-
word-wrap: break-word !important;
|
|
8774
8641
|
word-break: break-word;
|
|
8775
8642
|
color: #DFE5EF;
|
|
8776
8643
|
font-size: 27px;
|
|
@@ -8864,6 +8731,7 @@ SOFTWARE.
|
|
|
8864
8731
|
width: 100vw !important;
|
|
8865
8732
|
max-width: none !important;
|
|
8866
8733
|
min-width: 0 !important;
|
|
8734
|
+
max-height: 100vh;
|
|
8867
8735
|
left: 0;
|
|
8868
8736
|
right: 0;
|
|
8869
8737
|
bottom: 0;
|
|
@@ -8873,9 +8741,6 @@ SOFTWARE.
|
|
|
8873
8741
|
.euiModal.euiModal--confirmation {
|
|
8874
8742
|
box-shadow: 0 -2.7px 9px rgba(0, 0, 0, 0.325), 0 -9.4px 24px rgba(0, 0, 0, 0.225), 0 -21.8px 43px rgba(0, 0, 0, 0.2);
|
|
8875
8743
|
top: auto; }
|
|
8876
|
-
.euiModal .euiModal__flex {
|
|
8877
|
-
/* 1 */
|
|
8878
|
-
max-height: 100vh; }
|
|
8879
8744
|
.euiModalHeader {
|
|
8880
8745
|
width: 100%; }
|
|
8881
8746
|
.euiModalFooter {
|
|
@@ -8900,6 +8765,7 @@ SOFTWARE.
|
|
|
8900
8765
|
width: 100vw !important;
|
|
8901
8766
|
max-width: none !important;
|
|
8902
8767
|
min-width: 0 !important;
|
|
8768
|
+
max-height: 100vh;
|
|
8903
8769
|
left: 0;
|
|
8904
8770
|
right: 0;
|
|
8905
8771
|
bottom: 0;
|
|
@@ -8909,9 +8775,6 @@ SOFTWARE.
|
|
|
8909
8775
|
.euiModal.euiModal--confirmation {
|
|
8910
8776
|
box-shadow: 0 -2.7px 9px rgba(0, 0, 0, 0.325), 0 -9.4px 24px rgba(0, 0, 0, 0.225), 0 -21.8px 43px rgba(0, 0, 0, 0.2);
|
|
8911
8777
|
top: auto; }
|
|
8912
|
-
.euiModal .euiModal__flex {
|
|
8913
|
-
/* 1 */
|
|
8914
|
-
max-height: 100vh; }
|
|
8915
8778
|
.euiModalHeader {
|
|
8916
8779
|
width: 100%; }
|
|
8917
8780
|
.euiModalFooter {
|
|
@@ -8942,7 +8805,6 @@ SOFTWARE.
|
|
|
8942
8805
|
|
|
8943
8806
|
.euiNotificationEvent__title {
|
|
8944
8807
|
overflow-wrap: break-word !important;
|
|
8945
|
-
word-wrap: break-word !important;
|
|
8946
8808
|
word-break: break-word;
|
|
8947
8809
|
color: #DFE5EF;
|
|
8948
8810
|
font-size: 16px;
|
|
@@ -9031,98 +8893,6 @@ SOFTWARE.
|
|
|
9031
8893
|
stroke-width: 1px;
|
|
9032
8894
|
stroke: #343741; }
|
|
9033
8895
|
|
|
9034
|
-
.euiOverlayMask {
|
|
9035
|
-
position: fixed;
|
|
9036
|
-
top: 0;
|
|
9037
|
-
left: 0;
|
|
9038
|
-
right: 0;
|
|
9039
|
-
bottom: 0;
|
|
9040
|
-
display: -webkit-flex;
|
|
9041
|
-
display: flex;
|
|
9042
|
-
-webkit-align-items: center;
|
|
9043
|
-
align-items: center;
|
|
9044
|
-
-webkit-justify-content: center;
|
|
9045
|
-
justify-content: center;
|
|
9046
|
-
padding-bottom: 10vh;
|
|
9047
|
-
-webkit-animation: euiAnimFadeIn 150ms ease-in;
|
|
9048
|
-
animation: euiAnimFadeIn 150ms ease-in;
|
|
9049
|
-
background: rgba(52, 55, 65, 0.8); }
|
|
9050
|
-
|
|
9051
|
-
.euiBody-hasOverlayMask {
|
|
9052
|
-
overflow: hidden; }
|
|
9053
|
-
|
|
9054
|
-
.euiOverlayMask--aboveHeader {
|
|
9055
|
-
z-index: 6000; }
|
|
9056
|
-
|
|
9057
|
-
.euiOverlayMask--belowHeader {
|
|
9058
|
-
z-index: 1000; }
|
|
9059
|
-
|
|
9060
|
-
.euiPagination {
|
|
9061
|
-
scrollbar-color: rgba(152, 162, 179, 0.5) transparent;
|
|
9062
|
-
scrollbar-width: thin;
|
|
9063
|
-
display: -webkit-flex;
|
|
9064
|
-
display: flex;
|
|
9065
|
-
-webkit-align-items: center;
|
|
9066
|
-
align-items: center;
|
|
9067
|
-
overflow-y: hidden;
|
|
9068
|
-
overflow-x: auto; }
|
|
9069
|
-
.euiPagination::-webkit-scrollbar {
|
|
9070
|
-
width: 16px;
|
|
9071
|
-
height: 16px; }
|
|
9072
|
-
.euiPagination::-webkit-scrollbar-thumb {
|
|
9073
|
-
background-color: rgba(152, 162, 179, 0.5);
|
|
9074
|
-
background-clip: content-box;
|
|
9075
|
-
border-radius: 16px;
|
|
9076
|
-
border: 6px solid transparent; }
|
|
9077
|
-
.euiPagination::-webkit-scrollbar-corner, .euiPagination::-webkit-scrollbar-track {
|
|
9078
|
-
background-color: transparent; }
|
|
9079
|
-
.euiPagination__compressedText {
|
|
9080
|
-
display: -webkit-inline-flex;
|
|
9081
|
-
display: inline-flex;
|
|
9082
|
-
-webkit-align-items: center;
|
|
9083
|
-
align-items: center;
|
|
9084
|
-
line-height: 1 !important; }
|
|
9085
|
-
.euiPagination__compressedText > span {
|
|
9086
|
-
margin-right: 8px;
|
|
9087
|
-
margin-left: 8px;
|
|
9088
|
-
font-weight: 600; }
|
|
9089
|
-
.euiPagination__compressedText > span:first-of-type {
|
|
9090
|
-
color: #36A2EF; }
|
|
9091
|
-
|
|
9092
|
-
.euiPagination__list {
|
|
9093
|
-
display: -webkit-flex;
|
|
9094
|
-
display: flex;
|
|
9095
|
-
-webkit-align-items: baseline;
|
|
9096
|
-
align-items: baseline; }
|
|
9097
|
-
|
|
9098
|
-
.euiPaginationButton {
|
|
9099
|
-
font-size: 14px;
|
|
9100
|
-
padding: 0;
|
|
9101
|
-
text-align: center;
|
|
9102
|
-
border-radius: 6px;
|
|
9103
|
-
outline-offset: -2px; }
|
|
9104
|
-
|
|
9105
|
-
.euiPaginationButton-isActive {
|
|
9106
|
-
font-weight: 700; }
|
|
9107
|
-
.euiPaginationButton-isActive.euiPaginationButton-isActive {
|
|
9108
|
-
color: #36A2EF; }
|
|
9109
|
-
.euiPaginationButton-isActive.euiPaginationButton-isActive .euiButtonEmpty__content {
|
|
9110
|
-
cursor: default; }
|
|
9111
|
-
.euiPaginationButton-isActive.euiPaginationButton-isActive, .euiPaginationButton-isActive.euiPaginationButton-isActive:hover {
|
|
9112
|
-
text-decoration: underline; }
|
|
9113
|
-
|
|
9114
|
-
.euiPaginationArrowButton {
|
|
9115
|
-
outline-offset: -2px; }
|
|
9116
|
-
|
|
9117
|
-
.euiPaginationButton-isPlaceholder {
|
|
9118
|
-
-webkit-align-items: baseline;
|
|
9119
|
-
align-items: baseline;
|
|
9120
|
-
color: #515761;
|
|
9121
|
-
font-size: 14px;
|
|
9122
|
-
padding: 0 8px;
|
|
9123
|
-
height: 24px;
|
|
9124
|
-
padding-top: 6px; }
|
|
9125
|
-
|
|
9126
8896
|
.euiSplitPanel {
|
|
9127
8897
|
display: -webkit-flex;
|
|
9128
8898
|
display: flex;
|
|
@@ -9160,7 +8930,6 @@ SOFTWARE.
|
|
|
9160
8930
|
flex-grow: 0; }
|
|
9161
8931
|
.euiPageContent.euiPageContent--horizontalCenter {
|
|
9162
8932
|
width: auto;
|
|
9163
|
-
max-width: 100%;
|
|
9164
8933
|
margin-left: auto;
|
|
9165
8934
|
margin-right: auto;
|
|
9166
8935
|
-webkit-flex-grow: 0;
|
|
@@ -9350,7 +9119,6 @@ SOFTWARE.
|
|
|
9350
9119
|
overflow: hidden !important;
|
|
9351
9120
|
text-overflow: ellipsis !important;
|
|
9352
9121
|
white-space: nowrap !important;
|
|
9353
|
-
word-wrap: normal !important;
|
|
9354
9122
|
padding-left: 8px;
|
|
9355
9123
|
display: -webkit-flex;
|
|
9356
9124
|
display: flex;
|
|
@@ -9379,8 +9147,7 @@ SOFTWARE.
|
|
|
9379
9147
|
max-width: 100%;
|
|
9380
9148
|
overflow: hidden !important;
|
|
9381
9149
|
text-overflow: ellipsis !important;
|
|
9382
|
-
white-space: nowrap !important;
|
|
9383
|
-
word-wrap: normal !important; }
|
|
9150
|
+
white-space: nowrap !important; }
|
|
9384
9151
|
|
|
9385
9152
|
.euiTreeView__iconWrapper {
|
|
9386
9153
|
margin-top: -2px;
|
|
@@ -9838,8 +9605,7 @@ SOFTWARE.
|
|
|
9838
9605
|
max-width: 100%;
|
|
9839
9606
|
overflow: hidden !important;
|
|
9840
9607
|
text-overflow: ellipsis !important;
|
|
9841
|
-
white-space: nowrap !important;
|
|
9842
|
-
word-wrap: normal !important; }
|
|
9608
|
+
white-space: nowrap !important; }
|
|
9843
9609
|
|
|
9844
9610
|
.euiSideNavItem--root {
|
|
9845
9611
|
/**
|
|
@@ -9860,7 +9626,6 @@ SOFTWARE.
|
|
|
9860
9626
|
/* 1 */ }
|
|
9861
9627
|
.euiSideNavItem--root > .euiSideNavItemButton .euiSideNavItemButton__label {
|
|
9862
9628
|
overflow-wrap: break-word !important;
|
|
9863
|
-
word-wrap: break-word !important;
|
|
9864
9629
|
word-break: break-word;
|
|
9865
9630
|
color: #DFE5EF;
|
|
9866
9631
|
font-size: 16px;
|
|
@@ -10002,7 +9767,6 @@ SOFTWARE.
|
|
|
10002
9767
|
|
|
10003
9768
|
.euiSelectableList__groupLabel {
|
|
10004
9769
|
overflow-wrap: break-word !important;
|
|
10005
|
-
word-wrap: break-word !important;
|
|
10006
9770
|
word-break: break-word;
|
|
10007
9771
|
color: #DFE5EF;
|
|
10008
9772
|
font-size: 12px;
|
|
@@ -10064,8 +9828,7 @@ SOFTWARE.
|
|
|
10064
9828
|
max-width: 100%;
|
|
10065
9829
|
overflow: hidden !important;
|
|
10066
9830
|
text-overflow: ellipsis !important;
|
|
10067
|
-
white-space: nowrap !important;
|
|
10068
|
-
word-wrap: normal !important; }
|
|
9831
|
+
white-space: nowrap !important; }
|
|
10069
9832
|
|
|
10070
9833
|
/**
|
|
10071
9834
|
* 1. Prevent really long input from overflowing the container.
|
|
@@ -10317,7 +10080,6 @@ SOFTWARE.
|
|
|
10317
10080
|
|
|
10318
10081
|
.euiStepHorizontal__title {
|
|
10319
10082
|
overflow-wrap: break-word !important;
|
|
10320
|
-
word-wrap: break-word !important;
|
|
10321
10083
|
word-break: break-word;
|
|
10322
10084
|
color: #DFE5EF;
|
|
10323
10085
|
font-size: 16px;
|
|
@@ -10373,8 +10135,7 @@ SOFTWARE.
|
|
|
10373
10135
|
max-width: 100%;
|
|
10374
10136
|
overflow: hidden !important;
|
|
10375
10137
|
text-overflow: ellipsis !important;
|
|
10376
|
-
white-space: nowrap !important;
|
|
10377
|
-
word-wrap: normal !important; }
|
|
10138
|
+
white-space: nowrap !important; }
|
|
10378
10139
|
|
|
10379
10140
|
button.euiSuggestItem {
|
|
10380
10141
|
width: 100%;
|
|
@@ -10447,7 +10208,6 @@ button.euiSuggestItem {
|
|
|
10447
10208
|
.euiSuggestItem__label,
|
|
10448
10209
|
.euiSuggestItem__description {
|
|
10449
10210
|
overflow-wrap: break-word !important;
|
|
10450
|
-
word-wrap: break-word !important;
|
|
10451
10211
|
word-break: break-word;
|
|
10452
10212
|
display: inline-block;
|
|
10453
10213
|
padding: 8px;
|
|
@@ -10753,7 +10513,6 @@ button.euiSuggestItem {
|
|
|
10753
10513
|
align-self: baseline; }
|
|
10754
10514
|
.euiSuggestItem__description.euiSuggestItem__description--wrap {
|
|
10755
10515
|
overflow-wrap: break-word !important;
|
|
10756
|
-
word-wrap: break-word !important;
|
|
10757
10516
|
word-break: break-word;
|
|
10758
10517
|
white-space: normal !important; }
|
|
10759
10518
|
|
|
@@ -10763,10 +10522,6 @@ button.euiSuggestItem {
|
|
|
10763
10522
|
.euiSuggestInput__statusIcon {
|
|
10764
10523
|
background-color: transparent !important; }
|
|
10765
10524
|
|
|
10766
|
-
/**
|
|
10767
|
-
* NOTE: table-layout: fixed causes a bug in IE11 and Edge (see #9929). It also prevents us from
|
|
10768
|
-
* specifying a column width, e.g. the checkbox column.
|
|
10769
|
-
*/
|
|
10770
10525
|
.euiTable {
|
|
10771
10526
|
font-size: 14px;
|
|
10772
10527
|
font-size: 1rem;
|
|
@@ -10812,7 +10567,6 @@ button.euiSuggestItem {
|
|
|
10812
10567
|
font-weight: inherit;
|
|
10813
10568
|
text-align: left;
|
|
10814
10569
|
overflow-wrap: break-word !important;
|
|
10815
|
-
word-wrap: break-word !important;
|
|
10816
10570
|
word-break: break-word;
|
|
10817
10571
|
color: #DFE5EF;
|
|
10818
10572
|
font-size: 14px;
|
|
@@ -10932,7 +10686,6 @@ button.euiSuggestItem {
|
|
|
10932
10686
|
|
|
10933
10687
|
.euiTableCellContent__text {
|
|
10934
10688
|
overflow-wrap: break-word !important;
|
|
10935
|
-
word-wrap: break-word !important;
|
|
10936
10689
|
word-break: break-word;
|
|
10937
10690
|
/* 4 */
|
|
10938
10691
|
min-width: 0;
|
|
@@ -10954,8 +10707,7 @@ button.euiSuggestItem {
|
|
|
10954
10707
|
max-width: 100%;
|
|
10955
10708
|
overflow: hidden !important;
|
|
10956
10709
|
text-overflow: ellipsis !important;
|
|
10957
|
-
white-space: nowrap !important;
|
|
10958
|
-
word-wrap: normal !important; }
|
|
10710
|
+
white-space: nowrap !important; }
|
|
10959
10711
|
.euiTableHeaderCell .euiTableCellContent__text,
|
|
10960
10712
|
.euiTableFooterCell .euiTableCellContent__text,
|
|
10961
10713
|
.euiTableCellContent--truncateText .euiTableCellContent__text {
|
|
@@ -10964,7 +10716,6 @@ button.euiSuggestItem {
|
|
|
10964
10716
|
.euiTableCellContent--overflowingContent {
|
|
10965
10717
|
overflow: visible;
|
|
10966
10718
|
white-space: normal;
|
|
10967
|
-
word-break: break-all;
|
|
10968
10719
|
word-break: break-word; }
|
|
10969
10720
|
|
|
10970
10721
|
.euiTableCellContent--showOnHover > *:not(:first-child) {
|
|
@@ -11048,7 +10799,6 @@ button.euiSuggestItem {
|
|
|
11048
10799
|
overflow: hidden !important;
|
|
11049
10800
|
text-overflow: ellipsis !important;
|
|
11050
10801
|
white-space: nowrap !important;
|
|
11051
|
-
word-wrap: normal !important;
|
|
11052
10802
|
font-size: 9.625px;
|
|
11053
10803
|
font-size: 0.6875rem;
|
|
11054
10804
|
display: block;
|
|
@@ -11177,8 +10927,6 @@ button.euiSuggestItem {
|
|
|
11177
10927
|
.euiTable.euiTable--responsive .euiTableRow.euiTableRow-isExpandedRow .euiTableRowCell::before {
|
|
11178
10928
|
display: none; }
|
|
11179
10929
|
.euiTable.euiTable--responsive .euiTableRowCell {
|
|
11180
|
-
display: block;
|
|
11181
|
-
/* IE requires block to grow and wrap. */
|
|
11182
10930
|
min-width: 50%;
|
|
11183
10931
|
border: none; }
|
|
11184
10932
|
.euiTable.euiTable--responsive .euiTableRowCellCheckbox {
|
|
@@ -11210,7 +10958,6 @@ button.euiSuggestItem {
|
|
|
11210
10958
|
overflow: hidden !important;
|
|
11211
10959
|
text-overflow: ellipsis !important;
|
|
11212
10960
|
white-space: nowrap !important;
|
|
11213
|
-
word-wrap: normal !important;
|
|
11214
10961
|
font-size: 9.625px;
|
|
11215
10962
|
font-size: 0.6875rem;
|
|
11216
10963
|
display: block;
|
|
@@ -11339,8 +11086,6 @@ button.euiSuggestItem {
|
|
|
11339
11086
|
.euiTable.euiTable--responsive .euiTableRow.euiTableRow-isExpandedRow .euiTableRowCell::before {
|
|
11340
11087
|
display: none; }
|
|
11341
11088
|
.euiTable.euiTable--responsive .euiTableRowCell {
|
|
11342
|
-
display: block;
|
|
11343
|
-
/* IE requires block to grow and wrap. */
|
|
11344
11089
|
min-width: 50%;
|
|
11345
11090
|
border: none; }
|
|
11346
11091
|
.euiTable.euiTable--responsive .euiTableRowCellCheckbox {
|
|
@@ -11427,7 +11172,6 @@ button.euiSuggestItem {
|
|
|
11427
11172
|
overflow: hidden !important;
|
|
11428
11173
|
text-overflow: ellipsis !important;
|
|
11429
11174
|
white-space: nowrap !important;
|
|
11430
|
-
word-wrap: normal !important;
|
|
11431
11175
|
font-size: 14px;
|
|
11432
11176
|
font-size: 1rem;
|
|
11433
11177
|
line-height: 1.71429rem;
|
|
@@ -11482,153 +11226,6 @@ button.euiSuggestItem {
|
|
|
11482
11226
|
.euiTab__append {
|
|
11483
11227
|
margin-left: 8px; }
|
|
11484
11228
|
|
|
11485
|
-
/*
|
|
11486
|
-
* 1. Shift arrow 1px more than half its size to account for border radius
|
|
11487
|
-
*/
|
|
11488
|
-
.euiToolTip {
|
|
11489
|
-
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);
|
|
11490
|
-
border-radius: 6px;
|
|
11491
|
-
background-color: black;
|
|
11492
|
-
color: #FFF;
|
|
11493
|
-
z-index: 9000;
|
|
11494
|
-
max-width: 256px;
|
|
11495
|
-
overflow-wrap: break-word;
|
|
11496
|
-
font-size: 14px;
|
|
11497
|
-
font-size: 1rem;
|
|
11498
|
-
line-height: 1.71429rem;
|
|
11499
|
-
padding: 12px;
|
|
11500
|
-
-webkit-animation: euiToolTipTop 350ms ease-out 0s forwards;
|
|
11501
|
-
animation: euiToolTipTop 350ms ease-out 0s forwards;
|
|
11502
|
-
position: absolute;
|
|
11503
|
-
opacity: 0;
|
|
11504
|
-
/* 1 */
|
|
11505
|
-
/* 1 */ }
|
|
11506
|
-
.euiToolTip .euiToolTip__arrow {
|
|
11507
|
-
content: '';
|
|
11508
|
-
position: absolute;
|
|
11509
|
-
-webkit-transform-origin: center;
|
|
11510
|
-
transform-origin: center;
|
|
11511
|
-
border-radius: 2px;
|
|
11512
|
-
background-color: black;
|
|
11513
|
-
width: 12px;
|
|
11514
|
-
height: 12px;
|
|
11515
|
-
-webkit-transform: translateY(-7px) rotateZ(45deg);
|
|
11516
|
-
transform: translateY(-7px) rotateZ(45deg);
|
|
11517
|
-
/* 1 */ }
|
|
11518
|
-
.euiToolTip.euiToolTip--right {
|
|
11519
|
-
-webkit-animation-name: euiToolTipRight;
|
|
11520
|
-
animation-name: euiToolTipRight; }
|
|
11521
|
-
.euiToolTip.euiToolTip--right .euiToolTip__arrow {
|
|
11522
|
-
-webkit-transform: translateX(-5px) rotateZ(45deg);
|
|
11523
|
-
transform: translateX(-5px) rotateZ(45deg);
|
|
11524
|
-
/* 1 */ }
|
|
11525
|
-
.euiToolTip.euiToolTip--bottom {
|
|
11526
|
-
-webkit-animation-name: euiToolTipBottom;
|
|
11527
|
-
animation-name: euiToolTipBottom; }
|
|
11528
|
-
.euiToolTip.euiToolTip--bottom .euiToolTip__arrow {
|
|
11529
|
-
-webkit-transform: translateY(-5px) rotateZ(45deg);
|
|
11530
|
-
transform: translateY(-5px) rotateZ(45deg);
|
|
11531
|
-
/* 1 */ }
|
|
11532
|
-
.euiToolTip.euiToolTip--left {
|
|
11533
|
-
-webkit-animation-name: euiToolTipLeft;
|
|
11534
|
-
animation-name: euiToolTipLeft; }
|
|
11535
|
-
.euiToolTip.euiToolTip--left .euiToolTip__arrow {
|
|
11536
|
-
-webkit-transform: translateX(-7px) rotateZ(45deg);
|
|
11537
|
-
transform: translateX(-7px) rotateZ(45deg);
|
|
11538
|
-
/* 1 */ }
|
|
11539
|
-
.euiToolTip .euiToolTip__title {
|
|
11540
|
-
font-weight: 700;
|
|
11541
|
-
border-bottom: solid 1px #333333;
|
|
11542
|
-
padding-bottom: 4px;
|
|
11543
|
-
margin-bottom: 4px; }
|
|
11544
|
-
|
|
11545
|
-
.euiToolTipAnchor {
|
|
11546
|
-
display: inline-block; }
|
|
11547
|
-
.euiToolTipAnchor *[disabled] {
|
|
11548
|
-
pointer-events: none; }
|
|
11549
|
-
.euiToolTipAnchor.euiToolTipAnchor--displayBlock {
|
|
11550
|
-
display: block; }
|
|
11551
|
-
|
|
11552
|
-
@-webkit-keyframes euiToolTipTop {
|
|
11553
|
-
0% {
|
|
11554
|
-
opacity: 0;
|
|
11555
|
-
-webkit-transform: translateY(-16px);
|
|
11556
|
-
transform: translateY(-16px); }
|
|
11557
|
-
100% {
|
|
11558
|
-
opacity: 1;
|
|
11559
|
-
-webkit-transform: translateY(0);
|
|
11560
|
-
transform: translateY(0); } }
|
|
11561
|
-
|
|
11562
|
-
@keyframes euiToolTipTop {
|
|
11563
|
-
0% {
|
|
11564
|
-
opacity: 0;
|
|
11565
|
-
-webkit-transform: translateY(-16px);
|
|
11566
|
-
transform: translateY(-16px); }
|
|
11567
|
-
100% {
|
|
11568
|
-
opacity: 1;
|
|
11569
|
-
-webkit-transform: translateY(0);
|
|
11570
|
-
transform: translateY(0); } }
|
|
11571
|
-
|
|
11572
|
-
@-webkit-keyframes euiToolTipBottom {
|
|
11573
|
-
0% {
|
|
11574
|
-
opacity: 0;
|
|
11575
|
-
-webkit-transform: translateY(16px);
|
|
11576
|
-
transform: translateY(16px); }
|
|
11577
|
-
100% {
|
|
11578
|
-
opacity: 1;
|
|
11579
|
-
-webkit-transform: translateY(0);
|
|
11580
|
-
transform: translateY(0); } }
|
|
11581
|
-
|
|
11582
|
-
@keyframes euiToolTipBottom {
|
|
11583
|
-
0% {
|
|
11584
|
-
opacity: 0;
|
|
11585
|
-
-webkit-transform: translateY(16px);
|
|
11586
|
-
transform: translateY(16px); }
|
|
11587
|
-
100% {
|
|
11588
|
-
opacity: 1;
|
|
11589
|
-
-webkit-transform: translateY(0);
|
|
11590
|
-
transform: translateY(0); } }
|
|
11591
|
-
|
|
11592
|
-
@-webkit-keyframes euiToolTipLeft {
|
|
11593
|
-
0% {
|
|
11594
|
-
opacity: 0;
|
|
11595
|
-
-webkit-transform: translateX(-16px);
|
|
11596
|
-
transform: translateX(-16px); }
|
|
11597
|
-
100% {
|
|
11598
|
-
opacity: 1;
|
|
11599
|
-
-webkit-transform: translateY(0);
|
|
11600
|
-
transform: translateY(0); } }
|
|
11601
|
-
|
|
11602
|
-
@keyframes euiToolTipLeft {
|
|
11603
|
-
0% {
|
|
11604
|
-
opacity: 0;
|
|
11605
|
-
-webkit-transform: translateX(-16px);
|
|
11606
|
-
transform: translateX(-16px); }
|
|
11607
|
-
100% {
|
|
11608
|
-
opacity: 1;
|
|
11609
|
-
-webkit-transform: translateY(0);
|
|
11610
|
-
transform: translateY(0); } }
|
|
11611
|
-
|
|
11612
|
-
@-webkit-keyframes euiToolTipRight {
|
|
11613
|
-
0% {
|
|
11614
|
-
opacity: 0;
|
|
11615
|
-
-webkit-transform: translateX(16px);
|
|
11616
|
-
transform: translateX(16px); }
|
|
11617
|
-
100% {
|
|
11618
|
-
opacity: 1;
|
|
11619
|
-
-webkit-transform: translateY(0);
|
|
11620
|
-
transform: translateY(0); } }
|
|
11621
|
-
|
|
11622
|
-
@keyframes euiToolTipRight {
|
|
11623
|
-
0% {
|
|
11624
|
-
opacity: 0;
|
|
11625
|
-
-webkit-transform: translateX(16px);
|
|
11626
|
-
transform: translateX(16px); }
|
|
11627
|
-
100% {
|
|
11628
|
-
opacity: 1;
|
|
11629
|
-
-webkit-transform: translateY(0);
|
|
11630
|
-
transform: translateY(0); } }
|
|
11631
|
-
|
|
11632
11229
|
.euiCode {
|
|
11633
11230
|
border-radius: 4px;
|
|
11634
11231
|
font-weight: 700;
|
|
@@ -11886,7 +11483,6 @@ button.euiSuggestItem {
|
|
|
11886
11483
|
|
|
11887
11484
|
.euiHeaderLogo__text {
|
|
11888
11485
|
overflow-wrap: break-word !important;
|
|
11889
|
-
word-wrap: break-word !important;
|
|
11890
11486
|
word-break: break-word;
|
|
11891
11487
|
color: #DFE5EF;
|
|
11892
11488
|
font-size: 14px;
|
|
@@ -11982,9 +11578,6 @@ button.euiSuggestItem {
|
|
|
11982
11578
|
font-feature-settings: "calt" 1, "kern" 1, "liga" 1, "tnum" 1;
|
|
11983
11579
|
border-radius: 4px; }
|
|
11984
11580
|
|
|
11985
|
-
.euiOverlayMask {
|
|
11986
|
-
background: rgba(0, 0, 0, 0.5); }
|
|
11987
|
-
|
|
11988
11581
|
.euiRangeTooltip__value {
|
|
11989
11582
|
border-radius: 4px; }
|
|
11990
11583
|
|
|
@@ -12229,7 +11822,6 @@ button.euiSuggestItem {
|
|
|
12229
11822
|
margin-bottom: 4px; }
|
|
12230
11823
|
.euiSideNavItem--root > .euiSideNavItemButton .euiSideNavItemButton__label {
|
|
12231
11824
|
overflow-wrap: break-word !important;
|
|
12232
|
-
word-wrap: break-word !important;
|
|
12233
11825
|
word-break: break-word;
|
|
12234
11826
|
color: #DFE5EF;
|
|
12235
11827
|
font-size: 14px;
|
|
@@ -12311,7 +11903,6 @@ button.euiSuggestItem {
|
|
|
12311
11903
|
.euiTab .euiTab__content,
|
|
12312
11904
|
.euiTabs--condensed .euiTab .euiTab__content {
|
|
12313
11905
|
overflow-wrap: break-word !important;
|
|
12314
|
-
word-wrap: break-word !important;
|
|
12315
11906
|
word-break: break-word;
|
|
12316
11907
|
color: #DFE5EF;
|
|
12317
11908
|
font-size: 14px;
|
|
@@ -12332,7 +11923,6 @@ button.euiSuggestItem {
|
|
|
12332
11923
|
.euiTabs--small .euiTab .euiTab__content,
|
|
12333
11924
|
.euiTabs--condensed.euiTabs--small .euiTab .euiTab__content {
|
|
12334
11925
|
overflow-wrap: break-word !important;
|
|
12335
|
-
word-wrap: break-word !important;
|
|
12336
11926
|
word-break: break-word;
|
|
12337
11927
|
color: #DFE5EF;
|
|
12338
11928
|
font-size: 12px;
|
|
@@ -12350,7 +11940,6 @@ button.euiSuggestItem {
|
|
|
12350
11940
|
.euiTabs--large .euiTab .euiTab__content,
|
|
12351
11941
|
.euiTabs--condensed.euiTabs--large .euiTab .euiTab__content {
|
|
12352
11942
|
overflow-wrap: break-word !important;
|
|
12353
|
-
word-wrap: break-word !important;
|
|
12354
11943
|
word-break: break-word;
|
|
12355
11944
|
color: #DFE5EF;
|
|
12356
11945
|
font-size: 16px;
|
|
@@ -12385,8 +11974,3 @@ button.euiSuggestItem {
|
|
|
12385
11974
|
.euiTabs .euiTab-isSelected:focus-visible,
|
|
12386
11975
|
.euiTabs--condensed.euiTabs .euiTab-isSelected:focus-visible {
|
|
12387
11976
|
box-shadow: none; }
|
|
12388
|
-
|
|
12389
|
-
.euiToolTip {
|
|
12390
|
-
padding: 8px; }
|
|
12391
|
-
.euiToolTip .euiHorizontalRule {
|
|
12392
|
-
background-color: #333333; }
|