Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/picturepan2/spectre.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'docs/src/contents/sliders.pug')
-rw-r--r--docs/src/contents/sliders.pug18
1 files changed, 0 insertions, 18 deletions
diff --git a/docs/src/contents/sliders.pug b/docs/src/contents/sliders.pug
deleted file mode 100644
index 754833c..0000000
--- a/docs/src/contents/sliders.pug
+++ /dev/null
@@ -1,18 +0,0 @@
-p Sliders are for selecting values from ranges.
-p
- | You can add the class #[code tooltip] to have tooltip labels.
- | If no #[code data-tooltip] is set, the #[code value] will be used instead.
-
-.docs-demo.columns
- .column.col-6.col-xs-12
- input.slider.tooltip(type="range" min="0" max="100" value="50" oninput="this.setAttribute('value', this.value);")
- .column.col-6.col-xs-12
- input.slider(type="range" min="0" max="100" value="50" disabled="")
-
-pre.code(data-lang='HTML')
- code
- :highlight(lang="html")
- <!-- Sliders -->
- <input class="slider" type="range" min="0" max="100" value="50">
- <!-- Sliders with tooltips -->
- <input class="slider tooltip" type="range" min="0" max="100" value="50" oninput="this.setAttribute('value', this.value);"> \ No newline at end of file