-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtoolbar.css
167 lines (158 loc) · 3.18 KB
/
toolbar.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
/*}
Common
{*/
sup, sub
{
position: relative;
top: -0.5em;
font-size: 75%;
font-size: 90%\9;
line-height: 0;
vertical-align: baseline;
}
sub
{
top: 0.1em;
}
/*}
Toolbars
{*/
#reformator_toolbar ins
{
text-decoration: none;
}
#reformator_toolbar .toolbar
{
display: inline-block;
white-space: nowrap;
margin: 0;
padding: 4px 8px 0 0;
}
/*}
Buttons
{*/
#reformator_toolbar .button
{
display: inline-block;
white-space: nowrap;
margin: 0 2px 4px 0;
padding: 1px 4px;
text-decoration: none;
color: #000;
border: 1px solid #999;
min-height: 20px;
border-radius: 4px ! important;
-moz-border-radius: 4px ! important;
-webkit-border-radius: 4px ! important;
-khtml-border-radius: 4px ! important;
}
#reformator_toolbar a:hover
{
color: #c30;
}
#reformator_toolbar .disabled
{
position: relative;
opacity: 0.3;
zoom: 1;
//background: #ffffff;
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=30) progid:DXImageTransform.Microsoft.Chroma(color=#ffffff);
}
#reformator_toolbar .disabled a
{
cursor: default! important;
}
#reformator_toolbar .disabled a:hover
{
color: #000;
}
#reformator_toolbar .active
{
border-color: #c30;
}
/*}
Icons
{*/
#reformator_toolbar .with_icon
{
position: relative;
z-index: 1;
padding-left: 20px ! important;
}
#reformator_toolbar .with_icon .icon
{
position: absolute;
z-index: 1;
top: 1.2em;
left: 2px;
margin: -14px 0 0 0;
}
#reformator_toolbar .icon
{
display: -moz-inline-box;
display: inline-block;
width: 16px;
height: 16px;
font-size: 13px;
line-height: 13px;
min-height: 0;
overflow: hidden;
}
#reformator_toolbar .icon ins
{
position: absolute;
top: 0;
width: 300px;
height: 48px;
background-image: url('icons.png');
background-repeat: no-repeat;
-background-image: none;
-filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='icons.png',method='crop');
}
#reformator_toolbar a:hover .icon ins
{
top: -16px;
}
#reformator_toolbar .disabled .icon ins
{
top: 0! important;
background-image: url('icons.png');
-filter: none;
}
#reformator_toolbar .options_icon ins {left: 0;}
#reformator_toolbar .typograph_icon ins {left: -16px;}
#reformator_toolbar .clear_icon ins {left: -32px;}
#reformator_toolbar .unordered_list_icon ins {left: -48px;}
#reformator_toolbar .ordered_list_icon ins {left: -64px;}
#reformator_toolbar .sublist_icon ins {left: -80px;}
#reformator_toolbar .append_row_after_icon ins {left: -96px;}
#reformator_toolbar .append_row_before_icon ins {left: -112px;}
#reformator_toolbar .append_column_after_icon ins {left: -128px;}
#reformator_toolbar .append_column_before_icon ins {left: -144px;}
#reformator_toolbar .join_bottom_icon ins {left: -160px;}
#reformator_toolbar .join_right_icon ins {left: -176px;}
#reformator_toolbar .split_icon ins {left: -192px;}
#reformator_toolbar .remove_row_icon ins {left: -208px;}
#reformator_toolbar .remove_column_icon ins {left: -224px;}
/*}
Help
{*/
#reformator_help
{
float: right;
border: 2px solid #36f;
color: #36f;
text-decoration: none;
font-size: 100%;
font-family: arial, sans-serif;
font-weight: bold;
margin: 4px 0 0;
padding: 0 0.2em;
line-height: 1;
text-align: center;
z-index: 10;
border-radius: 4px ! important;
-moz-border-radius: 4px ! important;
-webkit-border-radius: 4px ! important;
-khtml-border-radius: 4px ! important;
}