| 1 |
input[type="radio"] { |
| 2 |
cursor: pointer; |
| 3 |
} |
| 4 |
|
| 5 |
/* WP lacks styling for type="number", so in here for now */ |
| 6 |
input[type="number"] { |
| 7 |
border-color: #DFDFDF; |
| 8 |
background-color: white; |
| 9 |
border-width: 1px; |
| 10 |
border-style: solid; |
| 11 |
-moz-border-radius: 3px; |
| 12 |
-khtml-border-radius: 3px; |
| 13 |
-webkit-border-radius: 3px; |
| 14 |
border-radius: 3px; |
| 15 |
-moz-box-sizing: border-box; |
| 16 |
-webkit-box-sizing: border-box; |
| 17 |
-ms-box-sizing: border-box; |
| 18 |
box-sizing: border-box; |
| 19 |
} |
| 20 |
|
| 21 |
.radio { |
| 22 |
margin: 0 5px 0 0; |
| 23 |
vertical-align: text-top; |
| 24 |
height: 25px; |
| 25 |
} |
| 26 |
|
| 27 |
.icon32 { |
| 28 |
background: url(images/pf-icon.png) center center no-repeat; |
| 29 |
} |
| 30 |
|
| 31 |
.printfriendly-text { |
| 32 |
margin-left: 3px; |
| 33 |
} |
| 34 |
|
| 35 |
#addmanual-help { |
| 36 |
display: none; |
| 37 |
} |
| 38 |
|
| 39 |
#colorSelector { |
| 40 |
position: relative; |
| 41 |
width: 36px; |
| 42 |
height: 36px; |
| 43 |
background: url(images/select2.png); |
| 44 |
display: inline-block; |
| 45 |
cursor: pointer; |
| 46 |
} |
| 47 |
|
| 48 |
#colorSelector div { |
| 49 |
position: absolute; |
| 50 |
top: 4px; |
| 51 |
left: 4px; |
| 52 |
width: 28px; |
| 53 |
height: 28px; |
| 54 |
background: url(images/select2.png) center; |
| 55 |
} |
| 56 |
|
| 57 |
.colorpicker { |
| 58 |
width: 356px; |
| 59 |
height: 176px; |
| 60 |
overflow: hidden; |
| 61 |
position: absolute; |
| 62 |
background: url(images/custom_background.png); |
| 63 |
font-family: Arial, Helvetica, sans-serif; |
| 64 |
display: none; |
| 65 |
} |
| 66 |
|
| 67 |
.colorpicker_color { |
| 68 |
width: 150px; |
| 69 |
height: 150px; |
| 70 |
left: 14px; |
| 71 |
top: 13px; |
| 72 |
position: absolute; |
| 73 |
background: #f00; |
| 74 |
overflow: hidden; |
| 75 |
cursor: crosshair; |
| 76 |
} |
| 77 |
|
| 78 |
.colorpicker_color div { |
| 79 |
position: absolute; |
| 80 |
top: 0; |
| 81 |
left: 0; |
| 82 |
width: 150px; |
| 83 |
height: 150px; |
| 84 |
background: url(images/colorpicker_overlay.png); |
| 85 |
} |
| 86 |
|
| 87 |
.colorpicker_color div div { |
| 88 |
position: absolute; |
| 89 |
top: 0; |
| 90 |
left: 0; |
| 91 |
width: 11px; |
| 92 |
height: 11px; |
| 93 |
overflow: hidden; |
| 94 |
background: url(images/colorpicker_select.gif); |
| 95 |
margin: -5px 0 0 -5px; |
| 96 |
} |
| 97 |
|
| 98 |
.colorpicker_hue { |
| 99 |
position: absolute; |
| 100 |
top: 13px; |
| 101 |
left: 171px; |
| 102 |
width: 35px; |
| 103 |
height: 150px; |
| 104 |
cursor: n-resize; |
| 105 |
} |
| 106 |
|
| 107 |
.colorpicker_hue div { |
| 108 |
position: absolute; |
| 109 |
width: 35px; |
| 110 |
height: 9px; |
| 111 |
overflow: hidden; |
| 112 |
background: url(images/custom_indic.gif) left top; |
| 113 |
margin: -4px 0 0 0; |
| 114 |
left: 0px; |
| 115 |
} |
| 116 |
|
| 117 |
.colorpicker_new_color { |
| 118 |
position: absolute; |
| 119 |
width: 60px; |
| 120 |
height: 30px; |
| 121 |
left: 213px; |
| 122 |
top: 13px; |
| 123 |
background: #f00; |
| 124 |
} |
| 125 |
|
| 126 |
.colorpicker_current_color { |
| 127 |
position: absolute; |
| 128 |
width: 60px; |
| 129 |
height: 30px; |
| 130 |
left: 283px; |
| 131 |
top: 13px; |
| 132 |
background: #f00; |
| 133 |
} |
| 134 |
|
| 135 |
.colorpicker input { |
| 136 |
background-color: transparent; |
| 137 |
border: 1px solid transparent !important; |
| 138 |
position: absolute; |
| 139 |
font-size: 10px; |
| 140 |
font-family: Arial, Helvetica, sans-serif; |
| 141 |
color: #778398; |
| 142 |
top: 4px; |
| 143 |
right: 11px; |
| 144 |
text-align: right; |
| 145 |
margin: 0; |
| 146 |
padding: 0 !important; |
| 147 |
height: 11px; |
| 148 |
line-height: 11px; |
| 149 |
outline: none; |
| 150 |
} |
| 151 |
|
| 152 |
.colorpicker_hex { |
| 153 |
position: absolute; |
| 154 |
width: 72px; |
| 155 |
height: 22px; |
| 156 |
background: url(images/custom_hex.png) top; |
| 157 |
left: 212px; |
| 158 |
top: 142px; |
| 159 |
} |
| 160 |
|
| 161 |
.colorpicker_hex input { |
| 162 |
right: 6px; |
| 163 |
} |
| 164 |
|
| 165 |
.colorpicker_field { |
| 166 |
height: 22px; |
| 167 |
width: 62px; |
| 168 |
background-position: top; |
| 169 |
position: absolute; |
| 170 |
} |
| 171 |
|
| 172 |
.colorpicker_field span { |
| 173 |
position: absolute; |
| 174 |
width: 12px; |
| 175 |
height: 22px; |
| 176 |
overflow: hidden; |
| 177 |
top: 0; |
| 178 |
right: 0; |
| 179 |
cursor: n-resize; |
| 180 |
} |
| 181 |
|
| 182 |
.colorpicker_rgb_r { |
| 183 |
background-image: url(images/custom_rgb_r.png); |
| 184 |
top: 52px; |
| 185 |
left: 212px; |
| 186 |
} |
| 187 |
|
| 188 |
.colorpicker_rgb_g { |
| 189 |
background-image: url(images/custom_rgb_g.png); |
| 190 |
top: 82px; |
| 191 |
left: 212px; |
| 192 |
} |
| 193 |
|
| 194 |
.colorpicker_rgb_b { |
| 195 |
background-image: url(images/custom_rgb_b.png); |
| 196 |
top: 112px; |
| 197 |
left: 212px; |
| 198 |
} |
| 199 |
|
| 200 |
.colorpicker_hsb_h, .colorpicker_hsb_s, .colorpicker_hsb_b { |
| 201 |
display: none; |
| 202 |
} |
| 203 |
|
| 204 |
.colorpicker_submit { |
| 205 |
position: absolute; |
| 206 |
width: 22px; |
| 207 |
height: 22px; |
| 208 |
background: url(images/custom_submit.png) top; |
| 209 |
left: 322px; |
| 210 |
top: 142px; |
| 211 |
overflow: hidden; |
| 212 |
} |
| 213 |
|
| 214 |
.colorpicker_focus { |
| 215 |
background-position: center; |
| 216 |
} |
| 217 |
|
| 218 |
.colorpicker_hex.colorpicker_focus { |
| 219 |
background-position: bottom; |
| 220 |
} |
| 221 |
|
| 222 |
.colorpicker_submit.colorpicker_focus { |
| 223 |
background-position: bottom; |
| 224 |
} |
| 225 |
|
| 226 |
.colorpicker_slider { |
| 227 |
background-position: bottom; |
| 228 |
} |
| 229 |
|
| 230 |
.clear { |
| 231 |
clear: both; |
| 232 |
} |