File tree Expand file tree Collapse file tree 3 files changed +13
-12
lines changed Expand file tree Collapse file tree 3 files changed +13
-12
lines changed Original file line number Diff line number Diff line change @@ -296,8 +296,12 @@ if ( !CKEDITOR.env ) {
296
296
env . cssClass += ' cke_browser_iequirks' ;
297
297
}
298
298
299
- if ( env . gecko && version < 10900 )
300
- env . cssClass += ' cke_browser_gecko18' ;
299
+ if ( env . gecko ) {
300
+ if ( version < 10900 )
301
+ env . cssClass += ' cke_browser_gecko18' ;
302
+ else if ( version <= 11000 )
303
+ env . cssClass += ' cke_browser_gecko19' ;
304
+ }
301
305
302
306
if ( env . air )
303
307
env . cssClass += ' cke_browser_air' ;
Original file line number Diff line number Diff line change @@ -62,9 +62,14 @@ Comments in this file will give more details about each of the above blocks.
62
62
-moz-box-shadow : 0 0 3px rgba (0 , 0 , 0 , .15 );
63
63
-webkit-box-shadow : 0 0 3px rgba (0 , 0 , 0 , .15 );
64
64
box-shadow : 0 0 3px rgba (0 , 0 , 0 , .15 );
65
+ }
65
66
66
- /* This one is required by Firefox 3.6. Without it,
67
- dialog tabs and resizer float outside of the dialog. */
67
+ /* This one is required by Firefox 3.6. Without it,
68
+ dialog tabs and resizer float outside of the dialog.
69
+ Although this rule doesn't seem to break anything on other
70
+ browsers, it doesn't work with broken jQueryUI - #9851. */
71
+ .cke_browser_gecko19 .cke_dialog_body
72
+ {
68
73
position : relative;
69
74
}
70
75
Original file line number Diff line number Diff line change @@ -13,14 +13,6 @@ This file contains styles to used by Internet Explorer 7 only.
13
13
/* Base it on dialog_ie.css, overriding it with styles defined in this file. */
14
14
@import url ("dialog_ie.css" );
15
15
16
- .cke_dialog_body
17
- {
18
- /* By default, a relative position is used.
19
- However it breaks IE7 and causes input flickering
20
- when hovering dialog footer. Reset to static to fix it. */
21
- position : static;
22
- }
23
-
24
16
.cke_dialog_title
25
17
{
26
18
/* gradient fix */
You can’t perform that action at this time.
0 commit comments