mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-02-08 03:02:03 +01:00
Merge pull request #1348 from ether/drag-timeslider
fix #1341 by adding css to stop highlighting
This commit is contained in:
commit
9f92b2156f
1 changed files with 14 additions and 0 deletions
|
@ -32,6 +32,12 @@
|
||||||
background-image: url(../../static/img/timeslider_background.png);
|
background-image: url(../../static/img/timeslider_background.png);
|
||||||
height: 63px;
|
height: 63px;
|
||||||
margin: 0 9px;
|
margin: 0 9px;
|
||||||
|
-webkit-touch-callout: none;
|
||||||
|
-webkit-user-select: none;
|
||||||
|
-khtml-user-select: none;
|
||||||
|
-moz-user-select: none;
|
||||||
|
-ms-user-select: none;
|
||||||
|
user-select: none;
|
||||||
}
|
}
|
||||||
#timeslider #timeslider-slider {
|
#timeslider #timeslider-slider {
|
||||||
height: 61px;
|
height: 61px;
|
||||||
|
@ -140,6 +146,14 @@
|
||||||
#padmain {
|
#padmain {
|
||||||
top: 0px !important
|
top: 0px !important
|
||||||
}
|
}
|
||||||
|
#editbar{
|
||||||
|
-webkit-touch-callout: none;
|
||||||
|
-webkit-user-select: none;
|
||||||
|
-khtml-user-select: none;
|
||||||
|
-moz-user-select: none;
|
||||||
|
-ms-user-select: none;
|
||||||
|
user-select: none;
|
||||||
|
}
|
||||||
#editbarright {
|
#editbarright {
|
||||||
float: right
|
float: right
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue