You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
849 B
48 lines
849 B
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`component.UI.Range should render correctly 1`] = `
|
|
.c0 {
|
|
overflow: hidden;
|
|
width: 100%;
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
appearance: none;
|
|
outline: none;
|
|
}
|
|
|
|
.c0::-webkit-slider-runnable-track {
|
|
height: 8px;
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
appearance: none;
|
|
background-color: #959595;
|
|
margin-top: -1px;
|
|
}
|
|
|
|
.c0::-webkit-slider-thumb {
|
|
width: 8px;
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
appearance: none;
|
|
height: 8px;
|
|
cursor: ew-resize;
|
|
background: #fff;
|
|
box-shadow: -1000px 0 0 1000px orange;
|
|
}
|
|
|
|
<form
|
|
onReset={[Function]}
|
|
onSubmit={[Function]}
|
|
>
|
|
<input
|
|
className="c0"
|
|
max={100}
|
|
min={0}
|
|
onBlur={[Function]}
|
|
onChange={[Function]}
|
|
step={1}
|
|
type="range"
|
|
value={0}
|
|
/>
|
|
</form>
|
|
`;
|
|
|