Files
oi-metrology/Server/wwwroot/package/dist/collection/components/sidebar/sidebar-item.css
Mike Phares 5c9f0d1aff Remove with Text
Remove GetEngineeringSpcReview
Better error message
EnforceCodeStyleInBuild
NginxFileSystem
Remove Reactors and Working Directory
AppSettings
Delete self contained Thunder Tests
Back to .net8.0
api/v4/InfinityQS
ApiExplorerSettings
Wafer Counter
2024-04-15 13:13:55 -07:00

161 lines
3.8 KiB
CSS

:root {
--ifx-font-family: "Source Sans 3";
font-family: var(--ifx-font-family, sans-serif);
}
:host {
position: relative;
}
.sidebar__nav-item:focus,
.sidebar__nav-item.header__section:focus {
outline: none;
}
.sidebar__nav-item:focus .sidebar__nav-item-icon-wrapper,
.sidebar__nav-item.header__section:focus .sidebar__nav-item-icon-wrapper {
color: #08665C;
}
.sidebar__nav-item:focus .sidebar__nav-item-label,
.sidebar__nav-item.header__section:focus .sidebar__nav-item-label {
outline: none;
color: #08665C;
}
.sidebar__nav-item:focus .sidebar__nav-item-indicator .item__arrow-wrapper ifx-icon,
.sidebar__nav-item.header__section:focus .sidebar__nav-item-indicator .item__arrow-wrapper ifx-icon {
color: #08665C;
}
.sidebar__nav-item:hover,
.sidebar__nav-item.header__section:hover {
outline: none;
}
.sidebar__nav-item:hover .sidebar__nav-item-icon-wrapper,
.sidebar__nav-item.header__section:hover .sidebar__nav-item-icon-wrapper {
color: #08665C;
}
.sidebar__nav-item:hover .sidebar__nav-item-label,
.sidebar__nav-item.header__section:hover .sidebar__nav-item-label {
outline: none;
color: #08665C;
}
.sidebar__nav-item:hover .sidebar__nav-item-indicator .item__arrow-wrapper ifx-icon,
.sidebar__nav-item.header__section:hover .sidebar__nav-item-indicator .item__arrow-wrapper ifx-icon {
color: #08665C;
}
.sidebar__nav-item {
display: flex;
flex-direction: row;
align-items: center;
width: 100%;
padding: 8px 0px;
gap: 4px;
flex: none;
order: 0;
flex-grow: 0;
text-decoration: none;
color: #1D1D1D;
cursor: pointer;
font-family: var(--ifx-font-family);
}
.sidebar__nav-item.active {
color: #0A8276;
}
.sidebar__nav-item.active-section::before {
content: "";
position: absolute;
left: -44px;
height: 40px;
width: 2px;
background: #0A8276;
}
.sidebar__nav-item.open .sidebar__nav-item-label {
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px;
}
.sidebar__nav-item.open .sidebar__nav-item-indicator .item__arrow-wrapper ifx-icon {
transform: rotate(-180deg);
}
.sidebar__nav-item.header__section {
box-sizing: padding-box;
border-top: 1px solid #EEEDED;
padding: 20px 0px;
display: -webkit-flex;
-webkit-line-clamp: 1;
-webkit-box-orient: horizontal;
overflow: hidden;
text-overflow: ellipsis;
}
.sidebar__nav-item.header__section.no-top-border {
border-top: none;
}
.sidebar__nav-item.header__section.active-section::before {
content: "";
position: absolute;
left: -32px;
height: 40px;
width: 2px;
background: #0A8276;
}
.sidebar__nav-item.header__section.open .sidebar__nav-item-indicator .item__arrow-wrapper ifx-icon {
transform: rotate(-180deg);
}
.sidebar__nav-item.header__section .sidebar__nav-item-label {
color: #1D1D1D;
font-family: Source Sans 3;
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: 24px;
}
.sidebar__nav-item .sidebar__nav-item-icon-wrapper {
display: flex;
width: 24px;
height: 24px;
justify-content: center;
align-items: center;
gap: 8px;
flex-shrink: 0;
}
.sidebar__nav-item .sidebar__nav-item-icon-wrapper.noIcon {
display: none;
}
.sidebar__nav-item .sidebar__nav-item-icon-wrapper ifx-icon {
width: 16px;
height: 16px;
}
.sidebar__nav-item .sidebar__nav-item-label {
font-style: normal;
font-weight: 400;
font-size: 1rem;
line-height: 1.5rem;
display: flex;
align-items: center;
flex: none;
order: 1;
flex-grow: 1;
cursor: pointer;
}
.sidebar__nav-item .sidebar__nav-item-indicator {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 0px 4px;
flex: none;
order: 2;
flex-grow: 0;
}
.expandable__submenu {
display: none;
list-style-type: none;
flex-direction: column;
padding: 0;
margin: 0;
padding-left: 12px;
}
.expandable__submenu.open {
display: flex;
}