-
Notifications
You must be signed in to change notification settings - Fork 5
/
button.css
127 lines (94 loc) · 1.91 KB
/
button.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
.ui-dbutton {
padding: 0;
}
.ui-dbutton:active {
box-shadow: none;
}
.ui-dbutton-self,
.ui-dbutton-arrow {
float: left;
font-weight: normal;
cursor: pointer;
}
.ui-dbutton-self {
border-radius: 2px 0 0 2px;
}
.ui-dbutton-arrow {
border-radius: 0 2px 2px 0;
}
/* 橙色 */
.ui-dbutton-orange:hover {
color: #fff;
background-color: #f57403;
}
.ui-dbutton-orange .ui-dbutton-self:hover,
.ui-dbutton-orange .ui-dbutton-arrow:hover {
background-color: #fb8318;
}
.ui-dbutton-orange .ui-dbutton-self {
border-right: 1px solid #e8720b;
}
.ui-dbutton-orange .ui-dbutton-arrow {
border-left: 1px solid #fd8a27;
color: #fff;
}
/* 大橙色按钮 */
.ui-button-lorange .ui-dbutton-self {
padding: 0 12px;
}
.ui-button-lorange .ui-dbutton-arrow {
width: 24px;
}
/* 中橙色按钮 */
.ui-button-morange .ui-dbutton-self {
padding: 0 10px;
}
.ui-button-morange .ui-dbutton-arrow {
width: 20px;
}
/* 小橙色按钮 */
.ui-button-sorange .ui-dbutton-self {
padding: 0 8px;
}
.ui-button-sorange .ui-dbutton-arrow {
width:18px;
font-size: 10px;
}
/* 白色 */
.ui-dbutton-white:hover {
background-color: #f3f3f3;
}
.ui-dbutton-white .ui-dbutton-self:hover,
.ui-dbutton-white .ui-dbutton-arrow:hover {
background-color: #fcfbfb;
color: #666;
}
.ui-dbutton-white .ui-dbutton-self {
border-right: 1px solid #cdcdcd;
}
.ui-dbutton-white .ui-dbutton-arrow {
border-left: 1px solid #fff;
color: #999;
}
/* 大白色按钮 */
.ui-button-lwhite .ui-dbutton-self {
padding: 0 12px;
}
.ui-button-lwhite .ui-dbutton-arrow {
width: 24px;
}
/* 中白色按钮 */
.ui-button-mwhite .ui-dbutton-self {
padding: 0 10px;
}
.ui-button-mwhite .ui-dbutton-arrow {
width: 20px;
}
/* 小白色按钮 */
.ui-button-swhite .ui-dbutton-self {
padding: 0 8px;
}
.ui-button-swhite .ui-dbutton-arrow {
width:18px;
font-size: 10px;
}