diff options
author | Jesse Morgan <jesse@jesterpm.net> | 2013-10-18 17:18:51 -0700 |
---|---|---|
committer | Jesse Morgan <jesse@jesterpm.net> | 2013-10-18 17:18:51 -0700 |
commit | 5037f4797461649994068d97a8433b6cd793c523 (patch) | |
tree | 018209fd0e888042188462cc78c53454537d2681 /web/style.css | |
parent | 57df579db6594b6abd43eb0fd8e8e8b9ed4ff4b3 (diff) |
Making slider clickable.
This change enables you to click on the slider bar to move the slider.
Diffstat (limited to 'web/style.css')
-rw-r--r-- | web/style.css | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/web/style.css b/web/style.css index 548fea9..ecad037 100644 --- a/web/style.css +++ b/web/style.css @@ -32,6 +32,15 @@ blockquote { font-style: italic; } +.noselect { + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + #notfooter { min-height: 100%; height: auto !important; @@ -449,10 +458,15 @@ footer a:hover { .sliderbar { background: #E1E1E1; + height: 24px; } .sliderbar .slider { cursor: pointer; + background: url('/images/slider.png') no-repeat center center; + width: 46px; + height: 24px; + display: inline-block; } .quadQuestion { |