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
|
@mixin valo-checkbox ($primary-stylename: v-checkbox) {
.#{$primary-stylename},
.v-radiobutton {
@include valo-checkbox-style;
}
}
@mixin valo-checkbox-icon-style {
content: "\f00c";
font-family: FontAwesome;
}
@mixin valo-checkbox-style ($background-color: $v-background-color, $size: $v-unit-size, $selection-color: $v-selection-color) {
// So that we can use the same 'unit-size' for all component sizes
$size: $size/2;
position: relative;
line-height: round($size);
white-space: nowrap;
&.v-has-width label {
white-space: normal;
}
:root & {
padding-left: round($size*1.33);
label {
@include valo-tappable;
}
}
:root & > input {
position: absolute;
clip: rect(0,0,0,0);
left: .2em;
top: .2em;
z-index: 0;
margin: 0;
&:focus ~ label:before {
@include valo-button-focus-style($background-color: $background-color, $border-fallback: null, $include-box-shadow: false);
box-shadow: valo-bevel-and-shadow($background-color: $background-color, $bevel: $v-bevel, $shadow: $v-shadow, $gradient: $v-gradient, $include-focus: true);
}
& ~ label:before,
& ~ label:after {
content: "";
display: inline-block;
@include box-sizing(border-box);
width: round($size);
height: round($size);
position: absolute;
top: 0;
left: 0;
border-radius: min(round($size/3), $v-border-radius);
font-size: round($v-font-size * 0.8 * ($size*2/$v-unit-size));
text-align: center;
}
& ~ label:before {
@include valo-button-style($background-color: $background-color, $unit-size: $size, $border-radius: min(round($size/3), $v-border-radius));
padding: 0;
height: round($size);
}
& ~ label:after {
@include valo-checkbox-icon-style;
color: transparent;
@if $v-animations-enabled {
@include transition(color 100ms);
}
}
&:active ~ label:after {
@include valo-button-active-style($background-color: $background-color);
}
&:checked ~ label:after {
color: $selection-color;
}
&[disabled] {
~ label,
~ label .v-icon,
~ .v-icon {
cursor: default;
}
~ label:before,
~ label:after {
@include opacity($v-disabled-opacity);
}
&:active ~ label:after {
background: transparent;
}
}
}
& > .v-icon,
& > label .v-icon {
margin: 0 round($size/3) 0 round($size/6);
min-width: 1em;
cursor: pointer;
}
}
|