@elastic/eui 91.3.0 → 92.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/eui_charts_theme.js.map +1 -1
- package/dist/eui_theme_dark.css +0 -513
- package/dist/eui_theme_dark.min.css +1 -1
- package/dist/eui_theme_light.css +0 -513
- package/dist/eui_theme_light.min.css +1 -1
- package/es/components/basic_table/basic_table.js +25 -22
- package/es/components/basic_table/collapsed_item_actions.js +14 -15
- package/es/components/basic_table/expanded_item_actions.js +4 -4
- package/es/components/datagrid/body/header/data_grid_header_cell.js +3 -3
- package/es/components/drag_and_drop/drag_and_drop.a11y.js +1 -1
- package/es/components/filter_group/filter_button.js +20 -13
- package/es/components/filter_group/filter_button.styles.js +11 -20
- package/es/components/flyout/flyout.js +4 -4
- package/es/components/flyout/flyout_resizable.js +127 -0
- package/es/components/flyout/flyout_resizable.styles.js +27 -0
- package/es/components/flyout/index.js +2 -1
- package/es/components/form/range/dual_range.js +15 -66
- package/es/components/form/range/range.js +6 -5
- package/es/components/form/range/range_slider.js +28 -22
- package/es/components/form/text_area/text_area.js +39 -3
- package/es/components/index.js +0 -2
- package/es/components/markdown_editor/markdown_editor.js +12 -13
- package/es/components/page_template/bottom_bar/page_bottom_bar.js +1 -1
- package/es/components/selectable/selectable_list/selectable_list_item.js +1 -1
- package/es/components/selectable/selectable_templates/selectable_template_sitewide.js +5 -0
- package/es/components/tree_view/tree_view.js +23 -25
- package/es/utils/prop_types/is.js +2 -2
- package/eui.d.ts +830 -1145
- package/i18ntokens.json +121 -373
- package/lib/components/basic_table/basic_table.js +25 -22
- package/lib/components/basic_table/collapsed_item_actions.js +14 -15
- package/lib/components/basic_table/expanded_item_actions.js +4 -4
- package/lib/components/datagrid/body/header/data_grid_header_cell.js +3 -3
- package/lib/components/drag_and_drop/drag_and_drop.a11y.js +1 -1
- package/lib/components/filter_group/filter_button.js +20 -13
- package/lib/components/filter_group/filter_button.styles.js +11 -20
- package/lib/components/flyout/flyout.js +4 -4
- package/lib/components/flyout/flyout_resizable.js +136 -0
- package/lib/components/flyout/flyout_resizable.styles.js +32 -0
- package/lib/components/flyout/index.js +8 -1
- package/lib/components/form/range/dual_range.js +15 -66
- package/lib/components/form/range/range.js +6 -5
- package/lib/components/form/range/range_slider.js +27 -21
- package/lib/components/form/text_area/text_area.js +42 -3
- package/lib/components/index.js +0 -22
- package/lib/components/markdown_editor/markdown_editor.js +12 -13
- package/lib/components/page_template/bottom_bar/page_bottom_bar.js +1 -1
- package/lib/components/pagination/pagination_button.js +79 -2
- package/lib/components/selectable/selectable_list/selectable_list_item.js +1 -1
- package/lib/components/tree_view/tree_view.js +23 -25
- package/lib/utils/prop_types/is.js +2 -2
- package/optimize/es/components/basic_table/basic_table.js +25 -22
- package/optimize/es/components/basic_table/collapsed_item_actions.js +14 -15
- package/optimize/es/components/basic_table/expanded_item_actions.js +4 -4
- package/optimize/es/components/datagrid/body/header/data_grid_header_cell.js +3 -3
- package/optimize/es/components/drag_and_drop/drag_and_drop.a11y.js +1 -1
- package/optimize/es/components/filter_group/filter_button.js +20 -13
- package/optimize/es/components/filter_group/filter_button.styles.js +11 -20
- package/optimize/es/components/flyout/flyout.js +4 -4
- package/optimize/es/components/flyout/flyout_resizable.js +121 -0
- package/optimize/es/components/flyout/flyout_resizable.styles.js +27 -0
- package/optimize/es/components/flyout/index.js +2 -1
- package/optimize/es/components/form/range/dual_range.js +15 -66
- package/optimize/es/components/form/range/range.js +6 -5
- package/optimize/es/components/form/range/range_slider.js +26 -21
- package/optimize/es/components/form/text_area/text_area.js +29 -3
- package/optimize/es/components/index.js +0 -2
- package/optimize/es/components/markdown_editor/markdown_editor.js +12 -13
- package/optimize/es/components/page_template/bottom_bar/page_bottom_bar.js +1 -1
- package/optimize/es/components/selectable/selectable_list/selectable_list_item.js +1 -1
- package/optimize/es/components/tree_view/tree_view.js +23 -25
- package/optimize/es/utils/prop_types/is.js +2 -2
- package/optimize/lib/components/basic_table/basic_table.js +25 -22
- package/optimize/lib/components/basic_table/collapsed_item_actions.js +14 -15
- package/optimize/lib/components/basic_table/expanded_item_actions.js +4 -4
- package/optimize/lib/components/datagrid/body/header/data_grid_header_cell.js +3 -3
- package/optimize/lib/components/drag_and_drop/drag_and_drop.a11y.js +1 -1
- package/optimize/lib/components/filter_group/filter_button.js +20 -13
- package/optimize/lib/components/filter_group/filter_button.styles.js +11 -20
- package/optimize/lib/components/flyout/flyout.js +4 -4
- package/optimize/lib/components/flyout/flyout_resizable.js +131 -0
- package/optimize/lib/components/flyout/flyout_resizable.styles.js +32 -0
- package/optimize/lib/components/flyout/index.js +8 -1
- package/optimize/lib/components/form/range/dual_range.js +15 -66
- package/optimize/lib/components/form/range/range.js +6 -5
- package/optimize/lib/components/form/range/range_slider.js +26 -21
- package/optimize/lib/components/form/text_area/text_area.js +32 -3
- package/optimize/lib/components/index.js +0 -22
- package/optimize/lib/components/markdown_editor/markdown_editor.js +12 -13
- package/optimize/lib/components/page_template/bottom_bar/page_bottom_bar.js +1 -1
- package/optimize/lib/components/selectable/selectable_list/selectable_list_item.js +1 -1
- package/optimize/lib/components/tree_view/tree_view.js +23 -25
- package/optimize/lib/utils/prop_types/is.js +2 -2
- package/package.json +3 -5
- package/src/components/index.scss +0 -2
- package/test-env/components/basic_table/basic_table.js +25 -22
- package/test-env/components/basic_table/collapsed_item_actions.js +14 -15
- package/test-env/components/basic_table/expanded_item_actions.js +4 -4
- package/test-env/components/datagrid/body/header/data_grid_header_cell.js +3 -3
- package/test-env/components/drag_and_drop/drag_and_drop.a11y.js +1 -1
- package/test-env/components/filter_group/filter_button.js +20 -13
- package/test-env/components/filter_group/filter_button.styles.js +11 -20
- package/test-env/components/flyout/flyout_resizable.js +131 -0
- package/test-env/components/flyout/flyout_resizable.styles.js +32 -0
- package/test-env/components/flyout/index.js +8 -1
- package/test-env/components/form/range/dual_range.js +15 -66
- package/test-env/components/form/range/range.js +6 -5
- package/test-env/components/form/range/range_slider.js +27 -21
- package/test-env/components/form/text_area/text_area.js +42 -3
- package/test-env/components/index.js +0 -22
- package/test-env/components/markdown_editor/markdown_editor.js +12 -13
- package/test-env/components/page_template/bottom_bar/page_bottom_bar.js +1 -1
- package/test-env/components/pagination/pagination_button.js +79 -2
- package/test-env/components/selectable/selectable_list/selectable_list_item.js +1 -1
- package/test-env/components/tree_view/tree_view.js +23 -25
- package/test-env/utils/prop_types/is.js +2 -2
- package/es/components/control_bar/control_bar.a11y.js +0 -133
- package/es/components/control_bar/control_bar.js +0 -609
- package/es/components/control_bar/index.js +0 -9
- package/es/components/notification/index.js +0 -9
- package/es/components/notification/notification_event.a11y.js +0 -104
- package/es/components/notification/notification_event.js +0 -288
- package/es/components/notification/notification_event_messages.js +0 -79
- package/es/components/notification/notification_event_meta.js +0 -148
- package/es/components/notification/notification_event_read_button.js +0 -86
- package/es/components/notification/notification_event_read_icon.js +0 -77
- package/lib/components/control_bar/control_bar.a11y.js +0 -134
- package/lib/components/control_bar/control_bar.js +0 -441
- package/lib/components/control_bar/index.js +0 -12
- package/lib/components/notification/index.js +0 -12
- package/lib/components/notification/notification_event.a11y.js +0 -105
- package/lib/components/notification/notification_event.js +0 -297
- package/lib/components/notification/notification_event_messages.js +0 -88
- package/lib/components/notification/notification_event_meta.js +0 -157
- package/lib/components/notification/notification_event_read_button.js +0 -93
- package/lib/components/notification/notification_event_read_icon.js +0 -64
- package/optimize/es/components/control_bar/control_bar.a11y.js +0 -128
- package/optimize/es/components/control_bar/control_bar.js +0 -308
- package/optimize/es/components/control_bar/index.js +0 -9
- package/optimize/es/components/notification/index.js +0 -9
- package/optimize/es/components/notification/notification_event.a11y.js +0 -99
- package/optimize/es/components/notification/notification_event.js +0 -114
- package/optimize/es/components/notification/notification_event_messages.js +0 -63
- package/optimize/es/components/notification/notification_event_meta.js +0 -106
- package/optimize/es/components/notification/notification_event_read_button.js +0 -44
- package/optimize/es/components/notification/notification_event_read_icon.js +0 -44
- package/optimize/lib/components/control_bar/control_bar.a11y.js +0 -134
- package/optimize/lib/components/control_bar/control_bar.js +0 -301
- package/optimize/lib/components/control_bar/index.js +0 -12
- package/optimize/lib/components/notification/index.js +0 -12
- package/optimize/lib/components/notification/notification_event.a11y.js +0 -105
- package/optimize/lib/components/notification/notification_event.js +0 -123
- package/optimize/lib/components/notification/notification_event_messages.js +0 -74
- package/optimize/lib/components/notification/notification_event_meta.js +0 -117
- package/optimize/lib/components/notification/notification_event_read_button.js +0 -51
- package/optimize/lib/components/notification/notification_event_read_icon.js +0 -51
- package/src/components/control_bar/_control_bar.scss +0 -232
- package/src/components/control_bar/_index.scss +0 -2
- package/src/components/control_bar/_variables.scss +0 -12
- package/src/components/notification/_index.scss +0 -5
- package/src/components/notification/_notification_event.scss +0 -40
- package/src/components/notification/_notification_event_messages.scss +0 -17
- package/src/components/notification/_notification_event_meta.scss +0 -44
- package/src/components/notification/_notification_event_read_button.scss +0 -5
- package/src/components/notification/_notification_event_read_icon.scss +0 -12
- package/test-env/components/control_bar/control_bar.a11y.js +0 -134
- package/test-env/components/control_bar/control_bar.js +0 -436
- package/test-env/components/control_bar/index.js +0 -12
- package/test-env/components/notification/index.js +0 -12
- package/test-env/components/notification/notification_event.a11y.js +0 -105
- package/test-env/components/notification/notification_event.js +0 -296
- package/test-env/components/notification/notification_event_messages.js +0 -85
- package/test-env/components/notification/notification_event_meta.js +0 -154
- package/test-env/components/notification/notification_event_read_button.js +0 -92
- package/test-env/components/notification/notification_event_read_icon.js +0 -63
package/dist/eui_theme_dark.css
CHANGED
|
@@ -1590,395 +1590,6 @@ The following files still use the Sass version:
|
|
|
1590
1590
|
color: #FFF;
|
|
1591
1591
|
}
|
|
1592
1592
|
|
|
1593
|
-
.euiControlBar {
|
|
1594
|
-
background: #000;
|
|
1595
|
-
color: #a9aaad;
|
|
1596
|
-
display: -webkit-flex;
|
|
1597
|
-
display: flex;
|
|
1598
|
-
-webkit-flex-direction: column;
|
|
1599
|
-
flex-direction: column;
|
|
1600
|
-
box-shadow: inset 0 40px 0 #000, inset 0 600rem 0 #141519;
|
|
1601
|
-
bottom: 0;
|
|
1602
|
-
-webkit-transform: translateY(0);
|
|
1603
|
-
transform: translateY(0);
|
|
1604
|
-
height: 40px;
|
|
1605
|
-
max-height: calc(100vh - 80px);
|
|
1606
|
-
}
|
|
1607
|
-
.euiControlBar--fixed {
|
|
1608
|
-
position: fixed;
|
|
1609
|
-
z-index: 6000;
|
|
1610
|
-
}
|
|
1611
|
-
.euiControlBar--absolute {
|
|
1612
|
-
position: absolute;
|
|
1613
|
-
z-index: 1000;
|
|
1614
|
-
}
|
|
1615
|
-
.euiControlBar--relative {
|
|
1616
|
-
position: relative;
|
|
1617
|
-
}
|
|
1618
|
-
.euiControlBar-isOpen {
|
|
1619
|
-
-webkit-animation-duration: 250ms;
|
|
1620
|
-
animation-duration: 250ms;
|
|
1621
|
-
-webkit-animation-timing-function: cubic-bezier(0.694, 0.0482, 0.335, 1);
|
|
1622
|
-
animation-timing-function: cubic-bezier(0.694, 0.0482, 0.335, 1);
|
|
1623
|
-
-webkit-animation-fill-mode: forwards;
|
|
1624
|
-
animation-fill-mode: forwards;
|
|
1625
|
-
}
|
|
1626
|
-
.euiControlBar-isOpen.euiControlBar--large {
|
|
1627
|
-
-webkit-animation-name: euiControlBarOpenPanelLarge;
|
|
1628
|
-
animation-name: euiControlBarOpenPanelLarge;
|
|
1629
|
-
height: calc(100vh - 80px);
|
|
1630
|
-
bottom: -100vh;
|
|
1631
|
-
}
|
|
1632
|
-
.euiControlBar-isOpen.euiControlBar--medium {
|
|
1633
|
-
-webkit-animation-name: euiControlBarOpenPanelMedium;
|
|
1634
|
-
animation-name: euiControlBarOpenPanelMedium;
|
|
1635
|
-
height: 480px;
|
|
1636
|
-
bottom: -480px;
|
|
1637
|
-
}
|
|
1638
|
-
.euiControlBar-isOpen.euiControlBar--small {
|
|
1639
|
-
-webkit-animation-name: euiControlBarOpenPanelSmall;
|
|
1640
|
-
animation-name: euiControlBarOpenPanelSmall;
|
|
1641
|
-
height: 240px;
|
|
1642
|
-
bottom: -240px;
|
|
1643
|
-
}
|
|
1644
|
-
|
|
1645
|
-
.euiControlBar__controls {
|
|
1646
|
-
height: 40px;
|
|
1647
|
-
width: 100%;
|
|
1648
|
-
display: -webkit-flex;
|
|
1649
|
-
display: flex;
|
|
1650
|
-
-webkit-align-items: center;
|
|
1651
|
-
align-items: center;
|
|
1652
|
-
overflow-y: hidden;
|
|
1653
|
-
overflow-x: auto;
|
|
1654
|
-
padding: 0 12px;
|
|
1655
|
-
}
|
|
1656
|
-
|
|
1657
|
-
.euiControlBar__content {
|
|
1658
|
-
scrollbar-color: rgba(152, 162, 179, 0.5) transparent;
|
|
1659
|
-
scrollbar-width: thin;
|
|
1660
|
-
overflow-y: auto;
|
|
1661
|
-
width: 100%;
|
|
1662
|
-
height: calc(100% - 40px);
|
|
1663
|
-
background-color: #141519;
|
|
1664
|
-
-webkit-animation-name: euiControlBarShowContent;
|
|
1665
|
-
animation-name: euiControlBarShowContent;
|
|
1666
|
-
-webkit-animation-duration: 350ms;
|
|
1667
|
-
animation-duration: 350ms;
|
|
1668
|
-
-webkit-animation-iteration-count: 1;
|
|
1669
|
-
animation-iteration-count: 1;
|
|
1670
|
-
-webkit-animation-timing-function: cubic-bezier(0.694, 0.0482, 0.335, 1);
|
|
1671
|
-
animation-timing-function: cubic-bezier(0.694, 0.0482, 0.335, 1);
|
|
1672
|
-
color: #D4DAE5;
|
|
1673
|
-
}
|
|
1674
|
-
.euiControlBar__content::-webkit-scrollbar {
|
|
1675
|
-
width: 16px;
|
|
1676
|
-
height: 16px;
|
|
1677
|
-
}
|
|
1678
|
-
.euiControlBar__content::-webkit-scrollbar-thumb {
|
|
1679
|
-
background-color: rgba(152, 162, 179, 0.5);
|
|
1680
|
-
background-clip: content-box;
|
|
1681
|
-
border-radius: 16px;
|
|
1682
|
-
border: 6px solid transparent;
|
|
1683
|
-
}
|
|
1684
|
-
.euiControlBar__content::-webkit-scrollbar-corner, .euiControlBar__content::-webkit-scrollbar-track {
|
|
1685
|
-
background-color: transparent;
|
|
1686
|
-
}
|
|
1687
|
-
|
|
1688
|
-
.euiControlBar__icon {
|
|
1689
|
-
-webkit-flex-shrink: 0;
|
|
1690
|
-
flex-shrink: 0;
|
|
1691
|
-
margin-left: 8px;
|
|
1692
|
-
margin-right: 8px;
|
|
1693
|
-
}
|
|
1694
|
-
|
|
1695
|
-
.euiControlBar__buttonIcon {
|
|
1696
|
-
-webkit-flex-shrink: 0;
|
|
1697
|
-
flex-shrink: 0;
|
|
1698
|
-
min-width: 40px;
|
|
1699
|
-
min-height: 40px;
|
|
1700
|
-
}
|
|
1701
|
-
|
|
1702
|
-
.euiControlBar__button {
|
|
1703
|
-
-webkit-flex-shrink: 0;
|
|
1704
|
-
flex-shrink: 0;
|
|
1705
|
-
border-radius: 3px;
|
|
1706
|
-
margin-left: 4px;
|
|
1707
|
-
font-size: 14px;
|
|
1708
|
-
}
|
|
1709
|
-
.euiControlBar__button:enabled:hover {
|
|
1710
|
-
-webkit-transform: none;
|
|
1711
|
-
transform: none;
|
|
1712
|
-
box-shadow: none;
|
|
1713
|
-
}
|
|
1714
|
-
.euiControlBar__button:last-child {
|
|
1715
|
-
margin-right: 4px;
|
|
1716
|
-
}
|
|
1717
|
-
|
|
1718
|
-
.euiControlBar__breadcrumbs .euiBreadcrumb:not(:last-of-type) .euiBreadcrumb__content {
|
|
1719
|
-
color: #7a7f89;
|
|
1720
|
-
}
|
|
1721
|
-
.euiControlBar__breadcrumbs .euiBreadcrumb::after {
|
|
1722
|
-
background: rgba(255, 255, 255, 0.2);
|
|
1723
|
-
}
|
|
1724
|
-
|
|
1725
|
-
.euiControlBar__spacer {
|
|
1726
|
-
-webkit-flex-grow: 1;
|
|
1727
|
-
flex-grow: 1;
|
|
1728
|
-
height: 100%;
|
|
1729
|
-
}
|
|
1730
|
-
|
|
1731
|
-
.euiControlBar__divider {
|
|
1732
|
-
-webkit-flex-shrink: 0;
|
|
1733
|
-
flex-shrink: 0;
|
|
1734
|
-
height: 100%;
|
|
1735
|
-
width: 1px;
|
|
1736
|
-
background-color: rgba(255, 255, 255, 0.2);
|
|
1737
|
-
}
|
|
1738
|
-
|
|
1739
|
-
.euiControlBar__text {
|
|
1740
|
-
max-width: 100%;
|
|
1741
|
-
overflow: hidden !important;
|
|
1742
|
-
text-overflow: ellipsis !important;
|
|
1743
|
-
white-space: nowrap !important;
|
|
1744
|
-
font-size: 14px;
|
|
1745
|
-
font-size: 1rem;
|
|
1746
|
-
line-height: 1.7142857143rem;
|
|
1747
|
-
padding: 0 8px;
|
|
1748
|
-
color: #a9aaad;
|
|
1749
|
-
}
|
|
1750
|
-
.euiControlBar__text:last-child {
|
|
1751
|
-
padding-right: 0;
|
|
1752
|
-
}
|
|
1753
|
-
|
|
1754
|
-
.euiControlBar__tab {
|
|
1755
|
-
max-width: 100%;
|
|
1756
|
-
overflow: hidden !important;
|
|
1757
|
-
text-overflow: ellipsis !important;
|
|
1758
|
-
white-space: nowrap !important;
|
|
1759
|
-
font-size: 14px;
|
|
1760
|
-
font-size: 1rem;
|
|
1761
|
-
line-height: 1.7142857143rem;
|
|
1762
|
-
color: #a9aaad;
|
|
1763
|
-
padding: 0 16px;
|
|
1764
|
-
text-align: center;
|
|
1765
|
-
height: 100%;
|
|
1766
|
-
}
|
|
1767
|
-
.euiControlBar__tab:hover, .euiControlBar__tab:focus {
|
|
1768
|
-
text-decoration: underline;
|
|
1769
|
-
cursor: pointer;
|
|
1770
|
-
}
|
|
1771
|
-
.euiControlBar__tab.euiControlBar__tab--active {
|
|
1772
|
-
background-color: #141519;
|
|
1773
|
-
box-shadow: inset 0 4px 0 #36A2EF;
|
|
1774
|
-
color: #36A2EF;
|
|
1775
|
-
}
|
|
1776
|
-
|
|
1777
|
-
.euiControlBar__controls .euiLink.euiLink--primary {
|
|
1778
|
-
color: #36A2EF;
|
|
1779
|
-
}
|
|
1780
|
-
.euiControlBar__controls .euiLink.euiLink--primary:hover {
|
|
1781
|
-
color: #2671a7;
|
|
1782
|
-
}
|
|
1783
|
-
.euiControlBar__controls .euiLink.euiLink--text {
|
|
1784
|
-
color: #FFF;
|
|
1785
|
-
}
|
|
1786
|
-
.euiControlBar__controls .euiControlBar__button.euiButton[class*=primary]:enabled:not(.euiButton--fill) {
|
|
1787
|
-
color: #36A2EF;
|
|
1788
|
-
border-color: #36A2EF;
|
|
1789
|
-
}
|
|
1790
|
-
.euiControlBar__controls .euiButtonIcon[class*=primary] {
|
|
1791
|
-
color: #36A2EF;
|
|
1792
|
-
}
|
|
1793
|
-
|
|
1794
|
-
.euiControlBar__controls .euiLink.euiLink--accent {
|
|
1795
|
-
color: #F68FBE;
|
|
1796
|
-
}
|
|
1797
|
-
.euiControlBar__controls .euiLink.euiLink--accent:hover {
|
|
1798
|
-
color: #ac6485;
|
|
1799
|
-
}
|
|
1800
|
-
.euiControlBar__controls .euiLink.euiLink--text {
|
|
1801
|
-
color: #FFF;
|
|
1802
|
-
}
|
|
1803
|
-
.euiControlBar__controls .euiControlBar__button.euiButton[class*=accent]:enabled:not(.euiButton--fill) {
|
|
1804
|
-
color: #F68FBE;
|
|
1805
|
-
border-color: #F68FBE;
|
|
1806
|
-
}
|
|
1807
|
-
.euiControlBar__controls .euiButtonIcon[class*=accent] {
|
|
1808
|
-
color: #F68FBE;
|
|
1809
|
-
}
|
|
1810
|
-
|
|
1811
|
-
.euiControlBar__controls .euiLink.euiLink--success {
|
|
1812
|
-
color: #7DDED8;
|
|
1813
|
-
}
|
|
1814
|
-
.euiControlBar__controls .euiLink.euiLink--success:hover {
|
|
1815
|
-
color: #589b97;
|
|
1816
|
-
}
|
|
1817
|
-
.euiControlBar__controls .euiLink.euiLink--text {
|
|
1818
|
-
color: #FFF;
|
|
1819
|
-
}
|
|
1820
|
-
.euiControlBar__controls .euiControlBar__button.euiButton[class*=success]:enabled:not(.euiButton--fill) {
|
|
1821
|
-
color: #7DDED8;
|
|
1822
|
-
border-color: #7DDED8;
|
|
1823
|
-
}
|
|
1824
|
-
.euiControlBar__controls .euiButtonIcon[class*=success] {
|
|
1825
|
-
color: #7DDED8;
|
|
1826
|
-
}
|
|
1827
|
-
|
|
1828
|
-
.euiControlBar__controls .euiLink.euiLink--warning {
|
|
1829
|
-
color: #F3D371;
|
|
1830
|
-
}
|
|
1831
|
-
.euiControlBar__controls .euiLink.euiLink--warning:hover {
|
|
1832
|
-
color: #aa944f;
|
|
1833
|
-
}
|
|
1834
|
-
.euiControlBar__controls .euiLink.euiLink--text {
|
|
1835
|
-
color: #FFF;
|
|
1836
|
-
}
|
|
1837
|
-
.euiControlBar__controls .euiControlBar__button.euiButton[class*=warning]:enabled:not(.euiButton--fill) {
|
|
1838
|
-
color: #F3D371;
|
|
1839
|
-
border-color: #F3D371;
|
|
1840
|
-
}
|
|
1841
|
-
.euiControlBar__controls .euiButtonIcon[class*=warning] {
|
|
1842
|
-
color: #F3D371;
|
|
1843
|
-
}
|
|
1844
|
-
|
|
1845
|
-
.euiControlBar__controls .euiLink.euiLink--danger {
|
|
1846
|
-
color: #F86B63;
|
|
1847
|
-
}
|
|
1848
|
-
.euiControlBar__controls .euiLink.euiLink--danger:hover {
|
|
1849
|
-
color: #ae4b45;
|
|
1850
|
-
}
|
|
1851
|
-
.euiControlBar__controls .euiLink.euiLink--text {
|
|
1852
|
-
color: #FFF;
|
|
1853
|
-
}
|
|
1854
|
-
.euiControlBar__controls .euiControlBar__button.euiButton[class*=danger]:enabled:not(.euiButton--fill) {
|
|
1855
|
-
color: #F86B63;
|
|
1856
|
-
border-color: #F86B63;
|
|
1857
|
-
}
|
|
1858
|
-
.euiControlBar__controls .euiButtonIcon[class*=danger] {
|
|
1859
|
-
color: #F86B63;
|
|
1860
|
-
}
|
|
1861
|
-
|
|
1862
|
-
.euiControlBar__controls .euiLink.euiLink--ghost {
|
|
1863
|
-
color: #FFF;
|
|
1864
|
-
}
|
|
1865
|
-
.euiControlBar__controls .euiLink.euiLink--ghost:hover {
|
|
1866
|
-
color: #b3b3b3;
|
|
1867
|
-
}
|
|
1868
|
-
.euiControlBar__controls .euiLink.euiLink--text {
|
|
1869
|
-
color: #FFF;
|
|
1870
|
-
}
|
|
1871
|
-
.euiControlBar__controls .euiControlBar__button.euiButton[class*=ghost]:enabled:not(.euiButton--fill) {
|
|
1872
|
-
color: #FFF;
|
|
1873
|
-
border-color: #FFF;
|
|
1874
|
-
}
|
|
1875
|
-
.euiControlBar__controls .euiButtonIcon[class*=ghost] {
|
|
1876
|
-
color: #FFF;
|
|
1877
|
-
}
|
|
1878
|
-
|
|
1879
|
-
.euiControlBar__controls .euiLink.euiLink--text {
|
|
1880
|
-
color: #98A2B3;
|
|
1881
|
-
}
|
|
1882
|
-
.euiControlBar__controls .euiLink.euiLink--text:hover {
|
|
1883
|
-
color: #6a717d;
|
|
1884
|
-
}
|
|
1885
|
-
.euiControlBar__controls .euiLink.euiLink--text {
|
|
1886
|
-
color: #FFF;
|
|
1887
|
-
}
|
|
1888
|
-
.euiControlBar__controls .euiControlBar__button.euiButton[class*=text]:enabled:not(.euiButton--fill) {
|
|
1889
|
-
color: #98A2B3;
|
|
1890
|
-
border-color: #98A2B3;
|
|
1891
|
-
}
|
|
1892
|
-
.euiControlBar__controls .euiButtonIcon[class*=text] {
|
|
1893
|
-
color: #98A2B3;
|
|
1894
|
-
}
|
|
1895
|
-
|
|
1896
|
-
@media only screen and (max-width: 574px) {
|
|
1897
|
-
.euiControlBar:not(.euiControlBar--showOnMobile) {
|
|
1898
|
-
display: none;
|
|
1899
|
-
}
|
|
1900
|
-
}
|
|
1901
|
-
@media only screen and (min-width: 575px) and (max-width: 767px) {
|
|
1902
|
-
.euiControlBar:not(.euiControlBar--showOnMobile) {
|
|
1903
|
-
display: none;
|
|
1904
|
-
}
|
|
1905
|
-
}
|
|
1906
|
-
@-webkit-keyframes euiControlBarOpenPanelLarge {
|
|
1907
|
-
0% {
|
|
1908
|
-
-webkit-transform: translateY(calc((40px * 3) * -1));
|
|
1909
|
-
transform: translateY(calc((40px * 3) * -1));
|
|
1910
|
-
}
|
|
1911
|
-
100% {
|
|
1912
|
-
-webkit-transform: translateY(-100vh);
|
|
1913
|
-
transform: translateY(-100vh);
|
|
1914
|
-
}
|
|
1915
|
-
}
|
|
1916
|
-
@keyframes euiControlBarOpenPanelLarge {
|
|
1917
|
-
0% {
|
|
1918
|
-
-webkit-transform: translateY(calc((40px * 3) * -1));
|
|
1919
|
-
transform: translateY(calc((40px * 3) * -1));
|
|
1920
|
-
}
|
|
1921
|
-
100% {
|
|
1922
|
-
-webkit-transform: translateY(-100vh);
|
|
1923
|
-
transform: translateY(-100vh);
|
|
1924
|
-
}
|
|
1925
|
-
}
|
|
1926
|
-
@-webkit-keyframes euiControlBarOpenPanelMedium {
|
|
1927
|
-
0% {
|
|
1928
|
-
-webkit-transform: translateY(-40px);
|
|
1929
|
-
transform: translateY(-40px);
|
|
1930
|
-
}
|
|
1931
|
-
100% {
|
|
1932
|
-
-webkit-transform: translateY(-480px);
|
|
1933
|
-
transform: translateY(-480px);
|
|
1934
|
-
}
|
|
1935
|
-
}
|
|
1936
|
-
@keyframes euiControlBarOpenPanelMedium {
|
|
1937
|
-
0% {
|
|
1938
|
-
-webkit-transform: translateY(-40px);
|
|
1939
|
-
transform: translateY(-40px);
|
|
1940
|
-
}
|
|
1941
|
-
100% {
|
|
1942
|
-
-webkit-transform: translateY(-480px);
|
|
1943
|
-
transform: translateY(-480px);
|
|
1944
|
-
}
|
|
1945
|
-
}
|
|
1946
|
-
@-webkit-keyframes euiControlBarOpenPanelSmall {
|
|
1947
|
-
0% {
|
|
1948
|
-
-webkit-transform: translateY(-40px);
|
|
1949
|
-
transform: translateY(-40px);
|
|
1950
|
-
}
|
|
1951
|
-
100% {
|
|
1952
|
-
-webkit-transform: translateY(-240px);
|
|
1953
|
-
transform: translateY(-240px);
|
|
1954
|
-
}
|
|
1955
|
-
}
|
|
1956
|
-
@keyframes euiControlBarOpenPanelSmall {
|
|
1957
|
-
0% {
|
|
1958
|
-
-webkit-transform: translateY(-40px);
|
|
1959
|
-
transform: translateY(-40px);
|
|
1960
|
-
}
|
|
1961
|
-
100% {
|
|
1962
|
-
-webkit-transform: translateY(-240px);
|
|
1963
|
-
transform: translateY(-240px);
|
|
1964
|
-
}
|
|
1965
|
-
}
|
|
1966
|
-
@-webkit-keyframes euiControlBarShowContent {
|
|
1967
|
-
0% {
|
|
1968
|
-
opacity: 0;
|
|
1969
|
-
}
|
|
1970
|
-
100% {
|
|
1971
|
-
opacity: 1;
|
|
1972
|
-
}
|
|
1973
|
-
}
|
|
1974
|
-
@keyframes euiControlBarShowContent {
|
|
1975
|
-
0% {
|
|
1976
|
-
opacity: 0;
|
|
1977
|
-
}
|
|
1978
|
-
100% {
|
|
1979
|
-
opacity: 1;
|
|
1980
|
-
}
|
|
1981
|
-
}
|
|
1982
1593
|
.euiSuperDatePicker__absoluteDateFormRow {
|
|
1983
1594
|
padding: 0 8px 8px;
|
|
1984
1595
|
/* A bit of a visual trickery to make the format "hint" become an "error" text.
|
|
@@ -6256,130 +5867,6 @@ The following files still use the Sass version:
|
|
|
6256
5867
|
transform: translateY(-1px);
|
|
6257
5868
|
}
|
|
6258
5869
|
|
|
6259
|
-
.euiNotificationEvent {
|
|
6260
|
-
display: -webkit-flex;
|
|
6261
|
-
display: flex;
|
|
6262
|
-
padding: 12px 0 12px 12px;
|
|
6263
|
-
border-bottom: 1px solid #343741;
|
|
6264
|
-
}
|
|
6265
|
-
.euiNotificationEvent:last-child {
|
|
6266
|
-
border-bottom: none;
|
|
6267
|
-
}
|
|
6268
|
-
.euiNotificationEvent--withReadState {
|
|
6269
|
-
padding: 12px 0 12px 8px;
|
|
6270
|
-
}
|
|
6271
|
-
|
|
6272
|
-
.euiNotificationEvent__title {
|
|
6273
|
-
overflow-wrap: break-word !important;
|
|
6274
|
-
word-break: break-word;
|
|
6275
|
-
color: #DFE5EF;
|
|
6276
|
-
font-size: 16px;
|
|
6277
|
-
font-size: 1.1428571429rem;
|
|
6278
|
-
line-height: 1.7142857143rem;
|
|
6279
|
-
font-weight: 700;
|
|
6280
|
-
display: -webkit-flex;
|
|
6281
|
-
display: flex;
|
|
6282
|
-
}
|
|
6283
|
-
.euiNotificationEvent__title.euiLink {
|
|
6284
|
-
color: #36A2EF;
|
|
6285
|
-
}
|
|
6286
|
-
.euiNotificationEvent__title--isRead {
|
|
6287
|
-
color: #98A2B3 !important;
|
|
6288
|
-
}
|
|
6289
|
-
|
|
6290
|
-
.euiNotificationEvent__readButton {
|
|
6291
|
-
margin-right: 8px;
|
|
6292
|
-
}
|
|
6293
|
-
|
|
6294
|
-
.euiNotificationEvent__content {
|
|
6295
|
-
-webkit-flex: 1;
|
|
6296
|
-
flex: 1;
|
|
6297
|
-
}
|
|
6298
|
-
.euiNotificationEvent__content > * + * {
|
|
6299
|
-
margin-top: 8px;
|
|
6300
|
-
margin-right: 12px;
|
|
6301
|
-
}
|
|
6302
|
-
|
|
6303
|
-
.euiNotificationEventMeta {
|
|
6304
|
-
position: relative;
|
|
6305
|
-
display: -webkit-flex;
|
|
6306
|
-
display: flex;
|
|
6307
|
-
-webkit-flex-direction: row;
|
|
6308
|
-
flex-direction: row;
|
|
6309
|
-
-webkit-justify-content: space-between;
|
|
6310
|
-
justify-content: space-between;
|
|
6311
|
-
-webkit-align-items: center;
|
|
6312
|
-
align-items: center;
|
|
6313
|
-
-webkit-flex-wrap: wrap;
|
|
6314
|
-
flex-wrap: wrap;
|
|
6315
|
-
margin-right: 4px;
|
|
6316
|
-
min-height: 24px;
|
|
6317
|
-
}
|
|
6318
|
-
.euiNotificationEventMeta--hasContextMenu {
|
|
6319
|
-
padding-right: 24px;
|
|
6320
|
-
}
|
|
6321
|
-
.euiNotificationEventMeta__contextMenuWrapper {
|
|
6322
|
-
position: absolute;
|
|
6323
|
-
top: 0;
|
|
6324
|
-
right: 0;
|
|
6325
|
-
}
|
|
6326
|
-
.euiNotificationEventMeta__section {
|
|
6327
|
-
margin-right: 8px;
|
|
6328
|
-
}
|
|
6329
|
-
.euiNotificationEventMeta__section:first-child {
|
|
6330
|
-
display: -webkit-flex;
|
|
6331
|
-
display: flex;
|
|
6332
|
-
-webkit-flex: 1;
|
|
6333
|
-
flex: 1;
|
|
6334
|
-
-webkit-align-items: center;
|
|
6335
|
-
align-items: center;
|
|
6336
|
-
}
|
|
6337
|
-
.euiNotificationEventMeta__icon {
|
|
6338
|
-
margin-right: 8px;
|
|
6339
|
-
}
|
|
6340
|
-
.euiNotificationEventMeta__badge {
|
|
6341
|
-
max-width: 100%;
|
|
6342
|
-
display: inline-grid;
|
|
6343
|
-
}
|
|
6344
|
-
.euiNotificationEventMeta__time {
|
|
6345
|
-
font-size: 12px;
|
|
6346
|
-
color: #7a7f89;
|
|
6347
|
-
}
|
|
6348
|
-
|
|
6349
|
-
.euiNotificationEventMessages {
|
|
6350
|
-
font-size: 14px;
|
|
6351
|
-
}
|
|
6352
|
-
.euiNotificationEventMessages__accordion {
|
|
6353
|
-
color: #98A2B3;
|
|
6354
|
-
}
|
|
6355
|
-
.euiNotificationEventMessages__accordionButton {
|
|
6356
|
-
color: #36A2EF;
|
|
6357
|
-
}
|
|
6358
|
-
.euiNotificationEventMessages__accordionContent > * {
|
|
6359
|
-
padding-top: 8px;
|
|
6360
|
-
}
|
|
6361
|
-
|
|
6362
|
-
.euiNotificationEventReadButton--isRead svg {
|
|
6363
|
-
fill: transparent;
|
|
6364
|
-
stroke-width: 1px;
|
|
6365
|
-
stroke: #343741;
|
|
6366
|
-
}
|
|
6367
|
-
|
|
6368
|
-
.euiNotificationEventReadIcon {
|
|
6369
|
-
display: -webkit-flex;
|
|
6370
|
-
display: flex;
|
|
6371
|
-
-webkit-align-items: center;
|
|
6372
|
-
align-items: center;
|
|
6373
|
-
height: 24px;
|
|
6374
|
-
margin: 0 4px;
|
|
6375
|
-
}
|
|
6376
|
-
|
|
6377
|
-
.euiNotificationEventReadIcon--isRead svg {
|
|
6378
|
-
fill: transparent;
|
|
6379
|
-
stroke-width: 1px;
|
|
6380
|
-
stroke: #343741;
|
|
6381
|
-
}
|
|
6382
|
-
|
|
6383
5870
|
.euiTreeView__wrapper .euiTreeView {
|
|
6384
5871
|
margin: 0;
|
|
6385
5872
|
list-style-type: none;
|