Legend:
- Unmodified
- Added
- Removed
-
plugins/dcCKEditor/js/ckeditor/skins/moono/dialog.css
r2741 r2962 1 1 /* 2 Copyright (c) 2003-201 3, CKSource - Frederico Knabben. All rights reserved.2 Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 3 For licensing, see LICENSE.md or http://ckeditor.com/license 4 4 */ … … 54 54 box-shadow: 0 0 3px rgba(0, 0, 0, .15); 55 55 } 56 /* This one is required by Firefox 3.6. Without it,57 dialog tabs and resizer float outside of the dialog.58 Although this rule doesn't seem to break anything on other59 browsers, it doesn't work with broken jQueryUI - #9851. */60 .cke_browser_gecko19 .cke_dialog_body61 {62 position: relative;63 }64 56 /* Due to our reset we have to recover the styles of some elements. */ 65 57 .cke_dialog strong … … 275 267 background-image: url(images/close.png); 276 268 background-repeat: no-repeat; 277 background-position: 0 0;269 background-position: 50%; 278 270 position: absolute; 279 271 cursor: pointer; … … 283 275 top: 5px; 284 276 z-index: 5; 285 } 286 .cke_hidpi .cke_dialog_close_button { 277 opacity: 0.8; 278 filter: alpha(opacity = 80); 279 } 280 .cke_dialog_close_button:hover 281 { 282 opacity: 1; 283 filter: alpha(opacity = 100); 284 } 285 .cke_hidpi .cke_dialog_close_button 286 { 287 287 background-image: url(images/hidpi/close.png); 288 288 background-size: 16px; … … 483 483 *display: inline; 484 484 *zoom: 1; 485 padding: 3px 0;485 padding: 4px 0; 486 486 margin: 0; 487 487 text-align: center; … … 508 508 span.cke_dialog_ui_button 509 509 { 510 padding: 0 1 2px;510 padding: 0 10px; 511 511 } 512 512 a.cke_dialog_ui_button:hover … … 560 560 font-size: 12px; 561 561 font-weight: bold; 562 line-height: 20px; 562 line-height: 18px; 563 padding: 0 12px; 563 564 } 564 565 /* Special class appended to the Ok button. */ … … 608 609 { 609 610 border-width: 2px; 610 padding: 2px 0;611 padding: 3px 0; 611 612 } 612 613 a.cke_dialog_ui_button_ok:focus, … … 641 642 select.cke_dialog_ui_input_select 642 643 { 643 height: 2 4px;644 line-height: 2 4px;644 height: 25px; 645 line-height: 25px; 645 646 background-color: #fff; 646 647 border: 1px solid #c9cccf; 647 648 border-top-color: #aeb3b9; 648 padding: 2px 6px;649 padding: 3px 3px 3px 6px; 649 650 outline: none; 650 651 -moz-border-radius: 3px;
Note: See TracChangeset
for help on using the changeset viewer.