@elastic/eui
Version:
Elastic UI Component Library
1,679 lines (1,594 loc) • 287 kB
CSS
@charset "UTF-8";
/**
The MIT License (MIT)
Copyright (c) 2015 strarsis https://github.com/strarsis/sass-math-pow
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
/**
The MIT License (MIT)
Copyright (c) 2015 strarsis https://github.com/strarsis/sass-math-pow
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
/**
* Text truncation
*
* Prevent text from wrapping onto multiple lines, and truncate with an ellipsis.
*
* 1. Ensure that the node has a maximum width after which truncation can occur.
*/
/**
* Text weight shifting
*
* When changing the font-weight based the state of the component
* this mixin will ensure that the sizing is dependent on the boldest
* weight so it doesn't shifter sibling content.
*/
/**
* 1. Focus rings shouldn't be visible on scrollable regions, but a11y requires them to be focusable.
* Browser's supporting `:focus-visible` will still show outline on keyboard focus only.
* Others like Safari, won't show anything at all.
* 2. Force the `:focus-visible` when the `tabindex=0` (is tabbable)
*/
/**
* For quickly applying a full-height element whether using flex or not
*/
/*
* Creates the Amsterdam style of button with a transparent background
*/
/*
* Creates the Amsterdam style of fill button
*/
/*
The CSS in JS version of this file lives in:
- src/components/form/range/range.styles.ts
The following files still use the Sass version:
- src/themes/amsterdam/overrides/_color_stops.scss
- src/themes/amsterdam/overrides/_hue.scss
*/
@-webkit-keyframes euiAnimFadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes euiAnimFadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-webkit-keyframes euiGrow {
0% {
opacity: 0;
}
1% {
opacity: 0;
-webkit-transform: scale(0);
transform: scale(0);
}
100% {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
}
@keyframes euiGrow {
0% {
opacity: 0;
}
1% {
opacity: 0;
-webkit-transform: scale(0);
transform: scale(0);
}
100% {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
}
@-webkit-keyframes focusRingAnimate {
0% {
box-shadow: 0 0 0 2px rgba(54, 162, 239, 0);
}
100% {
box-shadow: 0 0 0 2px #36A2EF;
}
}
@keyframes focusRingAnimate {
0% {
box-shadow: 0 0 0 2px rgba(54, 162, 239, 0);
}
100% {
box-shadow: 0 0 0 2px #36A2EF;
}
}
@-webkit-keyframes focusRingAnimateLarge {
0% {
box-shadow: 0 0 0 10px rgba(54, 162, 239, 0);
}
100% {
box-shadow: 0 0 0 4px #36A2EF;
}
}
@keyframes focusRingAnimateLarge {
0% {
box-shadow: 0 0 0 10px rgba(54, 162, 239, 0);
}
100% {
box-shadow: 0 0 0 4px #36A2EF;
}
}
@-webkit-keyframes euiButtonActive {
50% {
-webkit-transform: translateY(1px);
transform: translateY(1px);
}
}
@keyframes euiButtonActive {
50% {
-webkit-transform: translateY(1px);
transform: translateY(1px);
}
}
/**
* LEGEND
* __day-name : Week headers like Su, Mo, etc
* __day : Number on the calendar
* --highlighted
* --disabled : _this.isDisabled(),
* --selected : _this.isSameDay(_this.props.selected),
* --range-start : _this.isRangeStart(),
* --range-end : _this.isRangeEnd(),
* --keyboard-selected : _this.isKeyboardSelected(),
* --in-range : _this.isInRange(),
* --in-selecting-range : _this.isInSelectingRange(),
* --selecting-range-start : _this.isSelectingRangeStart(),
* --selecting-range-end : _this.isSelectingRangeEnd(),
* --today : _this.isSameDay(now(_this.props.utcOffset)),
* --weekend : _this.isWeekend(),
* --outside-month : _this.isOutsideMonth()
*/
.react-datepicker__day-names,
.react-datepicker__week {
white-space: nowrap;
display: -webkit-flex;
display: flex;
-webkit-justify-content: space-between;
justify-content: space-between;
-webkit-flex-grow: 1;
flex-grow: 1;
}
.react-datepicker__day-name,
.react-datepicker__day {
font-weight: 500;
text-align: center;
color: #DFE5EF;
display: inline-block;
width: 32px;
line-height: 32px;
border-radius: 4px;
margin: 2px;
}
.react-datepicker__day-name {
color: #7a7f89;
}
.react-datepicker__day {
cursor: pointer;
transition: -webkit-transform 90ms ease-in-out;
transition: transform 90ms ease-in-out;
transition: transform 90ms ease-in-out, -webkit-transform 90ms ease-in-out;
}
.react-datepicker__day:hover {
color: #36A2EF;
background-color: rgba(54, 162, 239, 0.2);
text-decoration: underline;
}
@media screen and (prefers-reduced-motion: no-preference) {
.react-datepicker__day:hover {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
}
.react-datepicker__day--today {
color: #36A2EF;
font-weight: 700;
}
.react-datepicker__day--outside-month {
color: #7a7f89;
}
.react-datepicker__day--highlighted, .react-datepicker__day--highlighted:hover {
color: #7DDED8;
background-color: rgba(125, 222, 216, 0.2);
}
.react-datepicker__day--in-range, .react-datepicker__day--in-range:hover {
color: #36A2EF;
background-color: rgba(54, 162, 239, 0.2);
}
.react-datepicker__day--in-range:not(.react-datepicker__day--selected):not(:hover), .react-datepicker__day--in-range.react-datepicker__day--disabled:not(.react-datepicker__day--selected), .react-datepicker__day--in-range.react-datepicker__day--disabled:not(.react-datepicker__day--selected):hover {
box-shadow: -2px 0 rgba(54, 162, 239, 0.2), 2px 0 rgba(54, 162, 239, 0.2);
border-radius: 0;
}
.react-datepicker__day--in-range:not(.react-datepicker__day--selected):not(:hover):first-of-type, .react-datepicker__day--in-range.react-datepicker__day--disabled:not(.react-datepicker__day--selected):first-of-type, .react-datepicker__day--in-range.react-datepicker__day--disabled:not(.react-datepicker__day--selected):hover:first-of-type {
box-shadow: 2px 0 rgba(54, 162, 239, 0.2);
}
.react-datepicker__day--in-range:not(.react-datepicker__day--selected):not(:hover):last-of-type, .react-datepicker__day--in-range.react-datepicker__day--disabled:not(.react-datepicker__day--selected):last-of-type, .react-datepicker__day--in-range.react-datepicker__day--disabled:not(.react-datepicker__day--selected):hover:last-of-type {
box-shadow: -2px 0 rgba(54, 162, 239, 0.2);
}
.react-datepicker__day--selected, .react-datepicker__day--in-selecting-range, .react-datepicker__day--selected:hover, .react-datepicker__day--in-selecting-range:hover {
background-color: #36A2EF;
color: #000;
}
.react-datepicker__day--in-selecting-range:not(.react-datepicker__day--in-range) {
background-color: rgba(248, 107, 99, 0.5);
}
.react-datepicker__day--disabled, .react-datepicker__day--disabled:hover {
background-color: rgba(81, 87, 97, 0.1);
color: #515761;
cursor: not-allowed;
text-decoration: none;
-webkit-transform: none;
transform: none;
}
.react-datepicker__day--disabled.react-datepicker__day--in-range:not(.react-datepicker__day--selected), .react-datepicker__day--disabled.react-datepicker__day--in-range:not(.react-datepicker__day--selected):hover, .react-datepicker__day--disabled:hover.react-datepicker__day--in-range:not(.react-datepicker__day--selected), .react-datepicker__day--disabled:hover.react-datepicker__day--in-range:not(.react-datepicker__day--selected):hover {
color: #4e5f6e;
background-color: rgba(54, 162, 239, 0.2);
}
.react-datepicker__day--disabled.react-datepicker__day--selected, .react-datepicker__day--disabled.react-datepicker__day--selected:hover {
color: #F86B63;
background-color: rgba(248, 107, 99, 0.2);
}
/**
* LEGEND
* __time-list-item :
* --preselected : closest current time but not selected (also applied when using arrow keys to indicate focus)
* --selected
* --disabled
* --injected
*/
.react-datepicker__header--time {
display: none;
}
.react-datepicker__time-container {
border-left: #343741;
width: auto;
display: -webkit-flex;
display: flex;
margin-top: 40px;
margin-left: 8px;
-webkit-flex-grow: 1;
flex-grow: 1;
background-color: #141519;
border-radius: 6px;
}
.react-datepicker__time-container--focus .react-datepicker__time-list-item--preselected {
text-decoration: underline;
}
@media only screen and (max-width: 574px) {
.react-datepicker__time-container {
margin-top: 0;
}
}
.react-datepicker__time,
.react-datepicker__time-box {
display: -webkit-flex;
display: flex;
-webkit-flex-direction: column;
flex-direction: column;
-webkit-flex-grow: 1;
flex-grow: 1;
}
.react-datepicker__time-list {
scrollbar-color: rgba(152, 162, 179, 0.5) transparent;
scrollbar-width: thin;
height: 100%;
overflow-y: auto;
overflow-x: hidden;
padding: 4px 12px;
height: 100px !important;
display: -webkit-flex;
display: flex;
-webkit-flex-direction: column;
flex-direction: column;
-webkit-flex-grow: 1;
flex-grow: 1;
-webkit-align-items: center;
align-items: center;
gap: 4px;
}
.react-datepicker__time-list::-webkit-scrollbar {
width: 16px;
height: 16px;
}
.react-datepicker__time-list::-webkit-scrollbar-thumb {
background-color: rgba(152, 162, 179, 0.5);
background-clip: content-box;
border-radius: 16px;
border: 6px solid transparent;
}
.react-datepicker__time-list::-webkit-scrollbar-corner, .react-datepicker__time-list::-webkit-scrollbar-track {
background-color: transparent;
}
.react-datepicker__time-list:focus {
outline: none; /* 1 */
}
.react-datepicker__time-list[tabindex="0"]:focus:focus-visible {
outline-style: auto; /* 2 */
}
.react-datepicker__time-list-item {
display: inline-block;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
cursor: pointer;
height: 40px;
line-height: 40px;
text-align: center;
white-space: nowrap;
max-width: 100%;
vertical-align: middle;
font-family: "Inter UI", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-weight: 400;
letter-spacing: normal;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
-webkit-font-kerning: normal;
font-kerning: normal;
font-size: 14px;
font-size: 1rem;
line-height: 1.7142857143rem;
font-weight: 500;
text-decoration: none;
outline-offset: -1px;
-webkit-transform: none !important;
transform: none !important; /* 1 */
-webkit-animation: none !important;
animation: none !important; /* 1 */
transition-timing-function: ease-in; /* 2 */
transition-duration: 150ms; /* 2 */
padding: 0 8px;
height: 24px;
line-height: 24px;
border-radius: 4px;
font-size: 12px;
}
@media screen and (prefers-reduced-motion: no-preference) {
.react-datepicker__time-list-item {
transition: background-color 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
transition: transform 250ms ease-in-out, background-color 250ms ease-in-out;
transition: transform 250ms ease-in-out, background-color 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
}
.react-datepicker__time-list-item:hover:not(:disabled) {
-webkit-transform: translateY(-1px);
transform: translateY(-1px);
}
.react-datepicker__time-list-item:focus {
-webkit-animation: euiButtonActive 250ms cubic-bezier(0.34, 1.61, 0.7, 1);
animation: euiButtonActive 250ms cubic-bezier(0.34, 1.61, 0.7, 1);
}
.react-datepicker__time-list-item:active:not(:disabled) {
-webkit-transform: translateY(1px);
transform: translateY(1px);
}
}
.react-datepicker__time-list-item:hover:not(:disabled), .react-datepicker__time-list-item:focus {
text-decoration: underline;
}
.react-datepicker__time-list-item--disabled, .react-datepicker__time-list-item--disabled:hover {
text-decoration: none !important;
cursor: not-allowed;
color: #515761;
background-color: transparent;
}
.react-datepicker__time-list-item--injected, .react-datepicker__time-list-item--injected:hover {
color: #7DDED8;
background-color: rgba(125, 222, 216, 0.2);
}
.react-datepicker__time-list-item--preselected, .react-datepicker__time-list-item--preselected:hover {
background: rgba(54, 162, 239, 0.2);
}
.react-datepicker__time-list-item--selected, .react-datepicker__time-list-item--selected:hover {
background-color: #36A2EF;
color: #000;
}
.react-datepicker--time-only {
padding: 0 !important;
}
.react-datepicker--time-only .react-datepicker__time-container {
background-color: transparent;
margin: 0;
}
.react-datepicker--time-only .react-datepicker__time-list {
height: 204px !important;
}
.react-datepicker--time-only .react-datepicker__time-list-item {
font-size: 14px;
min-width: 112px;
text-align: left;
}
/**
* LEGEND
* __header__dropdown : Contains the month and year, but affords for the navigational arrows
* __month-dropdown-container: Contains both static/selected control and the dropdown
* __month-read-view: The static control
* __month-dropdown: The absolutely positioned list
* __month-option: Each option in the list
* --selected_month
* --selected
* --preselected
* __year-dropdown-container: Contains both static/selected control and the dropdown
* __year-read-view: The static control
* __year-dropdown: The absolutely positioned list
* __year-option: Each option in the list
* --selected_year
* --selected
* --preselected
*/
.react-datepicker__header__dropdown {
padding: 8px;
display: -webkit-flex;
display: flex;
gap: 4px;
position: absolute;
top: 0;
left: 36px;
right: 36px;
-webkit-justify-content: center;
justify-content: center;
}
/**
* Make the top selectors look like select inputs
*/
.react-datepicker__year-read-view,
.react-datepicker__month-read-view,
.react-datepicker__month-year-read-view {
max-width: 400px;
width: 100%;
height: 40px;
background-color: #16171c;
background-repeat: no-repeat;
background-size: 0% 100%;
box-shadow: 0 0 transparent, inset 0 0 0 1px rgba(255, 255, 255, 0.1);
transition: box-shadow 150ms ease-in, background-image 150ms ease-in, background-size 150ms ease-in, background-color 150ms ease-in;
font-family: "Inter UI", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-weight: 400;
letter-spacing: normal;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
-webkit-font-kerning: normal;
font-kerning: normal;
font-size: 14px;
color: #DFE5EF;
border: none;
border-radius: 6px;
padding: 12px;
background-color: #16171c;
background-repeat: no-repeat;
background-size: 0% 100%;
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
transition: box-shadow 150ms ease-in, background-image 150ms ease-in, background-size 150ms ease-in, background-color 150ms ease-in;
padding: 8px;
border-radius: 4px;
height: 32px;
font-weight: 500;
display: -webkit-flex;
display: flex;
-webkit-flex-direction: row-reverse;
flex-direction: row-reverse;
-webkit-justify-content: space-between;
justify-content: space-between;
-webkit-align-items: center;
align-items: center;
}
@supports (-moz-appearance: none) {
.react-datepicker__year-read-view,
.react-datepicker__month-read-view,
.react-datepicker__month-year-read-view {
transition-property: box-shadow, background-image, background-size;
}
}
.react-datepicker__year-read-view::-webkit-input-placeholder,
.react-datepicker__month-read-view::-webkit-input-placeholder,
.react-datepicker__month-year-read-view::-webkit-input-placeholder {
color: #81858f;
opacity: 1;
}
.react-datepicker__year-read-view::-moz-placeholder,
.react-datepicker__month-read-view::-moz-placeholder,
.react-datepicker__month-year-read-view::-moz-placeholder {
color: #81858f;
opacity: 1;
}
.react-datepicker__year-read-view::-webkit-input-placeholder, .react-datepicker__month-read-view::-webkit-input-placeholder, .react-datepicker__month-year-read-view::-webkit-input-placeholder {
color: #81858f;
opacity: 1;
}
.react-datepicker__year-read-view::-moz-placeholder, .react-datepicker__month-read-view::-moz-placeholder, .react-datepicker__month-year-read-view::-moz-placeholder {
color: #81858f;
opacity: 1;
}
.react-datepicker__year-read-view::placeholder,
.react-datepicker__month-read-view::placeholder,
.react-datepicker__month-year-read-view::placeholder {
color: #81858f;
opacity: 1;
}
@supports (-moz-appearance: none) {
.react-datepicker__year-read-view,
.react-datepicker__month-read-view,
.react-datepicker__month-year-read-view {
transition-property: box-shadow, background-image, background-size;
}
}
.react-datepicker__year-read-view:hover,
.react-datepicker__month-read-view:hover,
.react-datepicker__month-year-read-view:hover {
cursor: pointer;
text-decoration: underline;
}
.react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow {
background-position: center;
background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiI+ICA8ZGVmcz4gICAgPHBhdGggaWQ9ImRvd25hcnJvd3doaXRlLWEiIGQ9Ik0xMy4wNjg4NTA4LDUuMTU3MjUwMzggTDguMzg0MjM5NzUsOS43NjgyNzQyOCBDOC4xNzA1NDQxNSw5Ljk3ODYxMzA4IDcuODI5OTkyMTQsOS45NzkxNDA5NSA3LjYxNTc2MDI1LDkuNzY4Mjc0MjggTDIuOTMxMTQ5MTUsNS4xNTcyNTAzOCBDMi43MTgxMzU5LDQuOTQ3NTgzMjEgMi4zNzI3NzMxOSw0Ljk0NzU4MzIxIDIuMTU5NzU5OTQsNS4xNTcyNTAzOCBDMS45NDY3NDY2OSw1LjM2NjkxNzU2IDEuOTQ2NzQ2NjksNS43MDY4NTUyMiAyLjE1OTc1OTk0LDUuOTE2NTIyNCBMNi44NDQzNzEwNCwxMC41Mjc1NDYzIEM3LjQ4NTE3NDI0LDExLjE1ODI4MzYgOC41MTY0NDk3OSwxMS4xNTY2ODUxIDkuMTU1NjI4OTYsMTAuNTI3NTQ2MyBMMTMuODQwMjQwMSw1LjkxNjUyMjQgQzE0LjA1MzI1MzMsNS43MDY4NTUyMiAxNC4wNTMyNTMzLDUuMzY2OTE3NTYgMTMuODQwMjQwMSw1LjE1NzI1MDM4IEMxMy42MjcyMjY4LDQuOTQ3NTgzMjEgMTMuMjgxODY0MSw0Ljk0NzU4MzIxIDEzLjA2ODg1MDgsNS4xNTcyNTAzOCBaIi8+ICA8L2RlZnM+ICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICA8dXNlIGZpbGw9IiNGRkYiIGZpbGwtcnVsZT0ibm9uemVybyIgeGxpbms6aHJlZj0iI2Rvd25hcnJvd3doaXRlLWEiLz4gIDwvZz48L3N2Zz4=);
right: 8px;
height: 12px;
width: 12px;
display: inline-block;
background-size: cover;
}
.react-datepicker__year-read-view--selected-month, .react-datepicker__year-read-view--selected-year,
.react-datepicker__month-read-view--selected-month,
.react-datepicker__month-read-view--selected-year,
.react-datepicker__month-year-read-view--selected-month,
.react-datepicker__month-year-read-view--selected-year {
max-width: 100%;
overflow: hidden !important;
text-overflow: ellipsis !important;
white-space: nowrap !important;
}
.react-datepicker__year-dropdown-container,
.react-datepicker__month-dropdown-container {
position: relative;
display: inline-block;
-webkit-flex-grow: 1;
flex-grow: 1;
max-width: 400px;
}
.react-datepicker__year-dropdown-container > div:not([class*=read-view]),
.react-datepicker__month-dropdown {
scrollbar-color: rgba(152, 162, 179, 0.5) transparent;
scrollbar-width: thin;
height: 100%;
overflow-y: auto;
overflow-x: hidden;
box-shadow: 0 0.7px 1.4px rgba(0, 0, 0, 0.175), 0 1.9px 4px rgba(0, 0, 0, 0.125), 0 4.5px 10px rgba(0, 0, 0, 0.125);
height: auto;
max-height: 250px;
background-color: #1D1E24;
position: absolute;
z-index: 1;
border-radius: 6px;
min-width: 100px;
width: 100%;
}
.react-datepicker__year-dropdown-container > div:not([class*=read-view])::-webkit-scrollbar,
.react-datepicker__month-dropdown::-webkit-scrollbar {
width: 16px;
height: 16px;
}
.react-datepicker__year-dropdown-container > div:not([class*=read-view])::-webkit-scrollbar-thumb,
.react-datepicker__month-dropdown::-webkit-scrollbar-thumb {
background-color: rgba(152, 162, 179, 0.5);
background-clip: content-box;
border-radius: 16px;
border: 6px solid transparent;
}
.react-datepicker__year-dropdown-container > div:not([class*=read-view])::-webkit-scrollbar-corner, .react-datepicker__year-dropdown-container > div:not([class*=read-view])::-webkit-scrollbar-track,
.react-datepicker__month-dropdown::-webkit-scrollbar-corner,
.react-datepicker__month-dropdown::-webkit-scrollbar-track {
background-color: transparent;
}
.react-datepicker__year-dropdown-container > div:not([class*=read-view]):focus,
.react-datepicker__month-dropdown:focus {
outline: none; /* 1 */
}
.react-datepicker__year-dropdown-container > div:not([class*=read-view])[tabindex="0"]:focus:focus-visible,
.react-datepicker__month-dropdown[tabindex="0"]:focus:focus-visible {
outline-style: auto; /* 2 */
}
.react-datepicker__year-dropdown-container > div:not([class*=read-view]) .react-datepicker__year-dropdown {
padding: 4px;
display: -webkit-flex;
display: flex;
-webkit-flex-direction: column-reverse;
flex-direction: column-reverse;
-webkit-justify-content: flex-end;
justify-content: flex-end;
}
.react-datepicker__month-dropdown-container {
-webkit-flex-grow: 2;
flex-grow: 2;
}
.react-datepicker__month-dropdown-container .react-datepicker__month-dropdown {
padding: 4px;
min-width: 140px;
}
.react-datepicker__year-option,
.react-datepicker__month-option,
.react-datepicker__month-year-option {
padding: 0 8px;
height: 24px;
line-height: 24px;
border-radius: 4px;
font-size: 14px;
margin: 4px 0;
cursor: pointer;
}
.react-datepicker__year-option:hover, .react-datepicker__year-option:focus,
.react-datepicker__month-option:hover,
.react-datepicker__month-option:focus,
.react-datepicker__month-year-option:hover,
.react-datepicker__month-year-option:focus {
text-decoration: underline;
}
.react-datepicker__year-option--selected,
.react-datepicker__month-option--selected,
.react-datepicker__month-year-option--selected {
display: none;
}
.react-datepicker__year-option--preselected, .react-datepicker__year-option--preselected:hover,
.react-datepicker__month-option--preselected,
.react-datepicker__month-option--preselected:hover {
background: rgba(54, 162, 239, 0.2);
}
.react-datepicker__year-option--selected_year, .react-datepicker__year-option--selected_year:hover,
.react-datepicker__month-option--selected_month,
.react-datepicker__month-option--selected_month:hover {
background-color: #36A2EF;
color: #000;
}
.react-datepicker__navigation--next,
.react-datepicker__navigation--previous {
background-position: center;
background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiI+PHBhdGggZmlsbD0iI0ZGRiIgZD0iTTExLjY5MiA3SDMuNTU2QzMuMjQ5IDcgMyA3LjIyNCAzIDcuNXMuMjQ5LjUuNTU2LjVoOC4xMzZsLTQuMDk2IDQuMDk2YS41LjUgMCAwMC43MDcuNzA3bDQuMjQzLTQuMjQyYy4yNTgtLjI1OS40MDMtLjU4Ny40MzMtLjkyNWEuNDU0LjQ1NCAwIDAwMC0uMjcyIDEuNDk0IDEuNDk0IDAgMDAtLjQzMy0uOTI1TDguMzAzIDIuMTk3YS41LjUgMCAxMC0uNzA3LjcwN0wxMS42OTIgN3oiLz48L3N2Zz4=);
cursor: pointer;
position: absolute;
top: 8px;
height: 32px;
width: 32px;
z-index: 1;
text-indent: -999em;
overflow: hidden;
background-repeat: no-repeat;
border-radius: 4px;
background-position: center;
}
.react-datepicker__navigation--next:hover, .react-datepicker__navigation--next:focus,
.react-datepicker__navigation--previous:hover,
.react-datepicker__navigation--previous:focus {
background-color: rgba(54, 162, 239, 0.2);
}
.react-datepicker__navigation--previous {
left: 8px;
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
-webkit-transform-origin: center;
transform-origin: center;
}
.react-datepicker__navigation--next {
right: 8px;
}
/* This file is a heavy retheme of react-datepicker's Sass as of v1.4.0
** https://github.com/Hacker0x01/react-datepicker
*/
.euiDatePicker {
display: block;
/**
* Inline datepickers
*/
}
.euiDatePicker .euiFormControlLayout {
height: auto;
}
.euiDatePicker--inline .euiFormControlLayout {
width: -webkit-fit-content;
width: -moz-fit-content;
width: fit-content;
background-color: transparent;
box-shadow: none;
padding: 0;
}
.euiDatePicker--inline .euiFormControlLayoutDelimited .euiFormControlLayout__childrenWrapper {
background-color: transparent;
-webkit-flex-direction: column;
flex-direction: column;
}
.euiDatePicker--inline .euiFormControlLayoutIcons {
-webkit-justify-content: center;
justify-content: center;
-webkit-padding-after: 8px;
padding-block-end: 8px;
}
.euiDatePicker--shadow .euiFormControlLayout {
box-shadow: 0 0.9px 4px -1px rgba(0, 0, 0, 0.2), 0 2.6px 8px -1px rgba(0, 0, 0, 0.15), 0 5.7px 12px -1px rgba(0, 0, 0, 0.125), 0 15px 15px -1px rgba(0, 0, 0, 0.1);
}
.euiDatePicker--shadow .euiFormControlLayoutDelimited .euiFormControlLayout__childrenWrapper {
background-color: #1D1E24;
}
.react-datepicker {
font-size: 12px;
color: #DFE5EF;
display: -webkit-flex;
display: flex;
border-radius: 6px;
padding: 8px;
-webkit-justify-content: center;
justify-content: center;
}
.react-datepicker--non-interactive {
pointer-events: none;
}
.react-datepicker__current-month,
.react-datepicker-time__header {
display: none;
}
.react-datepicker__screenReaderOnly {
position: absolute;
top: auto;
left: -10000px;
width: 1px;
height: 1px;
clip: rect(0 0 0 0);
-webkit-clip-path: inset(50%);
clip-path: inset(50%);
overflow: hidden;
margin: -1px;
}
.react-datepicker__focusTrap {
display: -webkit-flex;
display: flex;
-webkit-justify-content: center;
justify-content: center;
}
.react-datepicker__month-container {
-webkit-flex-grow: 1;
flex-grow: 1;
margin-top: 36px;
}
.react-datepicker__header {
display: -webkit-flex;
display: flex;
-webkit-flex-direction: column;
flex-direction: column;
}
.react-datepicker-time__header {
max-width: 100%;
overflow: hidden !important;
text-overflow: ellipsis !important;
white-space: nowrap !important;
}
.react-datepicker__month {
text-align: center;
border-radius: 6px;
}
@media only screen and (max-width: 574px) {
.react-datepicker__focusTrap,
.react-datepicker {
-webkit-flex-direction: column;
flex-direction: column;
}
.react-datepicker__time-box {
margin-top: 0;
}
}
.euiAccordionForm__extraAction {
opacity: 0;
transition: opacity 250ms cubic-bezier(0.694, 0.0482, 0.335, 1);
}
.euiAccordionForm__extraAction:focus {
opacity: 1;
}
.euiAccordionForm__title {
display: inline-block;
}
.euiAccordionForm__button {
padding: 16px 16px 16px 0;
}
.euiAccordionForm__button:hover {
text-decoration: none;
}
.euiAccordionForm__button:hover .euiAccordionForm__title {
text-decoration: underline;
}
.euiAccordionForm {
border-top: 1px solid #343741;
border-bottom: 1px solid #343741;
}
.euiAccordionForm + .euiAccordionForm {
border-top: none;
}
.euiAccordionForm:hover .euiAccordionForm__extraAction {
opacity: 1;
visibility: visible;
}
.euiColorPicker {
position: relative;
width: 152px;
}
.euiColorPicker__popoverAnchor .euiColorPicker__input {
padding-right: 40px;
}
.euiColorPicker__popoverAnchor .euiColorPicker__input[class*="--compressed"] {
padding-right: 32px;
}
.euiColorPicker__popoverAnchor .euiColorPicker__input + .euiFormControlLayoutIcons {
color: inherit;
}
.euiColorPicker__swatches {
display: -webkit-flex;
display: flex;
-webkit-flex-wrap: wrap;
flex-wrap: wrap;
margin: -4px;
}
.euiColorPicker__swatch-item {
margin: 4px;
}
.euiSwatchInput__stroke {
fill: none;
stroke: rgba(255, 255, 255, 0.2);
}
.euiColorPicker__popoverPanel--pickerOnly {
padding-bottom: 0 !important;
}
.euiColorPicker__input--inGroup {
height: 38px !important;
box-shadow: none !important;
border-radius: 0;
}
.euiColorPicker__input--inGroup.euiFieldText--compressed {
height: 30px !important;
border-radius: 0;
}
.euiColorPicker__alphaRange .euiRangeInput {
min-width: 0;
}
.euiColorPickerSwatch {
display: inline-block;
height: 24px;
width: 24px;
border-radius: 3px;
cursor: pointer;
border: solid 1px rgba(255, 255, 255, 0.1);
box-shadow: inset 0 0 0 1px rgba(29, 30, 36, 0.05);
}
.euiColorPickerSwatch:disabled {
cursor: default;
}
.euiColorPickerSwatch:focus {
outline: 2px solid currentColor;
}
.euiColorPickerSwatch:focus:focus-visible {
outline-style: auto;
}
.euiColorPickerSwatch:focus:not(:focus-visible) {
outline: none;
}
.euiHue {
background: linear-gradient(to right, #FF3232 0%, #FFF130 20%, #45FF30 35%, #28FFF0 52%, #282CFF 71%, #FF28FB 88%, #FF0094 100%);
height: 24px;
margin: 4px 0;
position: relative;
}
.euiHue::before, .euiHue::after {
content: "";
left: 0;
position: absolute;
height: 8px;
background: #1D1E24;
width: 100%;
}
.euiHue::after {
bottom: 0;
}
.euiHue__range {
position: relative;
height: 24px;
width: calc(100% + 2px);
margin: 0 -1px;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
background: transparent;
z-index: 2;
}
.euiHue__range::-webkit-slider-thumb {
padding: 7px;
border: 1px solid #69696f;
background: #1D1E24 no-repeat center;
border-radius: 14px;
-webkit-transition: background-color 150ms ease-in, border-color 150ms ease-in;
transition: background-color 150ms ease-in, border-color 150ms ease-in;
box-shadow: 0 0 0 1px #1D1E24, 0 2px 2px -1px rgba(0, 0, 0, 0.2), 0 1px 5px -2px rgba(0, 0, 0, 0.2);
border: 2px solid #1D1E24;
cursor: pointer;
background-color: #98A2B3;
padding: 0;
height: 16px;
width: 16px;
box-sizing: border-box;
}
.euiHue__range::-moz-range-thumb {
padding: 7px;
border: 1px solid #69696f;
background: #1D1E24 no-repeat center;
border-radius: 14px;
-moz-transition: background-color 150ms ease-in, border-color 150ms ease-in;
transition: background-color 150ms ease-in, border-color 150ms ease-in;
box-shadow: 0 0 0 1px #1D1E24, 0 2px 2px -1px rgba(0, 0, 0, 0.2), 0 1px 5px -2px rgba(0, 0, 0, 0.2);
border: 2px solid #1D1E24;
cursor: pointer;
background-color: #98A2B3;
padding: 0;
height: 16px;
width: 16px;
box-sizing: border-box;
}
.euiHue__range::-ms-thumb {
padding: 7px;
border: 1px solid #69696f;
background: #1D1E24 no-repeat center;
border-radius: 14px;
-ms-transition: background-color 150ms ease-in, border-color 150ms ease-in;
transition: background-color 150ms ease-in, border-color 150ms ease-in;
box-shadow: 0 0 0 1px #1D1E24, 0 2px 2px -1px rgba(0, 0, 0, 0.2), 0 1px 5px -2px rgba(0, 0, 0, 0.2);
border: 2px solid #1D1E24;
cursor: pointer;
background-color: #98A2B3;
padding: 0;
height: 16px;
width: 16px;
box-sizing: border-box;
}
.euiHue__range::-webkit-slider-thumb {
-webkit-appearance: none;
margin-top: 0;
}
.euiHue__range::-ms-thumb {
margin-top: 0;
}
.euiHue__range::-ms-track {
height: 24px;
background: transparent;
border-color: transparent;
color: transparent;
}
.euiHue__range::-moz-focus-outer {
border: none;
}
.euiHue__range::-ms-fill-lower, .euiHue__range::-ms-fill-upper {
background: transparent;
}
.euiHue__range:focus {
outline: none;
}
.euiHue__range:focus::-webkit-slider-thumb {
box-shadow: 0 0 0 2px #36A2EF;
border-color: #36A2EF;
}
.euiHue__range:focus::-moz-range-thumb {
box-shadow: 0 0 0 2px #36A2EF;
border-color: #36A2EF;
}
.euiHue__range:focus::-ms-thumb {
box-shadow: 0 0 0 2px #36A2EF;
border-color: #36A2EF;
}
.euiSaturation {
position: relative;
width: 100%;
padding-bottom: 100%;
border-radius: 3px;
touch-action: none;
z-index: 3;
}
.euiSaturation .euiSaturation__lightness,
.euiSaturation .euiSaturation__saturation {
position: absolute;
top: -1px;
bottom: 0;
left: 0;
right: 0;
border-radius: 3px;
}
.euiSaturation .euiSaturation__lightness {
background: linear-gradient(to right, rgb(255, 255, 255), rgba(255, 255, 255, 0));
}
.euiSaturation .euiSaturation__saturation {
background: linear-gradient(to top, rgb(0, 0, 0), rgba(0, 0, 0, 0));
}
.euiSaturation .euiSaturation__indicator {
position: absolute;
height: 12px;
width: 12px;
border-radius: 100%;
margin-top: -6px;
margin-left: -6px;
border: 1px solid #D4DAE5;
}
.euiSaturation .euiSaturation__indicator::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
border-radius: 100%;
border: 1px solid #25262E;
}
.euiSaturation:focus {
outline: none;
}
.euiSaturation:focus .euiSaturation__indicator {
box-shadow: 0 0 0 2px #36A2EF;
border-color: #36A2EF;
}
.euiColorPalettePicker__itemTitle {
font-size: 12px;
font-size: 0.8571428571rem;
line-height: 1.1428571429rem;
}
.euiColorPalettePicker__itemTitle + .euiColorPaletteDisplay {
margin-top: 4px;
}
.euiColorPaletteDisplay {
display: -webkit-flex;
display: flex;
-webkit-flex-direction: row;
flex-direction: row;
overflow: hidden;
height: 8px;
}
.euiColorPaletteDisplay--sizeExtraSmall {
position: relative;
height: 4px;
border-radius: 4px;
}
.euiColorPaletteDisplay--sizeExtraSmall::after {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
border-radius: 4px;
content: "";
pointer-events: none;
border: 1px solid rgba(212, 218, 229, 0.2);
}
.euiColorPaletteDisplay--sizeExtraSmall .euiColorPaletteDisplayFixed__bleedArea {
height: 4px;
}
.euiColorPaletteDisplay--sizeSmall {
position: relative;
height: 8px;
border-radius: 8px;
}
.euiColorPaletteDisplay--sizeSmall::after {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
border-radius: 8px;
content: "";
pointer-events: none;
border: 1px solid rgba(212, 218, 229, 0.2);
}
.euiColorPaletteDisplay--sizeSmall .euiColorPaletteDisplayFixed__bleedArea {
height: 8px;
}
.euiColorPaletteDisplay--sizeMedium {
position: relative;
height: 16px;
border-radius: 16px;
}
.euiColorPaletteDisplay--sizeMedium::after {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
border-radius: 16px;
content: "";
pointer-events: none;
border: 1px solid rgba(212, 218, 229, 0.2);
}
.euiColorPaletteDisplay--sizeMedium .euiColorPaletteDisplayFixed__bleedArea {
height: 16px;
}
.euiColorPaletteDisplayFixed__bleedArea {
position: absolute;
top: 0;
left: 0;
display: -webkit-flex;
display: flex;
height: 8px;
width: calc(100% + 1px);
}
.euiComboBox {
max-width: 400px;
width: 100%;
height: auto;
position: relative;
/**
* 1. Allow pills to truncate their text with an ellipsis.
* 2. Don't allow pills/placeholder to overlap with the caret, loading icon or clear button.
* 3. The height on combo can be larger than normal text inputs except for single-selection comboboxes.
*/
/**
* 1. Force field height to match other field heights.
* 2. Force input height to expand to fill this element.
* 3. Reset appearance on Safari.
* 4. Fix react-input-autosize appearance.
* 5. Prevent a lot of input from causing the react-input-autosize to overflow the container.
*/
}
.euiComboBox--fullWidth {
max-width: 100%;
}
.euiComboBox--compressed {
height: 32px;
}
.euiComboBox--inGroup {
height: 100%;
}
.euiComboBox--compressed:not(.euiComboBox--appended, .euiComboBox--prepended) {
height: auto; /* 3 */
}
.euiComboBox:not(.euiComboBox--appended, .euiComboBox--prepended) .euiFormControlLayout {
height: auto; /* 3 */
}
.euiComboBox .euiComboBox__inputWrap {
max-width: 400px;
width: 100%;
height: 40px;
background-color: #16171c;
background-repeat: no-repeat;
background-size: 0% 100%;
box-shadow: 0 0 transparent, inset 0 0 0 1px rgba(255, 255, 255, 0.1);
transition: box-shadow 150ms ease-in, background-image 150ms ease-in, background-size 150ms ease-in, background-color 150ms ease-in;
font-family: "Inter UI", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-weight: 400;
letter-spacing: normal;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
-webkit-font-kerning: normal;
font-kerning: normal;
font-size: 14px;
color: #DFE5EF;
border: none;
border-radius: 6px;
padding: 12px;
max-width: 400px;
width: 100%;
height: auto;
padding: 4px 8px;
padding-right: var(--eui-form-control-layout-icons-padding, 8px); /* 2 */
display: -webkit-flex;
display: flex; /* 1 */
outline: none;
}
.euiComboBox .euiComboBox__inputWrap--fullWidth {
max-width: 100%;
}
.euiComboBox .euiComboBox__inputWrap--compressed {
height: 32px;
}
.euiComboBox .euiComboBox__inputWrap--inGroup {
height: 100%;
}
@supports (-moz-appearance: none) {
.euiComboBox .euiComboBox__inputWrap {
transition-property: box-shadow, background-image, background-size;
}
}
.euiComboBox .euiComboBox__inputWrap::-webkit-input-placeholder {
color: #81858f;
opacity: 1;
}
.euiComboBox .euiComboBox__inputWrap::-moz-placeholder {
color: #81858f;
opacity: 1;
}
.euiComboBox .euiComboBox__inputWrap::placeholder {
color: #81858f;
opacity: 1;
}
.euiComboBox .euiComboBox__inputWrap--compressed {
background-color: #16171c;
background-repeat: no-repeat;
background-size: 0% 100%;
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
transition: box-shadow 150ms ease-in, background-image 150ms ease-in, background-size 150ms ease-in, background-color 150ms ease-in;
padding: 8px;
border-radius: 4px;
}
@supports (-moz-appearance: none) {
.euiComboBox .euiComboBox__inputWrap--compressed {
transition-property: box-shadow, background-image, background-size;
}
}
.euiComboBox .euiComboBox__inputWrap--inGroup {
box-shadow: none !important;
border-radius: 0;
}
.euiComboBox .euiComboBox__inputWrap--fullWidth {
max-width: 100%;
}
.euiComboBox .euiComboBox__inputWrap--compressed {
height: 32px;
}
.euiComboBox .euiComboBox__inputWrap--inGroup {
height: 100%;
}
.euiComboBox .euiComboBox__inputWrap .euiComboBoxPill {
max-width: calc(100% - 2px - 16px);
}
.euiComboBox .euiComboBox__inputWrap:not(.euiComboBox__inputWrap--noWrap) {
padding-top: 4px;
padding-bottom: 4px;
padding-left: 4px;
height: auto; /* 3 */
-webkit-flex-wrap: wrap;
flex-wrap: wrap; /* 1 */
-webkit-align-content: flex-start;
align-content: flex-start;
}
.euiComboBox .euiComboBox__inputWrap:not(.euiComboBox__inputWrap--noWrap):hover {
cursor: text;
}
.euiComboBox .euiComboBox__input {
display: -webkit-inline-flex !important;
display: inline-flex !important; /* 1 */
height: 32px; /* 2 */
overflow: hidden; /* 5 */
}
.euiComboBox .euiComboBox__input > input {
font-family: "Inter UI", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-weight: 400;
letter-spacing: normal;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
-webkit-font-kerning: normal;
font-kerning: normal;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none; /* 3 */
padding: 0;
border: none;
background: transparent;
font-size: 14px;
color: #DFE5EF;
margin: 4px;
line-height: 1.5; /* 4 */
}
.euiComboBox.euiComboBox-isOpen .euiComboBox__inputWrap {
background-color: #111216;
background-image: linear-gradient(to top, #36A2EF, #36A2EF 2px, transparent 2px, transparent 100%);
background-size: 100% 100%;
outline: none;
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.euiComboBox.euiComboBox-isOpen .euiComboBox__inputWrap--compressed {
background-color: #111216;
background-image: linear-gradient(to top, #36A2EF, #36A2EF 2px, transparent 2px, transparent 100%);
background-size: 100% 100%;
outline: none;
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.euiComboBox.euiComboBox-isInvalid .euiComboBox__inputWrap {
background-image: linear-gradient(to top, #F86B63, #F86B63 2px, transparent 2px, transparent 100%);
background-size: 100%;
}
.euiComboBox.euiComboBox-isDisabled .euiComboBox__inputWrap {
color: #535966;
-webkit-text-fill-color: #535966;
cursor: not-allowed;
background: #202128;
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
-webkit-text-fill-color: unset;
}
.euiComboBox.euiComboBox-isDisabled .euiComboBox__inputWrap::-webkit-input-placeholder {
color: #535966;
opacity: 1;
}
.euiComboBox.euiComboBox-isDisabled .euiComboBox__inputWrap::-moz-placeholder {
color: #535966;
opacity: 1;
}
.euiComboBox.euiComboBox-isDisabled .euiComboBox__inputWrap::placeholder {
color: #535966;
opacity: 1;
}
.euiComboBox.euiComboBox-isDisabled .euiComboBoxPlaceholder,
.euiComboBox.euiComboBox-isDisabled .euiComboBoxPill--plainText {
color: #535966;
-webkit-text-fill-color: #535966;
}
.euiComboBox.euiComboBox-isDisabled .euiComboBox__inputWrap:not(.euiComboBox__inputWrap--noWrap):hover {
cursor: not-allowed;
}
.euiComboBox.euiComboBox--compressed .euiComboBox__inputWrap {
line-height: 32px; /* 2 */
padding-top: 0;
padding-bottom: 0;
}
.euiComboBox__input {
max-width: 100%;
}
.euiComboBox__input input {
border: none !important;
box-shadow: none !important;
outline: none !important;
}
/*
* 1. Overwrites the base styling of EuiBadge, to give it a larger size and margins
* that make sense in the input wrap.
*/
.euiComboBoxPill {
height: 22px;
line-height: 22px;
vertical-align: baseline;
}
.euiComboBoxPill, .euiComboBoxPill + .euiComboBoxPill {
margin: 4px;
}
.euiComboBox--compressed .euiComboBoxPill, .euiComboBox--compressed .euiComboBoxPill + .euiComboBoxPill {
margin: 5px 4px 0 0;
}
.euiComboBox--compressed .euiComboBoxPill--plainText {
margin-top: 4px;
}
.euiComboBoxPill--plainText {
font-family: "Inter UI", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-weight: 400;
letter-spacing: normal;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
-webkit-font-kerning: normal;
font-kerning: normal;
max-width: 100%;
overflow: hidden !important;
text-overflow: ellipsis !important;
white-space: nowrap !important;
line-height: 24px;
font-size: 14px;
padding: 0;
color: #DFE5EF;
vertical-align: middle;
display: inline-block;
}
.euiComboBoxPlaceholder {
max-width: 100%;
overflow: hidden !important;
text-overflow: ellipsis !important;
white-space: nowrap !important;
padding-right: 40px;
position: absolute;
pointer-events: none;
padding-left: 4px;
line-height: 32px;
color: #81858f;
margin-bottom: 0 !important;
}
/**
* 1. Using specificity to override panel shadow
* 2. Prevent really long input from overflowing the container.
*/
.euiComboBoxOptionsList {
-webkit-transform: none !important;
transform: none !important;
top: 0;
}
.euiComboBoxOptionsList .euiFilterSelectItem__content {
margin-block: 0 !important;
}
.euiComboBoxOptionsList__empty {
overflow-wrap: break-word !important;
word-break: break-word;
/* 2 */
padding: 8px;
text-align: center;
word-wrap: break-word;
}
.euiComboBoxOptionsList__rowWrap {
padding: 0;
max-height: 200px;
overflow: hidden;
}
.euiComboBoxOptionsList__rowWrap > div {
scrollbar-color: rgba(152, 162, 179, 0.5) transparent;
scrollbar-width: thin;
}
.euiComboBoxOptionsList__rowWrap > div::-webkit-scrollbar {
width: 16px;
height: 16px;
}
.euiComboBoxOptionsList__rowWrap > div::-webkit-scrollbar-thumb {
background-color: rgba(152, 162, 179, 0.5);
background-clip: content-box;
border-radius: 16px;
border: 6px solid transparent;
}
.euiComboBoxOptionsList__rowWrap > div::-webkit-scrollbar-corner, .euiComboBoxOptionsList__rowWrap > div::-webkit-scrollbar-track {
background-color: transparent;
}
.euiComboBoxOption {
font-size: 14px;
padding: 4px 8px 4px 16px;
width: 100%;
text-align: left;
border: 1px solid #343741;
border-color: transparent;
display: -webkit-flex;
display: flex;
-webkit-align-items: center;
align-items: center;
}
.euiComboBoxOption:hover {
text-decoration: underline;
}
.euiComboBoxOption.euiComboBoxOption-isFocused {
cursor: pointer;
color: #36A2EF;
background-color: rgba(54, 162, 239, 0.2);
}
.euiComboBoxOption.euiComboBoxOption-isDisabled {
color: #535966;
cursor: not-allowed;
}
.euiComboBoxOption.euiComboBoxOption-isDisabled:hover {
text-decoration: none;
}
.euiComboBoxOption__contentWrapper {
display: -webkit-flex;
display: flex;
}
.euiComboBoxOption__contentWrapper .euiComboBoxOption__emptyStateText {
-webkit-flex: 1;
flex: 1;
text-align: left;
margin-bottom: 0;
}
.euiComboBoxOption__contentWrapper .euiComboBoxOption__enterBadge {
-webkit-align-self: center;
align-self: center;
margin-left: 4px;
}
.euiComboBoxOption__content {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
-webkit-flex: 1;
flex: 1;
text-align: left;
}
/**
* 1. Force each title to be the same height as an option, so that the virtualized scroll logic
* works.
*/
.euiComboBoxTitle {
font-size: 12px;
padding: 11px 8px 4px; /* 1 */
width: 100%;
font-weight: 700;
color: #FFF;
}
.euiContextMenu {
width: 256px;
max-width: 100%;
position: relative;
overflow: hidden;
transition: height 150ms cubic-bezier(0.694, 0.0482, 0.335, 1);
border-radius: 6px;
}
.euiContextMenu .euiContextMenu__content {
padding: 8px;
}
/**
* 1. When there are multiple ContextMenuPanels, the ContextMenu will absolutely
* position them. ContextMenuPanel will break the layout of a Popover if it's
* absolutely positioned by default.
*/
.euiContextMenu__panel {
position: absolute; /* 1 */
}
.euiContextMenu__icon {
margin-right: 8px;
}
.euiContextMenuPanel {
width: 100%;
visibility: visible;
outline-offset: -2px;
}
.euiContextMenuPanel:focus {
outline: none;
}
.euiContextMenuPanel.euiContextMenuPanel-txInLeft {
pointer-events: none;
-webkit-animation: euiContextMenuPanelTxInLeft 250ms cubic-bezier(0.694, 0.0482, 0.335, 1);
animation: euiContextMenuPanelTxInLeft 250ms cubic-bezier(0.694, 0.0482, 0.335, 1);
}
.euiContextMenuPanel.euiContextMenuPanel-txOutLeft {
pointer-events: none;
-webkit-animation: euiContextMenuPanelTxOutLeft 250ms cubic-bezier(0.694, 0.0482, 0.335, 1);
animation: euiContextMenuPanelTxOutLeft 250ms cubic-bezier(0.694, 0.0482, 0.335, 1);
}
.euiContextMenuPanel.euiContextMenuPanel-txInRight {
pointer-events: none;
-webkit-animation: euiContextMenuPanelTxInRight 250ms cubic-bezier(0.694, 0.0482, 0.335, 1);
animation: euiContextMenuPanelTxInRight 250ms cubic-bezier(0.694, 0.0482, 0.335, 1);
}
.euiContextMenuPanel.euiContextMenuPanel-txOutRight {
pointer-events: none;
-webkit-animation: euiContextMenuPanelTxOutRight 250ms cubic-bezier(0.694, 0.0482, 0.335, 1);
animation: euiContextMenuPanelTxOutRight 250ms cubic-bezier(0.694, 0.0482, 0.335, 1);
}
.euiContextMenuPanel--next {
-webkit-transform: translateX(256px);
transform: translateX(256px);
visibility: hidden;
}
.euiContextMenuPanel--previous {
-webkit-transform: translateX(-256px);
transform: translateX(-256px);
visibility: hidden;
}
.euiContextMenuPanelTitle {
overflow-wrap: break-word !important;
word-break: break-word;
color: #DFE5EF;
font-size: 14px;
font-size: 1rem;
line-height: 1.7142857143rem;
font-weight: 700;
padding: 12px;
width: 100%;
text-align: left;
outline-offset: -2px;
border-bottom: 1px solid #343741;
}
.euiC