Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
seleniumhq
GitHub Repository: seleniumhq/selenium
Path: blob/trunk/third_party/closure/goog/css/charpicker.css
4506 views
1
/*
2
* Copyright 2009 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
@provide 'goog.css.charpicker';
9
10
.goog-char-picker {
11
background-color: #ddd;
12
padding: 16px;
13
border: 1px solid #777;
14
}
15
16
/* goog.ui.HoverCard */
17
.goog-char-picker-hovercard {
18
border: solid 5px #ffcc33;
19
min-width: 64px;
20
max-width: 160px;
21
padding: 16px;
22
background-color: white;
23
text-align: center;
24
position: absolute;
25
visibility: hidden;
26
}
27
28
.goog-char-picker-name {
29
font-size: x-small;
30
}
31
32
.goog-char-picker-unicode {
33
font-size: x-small;
34
color: GrayText;
35
}
36
37
.goog-char-picker-char-zoom {
38
font-size: xx-large;
39
}
40
41
/*
42
* grid
43
*/
44
.goog-char-picker-grid-container {
45
border: 1px solid #777;
46
background-color: #fff;
47
width: 272px;
48
}
49
50
.goog-char-picker-grid {
51
overflow: hidden;
52
height: 250px;
53
width: 250px;
54
position: relative;
55
}
56
57
.goog-stick {
58
width: 1px;
59
overflow: hidden;
60
}
61
.goog-stickwrap {
62
width: 17px;
63
height: 250px;
64
float: right;
65
overflow: auto;
66
}
67
68
.goog-char-picker-recents {
69
border: 1px solid #777;
70
background-color: #fff;
71
height: 25px;
72
width: 275px;
73
margin: 0 0 16px 0;
74
position: relative;
75
}
76
77
.goog-char-picker-notice {
78
font-size: x-small;
79
height: 16px;
80
color: GrayText;
81
margin: 0 0 16px 0;
82
}
83
84
/*
85
* Hex entry
86
*/
87
88
.goog-char-picker-uplus {
89
}
90
91
.goog-char-picker-input-box {
92
width: 96px;
93
}
94
95
.label-input-label {
96
color: GrayText;
97
}
98
99
.goog-char-picker-okbutton {
100
}
101
102
/*
103
* Grid buttons
104
*/
105
.goog-char-picker-grid .goog-flat-button {
106
position: relative;
107
width: 24px;
108
height: 24px;
109
line-height: 24px;
110
border-bottom: 1px solid #ddd;
111
border-right: 1px solid #ddd;
112
text-align: center;
113
cursor: pointer;
114
outline: none;
115
}
116
117
.goog-char-picker-grid .goog-flat-button-hover,
118
.goog-char-picker-grid .goog-flat-button-focus {
119
background-color: #ffcc33;
120
}
121
122
/*
123
* goog.ui.Menu
124
*/
125
126
/* State: resting. */
127
.goog-char-picker-button {
128
border-width: 0px;
129
margin: 0;
130
padding: 0;
131
position: absolute;
132
background-position: center left;
133
}
134
135
/* State: resting. */
136
.goog-char-picker-menu {
137
background-color: #fff;
138
border-color: #ccc #666 #666 #ccc;
139
border-style: solid;
140
border-width: 1px;
141
cursor: default;
142
margin: 0;
143
outline: none;
144
padding: 0;
145
position: absolute;
146
max-height: 400px;
147
overflow-y: auto;
148
overflow-x: hide;
149
}
150
151
/*
152
* goog.ui.MenuItem
153
*/
154
155
/* State: resting. */
156
.goog-char-picker-menu .goog-menuitem {
157
color: #000;
158
list-style: none;
159
margin: 0;
160
/* 28px on the left for icon or checkbox; 10ex on the right for shortcut. */
161
padding: 1px 32px 1px 8px;
162
white-space: nowrap;
163
}
164
165
.goog-char-picker-menu2 .goog-menuitem {
166
color: #000;
167
list-style: none;
168
margin: 0;
169
/* 28px on the left for icon or checkbox; 10ex on the right for shortcut. */
170
padding: 1px 32px 1px 8px;
171
white-space: nowrap;
172
}
173
174
.goog-char-picker-menu .goog-subtitle {
175
color: #fff !important;
176
background-color: #666;
177
font-weight: bold;
178
list-style: none;
179
margin: 0;
180
/* 28px on the left for icon or checkbox; 10ex on the right for shortcut. */
181
padding: 3px 32px 3px 8px;
182
white-space: nowrap;
183
}
184
185
/* BiDi override for the resting state. */
186
.goog-char-picker-menu .goog-menuitem-rtl {
187
/* Flip left/right padding for BiDi. */
188
padding: 2px 16px 2px 32px !important;
189
}
190
191
/* State: hover. */
192
.goog-char-picker-menu .goog-menuitem-highlight {
193
background-color: #d6e9f8;
194
}
195
/*
196
* goog.ui.MenuSeparator
197
*/
198
199
/* State: resting. */
200
.goog-char-picker-menu .goog-menuseparator {
201
border-top: 1px solid #ccc;
202
margin: 2px 0;
203
padding: 0;
204
}
205
206
207