Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
seleniumhq
GitHub Repository: seleniumhq/selenium
Path: blob/trunk/third_party/closure/goog/css/tristatemenuitem.css
2868 views
1
/*
2
* Copyright 2007 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] (Daniel Pupius) */
9
10
/* goog.ui.TriStateMenuItem */
11
12
.goog-tristatemenuitem {
13
padding: 2px 5px;
14
margin: 0;
15
list-style: none;
16
}
17
18
.goog-tristatemenuitem-highlight {
19
background-color: #4279A5;
20
color: #FFF;
21
}
22
23
.goog-tristatemenuitem-disabled {
24
color: #999;
25
}
26
27
.goog-tristatemenuitem-checkbox {
28
float: left;
29
width: 10px;
30
height: 1.1em;
31
}
32
33
.goog-tristatemenuitem-partially-checked {
34
background-image: url(//ssl.gstatic.com/closure/check-outline.gif);
35
background-position: 4px 50%;
36
background-repeat: no-repeat;
37
}
38
39
.goog-tristatemenuitem-fully-checked {
40
background-image: url(//ssl.gstatic.com/closure/check.gif);
41
background-position: 4px 50%;
42
background-repeat: no-repeat;
43
}
44
45