mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 13:04:19 +00:00
Merge remote-tracking branch 'origin/main' into main
This commit is contained in:
commit
8723e02a8d
5 changed files with 71 additions and 10 deletions
|
@ -1,5 +1,6 @@
|
||||||
.Checkbox {
|
.Checkbox {
|
||||||
height: 25px;
|
font-size: inherit;
|
||||||
width: 25px;
|
width: 1em;
|
||||||
vertical-align: bottom;
|
height: 1em;
|
||||||
|
border-radius: 0.25em;
|
||||||
}
|
}
|
|
@ -1,5 +1,6 @@
|
||||||
.Radio {
|
.Radio {
|
||||||
height: 25px;
|
font-size: inherit;
|
||||||
width: 25px;
|
width: 1em;
|
||||||
vertical-align: bottom;
|
height: 1em;
|
||||||
|
border-radius: 0.25em;
|
||||||
}
|
}
|
||||||
|
|
23
code/frontend/src/components/Slider.js
Normal file
23
code/frontend/src/components/Slider.js
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
import React from "react"
|
||||||
|
import Style from "./Slider.module.css"
|
||||||
|
import classNames from "classnames"
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A slider that allows to select a numeric value in a range.
|
||||||
|
*
|
||||||
|
* @todo Custom styling only works on Firefox!
|
||||||
|
*
|
||||||
|
* @param className - Additional class(es) to add to the element.
|
||||||
|
* @param props - Additional props to pass to the element.
|
||||||
|
* @returns {JSX.Element}
|
||||||
|
* @constructor
|
||||||
|
*/
|
||||||
|
export default function Slider({ className, ...props }) {
|
||||||
|
return (
|
||||||
|
<input
|
||||||
|
type={"range"}
|
||||||
|
className={classNames(Style.Slider, className)} {...props}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
}
|
36
code/frontend/src/components/Slider.module.css
Normal file
36
code/frontend/src/components/Slider.module.css
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
.Slider {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
@-moz-document url-prefix() {
|
||||||
|
.Slider {
|
||||||
|
outline: none;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Slider::-moz-range-track {
|
||||||
|
background-color: var(--bg-field-off);
|
||||||
|
height: 10px;
|
||||||
|
border-radius: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Slider:focus::-moz-range-track {
|
||||||
|
background-color: var(--bg-field-on);
|
||||||
|
}
|
||||||
|
|
||||||
|
.Slider::-moz-range-progress {
|
||||||
|
height: 10px;
|
||||||
|
border-radius: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Slider::-moz-range-thumb {
|
||||||
|
background-color: var(--fg-field-off);
|
||||||
|
border-width: 0;
|
||||||
|
height: 25px;
|
||||||
|
width: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Slider:focus::-moz-range-thumb {
|
||||||
|
background-color: var(--fg-field-on);
|
||||||
|
}
|
||||||
|
}
|
|
@ -19,17 +19,17 @@ export default function PageDashboard({ children, className, ...props }) {
|
||||||
Create a new repository
|
Create a new repository
|
||||||
</BoxHeader>
|
</BoxHeader>
|
||||||
<BoxFull className={Style.SearchByZone} header={
|
<BoxFull className={Style.SearchByZone} header={
|
||||||
<span><Checkbox/> Search by zone</span>
|
<label><Checkbox/> Search by zone</label>
|
||||||
}>
|
}>
|
||||||
🚧 Not implemented.
|
🚧 Not implemented.
|
||||||
</BoxFull>
|
</BoxFull>
|
||||||
<BoxFull className={Style.SearchByHashtags} header={
|
<BoxFull className={Style.SearchByHashtags} header={
|
||||||
<span><Checkbox/> Search by hashtag</span>
|
<label><Checkbox/> Search by hashtag</label>
|
||||||
}>
|
}>
|
||||||
🚧 Not implemented.
|
🚧 Not implemented.
|
||||||
</BoxFull>
|
</BoxFull>
|
||||||
<BoxFull className={Style.SearchByTimePeriod} header={
|
<BoxFull className={Style.SearchByTimePeriod} header={
|
||||||
<span><Checkbox/> Search by time period</span>
|
<label><Checkbox/> Search by time period</label>
|
||||||
}>
|
}>
|
||||||
🚧 Not implemented.
|
🚧 Not implemented.
|
||||||
</BoxFull>
|
</BoxFull>
|
||||||
|
|
Loading…
Reference in a new issue