68 lines
1.2 KiB
CSS
68 lines
1.2 KiB
CSS
.colorpicker {
|
|
width: 211px;
|
|
height: 176px;
|
|
overflow: hidden;
|
|
position: absolute;
|
|
background: url(images/custom_background.png);
|
|
display: none;
|
|
}
|
|
.colorpicker_color {
|
|
width: 150px;
|
|
height: 150px;
|
|
left: 14px;
|
|
top: 13px;
|
|
position: absolute;
|
|
background: #f00;
|
|
overflow: hidden;
|
|
cursor: crosshair;
|
|
}
|
|
.colorpicker_color div {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 150px;
|
|
height: 150px;
|
|
background: url(images/colorpicker_overlay.png);
|
|
}
|
|
.colorpicker_color div div {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 11px;
|
|
height: 11px;
|
|
overflow: hidden;
|
|
background: url(images/colorpicker_select.gif);
|
|
margin: -5px 0 0 -5px;
|
|
}
|
|
.colorpicker_hue {
|
|
position: absolute;
|
|
top: 13px;
|
|
left: 171px;
|
|
width: 35px;
|
|
height: 150px;
|
|
cursor: n-resize;
|
|
}
|
|
.colorpicker_hue div {
|
|
position: absolute;
|
|
width: 35px;
|
|
height: 9px;
|
|
overflow: hidden;
|
|
background: url(images/custom_indic.gif) left top;
|
|
margin: -4px 0 0 0;
|
|
left: 0px;
|
|
}
|
|
.colorpicker_new_color {
|
|
position: absolute;
|
|
width: 60px;
|
|
height: 30px;
|
|
left: 213px;
|
|
top: 13px;
|
|
background: #f00;
|
|
}
|
|
.colorpicker_new_color,
|
|
.colorpicker_current_color,
|
|
.colorpicker_hex,
|
|
.colorpicker_field,
|
|
.colorpicker_submit {
|
|
display: none;
|
|
} |