Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
SeleniumHQ
GitHub Repository: SeleniumHQ/Selenium
Path: blob/trunk/third_party/closure/goog/css/flatbutton.css
3995 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 flat buttons created by goog.ui.FlatButtonRenderer.
10
*/
11
12
@provide 'goog.css.flatbutton';
13
14
@require './common';
15
16
.goog-flat-button {
17
position: relative;
18
/*width: 20ex;*/
19
margin: 2px;
20
border: 1px solid #000;
21
padding: 2px 6px;
22
font: normal 13px "Trebuchet MS", Tahoma, Arial, sans-serif;
23
color: #fff;
24
background-color: #8c2425;
25
cursor: pointer;
26
outline: none;
27
}
28
29
/* State: disabled. */
30
.goog-flat-button-disabled {
31
border-color: #888;
32
color: #888;
33
background-color: #ccc;
34
cursor: default;
35
}
36
37
/* State: hover. */
38
.goog-flat-button-hover {
39
border-color: #8c2425;
40
color: #8c2425;
41
background-color: #eaa4a5;
42
}
43
44
/* State: active, selected, checked. */
45
.goog-flat-button-active,
46
.goog-flat-button-selected,
47
.goog-flat-button-checked {
48
border-color: #5b4169;
49
color: #5b4169;
50
background-color: #d1a8ea;
51
}
52
53
/* State: focused. */
54
.goog-flat-button-focused {
55
border-color: #5b4169;
56
}
57
58
/* Pill (collapsed border) styles. */
59
.goog-flat-button-collapse-right {
60
margin-right: 0;
61
}
62
63
.goog-flat-button-collapse-left {
64
margin-left: 0;
65
border-left: none;
66
}
67
68