Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
seleniumhq
GitHub Repository: seleniumhq/selenium
Path: blob/trunk/third_party/closure/goog/css/checkbox.css
2868 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
/* Author: [email protected] (Peter Pallos) */
9
10
/* Sample 3-state checkbox styles. */
11
12
.goog-checkbox {
13
border: 1px solid #1C5180;
14
display: -moz-inline-box;
15
display: inline-block;
16
font-size: 1px; /* Fixes the height in IE6 */
17
height: 11px;
18
margin: 0 4px 0 1px;
19
vertical-align: text-bottom;
20
width: 11px;
21
}
22
23
.goog-checkbox-checked {
24
background: #fff url(//ssl.gstatic.com/closure/check-sprite.gif) no-repeat 2px center;
25
}
26
27
.goog-checkbox-undetermined {
28
background: #bbb url(//ssl.gstatic.com/closure/check-sprite.gif) no-repeat 2px center;
29
}
30
31
.goog-checkbox-unchecked {
32
background: #fff;
33
}
34
35
.goog-checkbox-disabled {
36
border: 1px solid lightgray;
37
background-position: -7px;
38
}
39
40