12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #picker{
- z-index: 99999999;
- }
- .farbtastic {
- position: absolute;
- background: #222;
- border: 1px solid #444;
- border-top: 0;
- top: 1.6em;
- right: 0;
- z-index: 99999999;
- }
- .farbtastic * {
- position: absolute;
- cursor: crosshair;
- }
- .farbtastic, .farbtastic .wheel {
- width: 195px;
- height: 195px;
- }
- .farbtastic .color, .farbtastic .overlay {
- top: 47px;
- left: 47px;
- width: 101px;
- height: 101px;
- }
- .farbtastic .wheel {
- background: url(wheel.png) no-repeat;
- width: 195px;
- height: 195px;
- }
- .farbtastic .overlay {
- background: url(mask.png) no-repeat;
- }
- .farbtastic .marker {
- width: 17px;
- height: 17px;
- margin: -8px 0 0 -8px;
- overflow: hidden;
- background: url(colorpicker_select.gif) no-repeat;
- }
|