Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
seleniumhq
GitHub Repository: seleniumhq/selenium
Path: blob/trunk/third_party/closure/goog/css/button.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
/*
9
* Styling for buttons rendered by goog.ui.ButtonRenderer.
10
*
11
* @author [email protected] (Attila Bodis)
12
*/
13
14
.goog-button {
15
color: #036;
16
border-color: #036;
17
background-color: #69c;
18
}
19
20
/* State: disabled. */
21
.goog-button-disabled {
22
border-color: #333;
23
color: #333;
24
background-color: #999;
25
}
26
27
/* State: hover. */
28
.goog-button-hover {
29
color: #369;
30
border-color: #369;
31
background-color: #9cf;
32
}
33
34
/* State: active. */
35
.goog-button-active {
36
color: #69c;
37
border-color: #69c;
38
}
39
40