-
Notifications
You must be signed in to change notification settings - Fork 0
/
default_buttons.css
60 lines (60 loc) · 1.46 KB
/
default_buttons.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
button::-moz-focus-inner
{
border: 0;
}
button
{
display: inline-block;
border: 1px solid #D7D7D7;
border-color: #D7D7D7 #BCBCBC #BCBCBC #D7D7D7;
color: #333;
padding: 0 5px;
text-shadow: 1px 1px 1px #D7D7D7;
cursor: pointer;
border-radius: 2px;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
font-size: inherit;
overflow: visible;
vertical-align: bottom;
line-height: inherit;
position: relative;
background: #EEEEEE;
background: -moz-linear-gradient(top, #ffffff 0%, #eeeeee 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#eeeeee));
background: -webkit-linear-gradient(top, #ffffff 0%,#eeeeee 100%);
background: -o-linear-gradient(top, #ffffff 0%,#eeeeee 100%);
background: -ms-linear-gradient(top, #ffffff 0%,#eeeeee 100%);
background: linear-gradient(to bottom, #ffffff 0%,#eeeeee 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eeeeee',GradientType=0 );
}
button:hover
{
box-shadow: 1px 1px 2px rgba(195, 194, 194, 0.5);
border-color: #C3C2C2;
color: #333333;
}
button:focus
{
border-color: #8FC7FF #94C9FF #94C9FF #8FC7FF;
color: #333333;
text-shadow: 1px 1px 1px #C3C2C2;
}
button:active
{
top: 1px;
left: 1px;
z-index: 1;
}
button[disabled], button[disabled]:hover
{
background: #D7D7D7;
cursor: default;
box-shadow: none;
border: 1px solid #C3C2C2;
color: #777;
top: 0;
left: 0;
z-index: auto;
}