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