Moved farbtastic's stylesheet to use relative paths for its own images

This commit is contained in:
Sarven Capadisli 2010-01-18 11:12:05 +00:00
parent 940fc463c8
commit f92a9dad8c
1 changed files with 3 additions and 3 deletions

View File

@ -16,17 +16,17 @@
height: 101px; height: 101px;
} }
.farbtastic .wheel { .farbtastic .wheel {
background: url(../../../js/farbtastic/wheel.png) no-repeat; background: url(wheel.png) no-repeat;
width: 195px; width: 195px;
height: 195px; height: 195px;
} }
.farbtastic .overlay { .farbtastic .overlay {
background: url(../../../js/farbtastic/mask.png) no-repeat; background: url(mask.png) no-repeat;
} }
.farbtastic .marker { .farbtastic .marker {
width: 17px; width: 17px;
height: 17px; height: 17px;
margin: -8px 0 0 -8px; margin: -8px 0 0 -8px;
overflow: hidden; overflow: hidden;
background: url(../../../js/farbtastic/marker.png) no-repeat; background: url(marker.png) no-repeat;
} }