[239] | 1 | /*
|
---|
| 2 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
|
---|
| 3 | For licensing, see LICENSE.html or http://ckeditor.com/license
|
---|
| 4 | */
|
---|
| 5 |
|
---|
| 6 | /* Restore the dialog visibility */
|
---|
| 7 | body .cke_dialog
|
---|
| 8 | {
|
---|
| 9 | visibility: visible;
|
---|
| 10 | }
|
---|
| 11 |
|
---|
| 12 | /* Force Gecko to consider table as positioned */
|
---|
| 13 | .cke_skin_office2003 table.cke_dialog.cke_browser_gecko
|
---|
| 14 | {
|
---|
| 15 | display:block;
|
---|
| 16 | }
|
---|
| 17 |
|
---|
| 18 | .cke_skin_office2003 .cke_dialog_body
|
---|
| 19 | {
|
---|
| 20 | margin-left: 16px;
|
---|
| 21 | margin-right: 16px;
|
---|
| 22 | margin-top: 2px;
|
---|
| 23 | margin-bottom: 20px;
|
---|
| 24 | z-index: 1;
|
---|
| 25 |
|
---|
| 26 | /* 'cke_dialog' element has been fixed positioned in all but IE6, while we
|
---|
| 27 | need it to be positioned to hold e.g. close button. */
|
---|
| 28 | position: relative;
|
---|
| 29 | _position: static;
|
---|
| 30 | }
|
---|
| 31 |
|
---|
| 32 | .cke_skin_office2003 .cke_dialog_tl,
|
---|
| 33 | .cke_skin_office2003 .cke_dialog_tr,
|
---|
| 34 | .cke_skin_office2003 .cke_dialog_tc,
|
---|
| 35 | .cke_skin_office2003 .cke_dialog_bl,
|
---|
| 36 | .cke_skin_office2003 .cke_dialog_br,
|
---|
| 37 | .cke_skin_office2003 .cke_dialog_bc
|
---|
| 38 | {
|
---|
| 39 | background-image: url(images/sprites.png);
|
---|
| 40 | background-repeat: no-repeat;
|
---|
| 41 | position: absolute;
|
---|
| 42 |
|
---|
| 43 | /* IE6 does not support full color transparent PNG. */
|
---|
| 44 | _background-image: url(images/sprites_ie6.png);
|
---|
| 45 | /* Dialog corner parts require a negative z-index to avoid covering dialog body. (#4954) */
|
---|
| 46 | _z-index: -1;
|
---|
| 47 | }
|
---|
| 48 |
|
---|
| 49 | .cke_skin_office2003 .cke_dialog_tl
|
---|
| 50 | {
|
---|
| 51 | background-position: -16px -16px;
|
---|
| 52 | height: 16px;
|
---|
| 53 | width: 16px;
|
---|
| 54 | top: 0;
|
---|
| 55 | left: 0;
|
---|
| 56 | }
|
---|
| 57 |
|
---|
| 58 | .cke_skin_office2003 .cke_rtl .cke_dialog_tl
|
---|
| 59 | {
|
---|
| 60 | background-position: -16px -397px;
|
---|
| 61 | }
|
---|
| 62 |
|
---|
| 63 | .cke_skin_office2003 .cke_dialog_tr
|
---|
| 64 | {
|
---|
| 65 | background-position: -16px -76px;
|
---|
| 66 | height: 16px;
|
---|
| 67 | width: 16px;
|
---|
| 68 | top: 0;
|
---|
| 69 | right: 0;
|
---|
| 70 | }
|
---|
| 71 |
|
---|
| 72 | .cke_skin_office2003 .cke_rtl .cke_dialog_tr
|
---|
| 73 | {
|
---|
| 74 | background-position: -16px -457px;
|
---|
| 75 | }
|
---|
| 76 |
|
---|
| 77 | .cke_skin_office2003 .cke_dialog_tc
|
---|
| 78 | {
|
---|
| 79 | background-position: 0 -136px;
|
---|
| 80 | background-repeat: repeat-x;
|
---|
| 81 | height: 16px;
|
---|
| 82 | top: 0;
|
---|
| 83 | left: 16px;
|
---|
| 84 | right: 16px;
|
---|
| 85 | }
|
---|
| 86 |
|
---|
| 87 | .cke_skin_office2003 .cke_dialog_bl
|
---|
| 88 | {
|
---|
| 89 | background-position: -16px -196px;
|
---|
| 90 | height: 51px;
|
---|
| 91 | width: 30px;
|
---|
| 92 | bottom: 0;
|
---|
| 93 | left: 0;
|
---|
| 94 | }
|
---|
| 95 |
|
---|
| 96 | .cke_skin_office2003 .cke_rtl .cke_dialog_bl
|
---|
| 97 | {
|
---|
| 98 | background-position: -16px -517px;
|
---|
| 99 | }
|
---|
| 100 |
|
---|
| 101 | .cke_skin_office2003 .cke_dialog_br
|
---|
| 102 | {
|
---|
| 103 | background-position: -16px -263px;
|
---|
| 104 | height: 51px;
|
---|
| 105 | width: 30px;
|
---|
| 106 | bottom: 0;
|
---|
| 107 | right: 0;
|
---|
| 108 | }
|
---|
| 109 |
|
---|
| 110 | .cke_skin_office2003 .cke_rtl .cke_dialog_br
|
---|
| 111 | {
|
---|
| 112 | background-position: -16px -584px;
|
---|
| 113 | }
|
---|
| 114 |
|
---|
| 115 | .cke_skin_office2003 .cke_dialog_bc
|
---|
| 116 | {
|
---|
| 117 | background-position: 0 -330px;
|
---|
| 118 | background-repeat: repeat-x;
|
---|
| 119 | height: 51px;
|
---|
| 120 | bottom: 0;
|
---|
| 121 | left: 30px;
|
---|
| 122 | right: 30px;
|
---|
| 123 | }
|
---|
| 124 |
|
---|
| 125 | .cke_skin_office2003 .cke_dialog_ml,
|
---|
| 126 | .cke_skin_office2003 .cke_dialog_mr
|
---|
| 127 | {
|
---|
| 128 | background-image: url(images/dialog_sides.png);
|
---|
| 129 | background-repeat: repeat-y;
|
---|
| 130 | position: absolute;
|
---|
| 131 | width: 16px;
|
---|
| 132 | top: 16px;
|
---|
| 133 | bottom: 51px;
|
---|
| 134 |
|
---|
| 135 | /* IE6 does not support full color transparent PNG. */
|
---|
| 136 | _background-image: url(images/dialog_sides.gif);
|
---|
| 137 |
|
---|
| 138 | /* IE quirks gets confused when we have both top and bottom. */
|
---|
| 139 | _top: auto;
|
---|
| 140 | }
|
---|
| 141 |
|
---|
| 142 | .cke_skin_office2003 .cke_rtl .cke_dialog_ml,
|
---|
| 143 | .cke_skin_office2003 .cke_rtl .cke_dialog_mr
|
---|
| 144 | {
|
---|
| 145 | background-image: url(images/dialog_sides_rtl.png);
|
---|
| 146 |
|
---|
| 147 | /* IE6 does not support full color transparent PNG. */
|
---|
| 148 | _background-image: url(images/dialog_sides.gif);
|
---|
| 149 | }
|
---|
| 150 |
|
---|
| 151 | .cke_skin_office2003 .cke_dialog_ml
|
---|
| 152 | {
|
---|
| 153 | background-position: 0 0;
|
---|
| 154 | left: 0;
|
---|
| 155 | }
|
---|
| 156 |
|
---|
| 157 | .cke_skin_office2003 .cke_dialog_mr
|
---|
| 158 | {
|
---|
| 159 | background-position: -16px 0;
|
---|
| 160 | right: 0;
|
---|
| 161 | }
|
---|
| 162 |
|
---|
| 163 | .cke_skin_office2003 .cke_browser_iequirks .cke_dialog_ml,
|
---|
| 164 | .cke_skin_office2003 .cke_browser_iequirks .cke_dialog_mr
|
---|
| 165 | {
|
---|
| 166 | margin-top: 3px;
|
---|
| 167 | }
|
---|
| 168 |
|
---|
| 169 | .cke_skin_office2003 .cke_dialog_title
|
---|
| 170 | {
|
---|
| 171 | background-image: url(images/sprites.png);
|
---|
| 172 | _background-image: url(images/sprites_ie6.png);
|
---|
| 173 | background-position: 0 -678px;
|
---|
| 174 | background-repeat: repeat-x;
|
---|
| 175 | font-weight: bold;
|
---|
| 176 | font-size: 14pt;
|
---|
| 177 | color: #0E3460;
|
---|
| 178 | background-color: #8db1ff;
|
---|
| 179 | padding: 3px 10px 26px 10px;
|
---|
| 180 | cursor: move;
|
---|
| 181 | position: relative;
|
---|
| 182 | }
|
---|
| 183 |
|
---|
| 184 | .cke_skin_office2003 .cke_browser_ie.cke_rtl .cke_dialog_title
|
---|
| 185 | {
|
---|
| 186 | position: static;
|
---|
| 187 | }
|
---|
| 188 |
|
---|
| 189 | .cke_skin_office2003 .cke_dialog_contents
|
---|
| 190 | {
|
---|
| 191 | background-color: #f7f8fd;
|
---|
| 192 | border: #2b66c9 1px solid;
|
---|
| 193 | overflow: auto;
|
---|
| 194 | padding: 5px 10px;
|
---|
| 195 | }
|
---|
| 196 |
|
---|
| 197 | .cke_skin_office2003 .cke_dialog_footer
|
---|
| 198 | {
|
---|
| 199 | background-color: #8db1ff;
|
---|
| 200 | text-align: right;
|
---|
| 201 | }
|
---|
| 202 |
|
---|
| 203 | .cke_skin_office2003 .cke_rtl .cke_dialog_footer
|
---|
| 204 | {
|
---|
| 205 | text-align: left;
|
---|
| 206 | }
|
---|
| 207 |
|
---|
| 208 | .cke_skin_office2003 .cke_dialog_footer .cke_resizer {
|
---|
| 209 | margin-top: 21px;
|
---|
| 210 | }
|
---|
| 211 |
|
---|
| 212 | /* tabs */
|
---|
| 213 |
|
---|
| 214 | .cke_skin_office2003 .cke_dialog_tabs
|
---|
| 215 | {
|
---|
| 216 | height: 23px;
|
---|
| 217 | background-color: #8db1ff;
|
---|
| 218 | display: inline-block;
|
---|
| 219 | margin-left:10px;
|
---|
| 220 | margin-right:10px;
|
---|
| 221 | margin-top:-23px;
|
---|
| 222 | position: absolute;
|
---|
| 223 | z-index: 2;
|
---|
| 224 | }
|
---|
| 225 |
|
---|
| 226 | .cke_skin_office2003 .cke_rtl .cke_dialog_tabs
|
---|
| 227 | {
|
---|
| 228 | right: 10px;
|
---|
| 229 | }
|
---|
| 230 |
|
---|
| 231 | .cke_skin_office2003 a.cke_dialog_tab,
|
---|
| 232 | .cke_skin_office2003 a:link.cke_dialog_tab,
|
---|
| 233 | .cke_skin_office2003 a:active.cke_dialog_tab,
|
---|
| 234 | .cke_skin_office2003 a:hover.cke_dialog_tab,
|
---|
| 235 | .cke_skin_office2003 a:visited.cke_dialog_tab
|
---|
| 236 | {
|
---|
| 237 | color: #0E3460;
|
---|
| 238 | border-left: 1px solid #2b66c9;
|
---|
| 239 | border-right: 1px solid #2b66c9;
|
---|
| 240 | border-top: 1px solid #2b66c9;
|
---|
| 241 | height: 14px;
|
---|
| 242 | padding: 4px 5px;
|
---|
| 243 | display: inline-block;
|
---|
| 244 | cursor: pointer;
|
---|
| 245 | }
|
---|
| 246 |
|
---|
| 247 | /* Gecko 1.8 layout workaround. */
|
---|
| 248 | .cke_skin_office2003 .cke_browser_gecko18 a.cke_dialog_tab,
|
---|
| 249 | .cke_skin_office2003 .cke_browser_gecko18 a:link.cke_dialog_tab,
|
---|
| 250 | .cke_skin_office2003 .cke_browser_gecko18 a:active.cke_dialog_tab,
|
---|
| 251 | .cke_skin_office2003 .cke_browser_gecko18 a:hover.cke_dialog_tab,
|
---|
| 252 | .cke_skin_office2003 .cke_browser_gecko18 a:visited.cke_dialog_tab
|
---|
| 253 | {
|
---|
| 254 | display: inline;
|
---|
| 255 | position: relative;
|
---|
| 256 | top: 6px;
|
---|
| 257 | }
|
---|
| 258 |
|
---|
| 259 | .cke_skin_office2003 a:hover.cke_dialog_tab
|
---|
| 260 | {
|
---|
| 261 | background-color: #f7f8fd;
|
---|
| 262 | }
|
---|
| 263 | .cke_skin_office2003 .cke_hc a:hover.cke_dialog_tab
|
---|
| 264 | {
|
---|
| 265 | padding: 2px 3px !important;
|
---|
| 266 | border-width: 3px;
|
---|
| 267 | }
|
---|
| 268 |
|
---|
| 269 | .cke_skin_office2003 a.cke_dialog_tab_selected,
|
---|
| 270 | .cke_skin_office2003 a:link.cke_dialog_tab_selected,
|
---|
| 271 | .cke_skin_office2003 a:active.cke_dialog_tab_selected,
|
---|
| 272 | .cke_skin_office2003 a:hover.cke_dialog_tab_selected,
|
---|
| 273 | .cke_skin_office2003 a:visited.cke_dialog_tab_selected
|
---|
| 274 | {
|
---|
| 275 | border-bottom: 1px solid #f7f8fd;
|
---|
| 276 | background-color: #f7f8fd;
|
---|
| 277 | font-weight: bold;
|
---|
| 278 | cursor: default;
|
---|
| 279 | }
|
---|
| 280 | .cke_skin_office2003 .cke_hc a.cke_dialog_tab_selected,
|
---|
| 281 | .cke_skin_office2003 .cke_hc a:link.cke_dialog_tab_selected,
|
---|
| 282 | .cke_skin_office2003 .cke_hc a:active.cke_dialog_tab_selected,
|
---|
| 283 | .cke_skin_office2003 .cke_hc a:hover.cke_dialog_tab_selected,
|
---|
| 284 | .cke_skin_office2003 .cke_hc a:visited.cke_dialog_tab_selected
|
---|
| 285 | {
|
---|
| 286 | padding: 2px 3px !important;
|
---|
| 287 | border-width: 3px;
|
---|
| 288 | }
|
---|
| 289 |
|
---|
| 290 | /* single_page */
|
---|
| 291 |
|
---|
| 292 | .cke_skin_office2003 .cke_single_page .cke_dialog_tabs
|
---|
| 293 | {
|
---|
| 294 | display: none;
|
---|
| 295 | }
|
---|
| 296 |
|
---|
| 297 | .cke_skin_office2003 .cke_hc .cke_dialog_tabs a,
|
---|
| 298 | .cke_skin_office2003 .cke_hc .cke_dialog_footer a
|
---|
| 299 | {
|
---|
| 300 | opacity: 1.0;
|
---|
| 301 | filter: alpha(opacity=100);
|
---|
| 302 | border: 1px solid white;
|
---|
| 303 | }
|
---|
| 304 |
|
---|
| 305 | .cke_skin_office2003 .cke_single_page .cke_dialog_title
|
---|
| 306 | {
|
---|
| 307 | padding-bottom: 3px;
|
---|
| 308 | }
|
---|
| 309 |
|
---|
| 310 | .cke_skin_office2003 .cke_dialog_ui_vbox table,
|
---|
| 311 | .cke_skin_office2003 .cke_dialog_ui_hbox table
|
---|
| 312 | {
|
---|
| 313 | margin: auto;
|
---|
| 314 | }
|
---|
| 315 |
|
---|
| 316 | .cke_skin_office2003 .cke_dialog_ui_vbox_child
|
---|
| 317 | {
|
---|
| 318 | padding: 5px 0px;
|
---|
| 319 | }
|
---|
| 320 |
|
---|
| 321 | .cke_skin_office2003 input.cke_dialog_ui_input_text,
|
---|
| 322 | .cke_skin_office2003 input.cke_dialog_ui_input_password
|
---|
| 323 | {
|
---|
| 324 | background-color: white;
|
---|
| 325 | border: none;
|
---|
| 326 | padding: 0px;
|
---|
| 327 | width: 100%;
|
---|
| 328 | height: 14px;
|
---|
| 329 | }
|
---|
| 330 |
|
---|
| 331 | .cke_skin_office2003 div.cke_dialog_ui_input_text,
|
---|
| 332 | .cke_skin_office2003 div.cke_dialog_ui_input_password
|
---|
| 333 | {
|
---|
| 334 | background-color: white;
|
---|
| 335 | border: 1px solid #a0a0a0;
|
---|
| 336 | padding: 1px 0px;
|
---|
| 337 | /* IE6/Quirks - make sure the content does not overflow (#7321) */
|
---|
| 338 | _width: 99.9%;
|
---|
| 339 | }
|
---|
| 340 |
|
---|
| 341 | /* Opera/IE doesn't leave enough padding in text input for cursor to blink in RTL. (#6087) */
|
---|
| 342 | .cke_skin_office2003 .cke_browser_ie.cke_rtl input.cke_dialog_ui_input_text,
|
---|
| 343 | .cke_skin_office2003 .cke_browser_opera.cke_rtl input.cke_dialog_ui_input_text,
|
---|
| 344 | .cke_skin_office2003 .cke_browser_ie.cke_rtl input.cke_dialog_ui_input_password,
|
---|
| 345 | .cke_skin_office2003 .cke_browser_opera.cke_rtl input.cke_dialog_ui_input_password
|
---|
| 346 | {
|
---|
| 347 | padding-right: 2px
|
---|
| 348 | }
|
---|
| 349 |
|
---|
| 350 | /* Compensate the padding added above on container. */
|
---|
| 351 | .cke_skin_office2003 .cke_browser_ie.cke_rtl div.cke_dialog_ui_input_text,
|
---|
| 352 | .cke_skin_office2003 .cke_browser_opera.cke_rtl div.cke_dialog_ui_input_text,
|
---|
| 353 | .cke_skin_office2003 .cke_browser_ie.cke_rtl div.cke_dialog_ui_input_password,
|
---|
| 354 | .cke_skin_office2003 .cke_browser_opera.cke_rtl div.cke_dialog_ui_input_password
|
---|
| 355 | {
|
---|
| 356 | padding-left: 2px;
|
---|
| 357 | }
|
---|
| 358 |
|
---|
| 359 | .cke_skin_office2003 .cke_browser_ie.cke_rtl .cke_dialog_ui_vbox_child,
|
---|
| 360 | .cke_skin_office2003 .cke_browser_ie.cke_rtl .cke_dialog_ui_hbox_child,
|
---|
| 361 | .cke_skin_office2003 .cke_browser_ie.cke_rtl .cke_dialog_ui_hbox_first,
|
---|
| 362 | .cke_skin_office2003 .cke_browser_ie.cke_rtl .cke_dialog_ui_hbox_last
|
---|
| 363 | {
|
---|
| 364 | padding-right: 2px !important;
|
---|
| 365 | }
|
---|
| 366 |
|
---|
| 367 | .cke_skin_office2003 .cke_browser_ie.cke_rtl div.cke_dialog_ui_input_text {
|
---|
| 368 | padding-right: 1px;
|
---|
| 369 | }
|
---|
| 370 |
|
---|
| 371 | .cke_skin_office2003 .cke_browser_gecko.cke_hc div.cke_dialog_ui_input_text,
|
---|
| 372 | .cke_skin_office2003 .cke_browser_gecko.cke_hc div.cke_dialog_ui_input_password
|
---|
| 373 | {
|
---|
| 374 | border-width: 0px;
|
---|
| 375 | }
|
---|
| 376 |
|
---|
| 377 | .cke_skin_office2003 .cke_browser_gecko18.cke_hc div.cke_dialog_ui_input_text,
|
---|
| 378 | .cke_skin_office2003 .cke_browser_gecko18.cke_hc div.cke_dialog_ui_input_password
|
---|
| 379 | {
|
---|
| 380 | border-width: 1px;
|
---|
| 381 | }
|
---|
| 382 |
|
---|
| 383 | .cke_skin_office2003 textarea.cke_dialog_ui_input_textarea
|
---|
| 384 | {
|
---|
| 385 | background-color: white;
|
---|
| 386 | border: none;
|
---|
| 387 | padding: 0px;
|
---|
| 388 | width: 100%;
|
---|
| 389 | /*
|
---|
| 390 | * IE6 BUG: Scrollbars in textareas can overflow even if the outer DIV is set to overflow:hidden.
|
---|
| 391 | * So leave 1% width for the scrollbar. In most situations the 1% isn't noticeable by users.
|
---|
| 392 | */
|
---|
| 393 | _width: 99%;
|
---|
| 394 | overflow: auto;
|
---|
| 395 | resize: none;
|
---|
| 396 | }
|
---|
| 397 |
|
---|
| 398 | .cke_skin_office2003 div.cke_dialog_ui_input_textarea
|
---|
| 399 | {
|
---|
| 400 | background-color: white;
|
---|
| 401 | border: 1px solid #a0a0a0;
|
---|
| 402 | padding: 1px 0px;
|
---|
| 403 | }
|
---|
| 404 |
|
---|
| 405 | /* RTL + IE6: Input overflows dialog element. (#7321) */
|
---|
| 406 | .cke_skin_office2003 .cke_rtl .cke_dialog_ui_labeled_content
|
---|
| 407 | {
|
---|
| 408 | _width: 95%;
|
---|
| 409 | }
|
---|
| 410 |
|
---|
| 411 | .cke_skin_office2003 div.cke_disabled .cke_dialog_ui_labeled_content *
|
---|
| 412 | {
|
---|
| 413 | background-color : #a0a0a0;
|
---|
| 414 | cursor : default;
|
---|
| 415 | }
|
---|
| 416 |
|
---|
| 417 | .cke_skin_office2003 .cke_dialog_ui_hbox
|
---|
| 418 | {
|
---|
| 419 | width: 100%;
|
---|
| 420 | }
|
---|
| 421 |
|
---|
| 422 | .cke_skin_office2003 .cke_dialog_ui_hbox_first,
|
---|
| 423 | .cke_skin_office2003 .cke_dialog_ui_hbox_child,
|
---|
| 424 | .cke_skin_office2003 .cke_dialog_ui_hbox_last
|
---|
| 425 | {
|
---|
| 426 | vertical-align: top;
|
---|
| 427 | }
|
---|
| 428 |
|
---|
| 429 | .cke_skin_office2003 .cke_ltr .cke_dialog_ui_hbox_first,
|
---|
| 430 | .cke_skin_office2003 .cke_ltr .cke_dialog_ui_hbox_child
|
---|
| 431 | {
|
---|
| 432 | padding-right: 10px;
|
---|
| 433 | }
|
---|
| 434 |
|
---|
| 435 | .cke_skin_office2003 .cke_rtl .cke_dialog_ui_hbox_first,
|
---|
| 436 | .cke_skin_office2003 .cke_rtl .cke_dialog_ui_hbox_child
|
---|
| 437 | {
|
---|
| 438 | padding-left: 10px;
|
---|
| 439 | }
|
---|
| 440 |
|
---|
| 441 | /* button */
|
---|
| 442 |
|
---|
| 443 | .cke_skin_office2003 a.cke_dialog_ui_button
|
---|
| 444 | {
|
---|
| 445 | border-collapse: separate;
|
---|
| 446 | cursor: default;
|
---|
| 447 | }
|
---|
| 448 |
|
---|
| 449 | .cke_skin_office2003 a.cke_dialog_ui_button_ok span,
|
---|
| 450 | .cke_skin_office2003 a.cke_dialog_ui_button_cancel span
|
---|
| 451 | {
|
---|
| 452 | width:60px;
|
---|
| 453 | }
|
---|
| 454 |
|
---|
| 455 | .cke_skin_office2003 span.cke_dialog_ui_button
|
---|
| 456 | {
|
---|
| 457 | background-image: url(images/sprites.png);
|
---|
| 458 | _background-image: url(images/sprites_ie6.png);
|
---|
| 459 | background-position: 0 -678px;
|
---|
| 460 | background-repeat: repeat-x;
|
---|
| 461 | border: #0E3460 1px solid;
|
---|
| 462 | padding: 2px 10px;
|
---|
| 463 | text-align: center;
|
---|
| 464 | color: #0E3460;
|
---|
| 465 | background-color: #8db1ff;
|
---|
| 466 | display: inline-block;
|
---|
| 467 | cursor: default;
|
---|
| 468 | }
|
---|
| 469 |
|
---|
| 470 | /* Gecko 1.8 does not support display: inline-block */
|
---|
| 471 | .cke_skin_office2003 .cke_browser_gecko18 .cke_dialog_footer_buttons span.cke_dialog_ui_button
|
---|
| 472 | {
|
---|
| 473 | display: block;
|
---|
| 474 | }
|
---|
| 475 |
|
---|
| 476 | .cke_skin_office2003 a.cke_dialog_ui_button span.cke_disabled
|
---|
| 477 | {
|
---|
| 478 | border: #898980 1px solid;
|
---|
| 479 | color: #5e5e55;
|
---|
| 480 | background-color: #c5c5b3;
|
---|
| 481 | }
|
---|
| 482 |
|
---|
| 483 | .cke_skin_office2003 a:focus span.cke_dialog_ui_button,
|
---|
| 484 | .cke_skin_office2003 a:active span.cke_dialog_ui_button
|
---|
| 485 | {
|
---|
| 486 | background-color: #8db1ff;
|
---|
| 487 | }
|
---|
| 488 | .cke_skin_office2003 .cke_hc a:focus span.cke_dialog_ui_button,
|
---|
| 489 | .cke_skin_office2003 .cke_hc a:active span.cke_dialog_ui_button
|
---|
| 490 | {
|
---|
| 491 | border-width: 2px;
|
---|
| 492 | }
|
---|
| 493 |
|
---|
| 494 | .cke_skin_office2003 .cke_dialog_footer_buttons
|
---|
| 495 | {
|
---|
| 496 | display: inline-table;
|
---|
| 497 | margin-right: 12px;
|
---|
| 498 | margin-left: 12px;
|
---|
| 499 | width: auto;
|
---|
| 500 | position: relative;
|
---|
| 501 | }
|
---|
| 502 |
|
---|
| 503 | /* Gecko 1.8 does not support for display: inline-table */
|
---|
| 504 | .cke_skin_office2003 .cke_browser_gecko18 .cke_dialog_footer_buttons
|
---|
| 505 | {
|
---|
| 506 | display: inline;
|
---|
| 507 | }
|
---|
| 508 |
|
---|
| 509 | .cke_skin_office2003 .cke_dialog_footer_buttons span.cke_dialog_ui_button
|
---|
| 510 | {
|
---|
| 511 | margin: 7px 0;
|
---|
| 512 | }
|
---|
| 513 |
|
---|
| 514 | .cke_skin_office2003 .cke_browser_ie7 .cke_dialog_footer_buttons
|
---|
| 515 | {
|
---|
| 516 | position: static;
|
---|
| 517 | }
|
---|
| 518 |
|
---|
| 519 | .cke_skin_office2003 strong
|
---|
| 520 | {
|
---|
| 521 | font-weight: bold;
|
---|
| 522 | }
|
---|
| 523 |
|
---|
| 524 | /* close_button */
|
---|
| 525 |
|
---|
| 526 | .cke_skin_office2003 a.cke_dialog_close_button,
|
---|
| 527 | .cke_skin_office2003 a:hover.cke_dialog_close_button,
|
---|
| 528 | .cke_skin_office2003 .cke_browser_ie6 a.cke_dialog_close_button,
|
---|
| 529 | .cke_skin_office2003 .cke_browser_ie6 a:hover.cke_dialog_close_button
|
---|
| 530 | {
|
---|
| 531 | background-image: url(images/sprites.png);
|
---|
| 532 | background-repeat: no-repeat;
|
---|
| 533 | background-position: -20px -655px;
|
---|
| 534 | position: absolute;
|
---|
| 535 | cursor: pointer;
|
---|
| 536 | text-align: center;
|
---|
| 537 | height: 21px;
|
---|
| 538 | width: 21px;
|
---|
| 539 | top: 4px;
|
---|
| 540 |
|
---|
| 541 | /* IE6 does not support full color transparent PNG. */
|
---|
| 542 | _background-image: url(images/sprites_ie6.png);
|
---|
| 543 | }
|
---|
| 544 |
|
---|
| 545 | .cke_skin_office2003 a.cke_dialog_close_button span
|
---|
| 546 | {
|
---|
| 547 | display: none;
|
---|
| 548 | }
|
---|
| 549 |
|
---|
| 550 | .cke_skin_office2003 .cke_ltr a.cke_dialog_close_button
|
---|
| 551 | {
|
---|
| 552 | right: 10px;
|
---|
| 553 | _right: 22px;
|
---|
| 554 | }
|
---|
| 555 |
|
---|
| 556 | .cke_skin_office2003 .cke_rtl a.cke_dialog_close_button,
|
---|
| 557 | .cke_skin_office2003 .cke_rtl a:hover.cke_dialog_close_button
|
---|
| 558 | {
|
---|
| 559 | left: 10px;
|
---|
| 560 | _left: 16px;
|
---|
| 561 | _top: 6px;
|
---|
| 562 | }
|
---|
| 563 |
|
---|
| 564 | .cke_skin_office2003 .cke_browser_ie6.cke_rtl a.cke_dialog_close_button,
|
---|
| 565 | .cke_skin_office2003 .cke_browser_ie6.cke_rtl a:hover.cke_dialog_close_button
|
---|
| 566 | {
|
---|
| 567 | position: relative;
|
---|
| 568 | float: left;
|
---|
| 569 | margin-top: -55px;
|
---|
| 570 | margin-left: -7px;
|
---|
| 571 | }
|
---|
| 572 |
|
---|
| 573 | .cke_skin_office2003 .cke_browser_iequirks.cke_rtl.cke_single_page a.cke_dialog_close_button,
|
---|
| 574 | .cke_skin_office2003 .cke_browser_iequirks.cke_rtl.cke_single_page a:hover.cke_dialog_close_button
|
---|
| 575 | {
|
---|
| 576 | margin-top: -32px;
|
---|
| 577 | }
|
---|
| 578 |
|
---|
| 579 | .cke_skin_office2003 .cke_browser_iequirks.cke_ltr a.cke_dialog_close_button,
|
---|
| 580 | .cke_skin_office2003 .cke_browser_iequirks.cke_ltr a:hover.cke_dialog_close_button
|
---|
| 581 | {
|
---|
| 582 | margin-top: 0;
|
---|
| 583 | }
|
---|
| 584 |
|
---|
| 585 | .cke_skin_office2003 .cke_dialog_ui_input_select
|
---|
| 586 | {
|
---|
| 587 | border: 1px solid #a0a0a0;
|
---|
| 588 | background-color: white;
|
---|
| 589 | }
|
---|
| 590 |
|
---|
| 591 | .cke_skin_office2003 .cke_dialog_ui_input_file
|
---|
| 592 | {
|
---|
| 593 | width: 100%;
|
---|
| 594 | height: 25px;
|
---|
| 595 | }
|
---|
| 596 |
|
---|
| 597 | /*
|
---|
| 598 | * Some utility CSS classes for dialog authors.
|
---|
| 599 | */
|
---|
| 600 | .cke_skin_office2003 .cke_dialog .cke_dark_background
|
---|
| 601 | {
|
---|
| 602 | background-color: #eaead1;
|
---|
| 603 | }
|
---|
| 604 |
|
---|
| 605 | .cke_skin_office2003 .cke_dialog .cke_hand
|
---|
| 606 | {
|
---|
| 607 | cursor: pointer;
|
---|
| 608 | }
|
---|
| 609 |
|
---|
| 610 | .cke_skin_office2003 .cke_dialog .cke_centered
|
---|
| 611 | {
|
---|
| 612 | text-align: center;
|
---|
| 613 | }
|
---|
| 614 |
|
---|
| 615 | .cke_skin_office2003 .cke_dialog a.cke_btn_reset
|
---|
| 616 | {
|
---|
| 617 | float: right;
|
---|
| 618 | background-position: 0 -32px;
|
---|
| 619 | background-image: url(images/mini.gif);
|
---|
| 620 | width: 16px;
|
---|
| 621 | height: 16px;
|
---|
| 622 | background-repeat: no-repeat;
|
---|
| 623 | border: 1px none;
|
---|
| 624 | font-size: 1px;
|
---|
| 625 | }
|
---|
| 626 |
|
---|
| 627 | .cke_skin_office2003 .cke_rtl .cke_dialog a.cke_btn_reset
|
---|
| 628 | {
|
---|
| 629 | float: left;
|
---|
| 630 | }
|
---|
| 631 |
|
---|
| 632 | .cke_skin_office2003 .cke_dialog a.cke_btn_locked,
|
---|
| 633 | .cke_skin_office2003 .cke_dialog a.cke_btn_unlocked
|
---|
| 634 | {
|
---|
| 635 | float: left;
|
---|
| 636 | background-position: 0 0;
|
---|
| 637 | background-image: url(images/mini.gif);
|
---|
| 638 | width: 16px;
|
---|
| 639 | height: 16px;
|
---|
| 640 | background-repeat: no-repeat;
|
---|
| 641 | border: none 1px;
|
---|
| 642 | font-size: 1px;
|
---|
| 643 | }
|
---|
| 644 | .cke_skin_office2003 .cke_dialog a.cke_btn_locked .cke_icon
|
---|
| 645 | {
|
---|
| 646 | display:none;
|
---|
| 647 | }
|
---|
| 648 |
|
---|
| 649 | .cke_skin_office2003 .cke_rtl .cke_dialog a.cke_btn_locked,
|
---|
| 650 | .cke_skin_office2003 .cke_rtl .cke_dialog a.cke_btn_unlocked
|
---|
| 651 | {
|
---|
| 652 | float: right;
|
---|
| 653 | }
|
---|
| 654 |
|
---|
| 655 | .cke_skin_office2003 .cke_dialog a.cke_btn_unlocked
|
---|
| 656 | {
|
---|
| 657 | background-position: 0 -16px;
|
---|
| 658 | background-image: url(images/mini.gif);
|
---|
| 659 | }
|
---|
| 660 |
|
---|
| 661 | .cke_skin_office2003 .cke_dialog .cke_btn_over
|
---|
| 662 | {
|
---|
| 663 | border: outset 1px;
|
---|
| 664 | cursor: pointer;
|
---|
| 665 | }
|
---|
| 666 |
|
---|
| 667 | .cke_skin_office2003 .cke_dialog .ImagePreviewBox
|
---|
| 668 | {
|
---|
| 669 | border : 2px ridge black;
|
---|
| 670 | overflow : scroll;
|
---|
| 671 | height : 210px;
|
---|
| 672 | width : 230px;
|
---|
| 673 | padding : 2px;
|
---|
| 674 | background-color : white;
|
---|
| 675 | }
|
---|
| 676 |
|
---|
| 677 | .cke_skin_office2003 .cke_dialog .ImagePreviewBox table td {
|
---|
| 678 | white-space: normal;
|
---|
| 679 | }
|
---|
| 680 |
|
---|
| 681 | /* Fix iframedialog's height doesn't stretch to 100% #4863.*/
|
---|
| 682 | .cke_skin_office2003 .cke_browser_iequirks .cke_dialog_page_contents
|
---|
| 683 | {
|
---|
| 684 | _position: absolute;
|
---|
| 685 | }
|
---|
| 686 |
|
---|
| 687 | .cke_skin_office2003 .cke_dialog .ImagePreviewLoader
|
---|
| 688 | {
|
---|
| 689 | position: absolute;
|
---|
| 690 | white-space : normal;
|
---|
| 691 | overflow : hidden;
|
---|
| 692 | height : 160px;
|
---|
| 693 | width : 230px;
|
---|
| 694 | margin : 2px;
|
---|
| 695 | padding : 2px;
|
---|
| 696 | opacity : 0.9;
|
---|
| 697 | filter : alpha(opacity=90);
|
---|
| 698 |
|
---|
| 699 | background-color : #e4e4e4;
|
---|
| 700 | }
|
---|
| 701 |
|
---|
| 702 | .cke_skin_office2003 .cke_dialog .FlashPreviewBox
|
---|
| 703 | {
|
---|
| 704 | white-space : normal;
|
---|
| 705 | border : 2px ridge black;
|
---|
| 706 | overflow : auto;
|
---|
| 707 | height : 160px;
|
---|
| 708 | width : 390px;
|
---|
| 709 | padding : 2px;
|
---|
| 710 | background-color : white;
|
---|
| 711 | }
|
---|
| 712 |
|
---|
| 713 | .cke_skin_office2003 .cke_dialog .cke_pastetext
|
---|
| 714 | {
|
---|
| 715 | width: 346px;
|
---|
| 716 | height: 170px;
|
---|
| 717 | }
|
---|
| 718 |
|
---|
| 719 | .cke_skin_office2003 .cke_dialog .cke_pastetext textarea
|
---|
| 720 | {
|
---|
| 721 | width: 340px;
|
---|
| 722 | height: 170px;
|
---|
| 723 | resize: none;
|
---|
| 724 | }
|
---|
| 725 |
|
---|
| 726 | .cke_skin_office2003 .cke_dialog iframe.cke_pasteframe
|
---|
| 727 | {
|
---|
| 728 | width: 346px;
|
---|
| 729 | height: 130px;
|
---|
| 730 | background-color: white;
|
---|
| 731 | border: 1px solid black;
|
---|
| 732 | }
|
---|
| 733 |
|
---|
| 734 | .cke_skin_office2003 .cke_dialog .cke_dark_background
|
---|
| 735 | {
|
---|
| 736 | text-align : center;
|
---|
| 737 | background-color: #eaead1;
|
---|
| 738 | font-size : 14px;
|
---|
| 739 | }
|
---|
| 740 |
|
---|
| 741 | .cke_skin_office2003 .cke_dialog .cke_light_background
|
---|
| 742 | {
|
---|
| 743 | text-align : center;
|
---|
| 744 | background-color: #ffffbe;
|
---|
| 745 | }
|
---|
| 746 |
|
---|
| 747 | .cke_skin_office2003 .cke_dialog .cke_hand
|
---|
| 748 | {
|
---|
| 749 | cursor: pointer;
|
---|
| 750 | }
|
---|
| 751 |
|
---|
| 752 | .cke_skin_office2003 .cke_disabled
|
---|
| 753 | {
|
---|
| 754 | color: #a0a0a0;
|
---|
| 755 | }
|
---|
| 756 |
|
---|
| 757 | /* High Contrast Mode */
|
---|
| 758 | .cke_skin_office2003 .cke_hc .cke_dialog_title,
|
---|
| 759 | .cke_skin_office2003 .cke_hc .cke_dialog_tabs,
|
---|
| 760 | .cke_skin_office2003 .cke_hc .cke_dialog_contents,
|
---|
| 761 | .cke_skin_office2003 .cke_hc .cke_dialog_footer
|
---|
| 762 | {
|
---|
| 763 | border-left: 1px solid;
|
---|
| 764 | border-right: 1px solid;
|
---|
| 765 | }
|
---|
| 766 |
|
---|
| 767 | .cke_skin_office2003 .cke_hc .cke_dialog_title
|
---|
| 768 | {
|
---|
| 769 | border-top: 1px solid;
|
---|
| 770 | }
|
---|
| 771 |
|
---|
| 772 | .cke_skin_office2003 .cke_hc .cke_dialog_footer
|
---|
| 773 | {
|
---|
| 774 | border-bottom: 1px solid;
|
---|
| 775 | }
|
---|
| 776 |
|
---|
| 777 | .cke_skin_office2003 .cke_hc .cke_dialog_close_button span
|
---|
| 778 | {
|
---|
| 779 | display: inline;
|
---|
| 780 | cursor: pointer;
|
---|
| 781 | font-weight: bold;
|
---|
| 782 | position: relative;
|
---|
| 783 | top: 3px;
|
---|
| 784 | }
|
---|
| 785 |
|
---|
| 786 | .cke_skin_office2003 .cke_dialog_body .cke_label
|
---|
| 787 | {
|
---|
| 788 | display: none;
|
---|
| 789 | }
|
---|
| 790 |
|
---|
| 791 | .cke_skin_office2003 .cke_dialog_body label.cke_required
|
---|
| 792 | {
|
---|
| 793 | font-weight: bold;
|
---|
| 794 | }
|
---|
| 795 |
|
---|
| 796 | .cke_skin_office2003 .cke_hc .cke_dialog_body .cke_label
|
---|
| 797 | {
|
---|
| 798 | display: inline;
|
---|
| 799 | cursor: inherit;
|
---|
| 800 | }
|
---|
| 801 |
|
---|
| 802 | .cke_skin_office2003 .cke_hc a.cke_btn_locked,
|
---|
| 803 | .cke_skin_office2003 .cke_hc a.cke_btn_unlocked,
|
---|
| 804 | .cke_skin_office2003 .cke_hc a.cke_btn_reset
|
---|
| 805 | {
|
---|
| 806 | border-style: solid;
|
---|
| 807 | float: left;
|
---|
| 808 | width: auto;
|
---|
| 809 | height: auto;
|
---|
| 810 | padding: 0 2px;
|
---|
| 811 | }
|
---|
| 812 | .cke_skin_office2003 .cke_hc a.cke_btn_locked .cke_icon
|
---|
| 813 | {
|
---|
| 814 | display:inline;
|
---|
| 815 | }
|
---|
| 816 |
|
---|
| 817 | .cke_skin_office2003 .cke_rtl.cke_hc a.cke_btn_locked,
|
---|
| 818 | .cke_skin_office2003 .cke_rtl.cke_hc a.cke_btn_unlocked,
|
---|
| 819 | .cke_skin_office2003 .cke_rtl.cke_hc a.cke_btn_reset
|
---|
| 820 | {
|
---|
| 821 | float: right;
|
---|
| 822 | }
|
---|
| 823 |
|
---|
| 824 | /**
|
---|
| 825 | * Styles specific to "cellProperties" dialog.
|
---|
| 826 | */
|
---|
| 827 |
|
---|
| 828 | .cke_skin_office2003 .cke_dialog_contents a.colorChooser
|
---|
| 829 | {
|
---|
| 830 | display:block;
|
---|
| 831 | margin-top:12px;
|
---|
| 832 | margin-left: 10px;
|
---|
| 833 | width: 40px;
|
---|
| 834 | }
|
---|
| 835 |
|
---|
| 836 | .cke_skin_office2003 .cke_dialog_contents a.colorChooser .cke_dialog_ui_button
|
---|
| 837 | {
|
---|
| 838 | width:100%;
|
---|
| 839 | }
|
---|
| 840 |
|
---|
| 841 | .cke_skin_office2003 .cke_rtl .cke_dialog_contents a.colorChooser
|
---|
| 842 | {
|
---|
| 843 | margin-right: 10px;
|
---|
| 844 | }
|
---|
| 845 |
|
---|
| 846 | /* Compensate focus outline for some input elements. (#6200) */
|
---|
| 847 | .cke_skin_office2003 .cke_browser_gecko .cke_dialog_ui_checkbox_input:focus,
|
---|
| 848 | .cke_skin_office2003 .cke_browser_gecko .cke_dialog_ui_radio_input:focus,
|
---|
| 849 | .cke_skin_office2003 .cke_browser_opera .cke_dialog_ui_checkbox_input:focus,
|
---|
| 850 | .cke_skin_office2003 .cke_browser_opera .cke_dialog_ui_radio_input:focus,
|
---|
| 851 | .cke_skin_office2003 .cke_browser_gecko .cke_dialog_ui_input_select:focus,
|
---|
| 852 | .cke_skin_office2003 .cke_browser_gecko .cke_btn_over,
|
---|
| 853 | .cke_skin_office2003 .cke_browser_opera .cke_btn_over,
|
---|
| 854 | .cke_skin_office2003 .cke_browser_ie .cke_btn_over
|
---|
| 855 | {
|
---|
| 856 | outline: 1px dotted #696969;
|
---|
| 857 | }
|
---|
| 858 |
|
---|
| 859 | /* IE<8 instead doesn't support CSS outline property, emulated with dotted border. */
|
---|
| 860 |
|
---|
| 861 | /* Predefined border to avoid visual size change impact. */
|
---|
| 862 | .cke_skin_office2003 .cke_browser_ie .cke_dialog_ui_checkbox_input,
|
---|
| 863 | .cke_skin_office2003 .cke_browser_ie .cke_dialog_ui_ratio_input,
|
---|
| 864 | .cke_skin_office2003 .cke_browser_ie .cke_btn_reset,
|
---|
| 865 | .cke_skin_office2003 .cke_browser_ie .cke_btn_locked,
|
---|
| 866 | .cke_skin_office2003 .cke_browser_ie .cke_btn_unlocked
|
---|
| 867 | {
|
---|
| 868 | *border: 1px solid transparent !important;
|
---|
| 869 | /* Emulating border-color: transparent in IE6.*/
|
---|
| 870 | /* Emulating border-color: transparent in IE6.*/
|
---|
| 871 | -border: 1px solid red !important;
|
---|
| 872 | -filter: chroma(color=red);
|
---|
| 873 | }
|
---|
| 874 |
|
---|
| 875 | .cke_skin_office2003 .cke_browser_ie .cke_dialog_ui_focused,
|
---|
| 876 | .cke_skin_office2003 .cke_browser_ie .cke_btn_over
|
---|
| 877 | {
|
---|
| 878 | *border: 1px dotted #696969 !important;
|
---|
| 879 | }
|
---|
| 880 |
|
---|
| 881 | .cke_skin_office2003 .cke_iframe_shim
|
---|
| 882 | {
|
---|
| 883 | display:block;
|
---|
| 884 | position:absolute;
|
---|
| 885 | top:0;
|
---|
| 886 | left:0;
|
---|
| 887 | z-index:-1;
|
---|
| 888 | filter:alpha(opacity=0);
|
---|
| 889 | width:100%;
|
---|
| 890 | height:100%;
|
---|
| 891 | }
|
---|