@elastic/eui 64.0.1 → 65.0.2
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 +164 -1249
- package/dist/eui_theme_dark.json +0 -32
- package/dist/eui_theme_dark.json.d.ts +0 -32
- package/dist/eui_theme_dark.min.css +1 -1
- package/dist/eui_theme_light.css +136 -1221
- package/dist/eui_theme_light.json +0 -32
- package/dist/eui_theme_light.json.d.ts +0 -32
- package/dist/eui_theme_light.min.css +1 -1
- package/es/components/accessibility/screen_reader_only/screen_reader_only.styles.js +2 -1
- package/es/components/accessibility/skip_link/skip_link.js +4 -54
- package/es/components/accordion/accordion.js +2 -1
- package/es/components/accordion/accordion.styles.js +17 -27
- package/es/components/badge/beta_badge/beta_badge.js +16 -3
- package/es/components/basic_table/basic_table.js +1 -1
- package/es/components/basic_table/collapsed_item_actions.js +1 -1
- package/es/components/basic_table/in_memory_table.js +1 -1
- package/es/components/beacon/beacon.styles.js +2 -2
- package/es/components/button/button.js +112 -215
- package/es/components/button/button_display/_button_display.js +90 -40
- package/es/components/button/button_display/_button_display.styles.js +7 -16
- package/es/components/button/button_display/_button_display_content.js +6 -3
- package/es/components/button/button_display/_button_display_content.styles.js +7 -17
- package/es/components/button/button_empty/button_empty.js +63 -53
- package/es/components/button/button_empty/index.js +1 -1
- package/es/components/button/button_group/button_group.js +4 -12
- package/es/components/button/button_group/button_group_button.js +14 -4
- package/es/components/button/button_icon/button_icon.js +61 -42
- package/es/components/call_out/call_out.styles.js +2 -1
- package/es/components/card/card.js +173 -89
- package/es/components/card/card.styles.js +136 -0
- package/es/components/card/card_select/card_select.js +133 -0
- package/es/components/card/card_select/card_select.styles.js +25 -0
- package/es/components/card/card_select/index.js +8 -0
- package/es/components/card/checkable_card/checkable_card.js +14 -9
- package/es/components/card/checkable_card/checkable_card.styles.js +22 -0
- package/es/components/comment_list/comment_event.styles.js +1 -1
- package/es/components/datagrid/body/data_grid_body.js +7 -6
- package/es/components/datagrid/body/data_grid_cell.js +13 -12
- package/es/components/datagrid/body/header/data_grid_header_cell.js +7 -6
- package/es/components/datagrid/body/header/data_grid_header_row.js +7 -6
- package/es/components/datagrid/data_grid.js +7 -6
- package/es/components/datagrid/utils/in_memory.js +7 -6
- package/es/components/date_picker/auto_refresh/auto_refresh.js +3 -2
- package/es/components/date_picker/react-datepicker/original.package.json +124 -0
- package/es/components/date_picker/super_date_picker/super_date_picker.js +17 -1
- package/es/components/date_picker/super_date_picker/super_update_button.js +11 -1
- package/es/components/description_list/description_list_title.js +1 -1
- package/es/components/expression/expression.styles.js +13 -31
- package/es/components/facet/facet_button.js +5 -4
- package/es/components/header/header_links/header_link.js +5 -3
- package/es/components/icon/icon.js +2 -1
- package/es/components/image/image_button.styles.js +1 -1
- package/es/components/image/image_wrapper.styles.js +3 -3
- package/es/components/link/link.styles.js +2 -2
- package/es/components/list_group/list_group.js +2 -1
- package/es/components/list_group/list_group_item.js +2 -1
- package/es/components/list_group/pinnable_list_group/pinnable_list_group.js +3 -2
- package/es/components/loading/loading_chart.styles.js +16 -26
- package/es/components/loading/loading_content.styles.js +2 -2
- package/es/components/loading/loading_logo.styles.js +4 -4
- package/es/components/loading/loading_spinner.styles.js +6 -6
- package/es/components/markdown_editor/markdown_editor_toolbar.js +2 -0
- package/es/components/modal/confirm_modal.js +1 -1
- package/es/components/notification/notification_event.js +5 -3
- package/es/components/notification/notification_event_read_button.js +2 -1
- package/es/components/page/page_template.js +2 -2
- package/es/components/page_template/inner/page_inner.styles.js +2 -2
- package/es/components/page_template/outer/page_outer.styles.js +3 -1
- package/es/components/pagination/pagination_button.js +5 -3
- package/es/components/panel/panel.js +1 -1
- package/es/components/panel/{panel.style.js → panel.styles.js} +2 -2
- package/es/components/progress/progress.styles.js +2 -2
- package/es/components/title/title.styles.js +2 -2
- package/es/components/toast/toast.styles.js +4 -4
- package/es/components/tool_tip/icon_tip.js +11 -1
- package/es/components/tool_tip/tool_tip.js +18 -6
- package/es/global_styling/functions/logicals.js +2 -72
- package/es/global_styling/functions/logicals.json +56 -0
- package/es/global_styling/functions/typography.js +2 -1
- package/es/global_styling/mixins/_color.js +1 -1
- package/es/global_styling/mixins/_helpers.js +7 -1
- package/es/global_styling/reset/global_styles.js +2 -1
- package/es/themes/amsterdam/global_styling/mixins/button.js +165 -16
- package/eui.d.ts +1062 -936
- package/i18ntokens.json +15 -15
- package/lib/components/accessibility/screen_reader_only/screen_reader_only.styles.js +3 -1
- package/lib/components/accessibility/skip_link/skip_link.js +4 -54
- package/lib/components/accordion/accordion.js +3 -1
- package/lib/components/accordion/accordion.styles.js +17 -26
- package/lib/components/badge/beta_badge/beta_badge.js +16 -3
- package/lib/components/basic_table/basic_table.js +1 -1
- package/lib/components/basic_table/collapsed_item_actions.js +1 -1
- package/lib/components/basic_table/in_memory_table.js +1 -1
- package/lib/components/beacon/beacon.styles.js +1 -1
- package/lib/components/button/button.js +124 -229
- package/lib/components/button/button_display/_button_display.js +94 -33
- package/lib/components/button/button_display/_button_display.styles.js +7 -16
- package/lib/components/button/button_display/_button_display_content.js +7 -3
- package/lib/components/button/button_display/_button_display_content.styles.js +7 -17
- package/lib/components/button/button_empty/button_empty.js +64 -54
- package/lib/components/button/button_empty/index.js +0 -6
- package/lib/components/button/button_group/button_group.js +4 -12
- package/lib/components/button/button_group/button_group_button.js +15 -4
- package/lib/components/button/button_icon/button_icon.js +61 -43
- package/lib/components/call_out/call_out.styles.js +2 -1
- package/lib/components/card/card.js +174 -88
- package/lib/components/card/card.styles.js +146 -0
- package/lib/components/card/card_select/card_select.js +144 -0
- package/lib/components/card/card_select/card_select.styles.js +27 -0
- package/lib/components/card/card_select/index.js +19 -0
- package/lib/components/card/checkable_card/checkable_card.js +16 -9
- package/lib/components/card/checkable_card/checkable_card.styles.js +33 -0
- package/lib/components/comment_list/comment_event.styles.js +1 -1
- package/lib/components/datagrid/body/data_grid_body.js +7 -6
- package/lib/components/datagrid/body/data_grid_cell.js +13 -12
- package/lib/components/datagrid/body/header/data_grid_header_cell.js +7 -6
- package/lib/components/datagrid/body/header/data_grid_header_row.js +7 -6
- package/lib/components/datagrid/data_grid.js +7 -6
- package/lib/components/datagrid/utils/in_memory.js +7 -6
- package/lib/components/date_picker/auto_refresh/auto_refresh.js +3 -2
- package/lib/components/date_picker/react-datepicker/original.package.json +124 -0
- package/lib/components/date_picker/super_date_picker/super_date_picker.js +17 -1
- package/lib/components/date_picker/super_date_picker/super_update_button.js +11 -1
- package/lib/components/description_list/description_list_title.js +1 -1
- package/lib/components/expression/expression.styles.js +12 -30
- package/lib/components/facet/facet_button.js +4 -3
- package/lib/components/header/header_links/header_link.js +5 -3
- package/lib/components/icon/icon.js +2 -1
- package/lib/components/image/image_button.styles.js +1 -1
- package/lib/components/image/image_wrapper.styles.js +2 -2
- package/lib/components/link/link.styles.js +1 -1
- package/lib/components/list_group/list_group.js +2 -1
- package/lib/components/list_group/list_group_item.js +2 -1
- package/lib/components/list_group/pinnable_list_group/pinnable_list_group.js +3 -2
- package/lib/components/loading/loading_chart.styles.js +16 -25
- package/lib/components/loading/loading_content.styles.js +1 -1
- package/lib/components/loading/loading_logo.styles.js +4 -4
- package/lib/components/loading/loading_spinner.styles.js +5 -5
- package/lib/components/markdown_editor/markdown_editor_toolbar.js +2 -0
- package/lib/components/modal/confirm_modal.js +1 -1
- package/lib/components/notification/notification_event.js +5 -3
- package/lib/components/notification/notification_event_read_button.js +2 -1
- package/lib/components/page/page_template.js +1 -1
- package/lib/components/page_template/inner/page_inner.styles.js +2 -2
- package/lib/components/page_template/outer/page_outer.styles.js +4 -1
- package/lib/components/panel/panel.js +1 -1
- package/{optimize/lib/components/panel/panel.style.js → lib/components/panel/panel.styles.js} +1 -1
- package/lib/components/progress/progress.styles.js +2 -2
- package/lib/components/title/title.styles.js +1 -1
- package/lib/components/toast/toast.styles.js +4 -4
- package/lib/components/tool_tip/icon_tip.js +11 -1
- package/lib/components/tool_tip/tool_tip.js +18 -6
- package/lib/global_styling/functions/logicals.js +3 -72
- package/lib/global_styling/functions/logicals.json +56 -0
- package/lib/global_styling/functions/typography.js +3 -1
- package/lib/global_styling/mixins/_color.js +1 -1
- package/lib/global_styling/mixins/_helpers.js +9 -2
- package/lib/global_styling/reset/global_styles.js +3 -1
- package/lib/themes/amsterdam/global_styling/mixins/button.js +178 -24
- package/optimize/es/components/accessibility/screen_reader_only/screen_reader_only.styles.js +2 -1
- package/optimize/es/components/accordion/accordion.js +2 -1
- package/optimize/es/components/accordion/accordion.styles.js +17 -27
- package/optimize/es/components/badge/beta_badge/beta_badge.js +6 -3
- package/optimize/es/components/beacon/beacon.styles.js +2 -2
- package/optimize/es/components/button/button.js +88 -100
- package/optimize/es/components/button/button_display/_button_display.js +67 -32
- package/optimize/es/components/button/button_display/_button_display.styles.js +7 -16
- package/optimize/es/components/button/button_display/_button_display_content.js +5 -2
- package/optimize/es/components/button/button_display/_button_display_content.styles.js +7 -17
- package/optimize/es/components/button/button_empty/button_empty.js +55 -47
- package/optimize/es/components/button/button_empty/index.js +1 -1
- package/optimize/es/components/button/button_group/button_group.js +2 -10
- package/optimize/es/components/button/button_group/button_group_button.js +13 -3
- package/optimize/es/components/button/button_icon/button_icon.js +54 -41
- package/optimize/es/components/call_out/call_out.styles.js +2 -1
- package/optimize/es/components/card/card.js +97 -31
- package/optimize/es/components/card/card.styles.js +136 -0
- package/optimize/es/components/card/{card_select.js → card_select/card_select.js} +16 -14
- package/optimize/es/components/card/card_select/card_select.styles.js +25 -0
- package/optimize/es/components/card/card_select/index.js +8 -0
- package/optimize/es/components/card/checkable_card/checkable_card.js +14 -9
- package/optimize/es/components/card/checkable_card/checkable_card.styles.js +22 -0
- package/optimize/es/components/comment_list/comment_event.styles.js +1 -1
- package/optimize/es/components/date_picker/react-datepicker/original.package.json +124 -0
- package/optimize/es/components/description_list/description_list_title.js +1 -1
- package/optimize/es/components/expression/expression.styles.js +13 -31
- package/optimize/es/components/facet/facet_button.js +5 -3
- package/optimize/es/components/icon/icon.js +2 -1
- package/optimize/es/components/image/image_button.styles.js +1 -1
- package/optimize/es/components/image/image_wrapper.styles.js +3 -3
- package/optimize/es/components/link/link.styles.js +2 -2
- package/optimize/es/components/loading/loading_chart.styles.js +16 -26
- package/optimize/es/components/loading/loading_content.styles.js +2 -2
- package/optimize/es/components/loading/loading_logo.styles.js +4 -4
- package/optimize/es/components/loading/loading_spinner.styles.js +6 -6
- package/optimize/es/components/markdown_editor/markdown_editor_toolbar.js +2 -0
- package/optimize/es/components/page/page_template.js +2 -2
- package/optimize/es/components/page_template/inner/page_inner.styles.js +2 -2
- package/optimize/es/components/page_template/outer/page_outer.styles.js +3 -1
- package/optimize/es/components/panel/panel.js +1 -1
- package/optimize/es/components/panel/{panel.style.js → panel.styles.js} +2 -2
- package/optimize/es/components/progress/progress.styles.js +2 -2
- package/optimize/es/components/title/title.styles.js +2 -2
- package/optimize/es/components/toast/toast.styles.js +4 -4
- package/optimize/es/components/tool_tip/tool_tip.js +7 -5
- package/optimize/es/global_styling/functions/logicals.js +2 -72
- package/optimize/es/global_styling/functions/logicals.json +56 -0
- package/optimize/es/global_styling/functions/typography.js +2 -1
- package/optimize/es/global_styling/mixins/_color.js +1 -1
- package/optimize/es/global_styling/mixins/_helpers.js +7 -1
- package/optimize/es/global_styling/reset/global_styles.js +2 -1
- package/optimize/es/themes/amsterdam/global_styling/mixins/button.js +155 -16
- package/optimize/lib/components/accessibility/screen_reader_only/screen_reader_only.styles.js +3 -1
- package/optimize/lib/components/accordion/accordion.js +3 -1
- package/optimize/lib/components/accordion/accordion.styles.js +17 -26
- package/optimize/lib/components/badge/beta_badge/beta_badge.js +6 -3
- package/optimize/lib/components/beacon/beacon.styles.js +1 -1
- package/optimize/lib/components/button/button.js +92 -103
- package/optimize/lib/components/button/button_display/_button_display.js +71 -25
- package/optimize/lib/components/button/button_display/_button_display.styles.js +7 -16
- package/optimize/lib/components/button/button_display/_button_display_content.js +6 -2
- package/optimize/lib/components/button/button_display/_button_display_content.styles.js +7 -17
- package/optimize/lib/components/button/button_empty/button_empty.js +59 -50
- package/optimize/lib/components/button/button_empty/index.js +0 -6
- package/optimize/lib/components/button/button_group/button_group.js +2 -10
- package/optimize/lib/components/button/button_group/button_group_button.js +15 -3
- package/optimize/lib/components/button/button_icon/button_icon.js +54 -41
- package/optimize/lib/components/call_out/call_out.styles.js +2 -1
- package/optimize/lib/components/card/card.js +97 -30
- package/optimize/lib/components/card/card.styles.js +146 -0
- package/optimize/lib/components/card/{card_select.js → card_select/card_select.js} +16 -14
- package/optimize/lib/components/card/card_select/card_select.styles.js +27 -0
- package/optimize/lib/components/card/card_select/index.js +19 -0
- package/optimize/lib/components/card/checkable_card/checkable_card.js +16 -9
- package/optimize/lib/components/card/checkable_card/checkable_card.styles.js +33 -0
- package/optimize/lib/components/comment_list/comment_event.styles.js +1 -1
- package/optimize/lib/components/date_picker/react-datepicker/original.package.json +124 -0
- package/optimize/lib/components/description_list/description_list_title.js +1 -1
- package/optimize/lib/components/expression/expression.styles.js +12 -30
- package/optimize/lib/components/facet/facet_button.js +4 -2
- package/optimize/lib/components/icon/icon.js +2 -1
- package/optimize/lib/components/image/image_button.styles.js +1 -1
- package/optimize/lib/components/image/image_wrapper.styles.js +2 -2
- package/optimize/lib/components/link/link.styles.js +1 -1
- package/optimize/lib/components/loading/loading_chart.styles.js +16 -25
- package/optimize/lib/components/loading/loading_content.styles.js +1 -1
- package/optimize/lib/components/loading/loading_logo.styles.js +4 -4
- package/optimize/lib/components/loading/loading_spinner.styles.js +5 -5
- package/optimize/lib/components/markdown_editor/markdown_editor_toolbar.js +2 -0
- package/optimize/lib/components/page/page_template.js +1 -1
- package/optimize/lib/components/page_template/inner/page_inner.styles.js +2 -2
- package/optimize/lib/components/page_template/outer/page_outer.styles.js +4 -1
- package/optimize/lib/components/panel/panel.js +1 -1
- package/{test-env/components/panel/panel.style.js → optimize/lib/components/panel/panel.styles.js} +1 -1
- package/optimize/lib/components/progress/progress.styles.js +2 -2
- package/optimize/lib/components/title/title.styles.js +1 -1
- package/optimize/lib/components/toast/toast.styles.js +4 -4
- package/optimize/lib/components/tool_tip/tool_tip.js +7 -5
- package/optimize/lib/global_styling/functions/logicals.js +10 -73
- package/optimize/lib/global_styling/functions/logicals.json +56 -0
- package/optimize/lib/global_styling/functions/typography.js +3 -1
- package/optimize/lib/global_styling/mixins/_color.js +1 -1
- package/optimize/lib/global_styling/mixins/_helpers.js +9 -2
- package/optimize/lib/global_styling/reset/global_styles.js +3 -1
- package/optimize/lib/themes/amsterdam/global_styling/mixins/button.js +170 -17
- package/package.json +2 -2
- package/src/components/badge/beta_badge/_beta_badge.scss +5 -1
- package/src/components/button/_index.scss +0 -1
- package/src/components/button/button_empty/_button_empty.scss +4 -48
- package/src/components/button/button_group/_button_group.scss +0 -1
- package/src/components/button/button_group/_button_group_button.scss +55 -83
- package/src/components/button/button_icon/_button_icon.scss +3 -103
- package/src/components/control_bar/_control_bar.scss +2 -6
- package/src/components/datagrid/_data_grid_data_row.scss +7 -0
- package/src/components/flyout/_flyout.scss +4 -1
- package/src/components/index.scss +0 -1
- package/src/global_styling/mixins/_button.scss +55 -11
- package/src/global_styling/mixins/_index.scss +0 -1
- package/src/themes/amsterdam/global_styling/mixins/_index.scss +0 -2
- package/src/themes/amsterdam/overrides/_header.scss +0 -2
- package/src/themes/amsterdam/overrides/_index.scss +0 -4
- package/test-env/components/accessibility/screen_reader_only/screen_reader_only.styles.js +3 -1
- package/test-env/components/accessibility/skip_link/skip_link.js +4 -54
- package/test-env/components/accordion/accordion.js +3 -1
- package/test-env/components/accordion/accordion.styles.js +17 -26
- package/test-env/components/badge/beta_badge/beta_badge.js +16 -3
- package/test-env/components/basic_table/basic_table.js +1 -1
- package/test-env/components/basic_table/collapsed_item_actions.js +1 -1
- package/test-env/components/basic_table/in_memory_table.js +1 -1
- package/test-env/components/beacon/beacon.styles.js +1 -1
- package/test-env/components/button/button.js +111 -225
- package/test-env/components/button/button_display/_button_display.js +93 -32
- package/test-env/components/button/button_display/_button_display.styles.js +7 -16
- package/test-env/components/button/button_display/_button_display_content.js +7 -3
- package/test-env/components/button/button_display/_button_display_content.styles.js +7 -17
- package/test-env/components/button/button_empty/button_empty.js +64 -53
- package/test-env/components/button/button_empty/index.js +0 -6
- package/test-env/components/button/button_group/button_group.js +4 -12
- package/test-env/components/button/button_group/button_group_button.js +16 -4
- package/test-env/components/button/button_icon/button_icon.js +61 -42
- package/test-env/components/call_out/call_out.styles.js +2 -1
- package/test-env/components/card/card.js +172 -88
- package/test-env/components/card/card.styles.js +146 -0
- package/test-env/components/card/card_select/card_select.js +141 -0
- package/test-env/components/card/card_select/card_select.styles.js +27 -0
- package/test-env/components/card/card_select/index.js +19 -0
- package/test-env/components/card/checkable_card/checkable_card.js +16 -9
- package/test-env/components/card/checkable_card/checkable_card.styles.js +33 -0
- package/test-env/components/comment_list/comment_event.styles.js +1 -1
- package/test-env/components/datagrid/body/data_grid_body.js +7 -6
- package/test-env/components/datagrid/body/data_grid_cell.js +13 -12
- package/test-env/components/datagrid/body/header/data_grid_header_cell.js +7 -6
- package/test-env/components/datagrid/body/header/data_grid_header_row.js +7 -6
- package/test-env/components/datagrid/data_grid.js +7 -6
- package/test-env/components/datagrid/utils/in_memory.js +7 -6
- package/test-env/components/date_picker/auto_refresh/auto_refresh.js +3 -2
- package/test-env/components/date_picker/react-datepicker/original.package.json +124 -0
- package/test-env/components/date_picker/super_date_picker/super_date_picker.js +17 -1
- package/test-env/components/date_picker/super_date_picker/super_update_button.js +11 -1
- package/test-env/components/description_list/description_list_title.js +1 -1
- package/test-env/components/expression/expression.styles.js +12 -30
- package/test-env/components/facet/facet_button.js +4 -3
- package/test-env/components/header/header_links/header_link.js +5 -3
- package/test-env/components/image/image_button.styles.js +1 -1
- package/test-env/components/image/image_wrapper.styles.js +2 -2
- package/test-env/components/link/link.styles.js +1 -1
- package/test-env/components/list_group/list_group.js +2 -1
- package/test-env/components/list_group/list_group_item.js +2 -1
- package/test-env/components/list_group/pinnable_list_group/pinnable_list_group.js +3 -2
- package/test-env/components/loading/loading_chart.styles.js +16 -25
- package/test-env/components/loading/loading_content.styles.js +1 -1
- package/test-env/components/loading/loading_logo.styles.js +4 -4
- package/test-env/components/loading/loading_spinner.styles.js +5 -5
- package/test-env/components/markdown_editor/markdown_editor_toolbar.js +2 -0
- package/test-env/components/modal/confirm_modal.js +1 -1
- package/test-env/components/notification/notification_event.js +5 -3
- package/test-env/components/notification/notification_event_read_button.js +2 -1
- package/test-env/components/page/page_template.js +1 -1
- package/test-env/components/page_template/inner/page_inner.styles.js +2 -2
- package/test-env/components/page_template/outer/page_outer.styles.js +4 -1
- package/test-env/components/panel/panel.js +1 -1
- package/{lib/components/panel/panel.style.js → test-env/components/panel/panel.styles.js} +1 -1
- package/test-env/components/progress/progress.styles.js +2 -2
- package/test-env/components/title/title.styles.js +1 -1
- package/test-env/components/toast/toast.styles.js +4 -4
- package/test-env/components/tool_tip/icon_tip.js +11 -1
- package/test-env/components/tool_tip/tool_tip.js +18 -6
- package/test-env/global_styling/functions/logicals.js +10 -73
- package/test-env/global_styling/functions/logicals.json +56 -0
- package/test-env/global_styling/functions/typography.js +3 -1
- package/test-env/global_styling/mixins/_color.js +1 -1
- package/test-env/global_styling/mixins/_helpers.js +9 -2
- package/test-env/global_styling/reset/global_styles.js +3 -1
- package/test-env/themes/amsterdam/global_styling/mixins/button.js +170 -17
- package/es/components/card/card_select.js +0 -176
- package/lib/components/card/card_select.js +0 -187
- package/src/components/button/_button.scss +0 -143
- package/src/components/button/button_icon/_variables.scss +0 -11
- package/src/components/card/_card.scss +0 -239
- package/src/components/card/_card_select.scss +0 -21
- package/src/components/card/_index.scss +0 -5
- package/src/components/card/_mixins.scss +0 -11
- package/src/components/card/_variables.scss +0 -25
- package/src/components/card/checkable_card/_checkable_card.scss +0 -29
- package/src/components/card/checkable_card/_index.scss +0 -1
- package/src/global_styling/mixins/_beta_badge.scss +0 -30
- package/src/themes/amsterdam/global_styling/mixins/_button.scss +0 -60
- package/src/themes/amsterdam/overrides/_button.scss +0 -119
- package/src/themes/amsterdam/overrides/_button_empty.scss +0 -20
- package/src/themes/amsterdam/overrides/_button_group.scss +0 -91
- package/src/themes/amsterdam/overrides/_card.scss +0 -6
- package/test-env/components/card/card_select.js +0 -184
package/dist/eui_theme_dark.css
CHANGED
|
@@ -330,7 +330,6 @@ SOFTWARE.
|
|
|
330
330
|
line-height: 1.71429rem;
|
|
331
331
|
font-weight: 500;
|
|
332
332
|
text-decoration: none;
|
|
333
|
-
transition: background-color 250ms ease-in-out, border-color 250ms ease-in-out;
|
|
334
333
|
outline-offset: -1px;
|
|
335
334
|
-webkit-transform: none !important;
|
|
336
335
|
transform: none !important;
|
|
@@ -349,19 +348,19 @@ SOFTWARE.
|
|
|
349
348
|
font-size: 12px; }
|
|
350
349
|
@media screen and (prefers-reduced-motion: no-preference) {
|
|
351
350
|
.react-datepicker__time-list-item {
|
|
352
|
-
transition: background 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
|
|
353
|
-
transition: transform 250ms ease-in-out, background 250ms ease-in-out;
|
|
354
|
-
transition: transform 250ms ease-in-out, background 250ms ease-in-out, -webkit-transform 250ms ease-in-out; }
|
|
355
|
-
.react-datepicker__time-list-item:hover:not(
|
|
351
|
+
transition: background-color 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
|
|
352
|
+
transition: transform 250ms ease-in-out, background-color 250ms ease-in-out;
|
|
353
|
+
transition: transform 250ms ease-in-out, background-color 250ms ease-in-out, -webkit-transform 250ms ease-in-out; }
|
|
354
|
+
.react-datepicker__time-list-item:hover:not(:disabled) {
|
|
356
355
|
-webkit-transform: translateY(-1px);
|
|
357
356
|
transform: translateY(-1px); }
|
|
358
357
|
.react-datepicker__time-list-item:focus {
|
|
359
358
|
-webkit-animation: euiButtonActive 250ms cubic-bezier(0.34, 1.61, 0.7, 1);
|
|
360
359
|
animation: euiButtonActive 250ms cubic-bezier(0.34, 1.61, 0.7, 1); }
|
|
361
|
-
.react-datepicker__time-list-item:active:not(
|
|
360
|
+
.react-datepicker__time-list-item:active:not(:disabled) {
|
|
362
361
|
-webkit-transform: translateY(1px);
|
|
363
362
|
transform: translateY(1px); } }
|
|
364
|
-
.react-datepicker__time-list-item:hover:not(
|
|
363
|
+
.react-datepicker__time-list-item:hover:not(:disabled), .react-datepicker__time-list-item:focus {
|
|
365
364
|
text-decoration: underline; }
|
|
366
365
|
.react-datepicker__time-list-item--disabled, .react-datepicker__time-list-item--disabled:hover {
|
|
367
366
|
text-decoration: none !important;
|
|
@@ -908,7 +907,9 @@ SOFTWARE.
|
|
|
908
907
|
line-height: 24px;
|
|
909
908
|
text-align: center;
|
|
910
909
|
white-space: nowrap;
|
|
911
|
-
cursor: default;
|
|
910
|
+
cursor: default;
|
|
911
|
+
overflow: hidden;
|
|
912
|
+
text-overflow: ellipsis; }
|
|
912
913
|
.euiBetaBadge:focus {
|
|
913
914
|
outline: 2px solid currentColor;
|
|
914
915
|
outline-color: #FFF;
|
|
@@ -949,8 +950,10 @@ SOFTWARE.
|
|
|
949
950
|
.euiBetaBadge--subdued.euiBetaBadge-isClickable {
|
|
950
951
|
color: #FFF; }
|
|
951
952
|
|
|
952
|
-
.euiBetaBadge--hollow
|
|
953
|
-
color: #
|
|
953
|
+
.euiBetaBadge--hollow {
|
|
954
|
+
background-color: #1D1E24; }
|
|
955
|
+
.euiBetaBadge--hollow.euiBetaBadge-isClickable {
|
|
956
|
+
color: #FFF; }
|
|
954
957
|
|
|
955
958
|
.euiBetaBadge--accent {
|
|
956
959
|
background: #F68FBE;
|
|
@@ -1029,208 +1032,6 @@ SOFTWARE.
|
|
|
1029
1032
|
left: 100%;
|
|
1030
1033
|
width: 0; } }
|
|
1031
1034
|
|
|
1032
|
-
.euiButton {
|
|
1033
|
-
display: inline-block;
|
|
1034
|
-
-webkit-appearance: none;
|
|
1035
|
-
-moz-appearance: none;
|
|
1036
|
-
appearance: none;
|
|
1037
|
-
cursor: pointer;
|
|
1038
|
-
height: 40px;
|
|
1039
|
-
line-height: 40px;
|
|
1040
|
-
text-align: center;
|
|
1041
|
-
white-space: nowrap;
|
|
1042
|
-
max-width: 100%;
|
|
1043
|
-
vertical-align: middle;
|
|
1044
|
-
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
|
1045
|
-
font-weight: 400;
|
|
1046
|
-
letter-spacing: normal;
|
|
1047
|
-
-webkit-text-size-adjust: 100%;
|
|
1048
|
-
-ms-text-size-adjust: 100%;
|
|
1049
|
-
-webkit-font-kerning: normal;
|
|
1050
|
-
font-kerning: normal;
|
|
1051
|
-
font-size: 14px;
|
|
1052
|
-
font-size: 1rem;
|
|
1053
|
-
line-height: 1.71429rem;
|
|
1054
|
-
font-weight: 500;
|
|
1055
|
-
text-decoration: none;
|
|
1056
|
-
transition: background-color 250ms ease-in-out, border-color 250ms ease-in-out;
|
|
1057
|
-
outline-offset: -1px;
|
|
1058
|
-
box-shadow: 0 0.8px 0.8px rgba(0, 0, 0, 0.1), 0 2.3px 2px rgba(0, 0, 0, 0.075);
|
|
1059
|
-
border-radius: 6px;
|
|
1060
|
-
min-width: 112px; }
|
|
1061
|
-
@media screen and (prefers-reduced-motion: no-preference) {
|
|
1062
|
-
.euiButton {
|
|
1063
|
-
transition: background 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
|
|
1064
|
-
transition: transform 250ms ease-in-out, background 250ms ease-in-out;
|
|
1065
|
-
transition: transform 250ms ease-in-out, background 250ms ease-in-out, -webkit-transform 250ms ease-in-out; }
|
|
1066
|
-
.euiButton:hover:not([class*='isDisabled']) {
|
|
1067
|
-
-webkit-transform: translateY(-1px);
|
|
1068
|
-
transform: translateY(-1px); }
|
|
1069
|
-
.euiButton:focus {
|
|
1070
|
-
-webkit-animation: euiButtonActive 250ms cubic-bezier(0.34, 1.61, 0.7, 1);
|
|
1071
|
-
animation: euiButtonActive 250ms cubic-bezier(0.34, 1.61, 0.7, 1); }
|
|
1072
|
-
.euiButton:active:not([class*='isDisabled']) {
|
|
1073
|
-
-webkit-transform: translateY(1px);
|
|
1074
|
-
transform: translateY(1px); } }
|
|
1075
|
-
.euiButton:hover:not([class*='isDisabled']), .euiButton:focus {
|
|
1076
|
-
text-decoration: underline; }
|
|
1077
|
-
.euiButton .euiButton__content {
|
|
1078
|
-
padding: 0 12px; }
|
|
1079
|
-
.euiButton .euiButton__text {
|
|
1080
|
-
text-overflow: ellipsis;
|
|
1081
|
-
overflow: hidden; }
|
|
1082
|
-
.euiButton.euiButton--small {
|
|
1083
|
-
height: 32px;
|
|
1084
|
-
line-height: 32px; }
|
|
1085
|
-
.euiButton:hover, .euiButton:active {
|
|
1086
|
-
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); }
|
|
1087
|
-
.euiButton:not([class*='isDisabled']):hover, .euiButton:not([class*='isDisabled']):focus, .euiButton:not([class*='isDisabled']):focus-within {
|
|
1088
|
-
background-color: rgba(54, 162, 239, 0.1); }
|
|
1089
|
-
.euiButton.euiButton-isDisabled {
|
|
1090
|
-
pointer-events: auto;
|
|
1091
|
-
cursor: not-allowed;
|
|
1092
|
-
color: #515761;
|
|
1093
|
-
border-color: #515761; }
|
|
1094
|
-
.euiButton.euiButton-isDisabled .euiButtonContent__icon {
|
|
1095
|
-
fill: currentColor; }
|
|
1096
|
-
.euiButton.euiButton-isDisabled .euiButtonContent__spinner {
|
|
1097
|
-
border-color: #36A2EF currentColor currentColor currentColor; }
|
|
1098
|
-
.euiButton.euiButton-isDisabled.euiButton--fill {
|
|
1099
|
-
color: #858a91;
|
|
1100
|
-
background-color: #515761;
|
|
1101
|
-
border-color: #515761; }
|
|
1102
|
-
.euiButton.euiButton-isDisabled.euiButton--fill:hover, .euiButton.euiButton-isDisabled.euiButton--fill:focus, .euiButton.euiButton-isDisabled.euiButton--fill:focus-within {
|
|
1103
|
-
background-color: #515761;
|
|
1104
|
-
border-color: #515761; }
|
|
1105
|
-
.euiButton.euiButton-isDisabled:hover, .euiButton.euiButton-isDisabled:focus, .euiButton.euiButton-isDisabled:focus-within {
|
|
1106
|
-
box-shadow: 0 0.8px 0.8px rgba(0, 0, 0, 0.1), 0 2.3px 2px rgba(0, 0, 0, 0.075);
|
|
1107
|
-
text-decoration: none; }
|
|
1108
|
-
|
|
1109
|
-
.euiButton--primary {
|
|
1110
|
-
color: #36A2EF;
|
|
1111
|
-
border-color: #36A2EF; }
|
|
1112
|
-
.euiButton--primary.euiButton--fill {
|
|
1113
|
-
background-color: #36A2EF;
|
|
1114
|
-
border-color: #36A2EF;
|
|
1115
|
-
color: #000; }
|
|
1116
|
-
.euiButton--primary.euiButton--fill:not([class*='isDisabled']):hover, .euiButton--primary.euiButton--fill:not([class*='isDisabled']):focus, .euiButton--primary.euiButton--fill:not([class*='isDisabled']):focus-within {
|
|
1117
|
-
background-color: #1e97ed;
|
|
1118
|
-
border-color: #1e97ed; }
|
|
1119
|
-
.euiButton--primary:not([class*='isDisabled']) {
|
|
1120
|
-
box-shadow: 0 0.8px 0.8px rgba(0, 0, 0, 0.1), 0 2.3px 2px rgba(0, 0, 0, 0.075); }
|
|
1121
|
-
.euiButton--primary:not([class*='isDisabled']):hover, .euiButton--primary:not([class*='isDisabled']):focus, .euiButton--primary:not([class*='isDisabled']):focus-within {
|
|
1122
|
-
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);
|
|
1123
|
-
background-color: rgba(54, 162, 239, 0.1); }
|
|
1124
|
-
|
|
1125
|
-
.euiButton--accent {
|
|
1126
|
-
color: #F68FBE;
|
|
1127
|
-
border-color: #F68FBE; }
|
|
1128
|
-
.euiButton--accent.euiButton--fill {
|
|
1129
|
-
background-color: #F68FBE;
|
|
1130
|
-
border-color: #F68FBE;
|
|
1131
|
-
color: #000; }
|
|
1132
|
-
.euiButton--accent.euiButton--fill:not([class*='isDisabled']):hover, .euiButton--accent.euiButton--fill:not([class*='isDisabled']):focus, .euiButton--accent.euiButton--fill:not([class*='isDisabled']):focus-within {
|
|
1133
|
-
background-color: #f477b0;
|
|
1134
|
-
border-color: #f477b0; }
|
|
1135
|
-
.euiButton--accent:not([class*='isDisabled']) {
|
|
1136
|
-
box-shadow: 0 0.8px 0.8px rgba(0, 0, 0, 0.1), 0 2.3px 2px rgba(0, 0, 0, 0.075); }
|
|
1137
|
-
.euiButton--accent:not([class*='isDisabled']):hover, .euiButton--accent:not([class*='isDisabled']):focus, .euiButton--accent:not([class*='isDisabled']):focus-within {
|
|
1138
|
-
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);
|
|
1139
|
-
background-color: rgba(246, 143, 190, 0.1); }
|
|
1140
|
-
|
|
1141
|
-
.euiButton--success {
|
|
1142
|
-
color: #7DDED8;
|
|
1143
|
-
border-color: #7DDED8; }
|
|
1144
|
-
.euiButton--success.euiButton--fill {
|
|
1145
|
-
background-color: #7DDED8;
|
|
1146
|
-
border-color: #7DDED8;
|
|
1147
|
-
color: #000; }
|
|
1148
|
-
.euiButton--success.euiButton--fill:not([class*='isDisabled']):hover, .euiButton--success.euiButton--fill:not([class*='isDisabled']):focus, .euiButton--success.euiButton--fill:not([class*='isDisabled']):focus-within {
|
|
1149
|
-
background-color: #69d9d2;
|
|
1150
|
-
border-color: #69d9d2; }
|
|
1151
|
-
.euiButton--success:not([class*='isDisabled']) {
|
|
1152
|
-
box-shadow: 0 0.8px 0.8px rgba(0, 0, 0, 0.1), 0 2.3px 2px rgba(0, 0, 0, 0.075); }
|
|
1153
|
-
.euiButton--success:not([class*='isDisabled']):hover, .euiButton--success:not([class*='isDisabled']):focus, .euiButton--success:not([class*='isDisabled']):focus-within {
|
|
1154
|
-
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);
|
|
1155
|
-
background-color: rgba(125, 222, 216, 0.1); }
|
|
1156
|
-
|
|
1157
|
-
.euiButton--warning {
|
|
1158
|
-
color: #F3D371;
|
|
1159
|
-
border-color: #F3D371; }
|
|
1160
|
-
.euiButton--warning.euiButton--fill {
|
|
1161
|
-
background-color: #F3D371;
|
|
1162
|
-
border-color: #F3D371;
|
|
1163
|
-
color: #000; }
|
|
1164
|
-
.euiButton--warning.euiButton--fill:not([class*='isDisabled']):hover, .euiButton--warning.euiButton--fill:not([class*='isDisabled']):focus, .euiButton--warning.euiButton--fill:not([class*='isDisabled']):focus-within {
|
|
1165
|
-
background-color: #f1cc59;
|
|
1166
|
-
border-color: #f1cc59; }
|
|
1167
|
-
.euiButton--warning:not([class*='isDisabled']) {
|
|
1168
|
-
box-shadow: 0 0.8px 0.8px rgba(0, 0, 0, 0.1), 0 2.3px 2px rgba(0, 0, 0, 0.075); }
|
|
1169
|
-
.euiButton--warning:not([class*='isDisabled']):hover, .euiButton--warning:not([class*='isDisabled']):focus, .euiButton--warning:not([class*='isDisabled']):focus-within {
|
|
1170
|
-
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);
|
|
1171
|
-
background-color: rgba(243, 211, 113, 0.1); }
|
|
1172
|
-
|
|
1173
|
-
.euiButton--danger {
|
|
1174
|
-
color: #F86B63;
|
|
1175
|
-
border-color: #F86B63; }
|
|
1176
|
-
.euiButton--danger.euiButton--fill {
|
|
1177
|
-
background-color: #F86B63;
|
|
1178
|
-
border-color: #F86B63;
|
|
1179
|
-
color: #000; }
|
|
1180
|
-
.euiButton--danger.euiButton--fill:not([class*='isDisabled']):hover, .euiButton--danger.euiButton--fill:not([class*='isDisabled']):focus, .euiButton--danger.euiButton--fill:not([class*='isDisabled']):focus-within {
|
|
1181
|
-
background-color: #f7544b;
|
|
1182
|
-
border-color: #f7544b; }
|
|
1183
|
-
.euiButton--danger:not([class*='isDisabled']) {
|
|
1184
|
-
box-shadow: 0 0.8px 0.8px rgba(0, 0, 0, 0.1), 0 2.3px 2px rgba(0, 0, 0, 0.075); }
|
|
1185
|
-
.euiButton--danger:not([class*='isDisabled']):hover, .euiButton--danger:not([class*='isDisabled']):focus, .euiButton--danger:not([class*='isDisabled']):focus-within {
|
|
1186
|
-
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);
|
|
1187
|
-
background-color: rgba(248, 107, 99, 0.1); }
|
|
1188
|
-
|
|
1189
|
-
.euiButton--ghost {
|
|
1190
|
-
color: #FFF;
|
|
1191
|
-
border-color: #FFF; }
|
|
1192
|
-
.euiButton--ghost.euiButton--fill {
|
|
1193
|
-
background-color: #FFF;
|
|
1194
|
-
border-color: #FFF;
|
|
1195
|
-
color: #000; }
|
|
1196
|
-
.euiButton--ghost.euiButton--fill:not([class*='isDisabled']):hover, .euiButton--ghost.euiButton--fill:not([class*='isDisabled']):focus, .euiButton--ghost.euiButton--fill:not([class*='isDisabled']):focus-within {
|
|
1197
|
-
background-color: #f2f2f2;
|
|
1198
|
-
border-color: #f2f2f2; }
|
|
1199
|
-
.euiButton--ghost:not([class*='isDisabled']) {
|
|
1200
|
-
box-shadow: 0 0.8px 0.8px rgba(0, 0, 0, 0.1), 0 2.3px 2px rgba(0, 0, 0, 0.075); }
|
|
1201
|
-
.euiButton--ghost:not([class*='isDisabled']):hover, .euiButton--ghost:not([class*='isDisabled']):focus, .euiButton--ghost:not([class*='isDisabled']):focus-within {
|
|
1202
|
-
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);
|
|
1203
|
-
background-color: rgba(255, 255, 255, 0.1); }
|
|
1204
|
-
|
|
1205
|
-
.euiButton--text {
|
|
1206
|
-
color: #DFE5EF;
|
|
1207
|
-
border-color: #98A2B3; }
|
|
1208
|
-
.euiButton--text.euiButton--fill {
|
|
1209
|
-
background-color: #98A2B3;
|
|
1210
|
-
border-color: #98A2B3;
|
|
1211
|
-
color: #000; }
|
|
1212
|
-
.euiButton--text.euiButton--fill:not([class*='isDisabled']):hover, .euiButton--text.euiButton--fill:not([class*='isDisabled']):focus, .euiButton--text.euiButton--fill:not([class*='isDisabled']):focus-within {
|
|
1213
|
-
background-color: #8995a8;
|
|
1214
|
-
border-color: #8995a8; }
|
|
1215
|
-
.euiButton--text:not([class*='isDisabled']) {
|
|
1216
|
-
box-shadow: 0 0.8px 0.8px rgba(0, 0, 0, 0.1), 0 2.3px 2px rgba(0, 0, 0, 0.075); }
|
|
1217
|
-
.euiButton--text:not([class*='isDisabled']):hover, .euiButton--text:not([class*='isDisabled']):focus, .euiButton--text:not([class*='isDisabled']):focus-within {
|
|
1218
|
-
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);
|
|
1219
|
-
background-color: rgba(152, 162, 179, 0.1); }
|
|
1220
|
-
|
|
1221
|
-
.euiButton.euiButton-isDisabled.euiButton--ghost, .euiButton.euiButton-isDisabled.euiButton--ghost:hover, .euiButton.euiButton-isDisabled.euiButton--ghost:focus, .euiButton.euiButton-isDisabled.euiButton--ghost:focus-within {
|
|
1222
|
-
box-shadow: 0 0.8px 0.8px rgba(0, 0, 0, 0.1), 0 2.3px 2px rgba(0, 0, 0, 0.075);
|
|
1223
|
-
color: #343741;
|
|
1224
|
-
border-color: #343741; }
|
|
1225
|
-
|
|
1226
|
-
.euiButton.euiButton-isDisabled.euiButton--ghost.euiButton--fill {
|
|
1227
|
-
background-color: #343741;
|
|
1228
|
-
color: #62656d; }
|
|
1229
|
-
|
|
1230
|
-
.euiButton--fullWidth {
|
|
1231
|
-
display: block;
|
|
1232
|
-
width: 100%; }
|
|
1233
|
-
|
|
1234
1035
|
.euiButtonContent {
|
|
1235
1036
|
height: 100%;
|
|
1236
1037
|
width: 100%;
|
|
@@ -1294,11 +1095,8 @@ SOFTWARE.
|
|
|
1294
1095
|
line-height: 1.71429rem;
|
|
1295
1096
|
font-weight: 500;
|
|
1296
1097
|
text-decoration: none;
|
|
1297
|
-
transition: background-color 250ms ease-in-out, border-color 250ms ease-in-out;
|
|
1298
1098
|
outline-offset: -1px;
|
|
1299
|
-
border-
|
|
1300
|
-
background-color: transparent;
|
|
1301
|
-
box-shadow: none;
|
|
1099
|
+
border-radius: 6px;
|
|
1302
1100
|
-webkit-transform: none !important;
|
|
1303
1101
|
transform: none !important;
|
|
1304
1102
|
/* 1 */
|
|
@@ -1311,19 +1109,19 @@ SOFTWARE.
|
|
|
1311
1109
|
/* 2 */ }
|
|
1312
1110
|
@media screen and (prefers-reduced-motion: no-preference) {
|
|
1313
1111
|
.euiButtonEmpty {
|
|
1314
|
-
transition: background 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
|
|
1315
|
-
transition: transform 250ms ease-in-out, background 250ms ease-in-out;
|
|
1316
|
-
transition: transform 250ms ease-in-out, background 250ms ease-in-out, -webkit-transform 250ms ease-in-out; }
|
|
1317
|
-
.euiButtonEmpty:hover:not(
|
|
1112
|
+
transition: background-color 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
|
|
1113
|
+
transition: transform 250ms ease-in-out, background-color 250ms ease-in-out;
|
|
1114
|
+
transition: transform 250ms ease-in-out, background-color 250ms ease-in-out, -webkit-transform 250ms ease-in-out; }
|
|
1115
|
+
.euiButtonEmpty:hover:not(:disabled) {
|
|
1318
1116
|
-webkit-transform: translateY(-1px);
|
|
1319
1117
|
transform: translateY(-1px); }
|
|
1320
1118
|
.euiButtonEmpty:focus {
|
|
1321
1119
|
-webkit-animation: euiButtonActive 250ms cubic-bezier(0.34, 1.61, 0.7, 1);
|
|
1322
1120
|
animation: euiButtonActive 250ms cubic-bezier(0.34, 1.61, 0.7, 1); }
|
|
1323
|
-
.euiButtonEmpty:active:not(
|
|
1121
|
+
.euiButtonEmpty:active:not(:disabled) {
|
|
1324
1122
|
-webkit-transform: translateY(1px);
|
|
1325
1123
|
transform: translateY(1px); } }
|
|
1326
|
-
.euiButtonEmpty:hover:not(
|
|
1124
|
+
.euiButtonEmpty:hover:not(:disabled), .euiButtonEmpty:focus {
|
|
1327
1125
|
text-decoration: underline; }
|
|
1328
1126
|
.euiButtonEmpty .euiButtonEmpty__content {
|
|
1329
1127
|
padding: 0 8px; }
|
|
@@ -1331,20 +1129,19 @@ SOFTWARE.
|
|
|
1331
1129
|
text-overflow: ellipsis;
|
|
1332
1130
|
overflow: hidden; }
|
|
1333
1131
|
.euiButtonEmpty.euiButtonEmpty--small {
|
|
1334
|
-
height: 32px;
|
|
1132
|
+
height: 32px;
|
|
1133
|
+
border-radius: 4.002px; }
|
|
1335
1134
|
.euiButtonEmpty.euiButtonEmpty--xSmall {
|
|
1336
1135
|
height: 24px;
|
|
1337
|
-
|
|
1136
|
+
border-radius: 4.002px;
|
|
1137
|
+
font-size: 12px; }
|
|
1338
1138
|
.euiButtonEmpty:disabled {
|
|
1339
1139
|
pointer-events: auto;
|
|
1340
|
-
cursor: not-allowed;
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
fill: currentColor; }
|
|
1140
|
+
cursor: not-allowed; }
|
|
1141
|
+
.euiButtonEmpty:disabled:hover, .euiButtonEmpty:disabled:focus, .euiButtonEmpty:disabled:focus-within {
|
|
1142
|
+
text-decoration: none; }
|
|
1344
1143
|
.euiButtonEmpty:disabled .euiButtonContent__spinner {
|
|
1345
1144
|
border-color: #36A2EF currentColor currentColor currentColor; }
|
|
1346
|
-
.euiButtonEmpty:disabled:focus {
|
|
1347
|
-
background-color: transparent; }
|
|
1348
1145
|
.euiButtonEmpty:disabled:hover, .euiButtonEmpty:disabled:focus {
|
|
1349
1146
|
text-decoration: none; }
|
|
1350
1147
|
|
|
@@ -1360,43 +1157,6 @@ SOFTWARE.
|
|
|
1360
1157
|
.euiButtonEmpty--flushRight {
|
|
1361
1158
|
margin-left: 8px; }
|
|
1362
1159
|
|
|
1363
|
-
.euiButtonEmpty--primary {
|
|
1364
|
-
color: #36A2EF; }
|
|
1365
|
-
.euiButtonEmpty--primary:focus {
|
|
1366
|
-
background-color: rgba(54, 162, 239, 0.1); }
|
|
1367
|
-
|
|
1368
|
-
.euiButtonEmpty--danger {
|
|
1369
|
-
color: #F86B63; }
|
|
1370
|
-
.euiButtonEmpty--danger:focus {
|
|
1371
|
-
background-color: rgba(248, 107, 99, 0.1); }
|
|
1372
|
-
|
|
1373
|
-
.euiButtonEmpty--disabled {
|
|
1374
|
-
color: #858a91; }
|
|
1375
|
-
.euiButtonEmpty--disabled:focus {
|
|
1376
|
-
background-color: rgba(81, 87, 97, 0.1); }
|
|
1377
|
-
.euiButtonEmpty--disabled:hover {
|
|
1378
|
-
cursor: not-allowed; }
|
|
1379
|
-
|
|
1380
|
-
.euiButtonEmpty--ghost {
|
|
1381
|
-
color: #FFF; }
|
|
1382
|
-
.euiButtonEmpty--ghost:focus {
|
|
1383
|
-
background-color: rgba(255, 255, 255, 0.1); }
|
|
1384
|
-
|
|
1385
|
-
.euiButtonEmpty--text {
|
|
1386
|
-
color: #DFE5EF; }
|
|
1387
|
-
.euiButtonEmpty--text:focus {
|
|
1388
|
-
background-color: rgba(223, 229, 239, 0.1); }
|
|
1389
|
-
|
|
1390
|
-
.euiButtonEmpty--success {
|
|
1391
|
-
color: #7DDED8; }
|
|
1392
|
-
.euiButtonEmpty--success:focus {
|
|
1393
|
-
background-color: rgba(125, 222, 216, 0.1); }
|
|
1394
|
-
|
|
1395
|
-
.euiButtonEmpty--warning {
|
|
1396
|
-
color: #F3D371; }
|
|
1397
|
-
.euiButtonEmpty--warning:focus {
|
|
1398
|
-
background-color: rgba(243, 211, 113, 0.1); }
|
|
1399
|
-
|
|
1400
1160
|
.euiButtonIcon {
|
|
1401
1161
|
display: inline-block;
|
|
1402
1162
|
-webkit-appearance: none;
|
|
@@ -1421,9 +1181,7 @@ SOFTWARE.
|
|
|
1421
1181
|
line-height: 1.71429rem;
|
|
1422
1182
|
font-weight: 500;
|
|
1423
1183
|
text-decoration: none;
|
|
1424
|
-
transition: background-color 250ms ease-in-out, border-color 250ms ease-in-out;
|
|
1425
1184
|
outline-offset: -1px;
|
|
1426
|
-
box-shadow: 0 0.8px 0.8px rgba(0, 0, 0, 0.1), 0 2.3px 2px rgba(0, 0, 0, 0.075);
|
|
1427
1185
|
border-radius: 6px;
|
|
1428
1186
|
width: 40px;
|
|
1429
1187
|
display: -webkit-inline-flex;
|
|
@@ -1434,173 +1192,39 @@ SOFTWARE.
|
|
|
1434
1192
|
justify-content: space-around; }
|
|
1435
1193
|
@media screen and (prefers-reduced-motion: no-preference) {
|
|
1436
1194
|
.euiButtonIcon {
|
|
1437
|
-
transition: background 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
|
|
1438
|
-
transition: transform 250ms ease-in-out, background 250ms ease-in-out;
|
|
1439
|
-
transition: transform 250ms ease-in-out, background 250ms ease-in-out, -webkit-transform 250ms ease-in-out; }
|
|
1440
|
-
.euiButtonIcon:hover:not(
|
|
1195
|
+
transition: background-color 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
|
|
1196
|
+
transition: transform 250ms ease-in-out, background-color 250ms ease-in-out;
|
|
1197
|
+
transition: transform 250ms ease-in-out, background-color 250ms ease-in-out, -webkit-transform 250ms ease-in-out; }
|
|
1198
|
+
.euiButtonIcon:hover:not(:disabled) {
|
|
1441
1199
|
-webkit-transform: translateY(-1px);
|
|
1442
1200
|
transform: translateY(-1px); }
|
|
1443
1201
|
.euiButtonIcon:focus {
|
|
1444
1202
|
-webkit-animation: euiButtonActive 250ms cubic-bezier(0.34, 1.61, 0.7, 1);
|
|
1445
1203
|
animation: euiButtonActive 250ms cubic-bezier(0.34, 1.61, 0.7, 1); }
|
|
1446
|
-
.euiButtonIcon:active:not(
|
|
1204
|
+
.euiButtonIcon:active:not(:disabled) {
|
|
1447
1205
|
-webkit-transform: translateY(1px);
|
|
1448
1206
|
transform: translateY(1px); } }
|
|
1449
|
-
.euiButtonIcon:hover:not(
|
|
1207
|
+
.euiButtonIcon:hover:not(:disabled), .euiButtonIcon:focus {
|
|
1450
1208
|
text-decoration: underline; }
|
|
1451
1209
|
.euiButtonIcon > svg {
|
|
1452
1210
|
pointer-events: none; }
|
|
1453
|
-
.euiButtonIcon
|
|
1454
|
-
box-shadow: none !important;
|
|
1455
|
-
border: none; }
|
|
1456
|
-
.euiButtonIcon.euiButtonIcon-isDisabled {
|
|
1211
|
+
.euiButtonIcon:disabled {
|
|
1457
1212
|
pointer-events: auto;
|
|
1458
|
-
cursor: not-allowed;
|
|
1459
|
-
|
|
1460
|
-
border-color: #515761; }
|
|
1461
|
-
.euiButtonIcon.euiButtonIcon-isDisabled .euiButtonContent__icon {
|
|
1462
|
-
fill: currentColor; }
|
|
1463
|
-
.euiButtonIcon.euiButtonIcon-isDisabled .euiButtonContent__spinner {
|
|
1464
|
-
border-color: #36A2EF currentColor currentColor currentColor; }
|
|
1465
|
-
.euiButtonIcon.euiButtonIcon-isDisabled.euiButtonIcon--fill {
|
|
1466
|
-
color: #858a91;
|
|
1467
|
-
background-color: #515761;
|
|
1468
|
-
border-color: #515761; }
|
|
1469
|
-
.euiButtonIcon.euiButtonIcon-isDisabled.euiButtonIcon--fill:hover, .euiButtonIcon.euiButtonIcon-isDisabled.euiButtonIcon--fill:focus, .euiButtonIcon.euiButtonIcon-isDisabled.euiButtonIcon--fill:focus-within {
|
|
1470
|
-
background-color: #515761;
|
|
1471
|
-
border-color: #515761; }
|
|
1472
|
-
.euiButtonIcon.euiButtonIcon-isDisabled:hover, .euiButtonIcon.euiButtonIcon-isDisabled:focus, .euiButtonIcon.euiButtonIcon-isDisabled:focus-within {
|
|
1473
|
-
box-shadow: 0 0.8px 0.8px rgba(0, 0, 0, 0.1), 0 2.3px 2px rgba(0, 0, 0, 0.075);
|
|
1213
|
+
cursor: not-allowed; }
|
|
1214
|
+
.euiButtonIcon:disabled:hover, .euiButtonIcon:disabled:focus, .euiButtonIcon:disabled:focus-within {
|
|
1474
1215
|
text-decoration: none; }
|
|
1216
|
+
.euiButtonIcon:disabled .euiButtonContent__spinner {
|
|
1217
|
+
border-color: #36A2EF currentColor currentColor currentColor; }
|
|
1475
1218
|
|
|
1476
1219
|
.euiButtonIcon--xSmall {
|
|
1477
1220
|
height: 24px;
|
|
1478
|
-
width: 24px;
|
|
1221
|
+
width: 24px;
|
|
1222
|
+
border-radius: 4px; }
|
|
1479
1223
|
|
|
1480
1224
|
.euiButtonIcon--small {
|
|
1481
1225
|
height: 32px;
|
|
1482
|
-
width: 32px;
|
|
1483
|
-
|
|
1484
|
-
.euiButtonIcon--primary {
|
|
1485
|
-
color: #36A2EF;
|
|
1486
|
-
border-color: #36A2EF; }
|
|
1487
|
-
.euiButtonIcon--primary.euiButtonIcon--fill {
|
|
1488
|
-
background-color: #36A2EF;
|
|
1489
|
-
border-color: #36A2EF;
|
|
1490
|
-
color: #000; }
|
|
1491
|
-
.euiButtonIcon--primary.euiButtonIcon--fill:not([class*='isDisabled']):hover, .euiButtonIcon--primary.euiButtonIcon--fill:not([class*='isDisabled']):focus, .euiButtonIcon--primary.euiButtonIcon--fill:not([class*='isDisabled']):focus-within {
|
|
1492
|
-
background-color: #1e97ed;
|
|
1493
|
-
border-color: #1e97ed; }
|
|
1494
|
-
.euiButtonIcon--primary:not([class*='isDisabled']) {
|
|
1495
|
-
box-shadow: 0 0.8px 0.8px rgba(0, 0, 0, 0.1), 0 2.3px 2px rgba(0, 0, 0, 0.075); }
|
|
1496
|
-
.euiButtonIcon--primary:not([class*='isDisabled']):hover, .euiButtonIcon--primary:not([class*='isDisabled']):focus, .euiButtonIcon--primary:not([class*='isDisabled']):focus-within {
|
|
1497
|
-
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);
|
|
1498
|
-
background-color: rgba(54, 162, 239, 0.1); }
|
|
1499
|
-
|
|
1500
|
-
.euiButtonIcon--accent {
|
|
1501
|
-
color: #F68FBE;
|
|
1502
|
-
border-color: #F68FBE; }
|
|
1503
|
-
.euiButtonIcon--accent.euiButtonIcon--fill {
|
|
1504
|
-
background-color: #F68FBE;
|
|
1505
|
-
border-color: #F68FBE;
|
|
1506
|
-
color: #000; }
|
|
1507
|
-
.euiButtonIcon--accent.euiButtonIcon--fill:not([class*='isDisabled']):hover, .euiButtonIcon--accent.euiButtonIcon--fill:not([class*='isDisabled']):focus, .euiButtonIcon--accent.euiButtonIcon--fill:not([class*='isDisabled']):focus-within {
|
|
1508
|
-
background-color: #f477b0;
|
|
1509
|
-
border-color: #f477b0; }
|
|
1510
|
-
.euiButtonIcon--accent:not([class*='isDisabled']) {
|
|
1511
|
-
box-shadow: 0 0.8px 0.8px rgba(0, 0, 0, 0.1), 0 2.3px 2px rgba(0, 0, 0, 0.075); }
|
|
1512
|
-
.euiButtonIcon--accent:not([class*='isDisabled']):hover, .euiButtonIcon--accent:not([class*='isDisabled']):focus, .euiButtonIcon--accent:not([class*='isDisabled']):focus-within {
|
|
1513
|
-
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);
|
|
1514
|
-
background-color: rgba(246, 143, 190, 0.1); }
|
|
1515
|
-
|
|
1516
|
-
.euiButtonIcon--success {
|
|
1517
|
-
color: #7DDED8;
|
|
1518
|
-
border-color: #7DDED8; }
|
|
1519
|
-
.euiButtonIcon--success.euiButtonIcon--fill {
|
|
1520
|
-
background-color: #7DDED8;
|
|
1521
|
-
border-color: #7DDED8;
|
|
1522
|
-
color: #000; }
|
|
1523
|
-
.euiButtonIcon--success.euiButtonIcon--fill:not([class*='isDisabled']):hover, .euiButtonIcon--success.euiButtonIcon--fill:not([class*='isDisabled']):focus, .euiButtonIcon--success.euiButtonIcon--fill:not([class*='isDisabled']):focus-within {
|
|
1524
|
-
background-color: #69d9d2;
|
|
1525
|
-
border-color: #69d9d2; }
|
|
1526
|
-
.euiButtonIcon--success:not([class*='isDisabled']) {
|
|
1527
|
-
box-shadow: 0 0.8px 0.8px rgba(0, 0, 0, 0.1), 0 2.3px 2px rgba(0, 0, 0, 0.075); }
|
|
1528
|
-
.euiButtonIcon--success:not([class*='isDisabled']):hover, .euiButtonIcon--success:not([class*='isDisabled']):focus, .euiButtonIcon--success:not([class*='isDisabled']):focus-within {
|
|
1529
|
-
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);
|
|
1530
|
-
background-color: rgba(125, 222, 216, 0.1); }
|
|
1531
|
-
|
|
1532
|
-
.euiButtonIcon--warning {
|
|
1533
|
-
color: #F3D371;
|
|
1534
|
-
border-color: #F3D371; }
|
|
1535
|
-
.euiButtonIcon--warning.euiButtonIcon--fill {
|
|
1536
|
-
background-color: #F3D371;
|
|
1537
|
-
border-color: #F3D371;
|
|
1538
|
-
color: #000; }
|
|
1539
|
-
.euiButtonIcon--warning.euiButtonIcon--fill:not([class*='isDisabled']):hover, .euiButtonIcon--warning.euiButtonIcon--fill:not([class*='isDisabled']):focus, .euiButtonIcon--warning.euiButtonIcon--fill:not([class*='isDisabled']):focus-within {
|
|
1540
|
-
background-color: #f1cc59;
|
|
1541
|
-
border-color: #f1cc59; }
|
|
1542
|
-
.euiButtonIcon--warning:not([class*='isDisabled']) {
|
|
1543
|
-
box-shadow: 0 0.8px 0.8px rgba(0, 0, 0, 0.1), 0 2.3px 2px rgba(0, 0, 0, 0.075); }
|
|
1544
|
-
.euiButtonIcon--warning:not([class*='isDisabled']):hover, .euiButtonIcon--warning:not([class*='isDisabled']):focus, .euiButtonIcon--warning:not([class*='isDisabled']):focus-within {
|
|
1545
|
-
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);
|
|
1546
|
-
background-color: rgba(243, 211, 113, 0.1); }
|
|
1547
|
-
|
|
1548
|
-
.euiButtonIcon--danger {
|
|
1549
|
-
color: #F86B63;
|
|
1550
|
-
border-color: #F86B63; }
|
|
1551
|
-
.euiButtonIcon--danger.euiButtonIcon--fill {
|
|
1552
|
-
background-color: #F86B63;
|
|
1553
|
-
border-color: #F86B63;
|
|
1554
|
-
color: #000; }
|
|
1555
|
-
.euiButtonIcon--danger.euiButtonIcon--fill:not([class*='isDisabled']):hover, .euiButtonIcon--danger.euiButtonIcon--fill:not([class*='isDisabled']):focus, .euiButtonIcon--danger.euiButtonIcon--fill:not([class*='isDisabled']):focus-within {
|
|
1556
|
-
background-color: #f7544b;
|
|
1557
|
-
border-color: #f7544b; }
|
|
1558
|
-
.euiButtonIcon--danger:not([class*='isDisabled']) {
|
|
1559
|
-
box-shadow: 0 0.8px 0.8px rgba(0, 0, 0, 0.1), 0 2.3px 2px rgba(0, 0, 0, 0.075); }
|
|
1560
|
-
.euiButtonIcon--danger:not([class*='isDisabled']):hover, .euiButtonIcon--danger:not([class*='isDisabled']):focus, .euiButtonIcon--danger:not([class*='isDisabled']):focus-within {
|
|
1561
|
-
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);
|
|
1562
|
-
background-color: rgba(248, 107, 99, 0.1); }
|
|
1563
|
-
|
|
1564
|
-
.euiButtonIcon--ghost {
|
|
1565
|
-
color: #FFF;
|
|
1566
|
-
border-color: #FFF; }
|
|
1567
|
-
.euiButtonIcon--ghost.euiButtonIcon--fill {
|
|
1568
|
-
background-color: #FFF;
|
|
1569
|
-
border-color: #FFF;
|
|
1570
|
-
color: #000; }
|
|
1571
|
-
.euiButtonIcon--ghost.euiButtonIcon--fill:not([class*='isDisabled']):hover, .euiButtonIcon--ghost.euiButtonIcon--fill:not([class*='isDisabled']):focus, .euiButtonIcon--ghost.euiButtonIcon--fill:not([class*='isDisabled']):focus-within {
|
|
1572
|
-
background-color: #f2f2f2;
|
|
1573
|
-
border-color: #f2f2f2; }
|
|
1574
|
-
.euiButtonIcon--ghost:not([class*='isDisabled']) {
|
|
1575
|
-
box-shadow: 0 0.8px 0.8px rgba(0, 0, 0, 0.1), 0 2.3px 2px rgba(0, 0, 0, 0.075); }
|
|
1576
|
-
.euiButtonIcon--ghost:not([class*='isDisabled']):hover, .euiButtonIcon--ghost:not([class*='isDisabled']):focus, .euiButtonIcon--ghost:not([class*='isDisabled']):focus-within {
|
|
1577
|
-
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);
|
|
1578
|
-
background-color: rgba(255, 255, 255, 0.1); }
|
|
1579
|
-
|
|
1580
|
-
.euiButtonIcon--text {
|
|
1581
|
-
color: #DFE5EF;
|
|
1582
|
-
border-color: #98A2B3; }
|
|
1583
|
-
.euiButtonIcon--text.euiButtonIcon--fill {
|
|
1584
|
-
background-color: #98A2B3;
|
|
1585
|
-
border-color: #98A2B3;
|
|
1586
|
-
color: #000; }
|
|
1587
|
-
.euiButtonIcon--text.euiButtonIcon--fill:not([class*='isDisabled']):hover, .euiButtonIcon--text.euiButtonIcon--fill:not([class*='isDisabled']):focus, .euiButtonIcon--text.euiButtonIcon--fill:not([class*='isDisabled']):focus-within {
|
|
1588
|
-
background-color: #8995a8;
|
|
1589
|
-
border-color: #8995a8; }
|
|
1590
|
-
.euiButtonIcon--text:not([class*='isDisabled']) {
|
|
1591
|
-
box-shadow: 0 0.8px 0.8px rgba(0, 0, 0, 0.1), 0 2.3px 2px rgba(0, 0, 0, 0.075); }
|
|
1592
|
-
.euiButtonIcon--text:not([class*='isDisabled']):hover, .euiButtonIcon--text:not([class*='isDisabled']):focus, .euiButtonIcon--text:not([class*='isDisabled']):focus-within {
|
|
1593
|
-
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);
|
|
1594
|
-
background-color: rgba(152, 162, 179, 0.1); }
|
|
1595
|
-
|
|
1596
|
-
.euiButtonIcon.euiButtonIcon-isDisabled.euiButtonIcon--ghost, .euiButtonIcon.euiButtonIcon-isDisabled.euiButtonIcon--ghost:hover, .euiButtonIcon.euiButtonIcon-isDisabled.euiButtonIcon--ghost:focus, .euiButtonIcon.euiButtonIcon-isDisabled.euiButtonIcon--ghost:focus-within {
|
|
1597
|
-
box-shadow: 0 0.8px 0.8px rgba(0, 0, 0, 0.1), 0 2.3px 2px rgba(0, 0, 0, 0.075);
|
|
1598
|
-
color: #343741;
|
|
1599
|
-
border-color: #343741; }
|
|
1600
|
-
|
|
1601
|
-
.euiButtonIcon.euiButtonIcon-isDisabled.euiButtonIcon--ghost.euiButton--fill {
|
|
1602
|
-
background-color: #343741;
|
|
1603
|
-
color: #62656d; }
|
|
1226
|
+
width: 32px;
|
|
1227
|
+
border-radius: 4px; }
|
|
1604
1228
|
|
|
1605
1229
|
.euiButtonGroup {
|
|
1606
1230
|
display: inline-block;
|
|
@@ -1616,7 +1240,6 @@ SOFTWARE.
|
|
|
1616
1240
|
flex: 1; }
|
|
1617
1241
|
|
|
1618
1242
|
.euiButtonGroup__buttons {
|
|
1619
|
-
box-shadow: 0 0.8px 0.8px rgba(0, 0, 0, 0.1), 0 2.3px 2px rgba(0, 0, 0, 0.075);
|
|
1620
1243
|
border-radius: 7px;
|
|
1621
1244
|
max-width: 100%;
|
|
1622
1245
|
display: -webkit-flex;
|
|
@@ -1656,7 +1279,7 @@ SOFTWARE.
|
|
|
1656
1279
|
font-size: 14px;
|
|
1657
1280
|
font-size: 1rem;
|
|
1658
1281
|
line-height: 1.71429rem;
|
|
1659
|
-
transition: background-color 250ms ease-in-out,
|
|
1282
|
+
transition: background-color 250ms ease-in-out, color 250ms ease-in-out;
|
|
1660
1283
|
min-width: 0;
|
|
1661
1284
|
-webkit-flex-shrink: 1;
|
|
1662
1285
|
flex-shrink: 1;
|
|
@@ -1666,107 +1289,22 @@ SOFTWARE.
|
|
|
1666
1289
|
padding: 0 12px; }
|
|
1667
1290
|
.euiButtonGroupButton-isIconOnly .euiButton__content {
|
|
1668
1291
|
padding: 0 8px; }
|
|
1669
|
-
.euiButtonGroupButton .euiButton__text {
|
|
1670
|
-
text-overflow: ellipsis;
|
|
1671
|
-
overflow: hidden; }
|
|
1672
1292
|
.euiButtonGroupButton.euiButtonGroupButton--small {
|
|
1673
1293
|
height: 32px;
|
|
1674
1294
|
line-height: 32px; }
|
|
1675
|
-
.euiButtonGroupButton:not(
|
|
1676
|
-
background-color: rgba(54, 162, 239, 0.1);
|
|
1295
|
+
.euiButtonGroupButton:not(:disabled):hover, .euiButtonGroupButton:not(:disabled):focus, .euiButtonGroupButton:not(:disabled):focus-within {
|
|
1677
1296
|
text-decoration: underline; }
|
|
1678
|
-
.euiButtonGroupButton
|
|
1297
|
+
.euiButtonGroupButton:disabled {
|
|
1679
1298
|
pointer-events: auto;
|
|
1680
|
-
cursor: not-allowed;
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
.euiButtonGroupButton.euiButtonGroupButton-isDisabled .euiButtonContent__spinner {
|
|
1299
|
+
cursor: not-allowed; }
|
|
1300
|
+
.euiButtonGroupButton:disabled:hover, .euiButtonGroupButton:disabled:focus, .euiButtonGroupButton:disabled:focus-within {
|
|
1301
|
+
text-decoration: none; }
|
|
1302
|
+
.euiButtonGroupButton:disabled .euiButtonContent__spinner {
|
|
1685
1303
|
border-color: #36A2EF currentColor currentColor currentColor; }
|
|
1686
|
-
.euiButtonGroupButton.euiButtonGroupButton-
|
|
1304
|
+
.euiButtonGroupButton:disabled.euiButtonGroupButton-isSelected {
|
|
1687
1305
|
color: #858a91;
|
|
1688
1306
|
background-color: #515761;
|
|
1689
1307
|
border-color: #515761; }
|
|
1690
|
-
.euiButtonGroupButton.euiButtonGroupButton-isDisabled.euiButtonGroupButton-isSelected:hover, .euiButtonGroupButton.euiButtonGroupButton-isDisabled.euiButtonGroupButton-isSelected:focus, .euiButtonGroupButton.euiButtonGroupButton-isDisabled.euiButtonGroupButton-isSelected:focus-within {
|
|
1691
|
-
background-color: #515761;
|
|
1692
|
-
border-color: #515761; }
|
|
1693
|
-
.euiButtonGroupButton.euiButtonGroupButton--primary:not([class*='isDisabled']) {
|
|
1694
|
-
color: #36A2EF; }
|
|
1695
|
-
.euiButtonGroupButton.euiButtonGroupButton--primary:not([class*='isDisabled']).euiButtonGroupButton-isSelected {
|
|
1696
|
-
background-color: #36A2EF;
|
|
1697
|
-
border-color: #36A2EF;
|
|
1698
|
-
color: #000; }
|
|
1699
|
-
.euiButtonGroupButton.euiButtonGroupButton--primary:not([class*='isDisabled']).euiButtonGroupButton-isSelected:hover, .euiButtonGroupButton.euiButtonGroupButton--primary:not([class*='isDisabled']).euiButtonGroupButton-isSelected:focus, .euiButtonGroupButton.euiButtonGroupButton--primary:not([class*='isDisabled']).euiButtonGroupButton-isSelected:focus-within {
|
|
1700
|
-
background-color: #1e97ed;
|
|
1701
|
-
border-color: #1e97ed; }
|
|
1702
|
-
.euiButtonGroupButton.euiButtonGroupButton--primary:not([class*='isDisabled']):hover, .euiButtonGroupButton.euiButtonGroupButton--primary:not([class*='isDisabled']):focus, .euiButtonGroupButton.euiButtonGroupButton--primary:not([class*='isDisabled']):focus-within {
|
|
1703
|
-
background-color: rgba(54, 162, 239, 0.1); }
|
|
1704
|
-
.euiButtonGroupButton.euiButtonGroupButton--accent:not([class*='isDisabled']) {
|
|
1705
|
-
color: #F68FBE; }
|
|
1706
|
-
.euiButtonGroupButton.euiButtonGroupButton--accent:not([class*='isDisabled']).euiButtonGroupButton-isSelected {
|
|
1707
|
-
background-color: #F68FBE;
|
|
1708
|
-
border-color: #F68FBE;
|
|
1709
|
-
color: #000; }
|
|
1710
|
-
.euiButtonGroupButton.euiButtonGroupButton--accent:not([class*='isDisabled']).euiButtonGroupButton-isSelected:hover, .euiButtonGroupButton.euiButtonGroupButton--accent:not([class*='isDisabled']).euiButtonGroupButton-isSelected:focus, .euiButtonGroupButton.euiButtonGroupButton--accent:not([class*='isDisabled']).euiButtonGroupButton-isSelected:focus-within {
|
|
1711
|
-
background-color: #f477b0;
|
|
1712
|
-
border-color: #f477b0; }
|
|
1713
|
-
.euiButtonGroupButton.euiButtonGroupButton--accent:not([class*='isDisabled']):hover, .euiButtonGroupButton.euiButtonGroupButton--accent:not([class*='isDisabled']):focus, .euiButtonGroupButton.euiButtonGroupButton--accent:not([class*='isDisabled']):focus-within {
|
|
1714
|
-
background-color: rgba(246, 143, 190, 0.1); }
|
|
1715
|
-
.euiButtonGroupButton.euiButtonGroupButton--success:not([class*='isDisabled']) {
|
|
1716
|
-
color: #7DDED8; }
|
|
1717
|
-
.euiButtonGroupButton.euiButtonGroupButton--success:not([class*='isDisabled']).euiButtonGroupButton-isSelected {
|
|
1718
|
-
background-color: #7DDED8;
|
|
1719
|
-
border-color: #7DDED8;
|
|
1720
|
-
color: #000; }
|
|
1721
|
-
.euiButtonGroupButton.euiButtonGroupButton--success:not([class*='isDisabled']).euiButtonGroupButton-isSelected:hover, .euiButtonGroupButton.euiButtonGroupButton--success:not([class*='isDisabled']).euiButtonGroupButton-isSelected:focus, .euiButtonGroupButton.euiButtonGroupButton--success:not([class*='isDisabled']).euiButtonGroupButton-isSelected:focus-within {
|
|
1722
|
-
background-color: #69d9d2;
|
|
1723
|
-
border-color: #69d9d2; }
|
|
1724
|
-
.euiButtonGroupButton.euiButtonGroupButton--success:not([class*='isDisabled']):hover, .euiButtonGroupButton.euiButtonGroupButton--success:not([class*='isDisabled']):focus, .euiButtonGroupButton.euiButtonGroupButton--success:not([class*='isDisabled']):focus-within {
|
|
1725
|
-
background-color: rgba(125, 222, 216, 0.1); }
|
|
1726
|
-
.euiButtonGroupButton.euiButtonGroupButton--warning:not([class*='isDisabled']) {
|
|
1727
|
-
color: #F3D371; }
|
|
1728
|
-
.euiButtonGroupButton.euiButtonGroupButton--warning:not([class*='isDisabled']).euiButtonGroupButton-isSelected {
|
|
1729
|
-
background-color: #F3D371;
|
|
1730
|
-
border-color: #F3D371;
|
|
1731
|
-
color: #000; }
|
|
1732
|
-
.euiButtonGroupButton.euiButtonGroupButton--warning:not([class*='isDisabled']).euiButtonGroupButton-isSelected:hover, .euiButtonGroupButton.euiButtonGroupButton--warning:not([class*='isDisabled']).euiButtonGroupButton-isSelected:focus, .euiButtonGroupButton.euiButtonGroupButton--warning:not([class*='isDisabled']).euiButtonGroupButton-isSelected:focus-within {
|
|
1733
|
-
background-color: #f1cc59;
|
|
1734
|
-
border-color: #f1cc59; }
|
|
1735
|
-
.euiButtonGroupButton.euiButtonGroupButton--warning:not([class*='isDisabled']):hover, .euiButtonGroupButton.euiButtonGroupButton--warning:not([class*='isDisabled']):focus, .euiButtonGroupButton.euiButtonGroupButton--warning:not([class*='isDisabled']):focus-within {
|
|
1736
|
-
background-color: rgba(243, 211, 113, 0.1); }
|
|
1737
|
-
.euiButtonGroupButton.euiButtonGroupButton--danger:not([class*='isDisabled']) {
|
|
1738
|
-
color: #F86B63; }
|
|
1739
|
-
.euiButtonGroupButton.euiButtonGroupButton--danger:not([class*='isDisabled']).euiButtonGroupButton-isSelected {
|
|
1740
|
-
background-color: #F86B63;
|
|
1741
|
-
border-color: #F86B63;
|
|
1742
|
-
color: #000; }
|
|
1743
|
-
.euiButtonGroupButton.euiButtonGroupButton--danger:not([class*='isDisabled']).euiButtonGroupButton-isSelected:hover, .euiButtonGroupButton.euiButtonGroupButton--danger:not([class*='isDisabled']).euiButtonGroupButton-isSelected:focus, .euiButtonGroupButton.euiButtonGroupButton--danger:not([class*='isDisabled']).euiButtonGroupButton-isSelected:focus-within {
|
|
1744
|
-
background-color: #f7544b;
|
|
1745
|
-
border-color: #f7544b; }
|
|
1746
|
-
.euiButtonGroupButton.euiButtonGroupButton--danger:not([class*='isDisabled']):hover, .euiButtonGroupButton.euiButtonGroupButton--danger:not([class*='isDisabled']):focus, .euiButtonGroupButton.euiButtonGroupButton--danger:not([class*='isDisabled']):focus-within {
|
|
1747
|
-
background-color: rgba(248, 107, 99, 0.1); }
|
|
1748
|
-
.euiButtonGroupButton.euiButtonGroupButton--ghost:not([class*='isDisabled']) {
|
|
1749
|
-
color: #FFF; }
|
|
1750
|
-
.euiButtonGroupButton.euiButtonGroupButton--ghost:not([class*='isDisabled']).euiButtonGroupButton-isSelected {
|
|
1751
|
-
background-color: #FFF;
|
|
1752
|
-
border-color: #FFF;
|
|
1753
|
-
color: #000; }
|
|
1754
|
-
.euiButtonGroupButton.euiButtonGroupButton--ghost:not([class*='isDisabled']).euiButtonGroupButton-isSelected:hover, .euiButtonGroupButton.euiButtonGroupButton--ghost:not([class*='isDisabled']).euiButtonGroupButton-isSelected:focus, .euiButtonGroupButton.euiButtonGroupButton--ghost:not([class*='isDisabled']).euiButtonGroupButton-isSelected:focus-within {
|
|
1755
|
-
background-color: #f2f2f2;
|
|
1756
|
-
border-color: #f2f2f2; }
|
|
1757
|
-
.euiButtonGroupButton.euiButtonGroupButton--ghost:not([class*='isDisabled']):hover, .euiButtonGroupButton.euiButtonGroupButton--ghost:not([class*='isDisabled']):focus, .euiButtonGroupButton.euiButtonGroupButton--ghost:not([class*='isDisabled']):focus-within {
|
|
1758
|
-
background-color: rgba(255, 255, 255, 0.1); }
|
|
1759
|
-
.euiButtonGroupButton.euiButtonGroupButton--text:not([class*='isDisabled']) {
|
|
1760
|
-
color: #DFE5EF; }
|
|
1761
|
-
.euiButtonGroupButton.euiButtonGroupButton--text:not([class*='isDisabled']).euiButtonGroupButton-isSelected {
|
|
1762
|
-
background-color: #98A2B3;
|
|
1763
|
-
border-color: #98A2B3;
|
|
1764
|
-
color: #000; }
|
|
1765
|
-
.euiButtonGroupButton.euiButtonGroupButton--text:not([class*='isDisabled']).euiButtonGroupButton-isSelected:hover, .euiButtonGroupButton.euiButtonGroupButton--text:not([class*='isDisabled']).euiButtonGroupButton-isSelected:focus, .euiButtonGroupButton.euiButtonGroupButton--text:not([class*='isDisabled']).euiButtonGroupButton-isSelected:focus-within {
|
|
1766
|
-
background-color: #8995a8;
|
|
1767
|
-
border-color: #8995a8; }
|
|
1768
|
-
.euiButtonGroupButton.euiButtonGroupButton--text:not([class*='isDisabled']):hover, .euiButtonGroupButton.euiButtonGroupButton--text:not([class*='isDisabled']):focus, .euiButtonGroupButton.euiButtonGroupButton--text:not([class*='isDisabled']):focus-within {
|
|
1769
|
-
background-color: rgba(152, 162, 179, 0.1); }
|
|
1770
1308
|
|
|
1771
1309
|
.euiButtonGroupButton__textShift::after {
|
|
1772
1310
|
display: block;
|
|
@@ -1778,332 +1316,104 @@ SOFTWARE.
|
|
|
1778
1316
|
|
|
1779
1317
|
/**
|
|
1780
1318
|
* Medium and Small sizing (regular button style)
|
|
1781
|
-
*/
|
|
1782
|
-
.euiButtonGroup--medium .euiButtonGroupButton,
|
|
1783
|
-
.euiButtonGroup--small .euiButtonGroupButton {
|
|
1784
|
-
border:
|
|
1785
|
-
|
|
1786
|
-
.euiButtonGroup--
|
|
1787
|
-
|
|
1788
|
-
.euiButtonGroup--
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
|
|
1796
|
-
.euiButtonGroup--
|
|
1797
|
-
.euiButtonGroup--small .euiButtonGroupButton
|
|
1798
|
-
|
|
1799
|
-
.euiButtonGroup--
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
|
-
.euiButtonGroup--
|
|
1803
|
-
.euiButtonGroup--small .euiButtonGroupButton
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
.euiButtonGroup--
|
|
1807
|
-
|
|
1808
|
-
background-color: #343741;
|
|
1809
|
-
color: #62656d; }
|
|
1810
|
-
|
|
1811
|
-
.euiButtonGroup--medium .euiButtonGroupButton-isSelected,
|
|
1812
|
-
.euiButtonGroup--small .euiButtonGroupButton-isSelected {
|
|
1813
|
-
z-index: 0; }
|
|
1814
|
-
|
|
1815
|
-
.euiButtonGroup--medium .euiButtonGroupButton-isSelected + .euiButtonGroupButton-isSelected,
|
|
1816
|
-
.euiButtonGroup--small .euiButtonGroupButton-isSelected + .euiButtonGroupButton-isSelected {
|
|
1817
|
-
box-shadow: -1px 0 0 rgba(29, 30, 36, 0.1); }
|
|
1818
|
-
|
|
1819
|
-
/**
|
|
1820
|
-
* Compressed (form style)
|
|
1821
|
-
*/
|
|
1822
|
-
.euiButtonGroup--compressed .euiButtonGroupButton {
|
|
1823
|
-
height: 30px;
|
|
1824
|
-
line-height: 30px;
|
|
1825
|
-
font-size: 14px;
|
|
1826
|
-
border-radius: 6px;
|
|
1827
|
-
padding: 2px;
|
|
1828
|
-
background-clip: content-box; }
|
|
1829
|
-
.euiButtonGroup--compressed .euiButtonGroupButton .euiButton__content {
|
|
1830
|
-
padding-left: 8px;
|
|
1831
|
-
padding-right: 8px; }
|
|
1832
|
-
.euiButtonGroup--compressed .euiButtonGroupButton.euiButtonGroupButton-isSelected {
|
|
1833
|
-
font-weight: 600; }
|
|
1834
|
-
.euiButtonGroup--compressed .euiButtonGroupButton:not([class*='isDisabled']):focus, .euiButtonGroup--compressed .euiButtonGroupButton:not([class*='isDisabled']):focus-within {
|
|
1835
|
-
outline: 2px solid #36A2EF; }
|
|
1836
|
-
|
|
1837
|
-
/**
|
|
1838
|
-
* 1. Footer is always at the bottom.
|
|
1839
|
-
* 2. Fix for IE where the image correctly resizes in width but doesn't collapse its height
|
|
1840
|
-
(https://github.com/philipwalton/flexbugs/issues/75#issuecomment-134702421)
|
|
1841
|
-
* 3. Horizontal layouts should always top left align no matter the textAlign prop
|
|
1842
|
-
*/
|
|
1843
|
-
.euiCard {
|
|
1844
|
-
display: -webkit-flex;
|
|
1845
|
-
display: flex;
|
|
1846
|
-
-webkit-flex-direction: column;
|
|
1847
|
-
flex-direction: column;
|
|
1848
|
-
min-height: 1px;
|
|
1849
|
-
/* 2 */ }
|
|
1850
|
-
.euiCard.euiCard-isDisabled {
|
|
1851
|
-
cursor: not-allowed !important;
|
|
1852
|
-
-webkit-transform: none !important;
|
|
1853
|
-
transform: none !important;
|
|
1854
|
-
box-shadow: none !important;
|
|
1855
|
-
text-decoration: none !important;
|
|
1856
|
-
background-color: rgba(81, 87, 97, 0.1) !important;
|
|
1857
|
-
color: #515761; }
|
|
1858
|
-
.euiCard.euiCard-isDisabled .euiCard__top {
|
|
1859
|
-
-webkit-filter: grayscale(100%);
|
|
1860
|
-
filter: grayscale(100%); }
|
|
1861
|
-
.euiCard.euiCard-isDisabled .euiCard__titleAnchor,
|
|
1862
|
-
.euiCard.euiCard-isDisabled .euiCard__titleButton {
|
|
1863
|
-
color: #515761;
|
|
1864
|
-
cursor: inherit; }
|
|
1865
|
-
.euiCard.euiCard-isDisabled .euiCard__betaBadge:not(.euiBetaBadge-isClickable):not(.euiBetaBadge--hollow) {
|
|
1866
|
-
box-shadow: inset 0 0 0 1px #343741;
|
|
1867
|
-
background: transparent;
|
|
1868
|
-
color: inherit; }
|
|
1869
|
-
.euiCard.euiCard-isDisabled .euiCard__betaBadge:not(.euiBetaBadge-isClickable).euiBetaBadge--hollow {
|
|
1870
|
-
background-color: #1D1E24; }
|
|
1871
|
-
.euiCard.euiCard--isClickable {
|
|
1872
|
-
display: -webkit-flex;
|
|
1873
|
-
display: flex;
|
|
1874
|
-
width: 100%; }
|
|
1875
|
-
.euiCard.euiCard--isClickable:not(.euiCard-isDisabled):focus-within {
|
|
1876
|
-
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);
|
|
1877
|
-
outline: 2px solid currentColor; }
|
|
1878
|
-
.euiCard.euiCard--isClickable:not(.euiCard-isDisabled):focus-within:focus-visible {
|
|
1879
|
-
outline-style: auto; }
|
|
1880
|
-
.euiCard.euiCard--isClickable:not(.euiCard-isDisabled):focus-within:not(:focus-visible) {
|
|
1881
|
-
outline: none; }
|
|
1882
|
-
.euiCard.euiCard--isClickable:not(.euiCard-isDisabled):focus .euiCard__title,
|
|
1883
|
-
.euiCard.euiCard--isClickable:not(.euiCard-isDisabled):focus .euiCard__titleAnchor,
|
|
1884
|
-
.euiCard.euiCard--isClickable:not(.euiCard-isDisabled):focus .euiCard__titleButton, .euiCard.euiCard--isClickable:not(.euiCard-isDisabled):hover .euiCard__title,
|
|
1885
|
-
.euiCard.euiCard--isClickable:not(.euiCard-isDisabled):hover .euiCard__titleAnchor,
|
|
1886
|
-
.euiCard.euiCard--isClickable:not(.euiCard-isDisabled):hover .euiCard__titleButton {
|
|
1887
|
-
text-decoration: underline; }
|
|
1888
|
-
.euiCard .euiCard__top,
|
|
1889
|
-
.euiCard .euiCard__content,
|
|
1890
|
-
.euiCard .euiCard__footer {
|
|
1891
|
-
width: 100%; }
|
|
1892
|
-
.euiCard.euiCard--leftAligned {
|
|
1893
|
-
text-align: left;
|
|
1894
|
-
-webkit-align-items: flex-start;
|
|
1895
|
-
align-items: flex-start; }
|
|
1896
|
-
.euiCard.euiCard--leftAligned .euiCard__titleButton {
|
|
1897
|
-
text-align: left; }
|
|
1898
|
-
.euiCard.euiCard--centerAligned {
|
|
1899
|
-
text-align: center;
|
|
1900
|
-
-webkit-align-items: center;
|
|
1901
|
-
align-items: center; }
|
|
1902
|
-
.euiCard.euiCard--rightAligned {
|
|
1903
|
-
text-align: right;
|
|
1904
|
-
-webkit-align-items: flex-end;
|
|
1905
|
-
align-items: flex-end; }
|
|
1906
|
-
.euiCard.euiCard--rightAligned .euiCard__titleButton {
|
|
1907
|
-
text-align: right; }
|
|
1908
|
-
.euiCard.euiCard-isSelected {
|
|
1909
|
-
transition: all 150ms cubic-bezier(0.694, 0.0482, 0.335, 1); }
|
|
1910
|
-
|
|
1911
|
-
.euiCard--hasBetaBadge {
|
|
1912
|
-
position: relative;
|
|
1913
|
-
overflow: visible; }
|
|
1914
|
-
.euiCard--hasBetaBadge .euiCard__betaBadgeWrapper {
|
|
1915
|
-
position: absolute;
|
|
1916
|
-
top: -12px;
|
|
1917
|
-
left: 50%;
|
|
1918
|
-
-webkit-transform: translateX(-50%);
|
|
1919
|
-
transform: translateX(-50%);
|
|
1920
|
-
z-index: 3;
|
|
1921
|
-
min-width: 30%;
|
|
1922
|
-
max-width: calc(100% - 32px); }
|
|
1923
|
-
.euiCard--hasBetaBadge .euiCard__betaBadgeWrapper .euiToolTipAnchor,
|
|
1924
|
-
.euiCard--hasBetaBadge .euiCard__betaBadgeWrapper .euiCard__betaBadge {
|
|
1925
|
-
width: 100%; }
|
|
1926
|
-
.euiCard--hasBetaBadge .euiCard__betaBadgeWrapper .euiCard__betaBadge {
|
|
1927
|
-
overflow: hidden;
|
|
1928
|
-
text-overflow: ellipsis; }
|
|
1929
|
-
|
|
1930
|
-
.euiCard__betaBadge.euiBetaBadge--hollow {
|
|
1931
|
-
background-color: #1D1E24; }
|
|
1932
|
-
|
|
1933
|
-
.euiCard--isSelectable {
|
|
1934
|
-
position: relative; }
|
|
1935
|
-
|
|
1936
|
-
.euiCard[class*='paddingSmall'] {
|
|
1937
|
-
padding: 8px; }
|
|
1938
|
-
.euiCard[class*='paddingSmall'].euiCard--isSelectable {
|
|
1939
|
-
padding-bottom: 48px; }
|
|
1940
|
-
.euiCard[class*='paddingSmall'] .euiCard__top .euiCard__image {
|
|
1941
|
-
width: calc(100% + (8px * 2));
|
|
1942
|
-
left: -8px;
|
|
1943
|
-
top: -8px;
|
|
1944
|
-
margin-bottom: -8px; }
|
|
1945
|
-
.euiCard[class*='paddingSmall'] .euiCard__top .euiCard__image + .euiCard__icon {
|
|
1946
|
-
-webkit-transform: translate(-50%, -75%);
|
|
1947
|
-
transform: translate(-50%, -75%);
|
|
1948
|
-
-webkit-transform: translate(-50%, calc(-50% + -8px));
|
|
1949
|
-
transform: translate(-50%, calc(-50% + -8px)); }
|
|
1950
|
-
|
|
1951
|
-
.euiCard[class*='paddingMedium'] {
|
|
1952
|
-
padding: 16px; }
|
|
1953
|
-
.euiCard[class*='paddingMedium'].euiCard--isSelectable {
|
|
1954
|
-
padding-bottom: 56px; }
|
|
1955
|
-
.euiCard[class*='paddingMedium'] .euiCard__top .euiCard__image {
|
|
1956
|
-
width: calc(100% + (16px * 2));
|
|
1957
|
-
left: -16px;
|
|
1958
|
-
top: -16px;
|
|
1959
|
-
margin-bottom: -16px; }
|
|
1960
|
-
.euiCard[class*='paddingMedium'] .euiCard__top .euiCard__image + .euiCard__icon {
|
|
1961
|
-
-webkit-transform: translate(-50%, -75%);
|
|
1962
|
-
transform: translate(-50%, -75%);
|
|
1963
|
-
-webkit-transform: translate(-50%, calc(-50% + -16px));
|
|
1964
|
-
transform: translate(-50%, calc(-50% + -16px)); }
|
|
1965
|
-
|
|
1966
|
-
.euiCard[class*='paddingLarge'] {
|
|
1967
|
-
padding: 24px; }
|
|
1968
|
-
.euiCard[class*='paddingLarge'].euiCard--isSelectable {
|
|
1969
|
-
padding-bottom: 64px; }
|
|
1970
|
-
.euiCard[class*='paddingLarge'] .euiCard__top .euiCard__image {
|
|
1971
|
-
width: calc(100% + (24px * 2));
|
|
1972
|
-
left: -24px;
|
|
1973
|
-
top: -24px;
|
|
1974
|
-
margin-bottom: -24px; }
|
|
1975
|
-
.euiCard[class*='paddingLarge'] .euiCard__top .euiCard__image + .euiCard__icon {
|
|
1976
|
-
-webkit-transform: translate(-50%, -75%);
|
|
1977
|
-
transform: translate(-50%, -75%);
|
|
1978
|
-
-webkit-transform: translate(-50%, calc(-50% + -24px));
|
|
1979
|
-
transform: translate(-50%, calc(-50% + -24px)); }
|
|
1980
|
-
|
|
1981
|
-
.euiCard__top {
|
|
1982
|
-
-webkit-flex-grow: 0;
|
|
1983
|
-
flex-grow: 0;
|
|
1984
|
-
/* 1 */
|
|
1985
|
-
position: relative;
|
|
1986
|
-
min-height: 1px;
|
|
1987
|
-
/* 2 */
|
|
1988
|
-
font-size: 0; }
|
|
1989
|
-
.euiCard__top .euiCard__image {
|
|
1990
|
-
position: relative;
|
|
1991
|
-
border-top-left-radius: 5px;
|
|
1992
|
-
border-top-right-radius: 5px;
|
|
1993
|
-
overflow: hidden; }
|
|
1994
|
-
.euiCard__top .euiCard__image img {
|
|
1995
|
-
width: 100%; }
|
|
1996
|
-
.euiCard__top .euiCard__image + .euiCard__icon {
|
|
1997
|
-
position: absolute;
|
|
1998
|
-
top: 50%;
|
|
1999
|
-
left: 50%; }
|
|
2000
|
-
.euiCard__top .euiCard__icon {
|
|
2001
|
-
margin-top: 8px; }
|
|
2002
|
-
|
|
2003
|
-
.euiCard__footer:not(:empty) {
|
|
2004
|
-
-webkit-flex-grow: 0;
|
|
2005
|
-
flex-grow: 0;
|
|
2006
|
-
/* 1 */
|
|
2007
|
-
margin-top: 16px; }
|
|
2008
|
-
|
|
2009
|
-
.euiCard[class*='transparent'] .euiCard__image {
|
|
2010
|
-
border-radius: 6px; }
|
|
2011
|
-
|
|
2012
|
-
.euiCard--isSelectable--text.euiCard-isSelected:not(.euiCard-isDisabled) {
|
|
2013
|
-
border-color: #7DDED8 !important; }
|
|
2014
|
-
|
|
2015
|
-
.euiCard--isSelectable--primary.euiCard-isSelected:not(.euiCard-isDisabled) {
|
|
2016
|
-
border-color: #36A2EF !important; }
|
|
2017
|
-
|
|
2018
|
-
.euiCard--isSelectable--success.euiCard-isSelected:not(.euiCard-isDisabled) {
|
|
2019
|
-
border-color: #7DDED8 !important; }
|
|
2020
|
-
|
|
2021
|
-
.euiCard--isSelectable--danger.euiCard-isSelected:not(.euiCard-isDisabled) {
|
|
2022
|
-
border-color: #F86B63 !important; }
|
|
2023
|
-
|
|
2024
|
-
.euiCard--isSelectable--ghost.euiCard-isSelected:not(.euiCard-isDisabled) {
|
|
2025
|
-
border-color: #98A2B3 !important; }
|
|
2026
|
-
|
|
2027
|
-
.euiCard__top + .euiCard__content {
|
|
2028
|
-
margin-top: 16px; }
|
|
2029
|
-
|
|
2030
|
-
.euiCard__content {
|
|
2031
|
-
-webkit-flex-grow: 1;
|
|
2032
|
-
flex-grow: 1;
|
|
2033
|
-
/* 1 */ }
|
|
2034
|
-
.euiCard__content .euiCard__description,
|
|
2035
|
-
.euiCard__content .euiCard__children {
|
|
2036
|
-
margin-top: 8px; }
|
|
2037
|
-
.euiCard__content .euiCard__titleAnchor,
|
|
2038
|
-
.euiCard__content .euiCard__titleButton {
|
|
2039
|
-
font: inherit;
|
|
2040
|
-
color: inherit;
|
|
2041
|
-
letter-spacing: inherit; }
|
|
2042
|
-
.euiCard__content .euiCard__titleAnchor:focus,
|
|
2043
|
-
.euiCard__content .euiCard__titleButton:focus {
|
|
2044
|
-
text-decoration: underline; }
|
|
2045
|
-
|
|
2046
|
-
.euiCard.euiCard--horizontal .euiCard__content,
|
|
2047
|
-
.euiCard.euiCard--horizontal .euiCard__titleButton {
|
|
2048
|
-
text-align: left;
|
|
2049
|
-
/* 3 */ }
|
|
2050
|
-
|
|
2051
|
-
.euiCard.euiCard--horizontal.euiCard--hasIcon {
|
|
2052
|
-
-webkit-flex-direction: row;
|
|
2053
|
-
flex-direction: row;
|
|
2054
|
-
-webkit-align-items: flex-start !important;
|
|
2055
|
-
align-items: flex-start !important;
|
|
2056
|
-
/* 3 */ }
|
|
2057
|
-
.euiCard.euiCard--horizontal.euiCard--hasIcon .euiCard__top,
|
|
2058
|
-
.euiCard.euiCard--horizontal.euiCard--hasIcon .euiCard__content {
|
|
2059
|
-
width: auto;
|
|
2060
|
-
margin-top: 0; }
|
|
2061
|
-
.euiCard.euiCard--horizontal.euiCard--hasIcon .euiCard__top .euiCard__icon {
|
|
2062
|
-
margin-top: 0;
|
|
2063
|
-
margin-right: 16px; }
|
|
2064
|
-
|
|
2065
|
-
.euiCardSelect {
|
|
2066
|
-
position: absolute;
|
|
2067
|
-
bottom: 0;
|
|
2068
|
-
left: 0;
|
|
2069
|
-
height: 40px !important;
|
|
2070
|
-
width: 100%;
|
|
2071
|
-
overflow: hidden;
|
|
2072
|
-
border-bottom-left-radius: 5px;
|
|
2073
|
-
border-bottom-right-radius: 5px;
|
|
2074
|
-
font-weight: 700; }
|
|
2075
|
-
.euiCardSelect--text:enabled {
|
|
2076
|
-
background-color: #25262E !important; }
|
|
2077
|
-
.euiCardSelect--primary:enabled {
|
|
2078
|
-
background-color: #103148 !important; }
|
|
2079
|
-
.euiCardSelect--success:enabled {
|
|
2080
|
-
background-color: #264341 !important;
|
|
2081
|
-
color: #7DDED8; }
|
|
2082
|
-
.euiCardSelect--danger:enabled {
|
|
2083
|
-
background-color: #4a201e !important; }
|
|
2084
|
-
.euiCardSelect--ghost:enabled {
|
|
2085
|
-
background-color: #98A2B3 !important; }
|
|
2086
|
-
.euiCardSelect:disabled {
|
|
2087
|
-
background-color: #141519; }
|
|
1319
|
+
*/
|
|
1320
|
+
.euiButtonGroup--medium .euiButtonGroupButton,
|
|
1321
|
+
.euiButtonGroup--small .euiButtonGroupButton {
|
|
1322
|
+
border-radius: 0 !important;
|
|
1323
|
+
font-weight: 500; }
|
|
1324
|
+
.euiButtonGroup--medium .euiButtonGroupButton:focus, .euiButtonGroup--medium .euiButtonGroupButton:focus-within,
|
|
1325
|
+
.euiButtonGroup--small .euiButtonGroupButton:focus,
|
|
1326
|
+
.euiButtonGroup--small .euiButtonGroupButton:focus-within {
|
|
1327
|
+
outline-style: solid;
|
|
1328
|
+
outline-color: #FFF;
|
|
1329
|
+
outline-offset: -2px; }
|
|
1330
|
+
.euiButtonGroup--medium .euiButtonGroupButton:focus:focus-visible, .euiButtonGroup--medium .euiButtonGroupButton:focus-within:focus-visible,
|
|
1331
|
+
.euiButtonGroup--small .euiButtonGroupButton:focus:focus-visible,
|
|
1332
|
+
.euiButtonGroup--small .euiButtonGroupButton:focus-within:focus-visible {
|
|
1333
|
+
outline-style: auto; }
|
|
1334
|
+
.euiButtonGroup--medium .euiButtonGroupButton:focus:not(:focus-visible),
|
|
1335
|
+
.euiButtonGroup--small .euiButtonGroupButton:focus:not(:focus-visible) {
|
|
1336
|
+
outline: none; }
|
|
1337
|
+
.euiButtonGroup--medium .euiButtonGroupButton:not(:first-child):not(.euiButtonGroupButton-isSelected):not(:disabled),
|
|
1338
|
+
.euiButtonGroup--small .euiButtonGroupButton:not(:first-child):not(.euiButtonGroupButton-isSelected):not(:disabled) {
|
|
1339
|
+
box-shadow: -1px 0 0 0 rgba(0, 0, 0, 0.05); }
|
|
1340
|
+
.euiButtonGroup--medium .euiButtonGroupButton:first-child,
|
|
1341
|
+
.euiButtonGroup--small .euiButtonGroupButton:first-child {
|
|
1342
|
+
border-radius: 6px 0 0 6px; }
|
|
1343
|
+
.euiButtonGroup--medium .euiButtonGroupButton:last-child,
|
|
1344
|
+
.euiButtonGroup--small .euiButtonGroupButton:last-child {
|
|
1345
|
+
border-radius: 0 6px 6px 0; }
|
|
2088
1346
|
|
|
2089
|
-
.
|
|
2090
|
-
|
|
2091
|
-
|
|
2092
|
-
border-color: #36A2EF; }
|
|
1347
|
+
.euiButtonGroup--medium .euiButtonGroupButton-isSelected,
|
|
1348
|
+
.euiButtonGroup--small .euiButtonGroupButton-isSelected {
|
|
1349
|
+
z-index: 0; }
|
|
2093
1350
|
|
|
2094
|
-
.
|
|
2095
|
-
|
|
2096
|
-
|
|
2097
|
-
width: calc(100% + 32px);
|
|
2098
|
-
padding: 16px;
|
|
2099
|
-
margin: -16px; }
|
|
1351
|
+
.euiButtonGroup--medium .euiButtonGroupButton-isSelected + .euiButtonGroupButton-isSelected,
|
|
1352
|
+
.euiButtonGroup--small .euiButtonGroupButton-isSelected + .euiButtonGroupButton-isSelected {
|
|
1353
|
+
box-shadow: -1px 0 0 rgba(29, 30, 36, 0.1); }
|
|
2100
1354
|
|
|
2101
|
-
.
|
|
2102
|
-
|
|
2103
|
-
cursor: not-allowed; }
|
|
1355
|
+
.euiButtonGroup--small .euiButtonGroup__buttons {
|
|
1356
|
+
border-radius: 4px; }
|
|
2104
1357
|
|
|
2105
|
-
|
|
2106
|
-
|
|
1358
|
+
/**
|
|
1359
|
+
* Compressed (form style)
|
|
1360
|
+
*/
|
|
1361
|
+
.euiButtonGroup--compressed .euiButtonGroupButton {
|
|
1362
|
+
height: 30px;
|
|
1363
|
+
line-height: 30px;
|
|
1364
|
+
font-size: 14px;
|
|
1365
|
+
border-radius: 5px;
|
|
1366
|
+
padding: 2px;
|
|
1367
|
+
background-clip: content-box; }
|
|
1368
|
+
.euiButtonGroup--compressed .euiButtonGroupButton .euiButton__content {
|
|
1369
|
+
padding-left: 8px;
|
|
1370
|
+
padding-right: 8px; }
|
|
1371
|
+
.euiButtonGroup--compressed .euiButtonGroupButton.euiButtonGroupButton-isSelected {
|
|
1372
|
+
font-weight: 600; }
|
|
1373
|
+
.euiButtonGroup--compressed .euiButtonGroupButton:not(:disabled):focus, .euiButtonGroup--compressed .euiButtonGroupButton:not(:disabled):focus-within {
|
|
1374
|
+
outline: 2px solid currentColor; }
|
|
1375
|
+
.euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-primary']:not(:disabled):focus, .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-primary']:not(:disabled):focus-within {
|
|
1376
|
+
outline-color: #36A2EF; }
|
|
1377
|
+
.euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-primary']:not(:disabled):focus:focus-visible, .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-primary']:not(:disabled):focus-within:focus-visible {
|
|
1378
|
+
outline-style: auto; }
|
|
1379
|
+
.euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-primary']:not(:disabled):focus:not(:focus-visible) {
|
|
1380
|
+
outline: none; }
|
|
1381
|
+
.euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-accent']:not(:disabled):focus, .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-accent']:not(:disabled):focus-within {
|
|
1382
|
+
outline-color: #F68FBE; }
|
|
1383
|
+
.euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-accent']:not(:disabled):focus:focus-visible, .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-accent']:not(:disabled):focus-within:focus-visible {
|
|
1384
|
+
outline-style: auto; }
|
|
1385
|
+
.euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-accent']:not(:disabled):focus:not(:focus-visible) {
|
|
1386
|
+
outline: none; }
|
|
1387
|
+
.euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-success']:not(:disabled):focus, .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-success']:not(:disabled):focus-within {
|
|
1388
|
+
outline-color: #7DDED8; }
|
|
1389
|
+
.euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-success']:not(:disabled):focus:focus-visible, .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-success']:not(:disabled):focus-within:focus-visible {
|
|
1390
|
+
outline-style: auto; }
|
|
1391
|
+
.euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-success']:not(:disabled):focus:not(:focus-visible) {
|
|
1392
|
+
outline: none; }
|
|
1393
|
+
.euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-warning']:not(:disabled):focus, .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-warning']:not(:disabled):focus-within {
|
|
1394
|
+
outline-color: #F3D371; }
|
|
1395
|
+
.euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-warning']:not(:disabled):focus:focus-visible, .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-warning']:not(:disabled):focus-within:focus-visible {
|
|
1396
|
+
outline-style: auto; }
|
|
1397
|
+
.euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-warning']:not(:disabled):focus:not(:focus-visible) {
|
|
1398
|
+
outline: none; }
|
|
1399
|
+
.euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-danger']:not(:disabled):focus, .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-danger']:not(:disabled):focus-within {
|
|
1400
|
+
outline-color: #F86B63; }
|
|
1401
|
+
.euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-danger']:not(:disabled):focus:focus-visible, .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-danger']:not(:disabled):focus-within:focus-visible {
|
|
1402
|
+
outline-style: auto; }
|
|
1403
|
+
.euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-danger']:not(:disabled):focus:not(:focus-visible) {
|
|
1404
|
+
outline: none; }
|
|
1405
|
+
.euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-ghost']:not(:disabled):focus, .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-ghost']:not(:disabled):focus-within {
|
|
1406
|
+
outline-color: #FFF; }
|
|
1407
|
+
.euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-ghost']:not(:disabled):focus:focus-visible, .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-ghost']:not(:disabled):focus-within:focus-visible {
|
|
1408
|
+
outline-style: auto; }
|
|
1409
|
+
.euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-ghost']:not(:disabled):focus:not(:focus-visible) {
|
|
1410
|
+
outline: none; }
|
|
1411
|
+
.euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-text']:not(:disabled):focus, .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-text']:not(:disabled):focus-within {
|
|
1412
|
+
outline-color: #98A2B3; }
|
|
1413
|
+
.euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-text']:not(:disabled):focus:focus-visible, .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-text']:not(:disabled):focus-within:focus-visible {
|
|
1414
|
+
outline-style: auto; }
|
|
1415
|
+
.euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-text']:not(:disabled):focus:not(:focus-visible) {
|
|
1416
|
+
outline: none; }
|
|
2107
1417
|
|
|
2108
1418
|
.euiCodeBlock {
|
|
2109
1419
|
max-width: 100%;
|
|
@@ -3544,14 +2854,11 @@ SOFTWARE.
|
|
|
3544
2854
|
.euiControlBar__controls .euiLink.euiLink--text {
|
|
3545
2855
|
color: #FFF; }
|
|
3546
2856
|
|
|
3547
|
-
.euiControlBar__controls .euiControlBar__button.euiButton
|
|
3548
|
-
box-shadow: none; }
|
|
3549
|
-
|
|
3550
|
-
.euiControlBar__controls .euiControlBar__button.euiButton--primary:enabled:not(.euiButton--fill) {
|
|
2857
|
+
.euiControlBar__controls .euiControlBar__button.euiButton[class*='primary']:enabled:not(.euiButton--fill) {
|
|
3551
2858
|
color: #36A2EF;
|
|
3552
2859
|
border-color: #36A2EF; }
|
|
3553
2860
|
|
|
3554
|
-
.euiControlBar__controls .euiButtonIcon
|
|
2861
|
+
.euiControlBar__controls .euiButtonIcon[class*='primary'] {
|
|
3555
2862
|
color: #36A2EF; }
|
|
3556
2863
|
|
|
3557
2864
|
.euiControlBar__controls .euiLink.euiLink--accent {
|
|
@@ -3562,14 +2869,11 @@ SOFTWARE.
|
|
|
3562
2869
|
.euiControlBar__controls .euiLink.euiLink--text {
|
|
3563
2870
|
color: #FFF; }
|
|
3564
2871
|
|
|
3565
|
-
.euiControlBar__controls .euiControlBar__button.euiButton
|
|
3566
|
-
box-shadow: none; }
|
|
3567
|
-
|
|
3568
|
-
.euiControlBar__controls .euiControlBar__button.euiButton--accent:enabled:not(.euiButton--fill) {
|
|
2872
|
+
.euiControlBar__controls .euiControlBar__button.euiButton[class*='accent']:enabled:not(.euiButton--fill) {
|
|
3569
2873
|
color: #F68FBE;
|
|
3570
2874
|
border-color: #F68FBE; }
|
|
3571
2875
|
|
|
3572
|
-
.euiControlBar__controls .euiButtonIcon
|
|
2876
|
+
.euiControlBar__controls .euiButtonIcon[class*='accent'] {
|
|
3573
2877
|
color: #F68FBE; }
|
|
3574
2878
|
|
|
3575
2879
|
.euiControlBar__controls .euiLink.euiLink--success {
|
|
@@ -3580,14 +2884,11 @@ SOFTWARE.
|
|
|
3580
2884
|
.euiControlBar__controls .euiLink.euiLink--text {
|
|
3581
2885
|
color: #FFF; }
|
|
3582
2886
|
|
|
3583
|
-
.euiControlBar__controls .euiControlBar__button.euiButton
|
|
3584
|
-
box-shadow: none; }
|
|
3585
|
-
|
|
3586
|
-
.euiControlBar__controls .euiControlBar__button.euiButton--success:enabled:not(.euiButton--fill) {
|
|
2887
|
+
.euiControlBar__controls .euiControlBar__button.euiButton[class*='success']:enabled:not(.euiButton--fill) {
|
|
3587
2888
|
color: #7DDED8;
|
|
3588
2889
|
border-color: #7DDED8; }
|
|
3589
2890
|
|
|
3590
|
-
.euiControlBar__controls .euiButtonIcon
|
|
2891
|
+
.euiControlBar__controls .euiButtonIcon[class*='success'] {
|
|
3591
2892
|
color: #7DDED8; }
|
|
3592
2893
|
|
|
3593
2894
|
.euiControlBar__controls .euiLink.euiLink--warning {
|
|
@@ -3598,14 +2899,11 @@ SOFTWARE.
|
|
|
3598
2899
|
.euiControlBar__controls .euiLink.euiLink--text {
|
|
3599
2900
|
color: #FFF; }
|
|
3600
2901
|
|
|
3601
|
-
.euiControlBar__controls .euiControlBar__button.euiButton
|
|
3602
|
-
box-shadow: none; }
|
|
3603
|
-
|
|
3604
|
-
.euiControlBar__controls .euiControlBar__button.euiButton--warning:enabled:not(.euiButton--fill) {
|
|
2902
|
+
.euiControlBar__controls .euiControlBar__button.euiButton[class*='warning']:enabled:not(.euiButton--fill) {
|
|
3605
2903
|
color: #F3D371;
|
|
3606
2904
|
border-color: #F3D371; }
|
|
3607
2905
|
|
|
3608
|
-
.euiControlBar__controls .euiButtonIcon
|
|
2906
|
+
.euiControlBar__controls .euiButtonIcon[class*='warning'] {
|
|
3609
2907
|
color: #F3D371; }
|
|
3610
2908
|
|
|
3611
2909
|
.euiControlBar__controls .euiLink.euiLink--danger {
|
|
@@ -3616,14 +2914,11 @@ SOFTWARE.
|
|
|
3616
2914
|
.euiControlBar__controls .euiLink.euiLink--text {
|
|
3617
2915
|
color: #FFF; }
|
|
3618
2916
|
|
|
3619
|
-
.euiControlBar__controls .euiControlBar__button.euiButton
|
|
3620
|
-
box-shadow: none; }
|
|
3621
|
-
|
|
3622
|
-
.euiControlBar__controls .euiControlBar__button.euiButton--danger:enabled:not(.euiButton--fill) {
|
|
2917
|
+
.euiControlBar__controls .euiControlBar__button.euiButton[class*='danger']:enabled:not(.euiButton--fill) {
|
|
3623
2918
|
color: #F86B63;
|
|
3624
2919
|
border-color: #F86B63; }
|
|
3625
2920
|
|
|
3626
|
-
.euiControlBar__controls .euiButtonIcon
|
|
2921
|
+
.euiControlBar__controls .euiButtonIcon[class*='danger'] {
|
|
3627
2922
|
color: #F86B63; }
|
|
3628
2923
|
|
|
3629
2924
|
.euiControlBar__controls .euiLink.euiLink--ghost {
|
|
@@ -3634,14 +2929,11 @@ SOFTWARE.
|
|
|
3634
2929
|
.euiControlBar__controls .euiLink.euiLink--text {
|
|
3635
2930
|
color: #FFF; }
|
|
3636
2931
|
|
|
3637
|
-
.euiControlBar__controls .euiControlBar__button.euiButton
|
|
3638
|
-
box-shadow: none; }
|
|
3639
|
-
|
|
3640
|
-
.euiControlBar__controls .euiControlBar__button.euiButton--ghost:enabled:not(.euiButton--fill) {
|
|
2932
|
+
.euiControlBar__controls .euiControlBar__button.euiButton[class*='ghost']:enabled:not(.euiButton--fill) {
|
|
3641
2933
|
color: #FFF;
|
|
3642
2934
|
border-color: #FFF; }
|
|
3643
2935
|
|
|
3644
|
-
.euiControlBar__controls .euiButtonIcon
|
|
2936
|
+
.euiControlBar__controls .euiButtonIcon[class*='ghost'] {
|
|
3645
2937
|
color: #FFF; }
|
|
3646
2938
|
|
|
3647
2939
|
.euiControlBar__controls .euiLink.euiLink--text {
|
|
@@ -3652,14 +2944,11 @@ SOFTWARE.
|
|
|
3652
2944
|
.euiControlBar__controls .euiLink.euiLink--text {
|
|
3653
2945
|
color: #FFF; }
|
|
3654
2946
|
|
|
3655
|
-
.euiControlBar__controls .euiControlBar__button.euiButton
|
|
3656
|
-
box-shadow: none; }
|
|
3657
|
-
|
|
3658
|
-
.euiControlBar__controls .euiControlBar__button.euiButton--text:enabled:not(.euiButton--fill) {
|
|
2947
|
+
.euiControlBar__controls .euiControlBar__button.euiButton[class*='text']:enabled:not(.euiButton--fill) {
|
|
3659
2948
|
color: #98A2B3;
|
|
3660
2949
|
border-color: #98A2B3; }
|
|
3661
2950
|
|
|
3662
|
-
.euiControlBar__controls .euiButtonIcon
|
|
2951
|
+
.euiControlBar__controls .euiButtonIcon[class*='text'] {
|
|
3663
2952
|
color: #98A2B3; }
|
|
3664
2953
|
|
|
3665
2954
|
@media only screen and (max-width: 574px) {
|
|
@@ -4383,7 +3672,10 @@ SOFTWARE.
|
|
|
4383
3672
|
overflow: auto;
|
|
4384
3673
|
max-width: 400px !important;
|
|
4385
3674
|
max-height: 400px !important;
|
|
4386
|
-
z-index: 1000 !important;
|
|
3675
|
+
z-index: 1000 !important;
|
|
3676
|
+
-webkit-filter: none;
|
|
3677
|
+
filter: none;
|
|
3678
|
+
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); }
|
|
4387
3679
|
.euiDataGridRowCell__popover::-webkit-scrollbar {
|
|
4388
3680
|
width: 16px;
|
|
4389
3681
|
height: 16px; }
|
|
@@ -5653,11 +4945,12 @@ SOFTWARE.
|
|
|
5653
4945
|
outline: none; }
|
|
5654
4946
|
|
|
5655
4947
|
.euiFlyout__closeButton {
|
|
5656
|
-
background-color: rgba(29, 30, 36, 0.9);
|
|
5657
4948
|
position: absolute;
|
|
5658
4949
|
right: 8px;
|
|
5659
4950
|
top: 8px;
|
|
5660
4951
|
z-index: 3; }
|
|
4952
|
+
.euiFlyout__closeButton:not(.euiFlyout__closeButton--outside) {
|
|
4953
|
+
background-color: rgba(29, 30, 36, 0.9); }
|
|
5661
4954
|
.euiFlyout__closeButton--outside {
|
|
5662
4955
|
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);
|
|
5663
4956
|
right: auto;
|
|
@@ -12339,378 +11632,6 @@ button.euiSuggestItem {
|
|
|
12339
11632
|
-webkit-transform: translateY(0);
|
|
12340
11633
|
transform: translateY(0); } }
|
|
12341
11634
|
|
|
12342
|
-
.euiButton,
|
|
12343
|
-
.euiButtonIcon {
|
|
12344
|
-
box-shadow: none !important; }
|
|
12345
|
-
|
|
12346
|
-
.euiButton.euiButton-isDisabled:not(.euiButton--ghost), .euiButton.euiButton-isDisabled:not(.euiButton--ghost):hover,
|
|
12347
|
-
.euiButtonIcon.euiButtonIcon-isDisabled:not(.euiButtonIcon--ghost),
|
|
12348
|
-
.euiButtonIcon.euiButtonIcon-isDisabled:not(.euiButtonIcon--ghost):hover {
|
|
12349
|
-
background-color: rgba(81, 87, 97, 0.1);
|
|
12350
|
-
color: #515761; }
|
|
12351
|
-
|
|
12352
|
-
.euiButtonIcon--empty.euiButtonIcon-isDisabled:not(.euiButtonIcon--ghost), .euiButtonIcon--empty.euiButtonIcon-isDisabled:not(.euiButtonIcon--ghost):hover {
|
|
12353
|
-
background-color: transparent;
|
|
12354
|
-
color: #515761; }
|
|
12355
|
-
|
|
12356
|
-
.euiButton--small,
|
|
12357
|
-
.euiButtonIcon--small,
|
|
12358
|
-
.euiButtonIcon--xSmall {
|
|
12359
|
-
border-radius: 4px; }
|
|
12360
|
-
|
|
12361
|
-
.euiButton--primary {
|
|
12362
|
-
color: #36A2EF;
|
|
12363
|
-
background-color: rgba(54, 162, 239, 0.2); }
|
|
12364
|
-
.euiButton--primary:not([class*='isDisabled']):hover, .euiButton--primary:not([class*='isDisabled']):focus {
|
|
12365
|
-
background-color: rgba(54, 162, 239, 0.2); }
|
|
12366
|
-
.euiButton--primary.euiButton--fill:focus {
|
|
12367
|
-
outline-color: #FFF; }
|
|
12368
|
-
.euiButton--primary.euiButton--fill:not([class*='isDisabled']) {
|
|
12369
|
-
color: #000; }
|
|
12370
|
-
.euiButton--primary.euiButton--fill:not([class*='isDisabled']), .euiButton--primary.euiButton--fill:not([class*='isDisabled']):hover, .euiButton--primary.euiButton--fill:not([class*='isDisabled']):focus {
|
|
12371
|
-
background-color: #36A2EF; }
|
|
12372
|
-
|
|
12373
|
-
.euiButton--accent {
|
|
12374
|
-
color: #F68FBE;
|
|
12375
|
-
background-color: rgba(246, 143, 190, 0.2); }
|
|
12376
|
-
.euiButton--accent:not([class*='isDisabled']):hover, .euiButton--accent:not([class*='isDisabled']):focus {
|
|
12377
|
-
background-color: rgba(246, 143, 190, 0.2); }
|
|
12378
|
-
.euiButton--accent.euiButton--fill:focus {
|
|
12379
|
-
outline-color: #FFF; }
|
|
12380
|
-
.euiButton--accent.euiButton--fill:not([class*='isDisabled']) {
|
|
12381
|
-
color: #000; }
|
|
12382
|
-
.euiButton--accent.euiButton--fill:not([class*='isDisabled']), .euiButton--accent.euiButton--fill:not([class*='isDisabled']):hover, .euiButton--accent.euiButton--fill:not([class*='isDisabled']):focus {
|
|
12383
|
-
background-color: #F68FBE; }
|
|
12384
|
-
|
|
12385
|
-
.euiButton--success {
|
|
12386
|
-
color: #7DDED8;
|
|
12387
|
-
background-color: rgba(125, 222, 216, 0.2); }
|
|
12388
|
-
.euiButton--success:not([class*='isDisabled']):hover, .euiButton--success:not([class*='isDisabled']):focus {
|
|
12389
|
-
background-color: rgba(125, 222, 216, 0.2); }
|
|
12390
|
-
.euiButton--success.euiButton--fill:focus {
|
|
12391
|
-
outline-color: #FFF; }
|
|
12392
|
-
.euiButton--success.euiButton--fill:not([class*='isDisabled']) {
|
|
12393
|
-
color: #000; }
|
|
12394
|
-
.euiButton--success.euiButton--fill:not([class*='isDisabled']), .euiButton--success.euiButton--fill:not([class*='isDisabled']):hover, .euiButton--success.euiButton--fill:not([class*='isDisabled']):focus {
|
|
12395
|
-
background-color: #7DDED8; }
|
|
12396
|
-
|
|
12397
|
-
.euiButton--warning {
|
|
12398
|
-
color: #F3D371;
|
|
12399
|
-
background-color: rgba(243, 211, 113, 0.2); }
|
|
12400
|
-
.euiButton--warning:not([class*='isDisabled']):hover, .euiButton--warning:not([class*='isDisabled']):focus {
|
|
12401
|
-
background-color: rgba(243, 211, 113, 0.2); }
|
|
12402
|
-
.euiButton--warning.euiButton--fill:focus {
|
|
12403
|
-
outline-color: #FFF; }
|
|
12404
|
-
.euiButton--warning.euiButton--fill:not([class*='isDisabled']) {
|
|
12405
|
-
color: #000; }
|
|
12406
|
-
.euiButton--warning.euiButton--fill:not([class*='isDisabled']), .euiButton--warning.euiButton--fill:not([class*='isDisabled']):hover, .euiButton--warning.euiButton--fill:not([class*='isDisabled']):focus {
|
|
12407
|
-
background-color: #F3D371; }
|
|
12408
|
-
|
|
12409
|
-
.euiButton--danger {
|
|
12410
|
-
color: #F86B63;
|
|
12411
|
-
background-color: rgba(248, 107, 99, 0.2); }
|
|
12412
|
-
.euiButton--danger:not([class*='isDisabled']):hover, .euiButton--danger:not([class*='isDisabled']):focus {
|
|
12413
|
-
background-color: rgba(248, 107, 99, 0.2); }
|
|
12414
|
-
.euiButton--danger.euiButton--fill:focus {
|
|
12415
|
-
outline-color: #FFF; }
|
|
12416
|
-
.euiButton--danger.euiButton--fill:not([class*='isDisabled']) {
|
|
12417
|
-
color: #000; }
|
|
12418
|
-
.euiButton--danger.euiButton--fill:not([class*='isDisabled']), .euiButton--danger.euiButton--fill:not([class*='isDisabled']):hover, .euiButton--danger.euiButton--fill:not([class*='isDisabled']):focus {
|
|
12419
|
-
background-color: #F86B63; }
|
|
12420
|
-
|
|
12421
|
-
.euiButton--ghost {
|
|
12422
|
-
color: #FFF;
|
|
12423
|
-
background-color: rgba(255, 255, 255, 0.2);
|
|
12424
|
-
color: #FFF; }
|
|
12425
|
-
.euiButton--ghost:not([class*='isDisabled']):hover, .euiButton--ghost:not([class*='isDisabled']):focus {
|
|
12426
|
-
background-color: rgba(255, 255, 255, 0.2); }
|
|
12427
|
-
.euiButton--ghost.euiButton--fill:not([class*='isDisabled']) {
|
|
12428
|
-
color: #000; }
|
|
12429
|
-
.euiButton--ghost.euiButton--fill:not([class*='isDisabled']), .euiButton--ghost.euiButton--fill:not([class*='isDisabled']):hover, .euiButton--ghost.euiButton--fill:not([class*='isDisabled']):focus {
|
|
12430
|
-
background-color: #FFF; }
|
|
12431
|
-
|
|
12432
|
-
.euiButton--text {
|
|
12433
|
-
color: #98A2B3;
|
|
12434
|
-
background-color: rgba(152, 162, 179, 0.2);
|
|
12435
|
-
color: #DFE5EF; }
|
|
12436
|
-
.euiButton--text:not([class*='isDisabled']):hover, .euiButton--text:not([class*='isDisabled']):focus {
|
|
12437
|
-
background-color: rgba(152, 162, 179, 0.2); }
|
|
12438
|
-
.euiButton--text.euiButton--fill:not([class*='isDisabled']) {
|
|
12439
|
-
color: #000; }
|
|
12440
|
-
.euiButton--text.euiButton--fill:not([class*='isDisabled']), .euiButton--text.euiButton--fill:not([class*='isDisabled']):hover, .euiButton--text.euiButton--fill:not([class*='isDisabled']):focus {
|
|
12441
|
-
background-color: #98A2B3; }
|
|
12442
|
-
|
|
12443
|
-
.euiButton.euiButton-isDisabled.euiButton--ghost, .euiButton.euiButton-isDisabled.euiButton--ghost:focus,
|
|
12444
|
-
.euiButton.euiButton-isDisabled.euiButton--ghost.euiButton--fill,
|
|
12445
|
-
.euiButton.euiButton-isDisabled.euiButton--ghost.euiButton--fill:focus {
|
|
12446
|
-
color: #343741;
|
|
12447
|
-
background-color: rgba(52, 55, 65, 0.1); }
|
|
12448
|
-
|
|
12449
|
-
.euiButtonIcon--primary:not(.euiButtonIcon--empty) {
|
|
12450
|
-
color: #36A2EF;
|
|
12451
|
-
background-color: rgba(54, 162, 239, 0.2); }
|
|
12452
|
-
.euiButtonIcon--primary:not(.euiButtonIcon--empty):not([class*='isDisabled']):hover, .euiButtonIcon--primary:not(.euiButtonIcon--empty):not([class*='isDisabled']):focus {
|
|
12453
|
-
background-color: rgba(54, 162, 239, 0.2); }
|
|
12454
|
-
.euiButtonIcon--primary:not(.euiButtonIcon--empty).euiButtonIcon--fill:focus {
|
|
12455
|
-
outline-color: #FFF; }
|
|
12456
|
-
.euiButtonIcon--primary:not(.euiButtonIcon--empty).euiButtonIcon--fill:not([class*='isDisabled']) {
|
|
12457
|
-
color: #000; }
|
|
12458
|
-
.euiButtonIcon--primary:not(.euiButtonIcon--empty).euiButtonIcon--fill:not([class*='isDisabled']), .euiButtonIcon--primary:not(.euiButtonIcon--empty).euiButtonIcon--fill:not([class*='isDisabled']):hover, .euiButtonIcon--primary:not(.euiButtonIcon--empty).euiButtonIcon--fill:not([class*='isDisabled']):focus {
|
|
12459
|
-
background-color: #36A2EF; }
|
|
12460
|
-
|
|
12461
|
-
.euiButtonIcon--accent:not(.euiButtonIcon--empty) {
|
|
12462
|
-
color: #F68FBE;
|
|
12463
|
-
background-color: rgba(246, 143, 190, 0.2); }
|
|
12464
|
-
.euiButtonIcon--accent:not(.euiButtonIcon--empty):not([class*='isDisabled']):hover, .euiButtonIcon--accent:not(.euiButtonIcon--empty):not([class*='isDisabled']):focus {
|
|
12465
|
-
background-color: rgba(246, 143, 190, 0.2); }
|
|
12466
|
-
.euiButtonIcon--accent:not(.euiButtonIcon--empty).euiButtonIcon--fill:focus {
|
|
12467
|
-
outline-color: #FFF; }
|
|
12468
|
-
.euiButtonIcon--accent:not(.euiButtonIcon--empty).euiButtonIcon--fill:not([class*='isDisabled']) {
|
|
12469
|
-
color: #000; }
|
|
12470
|
-
.euiButtonIcon--accent:not(.euiButtonIcon--empty).euiButtonIcon--fill:not([class*='isDisabled']), .euiButtonIcon--accent:not(.euiButtonIcon--empty).euiButtonIcon--fill:not([class*='isDisabled']):hover, .euiButtonIcon--accent:not(.euiButtonIcon--empty).euiButtonIcon--fill:not([class*='isDisabled']):focus {
|
|
12471
|
-
background-color: #F68FBE; }
|
|
12472
|
-
|
|
12473
|
-
.euiButtonIcon--success:not(.euiButtonIcon--empty) {
|
|
12474
|
-
color: #7DDED8;
|
|
12475
|
-
background-color: rgba(125, 222, 216, 0.2); }
|
|
12476
|
-
.euiButtonIcon--success:not(.euiButtonIcon--empty):not([class*='isDisabled']):hover, .euiButtonIcon--success:not(.euiButtonIcon--empty):not([class*='isDisabled']):focus {
|
|
12477
|
-
background-color: rgba(125, 222, 216, 0.2); }
|
|
12478
|
-
.euiButtonIcon--success:not(.euiButtonIcon--empty).euiButtonIcon--fill:focus {
|
|
12479
|
-
outline-color: #FFF; }
|
|
12480
|
-
.euiButtonIcon--success:not(.euiButtonIcon--empty).euiButtonIcon--fill:not([class*='isDisabled']) {
|
|
12481
|
-
color: #000; }
|
|
12482
|
-
.euiButtonIcon--success:not(.euiButtonIcon--empty).euiButtonIcon--fill:not([class*='isDisabled']), .euiButtonIcon--success:not(.euiButtonIcon--empty).euiButtonIcon--fill:not([class*='isDisabled']):hover, .euiButtonIcon--success:not(.euiButtonIcon--empty).euiButtonIcon--fill:not([class*='isDisabled']):focus {
|
|
12483
|
-
background-color: #7DDED8; }
|
|
12484
|
-
|
|
12485
|
-
.euiButtonIcon--warning:not(.euiButtonIcon--empty) {
|
|
12486
|
-
color: #F3D371;
|
|
12487
|
-
background-color: rgba(243, 211, 113, 0.2); }
|
|
12488
|
-
.euiButtonIcon--warning:not(.euiButtonIcon--empty):not([class*='isDisabled']):hover, .euiButtonIcon--warning:not(.euiButtonIcon--empty):not([class*='isDisabled']):focus {
|
|
12489
|
-
background-color: rgba(243, 211, 113, 0.2); }
|
|
12490
|
-
.euiButtonIcon--warning:not(.euiButtonIcon--empty).euiButtonIcon--fill:focus {
|
|
12491
|
-
outline-color: #FFF; }
|
|
12492
|
-
.euiButtonIcon--warning:not(.euiButtonIcon--empty).euiButtonIcon--fill:not([class*='isDisabled']) {
|
|
12493
|
-
color: #000; }
|
|
12494
|
-
.euiButtonIcon--warning:not(.euiButtonIcon--empty).euiButtonIcon--fill:not([class*='isDisabled']), .euiButtonIcon--warning:not(.euiButtonIcon--empty).euiButtonIcon--fill:not([class*='isDisabled']):hover, .euiButtonIcon--warning:not(.euiButtonIcon--empty).euiButtonIcon--fill:not([class*='isDisabled']):focus {
|
|
12495
|
-
background-color: #F3D371; }
|
|
12496
|
-
|
|
12497
|
-
.euiButtonIcon--danger:not(.euiButtonIcon--empty) {
|
|
12498
|
-
color: #F86B63;
|
|
12499
|
-
background-color: rgba(248, 107, 99, 0.2); }
|
|
12500
|
-
.euiButtonIcon--danger:not(.euiButtonIcon--empty):not([class*='isDisabled']):hover, .euiButtonIcon--danger:not(.euiButtonIcon--empty):not([class*='isDisabled']):focus {
|
|
12501
|
-
background-color: rgba(248, 107, 99, 0.2); }
|
|
12502
|
-
.euiButtonIcon--danger:not(.euiButtonIcon--empty).euiButtonIcon--fill:focus {
|
|
12503
|
-
outline-color: #FFF; }
|
|
12504
|
-
.euiButtonIcon--danger:not(.euiButtonIcon--empty).euiButtonIcon--fill:not([class*='isDisabled']) {
|
|
12505
|
-
color: #000; }
|
|
12506
|
-
.euiButtonIcon--danger:not(.euiButtonIcon--empty).euiButtonIcon--fill:not([class*='isDisabled']), .euiButtonIcon--danger:not(.euiButtonIcon--empty).euiButtonIcon--fill:not([class*='isDisabled']):hover, .euiButtonIcon--danger:not(.euiButtonIcon--empty).euiButtonIcon--fill:not([class*='isDisabled']):focus {
|
|
12507
|
-
background-color: #F86B63; }
|
|
12508
|
-
|
|
12509
|
-
.euiButtonIcon--ghost:not(.euiButtonIcon--empty) {
|
|
12510
|
-
color: #FFF;
|
|
12511
|
-
background-color: rgba(255, 255, 255, 0.2);
|
|
12512
|
-
color: #FFF; }
|
|
12513
|
-
.euiButtonIcon--ghost:not(.euiButtonIcon--empty):not([class*='isDisabled']):hover, .euiButtonIcon--ghost:not(.euiButtonIcon--empty):not([class*='isDisabled']):focus {
|
|
12514
|
-
background-color: rgba(255, 255, 255, 0.2); }
|
|
12515
|
-
.euiButtonIcon--ghost:not(.euiButtonIcon--empty).euiButtonIcon--fill:not([class*='isDisabled']) {
|
|
12516
|
-
color: #000; }
|
|
12517
|
-
.euiButtonIcon--ghost:not(.euiButtonIcon--empty).euiButtonIcon--fill:not([class*='isDisabled']), .euiButtonIcon--ghost:not(.euiButtonIcon--empty).euiButtonIcon--fill:not([class*='isDisabled']):hover, .euiButtonIcon--ghost:not(.euiButtonIcon--empty).euiButtonIcon--fill:not([class*='isDisabled']):focus {
|
|
12518
|
-
background-color: #FFF; }
|
|
12519
|
-
|
|
12520
|
-
.euiButtonIcon--text:not(.euiButtonIcon--empty) {
|
|
12521
|
-
color: #98A2B3;
|
|
12522
|
-
background-color: rgba(152, 162, 179, 0.2);
|
|
12523
|
-
color: #DFE5EF; }
|
|
12524
|
-
.euiButtonIcon--text:not(.euiButtonIcon--empty):not([class*='isDisabled']):hover, .euiButtonIcon--text:not(.euiButtonIcon--empty):not([class*='isDisabled']):focus {
|
|
12525
|
-
background-color: rgba(152, 162, 179, 0.2); }
|
|
12526
|
-
.euiButtonIcon--text:not(.euiButtonIcon--empty).euiButtonIcon--fill:not([class*='isDisabled']) {
|
|
12527
|
-
color: #000; }
|
|
12528
|
-
.euiButtonIcon--text:not(.euiButtonIcon--empty).euiButtonIcon--fill:not([class*='isDisabled']), .euiButtonIcon--text:not(.euiButtonIcon--empty).euiButtonIcon--fill:not([class*='isDisabled']):hover, .euiButtonIcon--text:not(.euiButtonIcon--empty).euiButtonIcon--fill:not([class*='isDisabled']):focus {
|
|
12529
|
-
background-color: #98A2B3; }
|
|
12530
|
-
|
|
12531
|
-
.euiButtonIcon:not(.euiButtonIcon--empty).euiButtonIcon-isDisabled.euiButtonIcon--ghost, .euiButtonIcon:not(.euiButtonIcon--empty).euiButtonIcon-isDisabled.euiButtonIcon--ghost:focus,
|
|
12532
|
-
.euiButtonIcon.euiButtonIcon-isDisabled.euiButtonIcon--ghost.euiButtonIcon--fill,
|
|
12533
|
-
.euiButtonIcon.euiButtonIcon-isDisabled.euiButtonIcon--ghost.euiButtonIcon--fill:focus {
|
|
12534
|
-
color: #343741;
|
|
12535
|
-
background-color: rgba(52, 55, 65, 0.1); }
|
|
12536
|
-
|
|
12537
|
-
.euiButtonEmpty {
|
|
12538
|
-
border-radius: 6px; }
|
|
12539
|
-
.euiButtonEmpty.euiButtonEmpty--small, .euiButtonEmpty.euiButtonEmpty--xSmall {
|
|
12540
|
-
border-radius: 4.002px; }
|
|
12541
|
-
.euiButtonEmpty.euiButtonEmpty--xSmall {
|
|
12542
|
-
font-size: 12px; }
|
|
12543
|
-
|
|
12544
|
-
.euiButtonEmpty--primary:enabled:focus {
|
|
12545
|
-
background-color: rgba(54, 162, 239, 0.2); }
|
|
12546
|
-
|
|
12547
|
-
.euiButtonEmpty--accent:enabled:focus {
|
|
12548
|
-
background-color: rgba(246, 143, 190, 0.2); }
|
|
12549
|
-
|
|
12550
|
-
.euiButtonEmpty--success:enabled:focus {
|
|
12551
|
-
background-color: rgba(125, 222, 216, 0.2); }
|
|
12552
|
-
|
|
12553
|
-
.euiButtonEmpty--warning:enabled:focus {
|
|
12554
|
-
background-color: rgba(243, 211, 113, 0.2); }
|
|
12555
|
-
|
|
12556
|
-
.euiButtonEmpty--danger:enabled:focus {
|
|
12557
|
-
background-color: rgba(248, 107, 99, 0.2); }
|
|
12558
|
-
|
|
12559
|
-
.euiButtonEmpty--ghost:enabled:focus {
|
|
12560
|
-
background-color: rgba(255, 255, 255, 0.2); }
|
|
12561
|
-
|
|
12562
|
-
.euiButtonEmpty--text:enabled:focus {
|
|
12563
|
-
background-color: rgba(152, 162, 179, 0.2); }
|
|
12564
|
-
|
|
12565
|
-
.euiButtonGroup__buttons {
|
|
12566
|
-
box-shadow: none !important; }
|
|
12567
|
-
|
|
12568
|
-
.euiButtonGroup--medium .euiButtonGroupButton,
|
|
12569
|
-
.euiButtonGroup--small .euiButtonGroupButton {
|
|
12570
|
-
border: none !important;
|
|
12571
|
-
border-radius: 0 !important;
|
|
12572
|
-
font-weight: 500; }
|
|
12573
|
-
.euiButtonGroup--medium .euiButtonGroupButton:focus, .euiButtonGroup--medium .euiButtonGroupButton:focus-within,
|
|
12574
|
-
.euiButtonGroup--small .euiButtonGroupButton:focus,
|
|
12575
|
-
.euiButtonGroup--small .euiButtonGroupButton:focus-within {
|
|
12576
|
-
outline-style: solid;
|
|
12577
|
-
outline-color: #FFF;
|
|
12578
|
-
outline-offset: -2px; }
|
|
12579
|
-
.euiButtonGroup--medium .euiButtonGroupButton:focus:focus-visible, .euiButtonGroup--medium .euiButtonGroupButton:focus-within:focus-visible,
|
|
12580
|
-
.euiButtonGroup--small .euiButtonGroupButton:focus:focus-visible,
|
|
12581
|
-
.euiButtonGroup--small .euiButtonGroupButton:focus-within:focus-visible {
|
|
12582
|
-
outline-style: auto; }
|
|
12583
|
-
.euiButtonGroup--medium .euiButtonGroupButton:focus:not(:focus-visible),
|
|
12584
|
-
.euiButtonGroup--small .euiButtonGroupButton:focus:not(:focus-visible) {
|
|
12585
|
-
outline: none; }
|
|
12586
|
-
|
|
12587
|
-
.euiButtonGroup--medium .euiButtonGroupButton-isDisabled:not(.euiButtonGroupButton--ghost):not(.euiButtonGroupButton-isSelected),
|
|
12588
|
-
.euiButtonGroup--small .euiButtonGroupButton-isDisabled:not(.euiButtonGroupButton--ghost):not(.euiButtonGroupButton-isSelected) {
|
|
12589
|
-
background-color: rgba(81, 87, 97, 0.3);
|
|
12590
|
-
color: #515761; }
|
|
12591
|
-
|
|
12592
|
-
.euiButtonGroup--medium .euiButtonGroupButton--primary,
|
|
12593
|
-
.euiButtonGroup--small .euiButtonGroupButton--primary {
|
|
12594
|
-
color: #36A2EF;
|
|
12595
|
-
background-color: rgba(54, 162, 239, 0.2); }
|
|
12596
|
-
.euiButtonGroup--medium .euiButtonGroupButton--primary:not([class*='isDisabled']):hover, .euiButtonGroup--medium .euiButtonGroupButton--primary:not([class*='isDisabled']):focus,
|
|
12597
|
-
.euiButtonGroup--small .euiButtonGroupButton--primary:not([class*='isDisabled']):hover,
|
|
12598
|
-
.euiButtonGroup--small .euiButtonGroupButton--primary:not([class*='isDisabled']):focus {
|
|
12599
|
-
background-color: rgba(54, 162, 239, 0.2); }
|
|
12600
|
-
|
|
12601
|
-
.euiButtonGroup--medium .euiButtonGroupButton--accent,
|
|
12602
|
-
.euiButtonGroup--small .euiButtonGroupButton--accent {
|
|
12603
|
-
color: #F68FBE;
|
|
12604
|
-
background-color: rgba(246, 143, 190, 0.2); }
|
|
12605
|
-
.euiButtonGroup--medium .euiButtonGroupButton--accent:not([class*='isDisabled']):hover, .euiButtonGroup--medium .euiButtonGroupButton--accent:not([class*='isDisabled']):focus,
|
|
12606
|
-
.euiButtonGroup--small .euiButtonGroupButton--accent:not([class*='isDisabled']):hover,
|
|
12607
|
-
.euiButtonGroup--small .euiButtonGroupButton--accent:not([class*='isDisabled']):focus {
|
|
12608
|
-
background-color: rgba(246, 143, 190, 0.2); }
|
|
12609
|
-
|
|
12610
|
-
.euiButtonGroup--medium .euiButtonGroupButton--success,
|
|
12611
|
-
.euiButtonGroup--small .euiButtonGroupButton--success {
|
|
12612
|
-
color: #7DDED8;
|
|
12613
|
-
background-color: rgba(125, 222, 216, 0.2); }
|
|
12614
|
-
.euiButtonGroup--medium .euiButtonGroupButton--success:not([class*='isDisabled']):hover, .euiButtonGroup--medium .euiButtonGroupButton--success:not([class*='isDisabled']):focus,
|
|
12615
|
-
.euiButtonGroup--small .euiButtonGroupButton--success:not([class*='isDisabled']):hover,
|
|
12616
|
-
.euiButtonGroup--small .euiButtonGroupButton--success:not([class*='isDisabled']):focus {
|
|
12617
|
-
background-color: rgba(125, 222, 216, 0.2); }
|
|
12618
|
-
|
|
12619
|
-
.euiButtonGroup--medium .euiButtonGroupButton--warning,
|
|
12620
|
-
.euiButtonGroup--small .euiButtonGroupButton--warning {
|
|
12621
|
-
color: #F3D371;
|
|
12622
|
-
background-color: rgba(243, 211, 113, 0.2); }
|
|
12623
|
-
.euiButtonGroup--medium .euiButtonGroupButton--warning:not([class*='isDisabled']):hover, .euiButtonGroup--medium .euiButtonGroupButton--warning:not([class*='isDisabled']):focus,
|
|
12624
|
-
.euiButtonGroup--small .euiButtonGroupButton--warning:not([class*='isDisabled']):hover,
|
|
12625
|
-
.euiButtonGroup--small .euiButtonGroupButton--warning:not([class*='isDisabled']):focus {
|
|
12626
|
-
background-color: rgba(243, 211, 113, 0.2); }
|
|
12627
|
-
|
|
12628
|
-
.euiButtonGroup--medium .euiButtonGroupButton--danger,
|
|
12629
|
-
.euiButtonGroup--small .euiButtonGroupButton--danger {
|
|
12630
|
-
color: #F86B63;
|
|
12631
|
-
background-color: rgba(248, 107, 99, 0.2); }
|
|
12632
|
-
.euiButtonGroup--medium .euiButtonGroupButton--danger:not([class*='isDisabled']):hover, .euiButtonGroup--medium .euiButtonGroupButton--danger:not([class*='isDisabled']):focus,
|
|
12633
|
-
.euiButtonGroup--small .euiButtonGroupButton--danger:not([class*='isDisabled']):hover,
|
|
12634
|
-
.euiButtonGroup--small .euiButtonGroupButton--danger:not([class*='isDisabled']):focus {
|
|
12635
|
-
background-color: rgba(248, 107, 99, 0.2); }
|
|
12636
|
-
|
|
12637
|
-
.euiButtonGroup--medium .euiButtonGroupButton--ghost,
|
|
12638
|
-
.euiButtonGroup--small .euiButtonGroupButton--ghost {
|
|
12639
|
-
color: #FFF;
|
|
12640
|
-
background-color: rgba(255, 255, 255, 0.2);
|
|
12641
|
-
color: #FFF; }
|
|
12642
|
-
.euiButtonGroup--medium .euiButtonGroupButton--ghost:not([class*='isDisabled']):hover, .euiButtonGroup--medium .euiButtonGroupButton--ghost:not([class*='isDisabled']):focus,
|
|
12643
|
-
.euiButtonGroup--small .euiButtonGroupButton--ghost:not([class*='isDisabled']):hover,
|
|
12644
|
-
.euiButtonGroup--small .euiButtonGroupButton--ghost:not([class*='isDisabled']):focus {
|
|
12645
|
-
background-color: rgba(255, 255, 255, 0.2); }
|
|
12646
|
-
|
|
12647
|
-
.euiButtonGroup--medium .euiButtonGroupButton--text,
|
|
12648
|
-
.euiButtonGroup--small .euiButtonGroupButton--text {
|
|
12649
|
-
color: #98A2B3;
|
|
12650
|
-
background-color: rgba(152, 162, 179, 0.2); }
|
|
12651
|
-
.euiButtonGroup--medium .euiButtonGroupButton--text:not([class*='isDisabled']):hover, .euiButtonGroup--medium .euiButtonGroupButton--text:not([class*='isDisabled']):focus,
|
|
12652
|
-
.euiButtonGroup--small .euiButtonGroupButton--text:not([class*='isDisabled']):hover,
|
|
12653
|
-
.euiButtonGroup--small .euiButtonGroupButton--text:not([class*='isDisabled']):focus {
|
|
12654
|
-
background-color: rgba(152, 162, 179, 0.2); }
|
|
12655
|
-
|
|
12656
|
-
.euiButtonGroup--medium .euiButtonGroupButton-isDisabled.euiButtonGroupButton--ghost:not(.euiButtonGroupButton-isSelected), .euiButtonGroup--medium .euiButtonGroupButton-isDisabled.euiButtonGroupButton--ghost:not(.euiButtonGroupButton-isSelected):hover, .euiButtonGroup--medium .euiButtonGroupButton-isDisabled.euiButtonGroupButton--ghost:not(.euiButtonGroupButton-isSelected):focus,
|
|
12657
|
-
.euiButtonGroup--small .euiButtonGroupButton-isDisabled.euiButtonGroupButton--ghost:not(.euiButtonGroupButton-isSelected),
|
|
12658
|
-
.euiButtonGroup--small .euiButtonGroupButton-isDisabled.euiButtonGroupButton--ghost:not(.euiButtonGroupButton-isSelected):hover,
|
|
12659
|
-
.euiButtonGroup--small .euiButtonGroupButton-isDisabled.euiButtonGroupButton--ghost:not(.euiButtonGroupButton-isSelected):focus {
|
|
12660
|
-
background-color: rgba(52, 55, 65, 0.3); }
|
|
12661
|
-
|
|
12662
|
-
.euiButtonGroup--small .euiButtonGroup__buttons {
|
|
12663
|
-
border-radius: 4px; }
|
|
12664
|
-
|
|
12665
|
-
.euiButtonGroup--compressed .euiButtonGroupButton {
|
|
12666
|
-
border-radius: 5px; }
|
|
12667
|
-
.euiButtonGroup--compressed .euiButtonGroupButton--primary:not([class*='isDisabled']):focus, .euiButtonGroup--compressed .euiButtonGroupButton--primary:not([class*='isDisabled']):focus-within {
|
|
12668
|
-
outline-color: #36A2EF; }
|
|
12669
|
-
.euiButtonGroup--compressed .euiButtonGroupButton--primary:not([class*='isDisabled']):focus:focus-visible, .euiButtonGroup--compressed .euiButtonGroupButton--primary:not([class*='isDisabled']):focus-within:focus-visible {
|
|
12670
|
-
outline-style: auto; }
|
|
12671
|
-
.euiButtonGroup--compressed .euiButtonGroupButton--primary:not([class*='isDisabled']):focus:not(:focus-visible) {
|
|
12672
|
-
outline: none; }
|
|
12673
|
-
.euiButtonGroup--compressed .euiButtonGroupButton--accent:not([class*='isDisabled']):focus, .euiButtonGroup--compressed .euiButtonGroupButton--accent:not([class*='isDisabled']):focus-within {
|
|
12674
|
-
outline-color: #F68FBE; }
|
|
12675
|
-
.euiButtonGroup--compressed .euiButtonGroupButton--accent:not([class*='isDisabled']):focus:focus-visible, .euiButtonGroup--compressed .euiButtonGroupButton--accent:not([class*='isDisabled']):focus-within:focus-visible {
|
|
12676
|
-
outline-style: auto; }
|
|
12677
|
-
.euiButtonGroup--compressed .euiButtonGroupButton--accent:not([class*='isDisabled']):focus:not(:focus-visible) {
|
|
12678
|
-
outline: none; }
|
|
12679
|
-
.euiButtonGroup--compressed .euiButtonGroupButton--success:not([class*='isDisabled']):focus, .euiButtonGroup--compressed .euiButtonGroupButton--success:not([class*='isDisabled']):focus-within {
|
|
12680
|
-
outline-color: #7DDED8; }
|
|
12681
|
-
.euiButtonGroup--compressed .euiButtonGroupButton--success:not([class*='isDisabled']):focus:focus-visible, .euiButtonGroup--compressed .euiButtonGroupButton--success:not([class*='isDisabled']):focus-within:focus-visible {
|
|
12682
|
-
outline-style: auto; }
|
|
12683
|
-
.euiButtonGroup--compressed .euiButtonGroupButton--success:not([class*='isDisabled']):focus:not(:focus-visible) {
|
|
12684
|
-
outline: none; }
|
|
12685
|
-
.euiButtonGroup--compressed .euiButtonGroupButton--warning:not([class*='isDisabled']):focus, .euiButtonGroup--compressed .euiButtonGroupButton--warning:not([class*='isDisabled']):focus-within {
|
|
12686
|
-
outline-color: #F3D371; }
|
|
12687
|
-
.euiButtonGroup--compressed .euiButtonGroupButton--warning:not([class*='isDisabled']):focus:focus-visible, .euiButtonGroup--compressed .euiButtonGroupButton--warning:not([class*='isDisabled']):focus-within:focus-visible {
|
|
12688
|
-
outline-style: auto; }
|
|
12689
|
-
.euiButtonGroup--compressed .euiButtonGroupButton--warning:not([class*='isDisabled']):focus:not(:focus-visible) {
|
|
12690
|
-
outline: none; }
|
|
12691
|
-
.euiButtonGroup--compressed .euiButtonGroupButton--danger:not([class*='isDisabled']):focus, .euiButtonGroup--compressed .euiButtonGroupButton--danger:not([class*='isDisabled']):focus-within {
|
|
12692
|
-
outline-color: #F86B63; }
|
|
12693
|
-
.euiButtonGroup--compressed .euiButtonGroupButton--danger:not([class*='isDisabled']):focus:focus-visible, .euiButtonGroup--compressed .euiButtonGroupButton--danger:not([class*='isDisabled']):focus-within:focus-visible {
|
|
12694
|
-
outline-style: auto; }
|
|
12695
|
-
.euiButtonGroup--compressed .euiButtonGroupButton--danger:not([class*='isDisabled']):focus:not(:focus-visible) {
|
|
12696
|
-
outline: none; }
|
|
12697
|
-
.euiButtonGroup--compressed .euiButtonGroupButton--ghost:not([class*='isDisabled']):focus, .euiButtonGroup--compressed .euiButtonGroupButton--ghost:not([class*='isDisabled']):focus-within {
|
|
12698
|
-
outline-color: #FFF; }
|
|
12699
|
-
.euiButtonGroup--compressed .euiButtonGroupButton--ghost:not([class*='isDisabled']):focus:focus-visible, .euiButtonGroup--compressed .euiButtonGroupButton--ghost:not([class*='isDisabled']):focus-within:focus-visible {
|
|
12700
|
-
outline-style: auto; }
|
|
12701
|
-
.euiButtonGroup--compressed .euiButtonGroupButton--ghost:not([class*='isDisabled']):focus:not(:focus-visible) {
|
|
12702
|
-
outline: none; }
|
|
12703
|
-
.euiButtonGroup--compressed .euiButtonGroupButton--text:not([class*='isDisabled']):focus, .euiButtonGroup--compressed .euiButtonGroupButton--text:not([class*='isDisabled']):focus-within {
|
|
12704
|
-
outline-color: #98A2B3; }
|
|
12705
|
-
.euiButtonGroup--compressed .euiButtonGroupButton--text:not([class*='isDisabled']):focus:focus-visible, .euiButtonGroup--compressed .euiButtonGroupButton--text:not([class*='isDisabled']):focus-within:focus-visible {
|
|
12706
|
-
outline-style: auto; }
|
|
12707
|
-
.euiButtonGroup--compressed .euiButtonGroupButton--text:not([class*='isDisabled']):focus:not(:focus-visible) {
|
|
12708
|
-
outline: none; }
|
|
12709
|
-
|
|
12710
|
-
.euiCard .euiCardSelect {
|
|
12711
|
-
border-top-left-radius: 0;
|
|
12712
|
-
border-top-right-radius: 0; }
|
|
12713
|
-
|
|
12714
11635
|
.euiCode {
|
|
12715
11636
|
border-radius: 4px;
|
|
12716
11637
|
font-weight: 700;
|
|
@@ -12950,12 +11871,6 @@ button.euiSuggestItem {
|
|
|
12950
11871
|
.euiSwitch .euiSwitch__button:focus .euiSwitch__track {
|
|
12951
11872
|
outline: none; }
|
|
12952
11873
|
|
|
12953
|
-
/*
|
|
12954
|
-
* Creates the Amsterdam style of button with a transparent background
|
|
12955
|
-
*/
|
|
12956
|
-
/*
|
|
12957
|
-
* Creates the Amsterdam style of fill button
|
|
12958
|
-
*/
|
|
12959
11874
|
.euiHeader {
|
|
12960
11875
|
height: 48px;
|
|
12961
11876
|
padding-left: 8px;
|