1 |
efrain |
1 |
/*
|
|
|
2 |
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
|
|
|
3 |
For licensing, see LICENSE.md or http://ckeditor.com/license
|
|
|
4 |
*/
|
|
|
5 |
|
|
|
6 |
/*
|
|
|
7 |
dialog_ie.css
|
|
|
8 |
===============
|
|
|
9 |
|
|
|
10 |
This file contains styles to used by all versions of Internet Explorer only.
|
|
|
11 |
*/
|
|
|
12 |
|
|
|
13 |
/* Base it on dialog.css, overriding it with styles defined in this file. */
|
|
|
14 |
@import "../../dialog/dialog";
|
|
|
15 |
|
|
|
16 |
/* IE doesn't leave enough padding in text input for cursor to blink in RTL. (#6087) */
|
|
|
17 |
.cke_rtl input.cke_dialog_ui_input_text,
|
|
|
18 |
.cke_rtl input.cke_dialog_ui_input_password
|
|
|
19 |
{
|
|
|
20 |
padding-right: 2px;
|
|
|
21 |
}
|
|
|
22 |
/* Compensate the padding added above on container. */
|
|
|
23 |
.cke_rtl div.cke_dialog_ui_input_text,
|
|
|
24 |
.cke_rtl div.cke_dialog_ui_input_password
|
|
|
25 |
{
|
|
|
26 |
padding-left: 2px;
|
|
|
27 |
}
|
|
|
28 |
.cke_rtl div.cke_dialog_ui_input_text {
|
|
|
29 |
padding-right: 1px;
|
|
|
30 |
}
|
|
|
31 |
|
|
|
32 |
.cke_rtl .cke_dialog_ui_vbox_child,
|
|
|
33 |
.cke_rtl .cke_dialog_ui_hbox_child,
|
|
|
34 |
.cke_rtl .cke_dialog_ui_hbox_first,
|
|
|
35 |
.cke_rtl .cke_dialog_ui_hbox_last
|
|
|
36 |
{
|
|
|
37 |
padding-right: 2px !important;
|
|
|
38 |
}
|
|
|
39 |
|
|
|
40 |
|
|
|
41 |
/* Disable filters for HC mode. */
|
|
|
42 |
.cke_hc .cke_dialog_title,
|
|
|
43 |
.cke_hc .cke_dialog_footer,
|
|
|
44 |
.cke_hc a.cke_dialog_tab,
|
|
|
45 |
.cke_hc a.cke_dialog_ui_button,
|
|
|
46 |
.cke_hc a.cke_dialog_ui_button:hover,
|
|
|
47 |
.cke_hc a.cke_dialog_ui_button_ok,
|
|
|
48 |
.cke_hc a.cke_dialog_ui_button_ok:hover
|
|
|
49 |
{
|
|
|
50 |
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
|
|
|
51 |
}
|
|
|
52 |
|
|
|
53 |
/* Remove border from dialog field wrappers in HC
|
|
|
54 |
to avoid double borders. */
|
|
|
55 |
.cke_hc div.cke_dialog_ui_input_text,
|
|
|
56 |
.cke_hc div.cke_dialog_ui_input_password,
|
|
|
57 |
.cke_hc div.cke_dialog_ui_input_textarea,
|
|
|
58 |
.cke_hc div.cke_dialog_ui_input_select,
|
|
|
59 |
.cke_hc div.cke_dialog_ui_input_file
|
|
|
60 |
{
|
|
|
61 |
border: 0;
|
|
|
62 |
}
|