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
57 lines
1.1 KiB
CSS
57 lines
1.1 KiB
CSS
:root {
|
|
--ifx-font-family: "Source Sans 3";
|
|
font-family: var(--ifx-font-family, sans-serif);
|
|
}
|
|
|
|
:host {
|
|
width: 100%;
|
|
display: flex;
|
|
}
|
|
|
|
.search-bar {
|
|
box-sizing: border-box;
|
|
height: 40px;
|
|
background-color: #FFFFFF;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
width: 100%;
|
|
font-family: var(--ifx-font-family);
|
|
}
|
|
.search-bar.closed {
|
|
display: flex;
|
|
width: auto;
|
|
justify-content: flex-start;
|
|
}
|
|
.search-bar .search-bar-wrapper {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 16px;
|
|
width: 100%;
|
|
}
|
|
.search-bar .search-bar-wrapper a {
|
|
text-decoration: none;
|
|
font-size: 1rem;
|
|
font-style: normal;
|
|
font-weight: 600;
|
|
line-height: 1.5rem;
|
|
color: #0A8276;
|
|
cursor: pointer;
|
|
}
|
|
.search-bar .search-bar-wrapper ifx-search-field {
|
|
width: 100%;
|
|
}
|
|
.search-bar .search-bar__icon-wrapper {
|
|
display: none;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
.search-bar .search-bar__icon-wrapper ifx-icon:hover {
|
|
cursor: pointer;
|
|
}
|
|
.search-bar.closed .search-bar__icon-wrapper {
|
|
display: flex;
|
|
}
|
|
.search-bar.closed .search-bar-wrapper {
|
|
display: none;
|
|
} |