forked from zaheerm/flumotion-extra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styledButton.css
111 lines (90 loc) · 1.33 KB
/
styledButton.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
.button
{
padding: 3px 10px;
}
.button .border
{
border: 1px solid #a0a0a0;
}
.button .border.side.left
{
border-right: 1px solid #444444 !important;
}
.button .border.side.center
{
border-right: 1px solid #444444 !important;
border-left: 1px solid #ffffff !important;
}
.button .border.side.right
{
border-left: 1px solid #ffffff !important;
}
.button .background.main
{
background: #eeeeee;
}
.button .background.top
{
background: #f3f3f3;
}
.button .background.bottom
{
background: #e3e3e3;
}
.button .border.hover
{
border-color: #666666;
}
.button .border.down
{
border-color: black;
}
.button .background.top.down
{
background: #e3e3e3;
}
.button .background.bottom.down
{
background: #f3f3f3;
}
.button.active
{
color: white;
}
.button .background.main.active
{
background: #aaaaaa;
}
.button .background.top.active
{
background: #a1a1a1;
}
.button .background.bottom.active
{
background: #b2b2b2;
}
.button .border.active
{
border-color: #222222;
}
.button .border.side.center.active, .button .border.side.right.active
{
border-left: 1px solid #cccccc !important;
}
.button .dropdown
{
border: 1px solid #a0a0a0;
color: black;
background: white;
padding: 4px;
list-style: none;
}
.button .dropdown.active li
{
background: #ffffff;
color: black;
}
.button .dropdown.active li:hover
{
background: #eeeeee;
}