btn.less
2.82 KB
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
/***************************************************
* feature : 按钮,默认提供3种样式;
* update : 2015/02/03;
* use : .m-btn;
* extend : .btn-*;
* example : ;
* desc : ;
* feedback : 此处填入 issue, 并请附带以下信息[os_version, browser_version, page_path, issue_description]
* - demo => [windows 7, IE 8, http://diligrp.com/icon.html, 在不定height下未能垂直居中];
****************************************************/
.m-btn,
a.m-btn {
display: inline-block;
padding: 0 15px;
line-height: 35px;
font-size: 15px;
color: #FFF;
text-align: center;
border: none;
background-color: #21b563;
border-radius: 3px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
cursor: pointer;
vertical-align: middle;
min-width: 68px;
position: relative;
// border: 1px solid #1c69a3;
border:none;
&:after {
content: '';
position: absolute;
top: 0;
left: 0;
border: 1px solid #1c69a3;
-webkit-box-sizing: border-box;
box-sizing: border-box;
width: 200%;
height: 200%;
-webkit-transform: scale(0.5);
transform: scale(0.5);
-webkit-transform-origin: left top;
transform-origin: left top;
border-radius: 6px;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
}
&.btn-large {
font-size: 19px;
line-height: 43px;
}
&.btn-default {
color: #333;
background-color: #FFF;
// border-color: #e2e2e2;
&:after {
border-color: #e2e2e2;
}
}
&.btn-success {
color: #FFF;
background-color: #6C2;
border: none;
&.reverse {
background-color: #FFF;
color: #6C2;
line-height: 43px;
// border: 1px solid #6C2;
&:after {
border-color: #6C2;
}
}
}
&.btn-warning {
color: #FFF;
background-color: #ff9d2c;
border: none;
}
&.btn-danger {
color: #FFF;
background-color: #fa4535;
border: none;
}
&.btn-text {
background: none;
border: 1px solid #6c2;
color: #6c2;
width: 65px;
font-size: 12px;
text-align: center;
line-height: 23px;
padding: 0;
float: right;
border-radius: 2px;
margin-top: -2px;
}
&.disabled {
background-color: #e2e2e2;
color: #999;
// border-color: #e2e2d2;
&:after {
border-color: #e2e2d2;
}
}
&.btn-link {
background-color: #69b8dc;
border-color: #69b8dc;
padding: 0;
}
&.btn-go {
background-color: #f47163;
&:after {
border-color: transparent;
}
}
}