Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
seleniumhq
GitHub Repository: seleniumhq/selenium
Path: blob/trunk/third_party/closure/goog/css/button.css
4505 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
12
@provide 'goog.css.button';
13
14
@require './custombutton';
15
@require './flatbutton';
16
17
.goog-button {
18
color: #036;
19
border-color: #036;
20
background-color: #69c;
21
}
22
23
/* State: disabled. */
24
.goog-button-disabled {
25
border-color: #333;
26
color: #333;
27
background-color: #999;
28
}
29
30
/* State: hover. */
31
.goog-button-hover {
32
color: #369;
33
border-color: #369;
34
background-color: #9cf;
35
}
36
37
/* State: active. */
38
.goog-button-active {
39
color: #69c;
40
border-color: #69c;
41
}
42
43