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