forked from ionic-team/ionic-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbutton.scss
More file actions
100 lines (71 loc) · 1.63 KB
/
button.scss
File metadata and controls
100 lines (71 loc) · 1.63 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
@import "../../globals.core";
// Buttons
// --------------------------------------------------
$button-round-padding: 0 2.6rem !default;
$button-round-border-radius: 64px !default;
.button {
@include user-select-none();
@include appearance(none);
position: relative;
z-index: 0;
display: inline-block;
overflow: hidden;
text-align: center;
text-overflow: ellipsis;
text-transform: none;
white-space: nowrap;
cursor: pointer;
vertical-align: top; // the better option for most scenarios
vertical-align: -webkit-baseline-middle; // the best for those that support it
transition: background-color, opacity 100ms linear;
font-kerning: none;
}
.button-inner {
display: flex;
flex-flow: row nowrap;
flex-shrink: 0;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
}
a.button,
a[button] {
text-decoration: none;
}
a[disabled],
button[disabled],
.button[disabled] {
cursor: default;
opacity: .4;
pointer-events: none;
}
// Block Button
// --------------------------------------------------
.button-block {
display: block;
clear: both;
width: 100%;
&::after {
clear: both;
}
}
// Full Button
// --------------------------------------------------
.button-full {
display: block;
width: 100%;
// Full Outline Button
// --------------------------------------------------
&.button-outline {
border-right-width: 0;
border-left-width: 0;
border-radius: 0;
}
}
// Round Button
// --------------------------------------------------
.button-round {
padding: $button-round-padding;
border-radius: $button-round-border-radius;
}