Button.less
1.27 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
.wev-comp-Button .wev-btn,button.wev-btn {
font-size: @font-size-base;
font-weight: 400;
line-height: 1.42;
position: relative;
display: inline-block;
margin: 5px 0 5px 10px;
padding: 6px 12px;
cursor: pointer;
text-align: center;
vertical-align: top;
white-space: nowrap;
border: 1px solid var(--themeColor);
color:#fff;
border-radius: 3px;
background-color: var(--themeColor);
background-clip: padding-box;
}
.wev-comp-Button .wev-btn,button.wev-btn {
font-size: @font-size-base;
font-weight: 400;
line-height: 1.42;
position: relative;
display: inline-block;
margin: 5px 0 5px 10px;
padding: 6px 12px;
cursor: pointer;
text-align: center;
vertical-align: top;
white-space: nowrap;
border: 1px solid var(--themeColor);
color:#fff;
border-radius: 3px;
background-color: var(--themeColor);
background-clip: padding-box;
}
.wev-comp-Button .wev-btn-outline,button.wev-btn-outline{
color:var(--themeColor);
background-color: transparent;
}
.wev-comp-Button .wev-btn-wrapper.wev-btn-block {
width:100%;
display: table;
border-collapse: separate;
border-spacing: 10px;
}
.page-footer .wev-comp-Button .wev-btn-block {
border-spacing: 0;
}
.page-footer .wev-comp-Button .wev-btn-block .wev-btn {
border-radius: 0;
padding:0;
height:40px;
line-height:40px;
}