Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
seleniumhq
GitHub Repository: seleniumhq/selenium
Path: blob/trunk/third_party/closure/goog/css/dimensionpicker.css
2868 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
* Styling for dimension pickers rendered by goog.ui.DimensionPickerRenderer.
10
*
11
* Author: [email protected] (Robby Walker)
12
* Author: [email protected] (Abe Fettig)
13
*/
14
15
.goog-dimension-picker {
16
font-size: 18px;
17
padding: 4px;
18
}
19
20
.goog-dimension-picker div {
21
position: relative;
22
}
23
24
.goog-dimension-picker div.goog-dimension-picker-highlighted {
25
/* Client apps must provide the URL at which they serve the image. */
26
/* background: url(dimension-highlighted.png); */
27
left: 0;
28
overflow: hidden;
29
position: absolute;
30
top: 0;
31
}
32
33
.goog-dimension-picker-unhighlighted {
34
/* Client apps must provide the URL at which they serve the image. */
35
/* background: url(dimension-unhighlighted.png); */
36
}
37
38
.goog-dimension-picker-status {
39
font-size: 10pt;
40
text-align: center;
41
}
42
43
.goog-dimension-picker div.goog-dimension-picker-mousecatcher {
44
left: 0;
45
position: absolute !important;
46
top: 0;
47
}
48
49