-
Notifications
You must be signed in to change notification settings - Fork 1
/
editor_ie8.css
90 lines (76 loc) · 1.51 KB
/
editor_ie8.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
/*
editor_ie8.css
===============
This file contains styles to used by Internet Explorer 8 only.
*/
/* Base it on editor_ie.css, overriding it with styles defined in this file. */
@import url("editor_ie.css");
.cke_toolbox_collapser .cke_arrow
{
border-width:4px;
}
.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow
{
border-width:3px;
}
.cke_toolbox_collapser .cke_arrow
{
margin-top: 0;
}
/* Fix button group separators. Put separator after .cke_toolbar_end
element instead of last button in a group. */
.cke_toolbar
{
position: relative;
}
.cke_rtl .cke_toolbar_end
{
right: auto;
left: 0;
}
.cke_toolbar_end:after
{
content: "";
position: absolute;
height: 18px;
width: 0;
border-right: 1px solid #bcbcbc;
margin-top: 4px;
top: 1px;
right: 2px;
}
.cke_rtl .cke_toolbar_end:after
{
right: auto;
left: 2px;
}
.cke_hc .cke_toolbar_end:after {
top: 2px;
right: 5px;
border-color: #000;
}
.cke_hc.cke_rtl .cke_toolbar_end:after {
right: auto;
left: 5px;
}
/* Do not show after combo and in the last group. */
.cke_combo + .cke_toolbar_end:after,
.cke_toolbar.cke_toolbar_last .cke_toolbar_end:after
{
content: none;
border: none;
}
/* Adjust margins when button is after combo in the same group. */
.cke_combo + .cke_toolgroup + .cke_toolbar_end:after
{
right: 0;
}
.cke_rtl .cke_combo + .cke_toolgroup + .cke_toolbar_end:after
{
right: auto;
left: 0;
}