Mike Phares 127634f5ab Delete self contained Thunder Tests
Back to .net8.0
api/v4/InfinityQS
ApiExplorerSettings
Wafer Counter
Color Sorting
2024-03-13 13:15:56 -07:00

87 lines
1.8 KiB
CSS

:root {
--ifx-font-family: "Source Sans 3";
font-family: var(--ifx-font-family, sans-serif);
}
:host {
display: inline-block;
}
.left-icon,
.right-icon,
.left-text,
.right-text,
.percentage-display {
font-size: 0.875rem;
color: #575352;
margin-left: 8px;
}
.left-icon.disabled,
.right-icon.disabled,
.left-text.disabled,
.right-text.disabled,
.percentage-display.disabled {
color: #BFBBBB;
}
.left-icon,
.left-text {
margin-right: 8px;
}
.right-icon,
.right-text,
.percentage-display {
margin-left: 8px;
}
.ifx-slider {
display: flex;
align-items: center;
padding: 2px 16px;
border-radius: 9999px;
}
.ifx-slider input[type=range] {
-webkit-appearance: none;
width: 100%;
height: 4px;
background: linear-gradient(to right, #0A8276 0%, #0A8276 var(--value-percent, 0%), #EEEDED var(--value-percent, 0%), #EEEDED 100%);
outline: none;
cursor: pointer;
transition: 0.2s;
}
.ifx-slider input[type=range]::-moz-range-thumb {
width: 20px;
height: 20px;
border-radius: 50%;
background: #0A8276;
cursor: pointer;
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
}
.ifx-slider input[type=range]:not(:disabled)::-webkit-slider-thumb {
-webkit-appearance: none;
width: 16px;
height: 16px;
background: #0A8276;
border-radius: 50%;
cursor: pointer;
transition: box-shadow 0.2s;
}
.ifx-slider input[type=range]:not(:disabled)::-webkit-slider-thumb:hover {
background: #08665C;
}
.ifx-slider input[type=range]:not(:disabled)::-webkit-slider-thumb:active {
background: #06534B;
}
.ifx-slider input[type=range]:disabled {
background: #BFBBBB;
cursor: default;
}
.ifx-slider input[type=range]:disabled::-webkit-slider-thumb {
-webkit-appearance: none;
width: 16px;
height: 16px;
background: #BFBBBB;
border-radius: 50%;
cursor: default;
}