@opalkelly/frontpanel-react-components
Version:
React Component Library for OpalKelly FrontPanel application development
36 lines (31 loc) • 792 B
CSS
/**
* Copyright (c) 2024 Opal Kelly Incorporated
*
* This source code is licensed under the FrontPanel license.
* See the LICENSE file found in the root directory of this project.
*/
.okSelectEntryItem {
/* Layout */
display: flex;
align-items: center;
gap: 4px;
/* Style */
color: var(--Dark, #343434);
font-family: Inter, "Nunito Sans", sans-serif, ui-sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 14px; /* 100% */
/* Indicator Style */
.okSelectEntryItemIndicator {
width: 14px;
height: 14px;
}
}
.okSelectEntryItem[data-disabled] {
opacity: 0.5;
pointer-events: none;
}
.okSelectEntryItem[data-highlighted] {
outline: none;
}