zurb-foundation 4.0.9 → 4.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Gemfile.lock +1 -1
- data/README.md +10 -3
- data/docs/Gemfile +4 -1
- data/docs/Gemfile.lock +1 -1
- data/docs/_sidebar-components.html.erb +1 -0
- data/docs/_sidebar.html.erb +2 -0
- data/docs/components/dropdown.html.erb +3 -3
- data/docs/components/global.html.erb +1 -1
- data/docs/components/grid.html.erb +4 -4
- data/docs/components/joyride.html.erb +4 -1
- data/docs/components/kitchen-sink.html.erb +864 -0
- data/docs/components/orbit.html.erb +1 -1
- data/docs/components/section.html.erb +29 -2
- data/docs/components/split-buttons.html.erb +1 -1
- data/docs/components/top-bar.html.erb +0 -3
- data/docs/css/docs.scss +8 -6
- data/docs/layout.html.erb +13 -2
- data/docs/rtl.html.erb +53 -0
- data/docs/support.html.erb +1 -1
- data/js/foundation/foundation.clearing.js +20 -14
- data/js/foundation/foundation.dropdown.js +10 -11
- data/js/foundation/foundation.forms.js +45 -13
- data/js/foundation/foundation.joyride.js +14 -6
- data/js/foundation/foundation.js +7 -1
- data/js/foundation/foundation.orbit.js +10 -8
- data/js/foundation/foundation.reveal.js +1 -1
- data/js/foundation/foundation.section.js +23 -7
- data/js/foundation/foundation.tooltips.js +7 -3
- data/js/foundation/foundation.topbar.js +28 -12
- data/lib/foundation/generators/install_generator.rb +1 -1
- data/lib/foundation/version.rb +1 -1
- data/package.json +7 -1
- data/scss/foundation/_foundation-global.scss +3 -3
- data/scss/foundation/components/_alert-boxes.scss +4 -4
- data/scss/foundation/components/_button-groups.scss +6 -4
- data/scss/foundation/components/_buttons.scss +4 -4
- data/scss/foundation/components/_clearing.scss +18 -16
- data/scss/foundation/components/_custom-forms.scss +8 -8
- data/scss/foundation/components/_dropdown-buttons.scss +12 -12
- data/scss/foundation/components/_dropdown.scss +5 -6
- data/scss/foundation/components/_forms.scss +15 -15
- data/scss/foundation/components/_grid.scss +18 -18
- data/scss/foundation/components/_inline-lists.scss +8 -3
- data/scss/foundation/components/_joyride.scss +8 -8
- data/scss/foundation/components/_magellan.scss +3 -2
- data/scss/foundation/components/_orbit.scss +24 -16
- data/scss/foundation/components/_pricing-tables.scss +1 -1
- data/scss/foundation/components/_reveal.scss +2 -2
- data/scss/foundation/components/_section.scss +5 -5
- data/scss/foundation/components/_split-buttons.scss +18 -18
- data/scss/foundation/components/_sub-nav.scss +1 -1
- data/scss/foundation/components/_switch.scss +11 -12
- data/scss/foundation/components/_tables.scss +1 -1
- data/scss/foundation/components/_tooltips.scss +2 -1
- data/scss/foundation/components/_top-bar.scss +10 -9
- data/templates/project/index.html +2 -2
- data/templates/project/scss/_settings.scss +8 -0
- metadata +6 -4
@@ -53,8 +53,8 @@ $joyride-screenfill: rgba(0,0,0,0.5) !default;
|
|
53
53
|
|
54
54
|
.lt-ie9 .joyride-tip-guide {
|
55
55
|
max-width:800px;
|
56
|
-
|
57
|
-
margin-
|
56
|
+
#{$default-float}: 50%;
|
57
|
+
margin-#{$default-float}:-400px;
|
58
58
|
}
|
59
59
|
|
60
60
|
.joyride-content-wrapper {
|
@@ -79,7 +79,7 @@ $joyride-screenfill: rgba(0,0,0,0.5) !default;
|
|
79
79
|
border-color: $joyride-tip-bg;
|
80
80
|
border-top-color: transparent !important;
|
81
81
|
border-#{$default-float}-color: transparent !important;
|
82
|
-
border-#{$
|
82
|
+
border-#{$opposite-direction}-color: transparent !important;
|
83
83
|
top: -($joyride-tip-nub-size*2);
|
84
84
|
bottom: none;
|
85
85
|
}
|
@@ -87,7 +87,7 @@ $joyride-screenfill: rgba(0,0,0,0.5) !default;
|
|
87
87
|
border-color: $joyride-tip-bg !important;
|
88
88
|
border-bottom-color: transparent !important;
|
89
89
|
border-#{$default-float}-color: transparent !important;
|
90
|
-
border-#{$
|
90
|
+
border-#{$opposite-direction}-color: transparent !important;
|
91
91
|
bottom: -($joyride-tip-nub-size*2);
|
92
92
|
bottom: none;
|
93
93
|
}
|
@@ -120,7 +120,7 @@ $joyride-screenfill: rgba(0,0,0,0.5) !default;
|
|
120
120
|
height: $joyride-tip-timer-height;
|
121
121
|
border: $joyride-tip-border;
|
122
122
|
position: absolute;
|
123
|
-
#{$
|
123
|
+
#{$opposite-direction}: emCalc(17px);
|
124
124
|
bottom: emCalc(16px);
|
125
125
|
}
|
126
126
|
.joyride-timer-indicator {
|
@@ -132,7 +132,7 @@ $joyride-screenfill: rgba(0,0,0,0.5) !default;
|
|
132
132
|
|
133
133
|
.joyride-close-tip {
|
134
134
|
position: absolute;
|
135
|
-
#{$
|
135
|
+
#{$opposite-direction}: 12px;
|
136
136
|
top: 10px;
|
137
137
|
color: $joyride-tip-close-color !important;
|
138
138
|
text-decoration: none;
|
@@ -160,13 +160,13 @@ $joyride-screenfill: rgba(0,0,0,0.5) !default;
|
|
160
160
|
|
161
161
|
/* Styles for screens that are atleast 768px; */
|
162
162
|
@media #{$small} {
|
163
|
-
.joyride-tip-guide { width: $joyride-tip-default-width; #{$default-float}:
|
163
|
+
.joyride-tip-guide { width: $joyride-tip-default-width; #{$default-float}: inherit;
|
164
164
|
.joyride-nub {
|
165
165
|
&.bottom {
|
166
166
|
border-color: $joyride-tip-bg !important;
|
167
167
|
border-bottom-color: transparent !important;
|
168
168
|
border-#{$default-float}-color: transparent !important;
|
169
|
-
border-#{$
|
169
|
+
border-#{$opposite-direction}-color: transparent !important;
|
170
170
|
bottom: -($joyride-tip-nub-size*2);
|
171
171
|
bottom: none;
|
172
172
|
}
|
@@ -2,14 +2,15 @@
|
|
2
2
|
// Magellan Variables
|
3
3
|
//
|
4
4
|
$magellan-bg: #fff !default;
|
5
|
+
$magellan-padding: 10px !default;
|
5
6
|
|
6
7
|
@if $include-html-magellan-classes {
|
7
8
|
|
8
9
|
[data-magellan-expedition] {
|
9
10
|
background: $magellan-bg;
|
10
|
-
z-index:
|
11
|
+
z-index: 50;
|
11
12
|
min-width: 100%;
|
12
|
-
padding:
|
13
|
+
padding: $magellan-padding;
|
13
14
|
|
14
15
|
.sub-nav {
|
15
16
|
margin-bottom: 0;
|
@@ -44,7 +44,7 @@ $stack-on-small-margin-bottom: emCalc(20px) !default;
|
|
44
44
|
|
45
45
|
&>* {
|
46
46
|
position: relative;
|
47
|
-
float:
|
47
|
+
float: $default-float;
|
48
48
|
height: 100%;
|
49
49
|
|
50
50
|
.orbit-caption {
|
@@ -65,7 +65,7 @@ $stack-on-small-margin-bottom: emCalc(20px) !default;
|
|
65
65
|
.orbit-slide-number {
|
66
66
|
position: absolute;
|
67
67
|
top: 10px;
|
68
|
-
|
68
|
+
#{$default-float}: 10px;
|
69
69
|
font-size: 12px;
|
70
70
|
span { font-weight: 700; }
|
71
71
|
}
|
@@ -73,7 +73,7 @@ $stack-on-small-margin-bottom: emCalc(20px) !default;
|
|
73
73
|
.orbit-timer {
|
74
74
|
position: absolute;
|
75
75
|
top: 10px;
|
76
|
-
|
76
|
+
#{$opposite-direction}: 10px;
|
77
77
|
height: 6px;
|
78
78
|
width: 100px;
|
79
79
|
.orbit-progress {
|
@@ -88,7 +88,7 @@ $stack-on-small-margin-bottom: emCalc(20px) !default;
|
|
88
88
|
display: none;
|
89
89
|
position: absolute;
|
90
90
|
top: 10px;
|
91
|
-
|
91
|
+
#{$opposite-direction}: 0px;
|
92
92
|
width: 11px;
|
93
93
|
height: 14px;
|
94
94
|
border: solid 4px #000;
|
@@ -98,7 +98,7 @@ $stack-on-small-margin-bottom: emCalc(20px) !default;
|
|
98
98
|
|
99
99
|
&.paused {
|
100
100
|
& > span {
|
101
|
-
|
101
|
+
#{$opposite-direction}: -6px;
|
102
102
|
top: 9px;
|
103
103
|
width: 11px;
|
104
104
|
height: 14px;
|
@@ -134,17 +134,25 @@ $stack-on-small-margin-bottom: emCalc(20px) !default;
|
|
134
134
|
border: solid 16px;
|
135
135
|
}
|
136
136
|
}
|
137
|
-
.orbit-prev {
|
138
|
-
& > span {
|
139
|
-
|
137
|
+
.orbit-prev { #{$default-float}: 0;
|
138
|
+
& > span {
|
139
|
+
border-color: transparent;
|
140
|
+
border-#{$opposite-direction}-color: #fff;
|
141
|
+
}
|
142
|
+
&:hover > span {
|
143
|
+
border-#{$opposite-direction}-color: #ccc;
|
144
|
+
}
|
140
145
|
}
|
141
|
-
.orbit-next {
|
146
|
+
.orbit-next { #{$opposite-direction}: 0;
|
142
147
|
& > span {
|
143
|
-
border-color: transparent
|
144
|
-
|
145
|
-
|
148
|
+
border-color: transparent;
|
149
|
+
border-#{$default-float}-color: #fff;
|
150
|
+
#{$default-float}: 50%;
|
151
|
+
margin-#{$default-float}: -8px;
|
152
|
+
}
|
153
|
+
&:hover > span {
|
154
|
+
border-#{$default-float}-color: #ccc;
|
146
155
|
}
|
147
|
-
&:hover > span { border-color: transparent transparent transparent #ccc; }
|
148
156
|
}
|
149
157
|
}
|
150
158
|
|
@@ -159,8 +167,8 @@ $stack-on-small-margin-bottom: emCalc(20px) !default;
|
|
159
167
|
width: 18px;
|
160
168
|
height: 18px;
|
161
169
|
background: #fff;
|
162
|
-
float:
|
163
|
-
margin-
|
170
|
+
float: $default-float;
|
171
|
+
margin-#{$opposite-direction}: 6px;
|
164
172
|
border: solid 2px #000;
|
165
173
|
@include radius(1000px);
|
166
174
|
|
@@ -168,7 +176,7 @@ $stack-on-small-margin-bottom: emCalc(20px) !default;
|
|
168
176
|
background: #000;
|
169
177
|
}
|
170
178
|
|
171
|
-
&:last-child { margin-
|
179
|
+
&:last-child { margin-#{$opposite-direction}: 0; }
|
172
180
|
}
|
173
181
|
}
|
174
182
|
|
@@ -54,7 +54,7 @@ $price-cta-padding: emCalc(20px) emCalc(20px) 0 !default;
|
|
54
54
|
// We use this to create the container element for the pricing tables
|
55
55
|
@mixin pricing-table-container {
|
56
56
|
border: $price-table-border;
|
57
|
-
margin-
|
57
|
+
margin-#{$default-float}: 0;
|
58
58
|
margin-bottom: $price-table-margin-bottom;
|
59
59
|
|
60
60
|
& * {
|
@@ -41,7 +41,7 @@ $reveal-border-color: #666 !default;
|
|
41
41
|
z-index: 98;
|
42
42
|
display: none;
|
43
43
|
top: 0;
|
44
|
-
|
44
|
+
#{$default-float}: 0;
|
45
45
|
}
|
46
46
|
|
47
47
|
// We use this mixin to create the structure of a reveal modal
|
@@ -93,7 +93,7 @@ $reveal-border-color: #666 !default;
|
|
93
93
|
line-height: 1;
|
94
94
|
position: absolute;
|
95
95
|
top: $reveal-close-top;
|
96
|
-
#{$
|
96
|
+
#{$opposite-direction}: $reveal-close-side;
|
97
97
|
color: $color;
|
98
98
|
font-weight: $reveal-close-weight;
|
99
99
|
cursor: pointer;
|
@@ -117,14 +117,14 @@ $section-bottom-margin: emCalc(20px) !default;
|
|
117
117
|
.title {
|
118
118
|
width: auto;
|
119
119
|
border: $section-border-size $section-border-style $section-border-color;
|
120
|
-
border-
|
120
|
+
border-#{$opposite-direction}: 0;
|
121
121
|
border-bottom: 0;
|
122
122
|
position: absolute;
|
123
123
|
z-index: 1;
|
124
124
|
|
125
125
|
a { width: 100%; }
|
126
126
|
}
|
127
|
-
&:last-child .title { border-
|
127
|
+
&:last-child .title { border-#{$opposite-direction}: $section-border-size $section-border-style $section-border-color; }
|
128
128
|
|
129
129
|
.content {
|
130
130
|
border: $section-border-size $section-border-style $section-border-color;
|
@@ -157,7 +157,7 @@ $section-bottom-margin: emCalc(20px) !default;
|
|
157
157
|
.content {
|
158
158
|
display: block;
|
159
159
|
position: absolute;
|
160
|
-
|
160
|
+
#{$default-float}: 100%;
|
161
161
|
top: -1px;
|
162
162
|
z-index: 999;
|
163
163
|
min-width: $section-vertical-nav-min-width;
|
@@ -175,7 +175,7 @@ $section-bottom-margin: emCalc(20px) !default;
|
|
175
175
|
.title {
|
176
176
|
width: auto;
|
177
177
|
border: $section-border-size $section-border-style $section-border-color;
|
178
|
-
border-
|
178
|
+
border-#{$default-float}: 0;
|
179
179
|
top: -1px;
|
180
180
|
position: absolute;
|
181
181
|
z-index: 1;
|
@@ -190,7 +190,7 @@ $section-bottom-margin: emCalc(20px) !default;
|
|
190
190
|
display: block;
|
191
191
|
position: absolute;
|
192
192
|
z-index: 999;
|
193
|
-
|
193
|
+
#{$default-float}: 0;
|
194
194
|
top: -2px;
|
195
195
|
min-width: $section-vertical-nav-min-width;
|
196
196
|
border: $section-border-size $section-border-style $section-border-color;
|
@@ -13,28 +13,28 @@ $split-button-padding-tny: $button-tny * 9 !default;
|
|
13
13
|
$split-button-span-width-tny: $button-tny * 6.5 !default;
|
14
14
|
$split-button-pip-size-tny: $button-tny !default;
|
15
15
|
$split-button-pip-top-tny: $button-tny * 2 !default;
|
16
|
-
$split-button-pip-
|
16
|
+
$split-button-pip-default-float-tny: emCalc(-5px) !default;
|
17
17
|
|
18
18
|
// We use these to control small split buttons
|
19
19
|
$split-button-padding-sml: $button-sml * 7 !default;
|
20
20
|
$split-button-span-width-sml: $button-sml * 5 !default;
|
21
21
|
$split-button-pip-size-sml: $button-sml !default;
|
22
22
|
$split-button-pip-top-sml: $button-sml * 1.5 !default;
|
23
|
-
$split-button-pip-
|
23
|
+
$split-button-pip-default-float-sml: emCalc(-9px) !default;
|
24
24
|
|
25
25
|
// We use these to control medium split buttons
|
26
26
|
$split-button-padding-med: $button-med * 6.4 !default;
|
27
27
|
$split-button-span-width-med: $button-med * 4 !default;
|
28
28
|
$split-button-pip-size-med: $button-med - emCalc(3px) !default;
|
29
29
|
$split-button-pip-top-med: $button-med * 1.5 !default;
|
30
|
-
$split-button-pip-
|
30
|
+
$split-button-pip-default-float-med: emCalc(-9px) !default;
|
31
31
|
|
32
32
|
// We use these to control large split buttons
|
33
33
|
$split-button-padding-lrg: $button-lrg * 6 !default;
|
34
34
|
$split-button-span-width-lrg: $button-lrg * 3.75 !default;
|
35
35
|
$split-button-pip-size-lrg: $button-lrg - emCalc(6px) !default;
|
36
36
|
$split-button-pip-top-lrg: $button-lrg + emCalc(5px) !default;
|
37
|
-
$split-button-pip-
|
37
|
+
$split-button-pip-default-float-lrg: emCalc(-9px) !default;
|
38
38
|
|
39
39
|
|
40
40
|
//
|
@@ -53,9 +53,9 @@ $split-button-pip-left-lrg: emCalc(-9px) !default;
|
|
53
53
|
display: block;
|
54
54
|
height: 100%;
|
55
55
|
position: absolute;
|
56
|
-
#{$
|
56
|
+
#{$opposite-direction}: 0;
|
57
57
|
top: 0;
|
58
|
-
border-
|
58
|
+
border-#{$default-float}: solid 1px;
|
59
59
|
|
60
60
|
// Building the triangle pip indicator
|
61
61
|
&:before {
|
@@ -66,7 +66,7 @@ $split-button-pip-left-lrg: emCalc(-9px) !default;
|
|
66
66
|
display: block;
|
67
67
|
border-style: solid;
|
68
68
|
|
69
|
-
|
69
|
+
#{$default-float}: 50%;
|
70
70
|
}
|
71
71
|
|
72
72
|
&:active { background-color: $split-button-active-bg-tint; }
|
@@ -75,57 +75,57 @@ $split-button-pip-left-lrg: emCalc(-9px) !default;
|
|
75
75
|
|
76
76
|
// Control the border color for the span area of the split button
|
77
77
|
@if $span-border {
|
78
|
-
span { border-
|
78
|
+
span { border-#{$default-float}-color: darken($span-border, $split-button-function-factor); }
|
79
79
|
}
|
80
80
|
|
81
81
|
// Style of the button and clickable area for tiny sizes
|
82
82
|
@if $padding == tiny {
|
83
|
-
padding-#{$
|
83
|
+
padding-#{$opposite-direction}: $split-button-padding-tny;
|
84
84
|
|
85
85
|
span { width: $split-button-span-width-tny;
|
86
86
|
&:before {
|
87
87
|
border-width: $split-button-pip-size-tny;
|
88
88
|
top: $split-button-pip-top-tny;
|
89
|
-
margin-
|
89
|
+
margin-#{$default-float}: $split-button-pip-default-float-tny;
|
90
90
|
}
|
91
91
|
}
|
92
92
|
}
|
93
93
|
|
94
94
|
// Style of the button and clickable area for small sizes
|
95
95
|
@else if $padding == small {
|
96
|
-
padding-#{$
|
96
|
+
padding-#{$opposite-direction}: $split-button-padding-sml;
|
97
97
|
|
98
98
|
span { width: $split-button-span-width-sml;
|
99
99
|
&:before {
|
100
100
|
border-width: $split-button-pip-size-sml;
|
101
101
|
top: $split-button-pip-top-sml;
|
102
|
-
margin-
|
102
|
+
margin-#{$default-float}: $split-button-pip-default-float-sml;
|
103
103
|
}
|
104
104
|
}
|
105
105
|
}
|
106
106
|
|
107
107
|
// Style of the button and clickable area for default (medium) sizes
|
108
108
|
@else if $padding == medium {
|
109
|
-
padding-#{$
|
109
|
+
padding-#{$opposite-direction}: $split-button-padding-med;
|
110
110
|
|
111
111
|
span { width: $split-button-span-width-med;
|
112
112
|
&:before {
|
113
113
|
border-width: $split-button-pip-size-med;
|
114
114
|
top: $split-button-pip-top-med;
|
115
|
-
margin-
|
115
|
+
margin-#{$default-float}: $split-button-pip-default-float-med;
|
116
116
|
}
|
117
117
|
}
|
118
118
|
}
|
119
119
|
|
120
120
|
// Style of the button and clickable area for large sizes
|
121
121
|
@else if $padding == large {
|
122
|
-
padding-#{$
|
122
|
+
padding-#{$opposite-direction}: $split-button-padding-lrg;
|
123
123
|
|
124
124
|
span { width: $split-button-span-width-lrg;
|
125
125
|
&:before {
|
126
126
|
border-width: $split-button-pip-size-lrg;
|
127
127
|
top: $split-button-pip-top-lrg;
|
128
|
-
margin-
|
128
|
+
margin-#{$default-float}: $split-button-pip-default-float-lrg;
|
129
129
|
}
|
130
130
|
}
|
131
131
|
}
|
@@ -152,8 +152,8 @@ $split-button-pip-left-lrg: emCalc(-9px) !default;
|
|
152
152
|
|
153
153
|
&.secondary { @include split-button(false, $split-button-pip-color-alt, false, false); }
|
154
154
|
|
155
|
-
&.radius span { @include side-radius(
|
156
|
-
&.round span { @include side-radius(
|
155
|
+
&.radius span { @include side-radius($opposite-direction, $global-radius); }
|
156
|
+
&.round span { @include side-radius($opposite-direction, 1000px); }
|
157
157
|
}
|
158
158
|
|
159
159
|
}
|
@@ -30,7 +30,7 @@ $sub-nav-active-cursor: default !default;
|
|
30
30
|
overflow: hidden;
|
31
31
|
margin: $sub-nav-list-margin;
|
32
32
|
padding-top: $sub-nav-list-padding-top;
|
33
|
-
margin-#{$
|
33
|
+
margin-#{$opposite-direction}: 0;
|
34
34
|
margin-#{$default-float}: emCalc(-9px);
|
35
35
|
|
36
36
|
dt,
|
@@ -57,15 +57,14 @@ $switch-label-outline: 1px dotted #888 !default;
|
|
57
57
|
// Default label styles for type and transition
|
58
58
|
label {
|
59
59
|
position: relative;
|
60
|
-
|
60
|
+
#{$default-float}: 0;
|
61
61
|
z-index: 2;
|
62
|
-
float:
|
62
|
+
float: $default-float;
|
63
63
|
width: 50%;
|
64
64
|
height: 100%;
|
65
65
|
margin: 0;
|
66
|
-
text-align: right;
|
67
66
|
font-weight: bold;
|
68
|
-
text-align:
|
67
|
+
text-align: $default-float;
|
69
68
|
|
70
69
|
// Transition for the switch label to follow paddle
|
71
70
|
@include single-transition(all, $transition-speed, $transition-ease);
|
@@ -91,7 +90,7 @@ $switch-label-outline: 1px dotted #888 !default;
|
|
91
90
|
& > span {
|
92
91
|
position: absolute;
|
93
92
|
top: -1px;
|
94
|
-
|
93
|
+
#{$default-float}: -1px;
|
95
94
|
z-index: 1;
|
96
95
|
display: block;
|
97
96
|
padding: 0;
|
@@ -107,19 +106,19 @@ $switch-label-outline: 1px dotted #888 !default;
|
|
107
106
|
|
108
107
|
// Controlling the position of the labels as they are toggled.
|
109
108
|
input:checked { display: none !important; }
|
110
|
-
input {
|
109
|
+
input { #{$default-float}: 0; display: block !important; }
|
111
110
|
|
112
111
|
// Left Label alignment and position changes, including fixes for while inside a custom form
|
113
112
|
input:first-of-type + label,
|
114
|
-
input:first-of-type + span + label {
|
113
|
+
input:first-of-type + span + label { #{$default-float}: -50%; }
|
115
114
|
input:first-of-type:checked + label,
|
116
|
-
input:first-of-type:checked + span + label {
|
115
|
+
input:first-of-type:checked + span + label { #{$default-float}: 0%; }
|
117
116
|
|
118
117
|
// Right Label alignment and position changes, including fixes for while inside a custom form
|
119
118
|
input:last-of-type + label,
|
120
|
-
input:last-of-type + span + label {
|
119
|
+
input:last-of-type + span + label {#{$opposite-direction}: -50%; #{$default-float}: auto; text-align: $opposite-direction; }
|
121
120
|
input:last-of-type:checked + label,
|
122
|
-
input:last-of-type:checked + span + label {
|
121
|
+
input:last-of-type:checked + span + label { #{$opposite-direction}: 0%; #{$default-float}: auto; }
|
123
122
|
|
124
123
|
// Hiding custom form spans since we auto-create them
|
125
124
|
span.custom { display: none !important; }
|
@@ -144,8 +143,8 @@ $switch-label-outline: 1px dotted #888 !default;
|
|
144
143
|
input {
|
145
144
|
// Move the paddle to the right position
|
146
145
|
&:first-of-type:checked ~ span {
|
147
|
-
|
148
|
-
margin-
|
146
|
+
#{$default-float}: 100%;
|
147
|
+
margin-#{$default-float}: emCalc(-$height + 1px);
|
149
148
|
}
|
150
149
|
}
|
151
150
|
|