mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-29 11:49:13 -04:00
Working slider with mouse and events
Working slider class with mouse handling (click, drag) and events (change, slide). Lots of console logs still in the code. Got rid of some of the legacy code.
This commit is contained in:
parent
012cd184db
commit
57ed44ff75
3 changed files with 164 additions and 174 deletions
|
@ -5,22 +5,26 @@
|
|||
position: absolute;
|
||||
}
|
||||
|
||||
#timeslider .star {
|
||||
background-image: url(../../static/img/star.png);
|
||||
cursor: pointer;
|
||||
height: 16px;
|
||||
top: 40px;
|
||||
width: 15px;
|
||||
}
|
||||
#timeslider .handle {
|
||||
.ui-slider-handle {
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
user-select: none;
|
||||
background-image: url(../../static/img/crushed_current_location.png);
|
||||
cursor: pointer;
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
.ui-slider-handle-star {
|
||||
background-image: url(../../static/img/star.png);
|
||||
height: 16px;
|
||||
top: 20px;
|
||||
width: 15px;
|
||||
}
|
||||
|
||||
.ui-slider-handle-handle {
|
||||
background-image: url(../../static/img/crushed_current_location.png);
|
||||
height: 61px;
|
||||
left: 0;
|
||||
top: 0;
|
||||
top: -14px;
|
||||
width: 13px;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue