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
94 lines (66 loc) · 1.55 KB
/
button.scss
File metadata and controls
94 lines (66 loc) · 1.55 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
@import "../../themes/ionic.globals";
// Buttons
// --------------------------------------------------
/// @prop - Padding of the round button
$button-round-padding: 0 2.6rem !default;
/// @prop - Border radius of the round button
$button-round-border-radius: 64px !default;
.button {
@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;
user-select: none;
}
.button-inner {
display: flex;
flex-flow: row nowrap;
flex-shrink: 0;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
}
[ion-button] {
text-decoration: none;
}
a[disabled],
button[disabled],
[ion-button][disabled] {
cursor: default;
opacity: .4;
pointer-events: none;
}
// Block Button
// --------------------------------------------------
.button-block {
display: block;
clear: both;
width: 100%;
}
.button-block::after {
clear: both;
}
// Full Button
// --------------------------------------------------
.button-full {
display: block;
width: 100%;
}
// Full Outline Button
// --------------------------------------------------
.button-full.button-outline {
border-right-width: 0;
border-left-width: 0;
border-radius: 0;
}