added range styling...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2013-11-28 15:46:28 +04:00
parent 14375d8fb2
commit ac1f126e17

View File

@ -27,6 +27,25 @@ div > span:first-child {
width: 100px;
}
/* range syling... */
input[type='range'] {
-webkit-appearance: none !important;
background: silver;
height: 4px;
border: solid 1px gray;
border-radius: 2px;
}
input[type='range']::-webkit-slider-thumb {
-webkit-appearance: none !important;
background: white;
height: 15px;
width: 15px;
border: solid 1px gray;
border-radius: 50%;
}
</style>
<script src="jquery.js"></script>
<script>