Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
SeleniumHQ
GitHub Repository: SeleniumHQ/Selenium
Path: blob/trunk/third_party/closure/goog/css/editortoolbar.css
4012 views
1
/*
2
* Copyright 2008 The Closure Library Authors. All Rights Reserved.
3
*
4
* Use of this source code is governed by the Apache License, Version 2.0.
5
* See the COPYING file for details.
6
*/
7
8
/*
9
* Editor toolbar styles.
10
*/
11
12
@provide 'goog.css.editortoolbar';
13
14
/* Common base style for all icons. */
15
.tr-icon {
16
width: 16px;
17
height: 16px;
18
background: url(//ssl.gstatic.com/editor/editortoolbar.png) no-repeat;
19
vertical-align: middle;
20
}
21
22
.goog-color-menu-button-indicator .tr-icon {
23
height: 14px;
24
}
25
26
/* Undo (redo when the chrome is right-to-left). */
27
.tr-undo,
28
.goog-toolbar-button-rtl .tr-redo {
29
background-position: 0;
30
}
31
32
/* Redo (undo when the chrome is right-to-left). */
33
.tr-redo,
34
.goog-toolbar-button-rtl .tr-undo {
35
background-position: -16px;
36
}
37
38
/* Font name. */
39
.tr-fontName .goog-toolbar-menu-button-caption {
40
color: #246;
41
width: 16ex;
42
height: 16px;
43
overflow: hidden;
44
}
45
46
/* Font size. */
47
.tr-fontSize .goog-toolbar-menu-button-caption {
48
color: #246;
49
width: 8ex;
50
height: 16px;
51
overflow: hidden;
52
}
53
54
/* Bold. */
55
.tr-bold {
56
background-position: -32px;
57
}
58
59
/* Italic. */
60
.tr-italic {
61
background-position: -48px;
62
}
63
64
/* Underline. */
65
.tr-underline {
66
background-position: -64px;
67
}
68
69
/* Foreground color. */
70
.tr-foreColor {
71
height: 14px;
72
background-position: -80px;
73
}
74
75
/* Background color. */
76
.tr-backColor {
77
height: 14px;
78
background-position: -96px;
79
}
80
81
/* Link. */
82
.tr-link {
83
font-weight: bold;
84
color: #009;
85
text-decoration: underline;
86
}
87
88
/* Insert image. */
89
.tr-image {
90
background-position: -112px;
91
}
92
93
/* Insert drawing. */
94
.tr-newDrawing {
95
background-position: -592px;
96
}
97
98
/* Insert special character. */
99
.tr-spChar {
100
font-weight: bold;
101
color: #900;
102
}
103
104
/* Increase indent. */
105
.tr-indent {
106
background-position: -128px;
107
}
108
109
/* Increase ident in right-to-left text mode, regardless of chrome direction. */
110
.tr-rtl-mode .tr-indent {
111
background-position: -400px;
112
}
113
114
/* Decrease indent. */
115
.tr-outdent {
116
background-position: -144px;
117
}
118
119
/* Decrease indent in right-to-left text mode, regardless of chrome direction. */
120
.tr-rtl-mode .tr-outdent {
121
background-position: -416px;
122
}
123
124
/* Bullet (unordered) list. */
125
.tr-insertUnorderedList {
126
background-position: -160px;
127
}
128
129
/* Bullet list in right-to-left text mode, regardless of chrome direction. */
130
.tr-rtl-mode .tr-insertUnorderedList {
131
background-position: -432px;
132
}
133
134
/* Number (ordered) list. */
135
.tr-insertOrderedList {
136
background-position: -176px;
137
}
138
139
/* Number list in right-to-left text mode, regardless of chrome direction. */
140
.tr-rtl-mode .tr-insertOrderedList {
141
background-position: -448px;
142
}
143
144
/* Text alignment buttons. */
145
.tr-justifyLeft {
146
background-position: -192px;
147
}
148
.tr-justifyCenter {
149
background-position: -208px;
150
}
151
.tr-justifyRight {
152
background-position: -224px;
153
}
154
.tr-justifyFull {
155
background-position: -480px;
156
}
157
158
/* Blockquote. */
159
.tr-BLOCKQUOTE {
160
background-position: -240px;
161
}
162
163
/* Blockquote in right-to-left text mode, regardless of chrome direction. */
164
.tr-rtl-mode .tr-BLOCKQUOTE {
165
background-position: -464px;
166
}
167
168
/* Remove formatting. */
169
.tr-removeFormat {
170
background-position: -256px;
171
}
172
173
/* Spellcheck. */
174
.tr-spell {
175
background-position: -272px;
176
}
177
178
/* Left-to-right text direction. */
179
.tr-ltr {
180
background-position: -288px;
181
}
182
183
/* Right-to-left text direction. */
184
.tr-rtl {
185
background-position: -304px;
186
}
187
188
/* Insert iGoogle module. */
189
.tr-insertModule {
190
background-position: -496px;
191
}
192
193
/* Strike through text */
194
.tr-strikeThrough {
195
background-position: -544px;
196
}
197
198
/* Subscript */
199
.tr-subscript {
200
background-position: -560px;
201
}
202
203
/* Superscript */
204
.tr-superscript {
205
background-position: -576px;
206
}
207
208
/* Insert drawing. */
209
.tr-equation {
210
background-position: -608px;
211
}
212
213
/* Edit HTML. */
214
.tr-editHtml {
215
color: #009;
216
}
217
218
/* "Format block" menu. */
219
.tr-formatBlock .goog-toolbar-menu-button-caption {
220
color: #246;
221
width: 12ex;
222
height: 16px;
223
overflow: hidden;
224
}
225
226