ama_layout 2.3.4 → 2.4.0
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.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 90b72d64f6a9a009648defa5522d42724a4e1964
|
4
|
+
data.tar.gz: 3637567b89e3ed1a424bbecab0ad1da01389c1be
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 44af4e3ef1ff9ad015445eb4937b609f98167340f7c8581c9551cf239141c3978406d1e00d5d5fca5da0c0ab396c9e34fa37fdec7ccedc36c2c1842b593d47b1
|
7
|
+
data.tar.gz: 75bd075e2ad579fe3b5f2bfc5de882118159befcbe2420ed0146f0e6272e7ec22b221b0c22cf8fe1ea510233724bb9b9daa01ebc1e06783b00be0a46faa630af
|
@@ -70,6 +70,7 @@ input[type="checkbox"] + label{
|
|
70
70
|
background: $ash;
|
71
71
|
border: $base-border;
|
72
72
|
margin: 0;
|
73
|
+
width: 100%;
|
73
74
|
|
74
75
|
&:nth-child(2){
|
75
76
|
margin-top: -1px;
|
@@ -80,37 +81,47 @@ input[type="checkbox"] + label{
|
|
80
81
|
background: darken($ash, 4%);
|
81
82
|
}
|
82
83
|
}
|
83
|
-
|
84
|
-
input[type="radio"] + label > span:first-of-type,
|
85
84
|
input[type="checkbox"] + label > span:first-of-type,
|
85
|
+
input[type="radio"] + label > span:first-of-type,
|
86
86
|
input[type="radio"] + label span:first-of-type{
|
87
87
|
display: inline-block;
|
88
|
-
width:
|
89
|
-
min-width:
|
90
|
-
height:
|
91
|
-
margin: $base-margin 0 $base-margin
|
88
|
+
width: 24px;
|
89
|
+
min-width: 24px;
|
90
|
+
height: 24px;
|
91
|
+
margin: $base-margin 0 $base-margin;
|
92
92
|
vertical-align: top;
|
93
93
|
cursor: pointer;
|
94
|
-
-moz-border-radius: 50%;
|
95
94
|
border-radius: 50%;
|
96
95
|
background-color: $white;
|
97
96
|
border: $base-border;
|
98
97
|
}
|
99
98
|
|
100
|
-
input[type="
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
99
|
+
input[type="radio"] + label > span:first-of-type,
|
100
|
+
input[type="radio"] + label span:first-of-type{
|
101
|
+
&:before{
|
102
|
+
content: ' ';
|
103
|
+
border-radius: 100%;
|
104
|
+
margin: 6px auto 0 auto;
|
105
|
+
transition: all .5s ease-in-out;
|
106
|
+
}
|
108
107
|
}
|
109
108
|
|
110
109
|
input[type="radio"]:checked + label > span:first-of-type,
|
111
110
|
input[type="radio"]:checked + label span:first-of-type{
|
112
111
|
background-color: $white;
|
113
|
-
border:
|
112
|
+
border: 2px solid $secondary-color;
|
113
|
+
|
114
|
+
&:before{
|
115
|
+
content: '';
|
116
|
+
display: block;
|
117
|
+
position: relative;
|
118
|
+
width: 8px;
|
119
|
+
height: 8px;
|
120
|
+
background-color: $secondary-color;
|
121
|
+
-moz-transform: scale(2,2);
|
122
|
+
-webkit-transform: scale(2,2);
|
123
|
+
transform: scale(2,2);
|
124
|
+
}
|
114
125
|
}
|
115
126
|
|
116
127
|
input[type="radio"]:checked + label{
|
@@ -130,31 +141,65 @@ input[type="radio"]:checked + label{
|
|
130
141
|
}
|
131
142
|
}
|
132
143
|
|
144
|
+
input[type="checkbox"] + label > span:first-of-type{
|
145
|
+
border-radius: 0;
|
146
|
+
max-width: 10%;
|
147
|
+
margin: $base-margin $base-margin*2 $base-margin 0;
|
148
|
+
}
|
149
|
+
|
150
|
+
.checkbox-label{
|
151
|
+
display: inline-block;
|
152
|
+
width: 80%;
|
153
|
+
}
|
154
|
+
|
133
155
|
input[type="checkbox"]:checked + label{
|
134
156
|
position: relative;
|
135
|
-
}
|
136
157
|
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
158
|
+
&:before{
|
159
|
+
content: '';
|
160
|
+
display: block;
|
161
|
+
position: absolute;
|
162
|
+
left: 14px;
|
163
|
+
top: 28px;
|
164
|
+
width: 8px;
|
165
|
+
height: 16px;
|
166
|
+
border-right: 3px solid $white;
|
167
|
+
border-top: 3px solid $white;
|
168
|
+
transform:(scaleX(-1) rotate(180deg + -45deg));
|
169
|
+
transform-origin:left top;
|
170
|
+
-webkit-transform:(scaleX(-1) rotate(180deg + -45deg));
|
171
|
+
-webkit-transform-origin:left top;
|
172
|
+
-moz-transform:(scaleX(-1) rotate(180deg + -45deg));
|
173
|
+
-moz-transform-origin:left top;
|
174
|
+
animation:checkbox 0.8s;
|
175
|
+
}
|
176
|
+
|
177
|
+
span:first-of-type{
|
178
|
+
background: $brand-blue-light;
|
179
|
+
}
|
152
180
|
}
|
153
181
|
|
154
182
|
[type="checkbox"]:checked + label:after{
|
155
183
|
margin-left: $base-margin*6;
|
156
184
|
}
|
157
185
|
|
186
|
+
@keyframes checkbox{
|
187
|
+
0%{
|
188
|
+
height: 0;
|
189
|
+
width: 0;
|
190
|
+
}
|
191
|
+
|
192
|
+
25%{
|
193
|
+
height: 0;
|
194
|
+
width: 8px;
|
195
|
+
}
|
196
|
+
|
197
|
+
50%{
|
198
|
+
height: 17px;
|
199
|
+
width: 8px;
|
200
|
+
}
|
201
|
+
}
|
202
|
+
|
158
203
|
.month,
|
159
204
|
.year{
|
160
205
|
@extend %inputs-thirds;
|
data/lib/ama_layout/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ama_layout
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael van den Beuken
|
@@ -18,7 +18,7 @@ authors:
|
|
18
18
|
autorequire:
|
19
19
|
bindir: bin
|
20
20
|
cert_chain: []
|
21
|
-
date: 2016-02-
|
21
|
+
date: 2016-02-23 00:00:00.000000000 Z
|
22
22
|
dependencies:
|
23
23
|
- !ruby/object:Gem::Dependency
|
24
24
|
name: foundation-rails
|
@@ -359,7 +359,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
359
359
|
version: '0'
|
360
360
|
requirements: []
|
361
361
|
rubyforge_project:
|
362
|
-
rubygems_version: 2.
|
362
|
+
rubygems_version: 2.4.5.1
|
363
363
|
signing_key:
|
364
364
|
specification_version: 4
|
365
365
|
summary: ".ama.ab.ca site layouts"
|