1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,21 @@ |
1 |
+The MIT License (MIT) |
|
2 |
+ |
|
3 |
+Copyright 2015 Ben Plum |
|
4 |
+ |
|
5 |
+Permission is hereby granted, free of charge, to any person obtaining a copy |
|
6 |
+of this software and associated documentation files (the "Software"), to deal |
|
7 |
+in the Software without restriction, including without limitation the rights |
|
8 |
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
|
9 |
+copies of the Software, and to permit persons to whom the Software is |
|
10 |
+furnished to do so, subject to the following conditions: |
|
11 |
+ |
|
12 |
+The above copyright notice and this permission notice shall be included in |
|
13 |
+all copies or substantial portions of the Software. |
|
14 |
+ |
|
15 |
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
|
16 |
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
|
17 |
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
|
18 |
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
|
19 |
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
|
20 |
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
|
21 |
+THE SOFTWARE. |
|
0 | 22 |
\ No newline at end of file |
1 | 23 |
new file mode 100755 |
... | ... |
@@ -0,0 +1,123 @@ |
1 |
+/*! formstone v0.7.12 [background.css] 2015-08-12 | MIT License | formstone.it */ |
|
2 |
+ |
|
3 |
+/** |
|
4 |
+ * @class |
|
5 |
+ * @name .fs-background-element |
|
6 |
+ * @type element |
|
7 |
+ * @description Target elmement |
|
8 |
+ */ |
|
9 |
+/** |
|
10 |
+ * @class |
|
11 |
+ * @name .fs-background |
|
12 |
+ * @type element |
|
13 |
+ * @description Base widget class |
|
14 |
+ */ |
|
15 |
+.fs-background { |
|
16 |
+ overflow: hidden; |
|
17 |
+ position: relative; |
|
18 |
+ /** |
|
19 |
+ * @class |
|
20 |
+ * @name .fs-background-container |
|
21 |
+ * @type element |
|
22 |
+ * @description Container element |
|
23 |
+ */ |
|
24 |
+ /** |
|
25 |
+ * @class |
|
26 |
+ * @name .fs-background-media |
|
27 |
+ * @type element |
|
28 |
+ * @description Media element |
|
29 |
+ */ |
|
30 |
+ /** |
|
31 |
+ * @class |
|
32 |
+ * @name .fs-background-media.fs-background-animated |
|
33 |
+ * @type modifier |
|
34 |
+ * @description Indicates animated state |
|
35 |
+ */ |
|
36 |
+ /** |
|
37 |
+ * @class |
|
38 |
+ * @name .fs-background-media.fs-background-navtive |
|
39 |
+ * @type modifier |
|
40 |
+ * @description Indicates native support |
|
41 |
+ */ |
|
42 |
+ /** |
|
43 |
+ * @class |
|
44 |
+ * @name .fs-background-media.fs-background-fixed |
|
45 |
+ * @type modifier |
|
46 |
+ * @description Indicates fixed positioning |
|
47 |
+ */ |
|
48 |
+ /** |
|
49 |
+ * @class |
|
50 |
+ * @name .fs-background-embed |
|
51 |
+ * @type element |
|
52 |
+ * @description Embed/iFrame element |
|
53 |
+ */ |
|
54 |
+ /** |
|
55 |
+ * @class |
|
56 |
+ * @name .fs-background-embed.fs-background-embed-ready |
|
57 |
+ * @type modifier |
|
58 |
+ * @description Indicates ready state |
|
59 |
+ */ |
|
60 |
+} |
|
61 |
+.fs-background, |
|
62 |
+.fs-background-container, |
|
63 |
+.fs-background-media { |
|
64 |
+ -webkit-transition: none; |
|
65 |
+ transition: none; |
|
66 |
+} |
|
67 |
+.fs-background-container { |
|
68 |
+ width: 100%; |
|
69 |
+ height: 100%; |
|
70 |
+ position: absolute; |
|
71 |
+ top: 0; |
|
72 |
+ z-index: 0; |
|
73 |
+ overflow: hidden; |
|
74 |
+} |
|
75 |
+.fs-background-media { |
|
76 |
+ position: absolute; |
|
77 |
+ top: 0; |
|
78 |
+ bottom: 0; |
|
79 |
+ opacity: 0; |
|
80 |
+} |
|
81 |
+.fs-background-media.fs-background-animated { |
|
82 |
+ -webkit-transition: opacity 0.5s linear; |
|
83 |
+ transition: opacity 0.5s linear; |
|
84 |
+} |
|
85 |
+.fs-background-media img, |
|
86 |
+.fs-background-media video, |
|
87 |
+.fs-background-media iframe { |
|
88 |
+ width: 100%; |
|
89 |
+ height: 100%; |
|
90 |
+ display: block; |
|
91 |
+ -webkit-user-drag: none; |
|
92 |
+} |
|
93 |
+.fs-background-media.fs-background-native, |
|
94 |
+.fs-background-media.fs-background-fixed { |
|
95 |
+ width: 100%; |
|
96 |
+ height: 100%; |
|
97 |
+} |
|
98 |
+.fs-background-media.fs-background-native img, |
|
99 |
+.fs-background-media.fs-background-fixed img { |
|
100 |
+ display: none; |
|
101 |
+} |
|
102 |
+.fs-background-media.fs-background-native { |
|
103 |
+ background-position: center; |
|
104 |
+ background-size: cover; |
|
105 |
+} |
|
106 |
+.fs-background-media.fs-background-fixed { |
|
107 |
+ background-position: center; |
|
108 |
+ background-attachment: fixed; |
|
109 |
+} |
|
110 |
+.fs-background-embed.fs-background-ready:after { |
|
111 |
+ width: 100%; |
|
112 |
+ height: 100%; |
|
113 |
+ position: absolute; |
|
114 |
+ top: 0; |
|
115 |
+ right: 0; |
|
116 |
+ bottom: 0; |
|
117 |
+ left: 0; |
|
118 |
+ z-index: 1; |
|
119 |
+ content: ''; |
|
120 |
+} |
|
121 |
+.fs-background-embed.fs-background-ready iframe { |
|
122 |
+ z-index: 0; |
|
123 |
+} |
0 | 124 |
new file mode 100755 |
... | ... |
@@ -0,0 +1,328 @@ |
1 |
+/*! formstone v0.7.12 [carousel.css] 2015-08-12 | MIT License | formstone.it */ |
|
2 |
+ |
|
3 |
+/** |
|
4 |
+ * @class |
|
5 |
+ * @name .fs-carousel-element |
|
6 |
+ * @type element |
|
7 |
+ * @description Target elmement |
|
8 |
+ */ |
|
9 |
+/** |
|
10 |
+ * @class |
|
11 |
+ * @name .fs-carousel |
|
12 |
+ * @type element |
|
13 |
+ * @description Base widget class |
|
14 |
+ */ |
|
15 |
+/** |
|
16 |
+ * @class |
|
17 |
+ * @name .fs-carousel.fs-enabled |
|
18 |
+ * @type modifier |
|
19 |
+ * @description Indicates enabled state |
|
20 |
+ */ |
|
21 |
+/** |
|
22 |
+ * @class |
|
23 |
+ * @name .fs-carousel.fs-rtl |
|
24 |
+ * @type modifier |
|
25 |
+ * @description Indicates right to left display |
|
26 |
+ */ |
|
27 |
+/** |
|
28 |
+ * @class |
|
29 |
+ * @name .fs-carousel.fs-carousel-auto_height |
|
30 |
+ * @type modifier |
|
31 |
+ * @description Indicates auto height sizing |
|
32 |
+ */ |
|
33 |
+.fs-carousel { |
|
34 |
+ /** |
|
35 |
+ * @class |
|
36 |
+ * @name .fs-carousel-viewport |
|
37 |
+ * @type element |
|
38 |
+ * @description Carousel container |
|
39 |
+ */ |
|
40 |
+ /** |
|
41 |
+ * @class |
|
42 |
+ * @name .fs-carousel-wrapper |
|
43 |
+ * @type element |
|
44 |
+ * @description Carousel container |
|
45 |
+ */ |
|
46 |
+ /** |
|
47 |
+ * @class |
|
48 |
+ * @name .fs-carousel-container |
|
49 |
+ * @type element |
|
50 |
+ * @description Canister container |
|
51 |
+ */ |
|
52 |
+ /** |
|
53 |
+ * @class |
|
54 |
+ * @name .fs-carousel-canister |
|
55 |
+ * @type element |
|
56 |
+ * @description Item container |
|
57 |
+ */ |
|
58 |
+ /** |
|
59 |
+ * @class |
|
60 |
+ * @name .fs-carousel-canister |
|
61 |
+ * @type element |
|
62 |
+ * @description Item container |
|
63 |
+ */ |
|
64 |
+ /** |
|
65 |
+ * @class |
|
66 |
+ * @name .fs-carousel-item |
|
67 |
+ * @type element |
|
68 |
+ * @description Individual item |
|
69 |
+ */ |
|
70 |
+ /** |
|
71 |
+ * @class |
|
72 |
+ * @name .fs-carousel-controls |
|
73 |
+ * @type element |
|
74 |
+ * @description Controls container |
|
75 |
+ */ |
|
76 |
+ /** |
|
77 |
+ * @class |
|
78 |
+ * @name .fs-carousel-controls.fs-carousel-visible |
|
79 |
+ * @type modifier |
|
80 |
+ * @description Indicates visible state |
|
81 |
+ */ |
|
82 |
+ /** |
|
83 |
+ * @class |
|
84 |
+ * @name .fs-carousel-control |
|
85 |
+ * @type element |
|
86 |
+ * @description Control element |
|
87 |
+ */ |
|
88 |
+ /** |
|
89 |
+ * @class |
|
90 |
+ * @name .fs-carousel-control.fs-carousel-control_previous |
|
91 |
+ * @type modifier |
|
92 |
+ * @description Indicates previous control |
|
93 |
+ */ |
|
94 |
+ /** |
|
95 |
+ * @class |
|
96 |
+ * @name .fs-carousel-control.fs-carousel-control_next |
|
97 |
+ * @type modifier |
|
98 |
+ * @description Indicates next control |
|
99 |
+ */ |
|
100 |
+ /** |
|
101 |
+ * @class |
|
102 |
+ * @name .fs-carousel-control.fs-carousel-control_disabled |
|
103 |
+ * @type modifier |
|
104 |
+ * @description Indicates disbaled state |
|
105 |
+ */ |
|
106 |
+ /** |
|
107 |
+ * @class |
|
108 |
+ * @name .fs-carousel-pagination |
|
109 |
+ * @type element |
|
110 |
+ * @description Item element |
|
111 |
+ */ |
|
112 |
+ /** |
|
113 |
+ * @class |
|
114 |
+ * @name .fs-carousel-pagination.fs-carousel-visible |
|
115 |
+ * @type modifier |
|
116 |
+ * @description Indicates visible state |
|
117 |
+ */ |
|
118 |
+ /** |
|
119 |
+ * @class |
|
120 |
+ * @name .fs-carousel-page |
|
121 |
+ * @type element |
|
122 |
+ * @description Pagiantion item element |
|
123 |
+ */ |
|
124 |
+ /** |
|
125 |
+ * @class |
|
126 |
+ * @name .fs-carousel-page.fs-carousel-active |
|
127 |
+ * @type modifier |
|
128 |
+ * @description Indicates active state |
|
129 |
+ */ |
|
130 |
+} |
|
131 |
+.fs-carousel.fs-carousel-enabled { |
|
132 |
+ width: 100%; |
|
133 |
+ position: relative; |
|
134 |
+ overflow: hidden; |
|
135 |
+} |
|
136 |
+.fs-carousel.fs-carousel-enabled:after { |
|
137 |
+ clear: both; |
|
138 |
+ content: ''; |
|
139 |
+ display: table; |
|
140 |
+} |
|
141 |
+.fs-carousel, |
|
142 |
+.fs-carousel:after, |
|
143 |
+.fs-carousel:before, |
|
144 |
+.fs-carousel *, |
|
145 |
+.fs-carousel *:after, |
|
146 |
+.fs-carousel *:before { |
|
147 |
+ box-sizing: border-box; |
|
148 |
+ -webkit-transition: none; |
|
149 |
+ transition: none; |
|
150 |
+ -webkit-user-select: none !important; |
|
151 |
+ -moz-user-select: none !important; |
|
152 |
+ -ms-user-select: none !important; |
|
153 |
+ user-select: none !important; |
|
154 |
+} |
|
155 |
+.fs-carousel-enabled .fs-carousel-viewport { |
|
156 |
+ position: relative; |
|
157 |
+ overflow: hidden; |
|
158 |
+} |
|
159 |
+.fs-carousel-enabled .fs-carousel-viewport:after { |
|
160 |
+ clear: both; |
|
161 |
+ content: ''; |
|
162 |
+ display: table; |
|
163 |
+} |
|
164 |
+.fs-carousel-enabled .fs-carousel-wrapper { |
|
165 |
+ position: relative; |
|
166 |
+ overflow: hidden; |
|
167 |
+} |
|
168 |
+.fs-carousel-enabled .fs-carousel-wrapper:after { |
|
169 |
+ clear: both; |
|
170 |
+ content: ''; |
|
171 |
+ display: table; |
|
172 |
+} |
|
173 |
+.fs-carousel-enabled .fs-carousel-container { |
|
174 |
+ position: relative; |
|
175 |
+ overflow: hidden; |
|
176 |
+} |
|
177 |
+.fs-carousel-enabled .fs-carousel-container:after { |
|
178 |
+ clear: both; |
|
179 |
+ content: ''; |
|
180 |
+ display: table; |
|
181 |
+} |
|
182 |
+.fs-carousel-enabled .fs-carousel-canister { |
|
183 |
+ position: relative; |
|
184 |
+ -webkit-backface-visibility: hidden; |
|
185 |
+ backface-visibility: hidden; |
|
186 |
+ margin: 0; |
|
187 |
+ overflow: hidden; |
|
188 |
+ -webkit-transition: -webkit-transform 0.5s ease; |
|
189 |
+ transition: transform 0.5s ease; |
|
190 |
+ -webkit-transform: translate3d(0, 0, 0); |
|
191 |
+ transform: translate3d(0, 0, 0); |
|
192 |
+} |
|
193 |
+.fs-carousel-enabled.fs-carousel-auto_height .fs-carousel-canister { |
|
194 |
+ -webkit-transition: height 0.5s ease, -webkit-transform 0.5s ease; |
|
195 |
+ transition: height 0.5s ease, transform 0.5s ease; |
|
196 |
+} |
|
197 |
+.fs-carousel-enabled .fs-carousel-item { |
|
198 |
+ display: block; |
|
199 |
+ float: left; |
|
200 |
+} |
|
201 |
+.fs-carousel-enabled .fs-carousel-item img { |
|
202 |
+ -webkit-user-drag: none; |
|
203 |
+ -webkit-user-select: none; |
|
204 |
+ -moz-user-select: none; |
|
205 |
+ -ms-user-select: none; |
|
206 |
+ user-select: none; |
|
207 |
+} |
|
208 |
+.fs-carousel-controls { |
|
209 |
+ display: none; |
|
210 |
+} |
|
211 |
+.fs-carousel-enabled .fs-carousel-controls { |
|
212 |
+ width: 100%; |
|
213 |
+ margin: 0; |
|
214 |
+ padding: 0; |
|
215 |
+} |
|
216 |
+.fs-carousel-enabled .fs-carousel-controls.fs-carousel-visible { |
|
217 |
+ display: block; |
|
218 |
+} |
|
219 |
+.fs-carousel-enabled .fs-carousel-control { |
|
220 |
+ position: absolute; |
|
221 |
+ top: 0; |
|
222 |
+ bottom: 0; |
|
223 |
+ border: 0; |
|
224 |
+ cursor: pointer; |
|
225 |
+ display: block; |
|
226 |
+ padding: 0; |
|
227 |
+ visibility: hidden; |
|
228 |
+ width: 40px; |
|
229 |
+ height: 40px; |
|
230 |
+ background: #ffffff; |
|
231 |
+ border-radius: 100%; |
|
232 |
+ box-shadow: 0 0 5px rgba(0, 0, 0, 0.25); |
|
233 |
+ margin: auto; |
|
234 |
+ opacity: 0; |
|
235 |
+ overflow: hidden; |
|
236 |
+ text-indent: 200%; |
|
237 |
+ -webkit-transition: opacity 0.15s ease, visibility 0.15s ease; |
|
238 |
+ transition: opacity 0.15s ease, visibility 0.15s ease; |
|
239 |
+ white-space: nowrap; |
|
240 |
+} |
|
241 |
+.fs-carousel-enabled .fs-carousel-control:before { |
|
242 |
+ width: 0; |
|
243 |
+ height: 0; |
|
244 |
+ position: absolute; |
|
245 |
+ top: 0; |
|
246 |
+ right: 0; |
|
247 |
+ bottom: 0; |
|
248 |
+ left: 0; |
|
249 |
+ content: ''; |
|
250 |
+ margin: auto; |
|
251 |
+} |
|
252 |
+.no-opacity .fs-carousel-enabled .fs-carousel-control { |
|
253 |
+ text-indent: -999px; |
|
254 |
+} |
|
255 |
+.fs-carousel-enabled .fs-carousel-control.fs-carousel-visible { |
|
256 |
+ visibility: visible; |
|
257 |
+ opacity: 1; |
|
258 |
+} |
|
259 |
+.fs-carousel-enabled .fs-carousel-control_previous, |
|
260 |
+.fs-carousel-enabled.fs-carousel-rtl .fs-carousel-control_next { |
|
261 |
+ right: auto; |
|
262 |
+ left: 20px; |
|
263 |
+} |
|
264 |
+.fs-carousel-enabled .fs-carousel-control_previous:before, |
|
265 |
+.fs-carousel-enabled.fs-carousel-rtl .fs-carousel-control_next:before { |
|
266 |
+ border-top: 7px solid transparent; |
|
267 |
+ border-bottom: 7px solid transparent; |
|
268 |
+ border-right: 10.5px solid #333333; |
|
269 |
+ border-left: none; |
|
270 |
+ margin-left: 13.7px; |
|
271 |
+ margin-right: auto; |
|
272 |
+} |
|
273 |
+.fs-carousel-enabled .fs-carousel-control_next, |
|
274 |
+.fs-carousel-enabled.fs-carousel-rtl .fs-carousel-control_previous { |
|
275 |
+ right: 20px; |
|
276 |
+ left: auto; |
|
277 |
+} |
|
278 |
+.fs-carousel-enabled .fs-carousel-control_next:before, |
|
279 |
+.fs-carousel-enabled.fs-carousel-rtl .fs-carousel-control_previous:before { |
|
280 |
+ border-top: 7px solid transparent; |
|
281 |
+ border-bottom: 7px solid transparent; |
|
282 |
+ border-left: 10.5px solid #333333; |
|
283 |
+ border-right: none; |
|
284 |
+ margin-right: 13.7px; |
|
285 |
+ margin-left: auto; |
|
286 |
+} |
|
287 |
+.fs-carousel-enabled .fs-carousel-control_disabled { |
|
288 |
+ opacity: 0; |
|
289 |
+} |
|
290 |
+.fs-carousel-pagination { |
|
291 |
+ display: none; |
|
292 |
+} |
|
293 |
+.fs-carousel-enabled .fs-carousel-pagination { |
|
294 |
+ width: 100%; |
|
295 |
+ margin: 10px 0 0; |
|
296 |
+ padding: 0; |
|
297 |
+ text-align: center; |
|
298 |
+} |
|
299 |
+.fs-carousel-enabled .fs-carousel-pagination.fs-carousel-visible { |
|
300 |
+ display: block; |
|
301 |
+} |
|
302 |
+.fs-carousel-enabled .fs-carousel-page { |
|
303 |
+ border: 0; |
|
304 |
+ cursor: pointer; |
|
305 |
+ display: inline-block; |
|
306 |
+ padding: 0; |
|
307 |
+ width: 10px; |
|
308 |
+ height: 10px; |
|
309 |
+ background: #333333; |
|
310 |
+ border-radius: 100%; |
|
311 |
+ margin: 0 3px; |
|
312 |
+ opacity: 0.5; |
|
313 |
+ overflow: hidden; |
|
314 |
+ text-indent: 200%; |
|
315 |
+ white-space: nowrap; |
|
316 |
+} |
|
317 |
+.no-opacity .fs-carousel-enabled .fs-carousel-page { |
|
318 |
+ text-indent: -999px; |
|
319 |
+} |
|
320 |
+.fs-carousel-enabled .fs-carousel-page.fs-carousel-active { |
|
321 |
+ opacity: 1; |
|
322 |
+} |
|
323 |
+.fs-carousel-enabled.fs-carousel-rtl { |
|
324 |
+ direction: rtl; |
|
325 |
+} |
|
326 |
+.fs-carousel-enabled.fs-carousel-rtl .fs-carousel-item { |
|
327 |
+ float: right; |
|
328 |
+} |
0 | 329 |
new file mode 100755 |
... | ... |
@@ -0,0 +1,296 @@ |
1 |
+/*! formstone v0.7.12 [checkbox.css] 2015-08-12 | MIT License | formstone.it */ |
|
2 |
+ |
|
3 |
+/** |
|
4 |
+ * @class |
|
5 |
+ * @name .fs-checkbox-element |
|
6 |
+ * @type element |
|
7 |
+ * @description Target elmement |
|
8 |
+ */ |
|
9 |
+/** |
|
10 |
+ * @class |
|
11 |
+ * @name .fs-checkbox |
|
12 |
+ * @type element |
|
13 |
+ * @description Base widget class |
|
14 |
+ */ |
|
15 |
+/** |
|
16 |
+ * @class |
|
17 |
+ * @name .fs-checkbox.fs-checkbox-checked |
|
18 |
+ * @type modifier |
|
19 |
+ * @description Indicates checked state |
|
20 |
+ */ |
|
21 |
+/** |
|
22 |
+ * @class |
|
23 |
+ * @name .fs-checkbox.fs-checkbox-radio |
|
24 |
+ * @type modifier |
|
25 |
+ * @description Indicates radio interface |
|
26 |
+ */ |
|
27 |
+/** |
|
28 |
+ * @class |
|
29 |
+ * @name .fs-checkbox.fs-checkbox-toggle |
|
30 |
+ * @type modifier |
|
31 |
+ * @description Indicates toggle interface |
|
32 |
+ */ |
|
33 |
+/** |
|
34 |
+ * @class |
|
35 |
+ * @name .fs-checkbox.fs-checkbox-focus |
|
36 |
+ * @type modifier |
|
37 |
+ * @description Indicates focused state |
|
38 |
+ */ |
|
39 |
+/** |
|
40 |
+ * @class |
|
41 |
+ * @name .fs-checkbox.fs-checkbox-disabled |
|
42 |
+ * @type modifier |
|
43 |
+ * @description Indicates disabled state |
|
44 |
+ */ |
|
45 |
+.fs-checkbox { |
|
46 |
+ /** |
|
47 |
+ * @class |
|
48 |
+ * @name .fs-checkbox-enabled |
|
49 |
+ * @type modifier |
|
50 |
+ * @description Indicates enabled state |
|
51 |
+ */ |
|
52 |
+ /** |
|
53 |
+ * @class |
|
54 |
+ * @name .fs-checkbox-label |
|
55 |
+ * @type element |
|
56 |
+ * @description Label element |
|
57 |
+ */ |
|
58 |
+ /** |
|
59 |
+ * @class |
|
60 |
+ * @name .fs-checkbox-marker |
|
61 |
+ * @type element |
|
62 |
+ * @description Marker element |
|
63 |
+ */ |
|
64 |
+ /** |
|
65 |
+ * @class |
|
66 |
+ * @name .fs-checkbox-flag |
|
67 |
+ * @type element |
|
68 |
+ * @description Flag element |
|
69 |
+ */ |
|
70 |
+} |
|
71 |
+.fs-checkbox.fs-checkbox-enabled { |
|
72 |
+ cursor: pointer; |
|
73 |
+ margin: 0 0 10px 0; |
|
74 |
+ overflow: hidden; |
|
75 |
+} |
|
76 |
+.fs-checkbox.fs-checkbox-enabled:focus { |
|
77 |
+ box-shadow: none; |
|
78 |
+ outline: none; |
|
79 |
+} |
|
80 |
+.fs-checkbox, |
|
81 |
+.fs-checkbox:after, |
|
82 |
+.fs-checkbox:before, |
|
83 |
+.fs-checkbox *, |
|
84 |
+.fs-checkbox *:after, |
|
85 |
+.fs-checkbox *:before { |
|
86 |
+ box-sizing: border-box; |
|
87 |
+ -webkit-transition: none; |
|
88 |
+ transition: none; |
|
89 |
+ -webkit-user-select: none !important; |
|
90 |
+ -moz-user-select: none !important; |
|
91 |
+ -ms-user-select: none !important; |
|
92 |
+ user-select: none !important; |
|
93 |
+} |
|
94 |
+.fs-checkbox-element_wrapper { |
|
95 |
+ position: relative; |
|
96 |
+ border: 0; |
|
97 |
+ height: 0; |
|
98 |
+ margin: 0; |
|
99 |
+ opacity: 0; |
|
100 |
+ overflow: hidden; |
|
101 |
+ padding: 0; |
|
102 |
+ width: 0; |
|
103 |
+} |
|
104 |
+.fs-checkbox-element { |
|
105 |
+ position: absolute; |
|
106 |
+ top: 0; |
|
107 |
+ left: 0; |
|
108 |
+ z-index: -1; |
|
109 |
+ pointer-events: none; |
|
110 |
+ -webkit-transition: none; |
|
111 |
+ transition: none; |
|
112 |
+} |
|
113 |
+.fs-checkbox-label { |
|
114 |
+ color: #666666; |
|
115 |
+ cursor: pointer; |
|
116 |
+ display: block; |
|
117 |
+ font-size: 14px; |
|
118 |
+ line-height: 20px; |
|
119 |
+ overflow: hidden; |
|
120 |
+ -webkit-user-select: none; |
|
121 |
+ -moz-user-select: none; |
|
122 |
+ -ms-user-select: none; |
|
123 |
+ user-select: none; |
|
124 |
+} |
|
125 |
+.fs-checkbox-marker { |
|
126 |
+ width: 20px; |
|
127 |
+ height: 20px; |
|
128 |
+ background: #ffffff; |
|
129 |
+ border: 1px solid #cccccc; |
|
130 |
+ border-radius: 3px; |
|
131 |
+ cursor: pointer; |
|
132 |
+ display: block; |
|
133 |
+ float: left; |
|
134 |
+ margin: 0 10px 0 0; |
|
135 |
+} |
|
136 |
+.fs-checkbox-flag { |
|
137 |
+ width: 100%; |
|
138 |
+ height: 100%; |
|
139 |
+ margin: 0; |
|
140 |
+} |
|
141 |
+.fs-checkbox-flag:before { |
|
142 |
+ width: 5px; |
|
143 |
+ height: 10px; |
|
144 |
+ border: 2px solid #999999; |
|
145 |
+ border-top: 0; |
|
146 |
+ border-left: 0; |
|
147 |
+ content: ''; |
|
148 |
+ display: block; |
|
149 |
+ margin: 3px 0 0 6px; |
|
150 |
+ -webkit-transition: -webkit-transform 0.15s ease; |
|
151 |
+ transition: transform 0.15s ease; |
|
152 |
+ -webkit-transform: rotate(45deg) scale(0); |
|
153 |
+ -ms-transform: rotate(45deg) scale(0); |
|
154 |
+ transform: rotate(45deg) scale(0); |
|
155 |
+} |
|
156 |
+.fs-checkbox-checked .fs-checkbox-flag:before { |
|
157 |
+ -webkit-transform: rotate(45deg) scale(1); |
|
158 |
+ -ms-transform: rotate(45deg) scale(1); |
|
159 |
+ transform: rotate(45deg) scale(1); |
|
160 |
+} |
|
161 |
+.no-csstransforms .fs-checkbox-flag:before { |
|
162 |
+ width: 100%; |
|
163 |
+ height: 100%; |
|
164 |
+ content: "\2713"; |
|
165 |
+ display: none; |
|
166 |
+ line-height: 1; |
|
167 |
+ text-align: center; |
|
168 |
+} |
|
169 |
+.no-csstransforms .fs-checkbox-checked .fs-checkbox-flag:before { |
|
170 |
+ display: block; |
|
171 |
+} |
|
172 |
+.fs-checkbox-radio .fs-checkbox-marker { |
|
173 |
+ border-radius: 100%; |
|
174 |
+} |
|
175 |
+.fs-checkbox-radio .fs-checkbox-flag { |
|
176 |
+ background: #999999; |
|
177 |
+ border: 3px solid #ffffff; |
|
178 |
+ border-radius: 100%; |
|
179 |
+ -webkit-transform: scale(0); |
|
180 |
+ -ms-transform: scale(0); |
|
181 |
+ transform: scale(0); |
|
182 |
+ -webkit-transition: -webkit-transform 0.15s ease; |
|
183 |
+ transition: transform 0.15s ease; |
|
184 |
+} |
|
185 |
+.fs-checkbox-radio .fs-checkbox-flag:before { |
|
186 |
+ display: none; |
|
187 |
+} |
|
188 |
+.fs-checkbox-radio.fs-checkbox-checked .fs-checkbox-flag { |
|
189 |
+ -webkit-transform: scale(1); |
|
190 |
+ -ms-transform: scale(1); |
|
191 |
+ transform: scale(1); |
|
192 |
+} |
|
193 |
+.fs-checkbox-radio.fs-checkbox-checked .fs-checkbox-flag:before { |
|
194 |
+ display: none; |
|
195 |
+} |
|
196 |
+.no-csstransforms .fs-checkbox-radio .fs-checkbox-flag:before { |
|
197 |
+ display: none; |
|
198 |
+} |
|
199 |
+.no-csstransforms .fs-checkbox-radio.fs-checkbox-checked .fs-checkbox-flag:before { |
|
200 |
+ display: block; |
|
201 |
+} |
|
202 |
+.fs-checkbox-focus .fs-checkbox-label { |
|
203 |
+ color: #333333; |
|
204 |
+} |
|
205 |
+.fs-checkbox-focus .fs-checkbox-marker { |
|
206 |
+ border-color: #999999; |
|
207 |
+ box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); |
|
208 |
+} |
|
209 |
+.fs-checkbox-disabled { |
|
210 |
+ cursor: default; |
|
211 |
+ opacity: 0.5; |
|
212 |
+} |
|
213 |
+.fs-checkbox-disabled .fs-checkbox-label { |
|
214 |
+ color: #666666; |
|
215 |
+ cursor: default; |
|
216 |
+} |
|
217 |
+.fs-checkbox-disabled .fs-checkbox-marker { |
|
218 |
+ border-color: #cccccc; |
|
219 |
+ cursor: default; |
|
220 |
+} |
|
221 |
+.fs-checkbox-toggle { |
|
222 |
+ position: relative; |
|
223 |
+} |
|
224 |
+.fs-checkbox-toggle .fs-checkbox-label { |
|
225 |
+ line-height: 40px; |
|
226 |
+} |
|
227 |
+.fs-checkbox-toggle .fs-checkbox-marker { |
|
228 |
+ width: 100px; |
|
229 |
+ height: 40px; |
|
230 |
+ position: relative; |
|
231 |
+ border-radius: 3px; |
|
232 |
+} |
|
233 |
+.fs-checkbox-toggle .fs-checkbox-marker:after { |
|
234 |
+ clear: both; |
|
235 |
+ content: ''; |
|
236 |
+ display: table; |
|
237 |
+} |
|
238 |
+.fs-checkbox-toggle .fs-checkbox-flag { |
|
239 |
+ width: 50%; |
|
240 |
+ height: 100%; |
|
241 |
+ position: absolute; |
|
242 |
+ top: 0; |
|
243 |
+ left: 0; |
|
244 |
+ background: #999999; |
|
245 |
+ border: 2px solid #ffffff; |
|
246 |
+ border-radius: 3px; |
|
247 |
+ display: block; |
|
248 |
+ margin: 0; |
|
249 |
+ -webkit-transition: left 0.15s ease; |
|
250 |
+ transition: left 0.15s ease; |
|
251 |
+} |
|
252 |
+.fs-checkbox-toggle .fs-checkbox-flag:before { |
|
253 |
+ display: none; |
|
254 |
+} |
|
255 |
+.fs-checkbox-toggle .fs-checkbox-flag:after { |
|
256 |
+ width: 2px; |
|
257 |
+ height: 10px; |
|
258 |
+ position: absolute; |
|
259 |
+ top: 0; |
|
260 |
+ right: 0; |
|
261 |
+ bottom: 0; |
|
262 |
+ left: 0; |
|
263 |
+ background: #ffffff; |
|
264 |
+ box-shadow: 3px 0 0 #ffffff, -3px 0 0 #ffffff; |
|
265 |
+ content: ''; |
|
266 |
+ margin: auto; |
|
267 |
+ opacity: 0.75; |
|
268 |
+} |
|
269 |
+.no-touch .fs-checkbox-toggle:hover .fs-checkbox-flag:after { |
|
270 |
+ opacity: 1; |
|
271 |
+} |
|
272 |
+.fs-checkbox-toggle.fs-checkbox-checked .fs-checkbox-flag { |
|
273 |
+ left: 50%; |
|
274 |
+} |
|
275 |
+.fs-checkbox-toggle.fs-checkbox-checked .fs-checkbox-flag:before { |
|
276 |
+ display: none; |
|
277 |
+} |
|
278 |
+.fs-checkbox-toggle.fs-checkbox-disabled .fs-checkbox-flag:after { |
|
279 |
+ display: none; |
|
280 |
+} |
|
281 |
+.fs-checkbox-toggle .fs-checkbox-state { |
|
282 |
+ width: 50%; |
|
283 |
+ color: #666666; |
|
284 |
+ display: block; |
|
285 |
+ font-size: 12px; |
|
286 |
+ line-height: 40px; |
|
287 |
+ margin: 0; |
|
288 |
+ text-align: center; |
|
289 |
+ text-transform: uppercase; |
|
290 |
+} |
|
291 |
+.fs-checkbox-toggle .fs-checkbox-state_on { |
|
292 |
+ float: left; |
|
293 |
+} |
|
294 |
+.fs-checkbox-toggle .fs-checkbox-state_off { |
|
295 |
+ float: right; |
|
296 |
+} |
0 | 297 |
new file mode 100755 |
... | ... |
@@ -0,0 +1,351 @@ |
1 |
+/*! formstone v0.7.12 [dropdown.css] 2015-08-12 | MIT License | formstone.it */ |
|
2 |
+ |
|
3 |
+/** |
|
4 |
+ * @class |
|
5 |
+ * @name .fs-dropdown-element |
|
6 |
+ * @type element |
|
7 |
+ * @description Target element |
|
8 |
+ */ |
|
9 |
+/** |
|
10 |
+ * @class |
|
11 |
+ * @name .fs-dropdown |
|
12 |
+ * @type element |
|
13 |
+ * @description Base widget class |
|
14 |
+ */ |
|
15 |
+/** |
|
16 |
+ * @class |
|
17 |
+ * @name .fs-dropdown.fs-dropdown-multiple |
|
18 |
+ * @type modifer |
|
19 |
+ * @description Indicates multi-selected element |
|
20 |
+ */ |
|
21 |
+/** |
|
22 |
+ * @class |
|
23 |
+ * @name .fs-dropdown.fs-dropdown-cover |
|
24 |
+ * @type modifer |
|
25 |
+ * @description Indicates cover positioning |
|
26 |
+ */ |
|
27 |
+/** |
|
28 |
+ * @class |
|
29 |
+ * @name .fs-dropdown.fs-dropdown-bottom |
|
30 |
+ * @type modifer |
|
31 |
+ * @description Indicates bottom positioning |
|
32 |
+ */ |
|
33 |
+/** |
|
34 |
+ * @class |
|
35 |
+ * @name .fs-dropdown.fs-dropdown-disabled |
|
36 |
+ * @type modifer |
|
37 |
+ * @description Indicates disabled state |
|
38 |
+ */ |
|
39 |
+/** |
|
40 |
+ * @class |
|
41 |
+ * @name .fs-dropdown.fs-dropdown-open |
|
42 |
+ * @type modifer |
|
43 |
+ * @description Indicates open state |
|
44 |
+ */ |
|
45 |
+/** |
|
46 |
+ * @class |
|
47 |
+ * @name .fs-dropdown.fs-dropdown-focus |
|
48 |
+ * @type modifer |
|
49 |
+ * @description Indicates focus state |
|
50 |
+ */ |
|
51 |
+.fs-dropdown { |
|
52 |
+ position: relative; |
|
53 |
+ z-index: 1; |
|
54 |
+ display: block; |
|
55 |
+ margin: 10px 0; |
|
56 |
+ max-width: 100%; |
|
57 |
+ /* |
|
58 |
+ @media screen and (min-width: 740px) { |
|
59 |
+ max-width: 30%; |
|
60 |
+ } |
|
61 |
+ */ |
|
62 |
+ /** |
|
63 |
+ * @class |
|
64 |
+ * @name .fs-dropdown-selected |
|
65 |
+ * @type element |
|
66 |
+ * @description Handle item |
|
67 |
+ */ |
|
68 |
+ /** |
|
69 |
+ * @class |
|
70 |
+ * @name .fs-dropdown-options |
|
71 |
+ * @type element |
|
72 |
+ * @description Options container |
|
73 |
+ */ |
|
74 |
+ /** |
|
75 |
+ * @class |
|
76 |
+ * @name .fs-dropdown-group |
|
77 |
+ * @type element |
|
78 |
+ * @description Option group label |
|
79 |
+ */ |
|
80 |
+ /** |
|
81 |
+ * @class |
|
82 |
+ * @name .fs-dropdown-item |
|
83 |
+ * @type element |
|
84 |
+ * @description Option item |
|
85 |
+ */ |
|
86 |
+ /* |
|
87 |
+ &-options.fs-scrollbar { |
|
88 |
+ overflow: hidden; |
|
89 |
+ } |
|
90 |
+ |
|
91 |
+ &-options.fs-scrollbar-content { |
|
92 |
+ max-height: @fs-dropdown-max-height; |
|
93 |
+ |
|
94 |
+ padding: 0; |
|
95 |
+ } |
|
96 |
+*/ |
|
97 |
+} |
|
98 |
+.fs-dropdown:focus { |
|
99 |
+ box-shadow: none; |
|
100 |
+ outline: none; |
|
101 |
+} |
|
102 |
+.fs-dropdown, |
|
103 |
+.fs-dropdown:after, |
|
104 |
+.fs-dropdown:before, |
|
105 |
+.fs-dropdown *, |
|
106 |
+.fs-dropdown *:after, |
|
107 |
+.fs-dropdown *:before { |
|
108 |
+ box-sizing: border-box; |
|
109 |
+ -webkit-transition: none; |
|
110 |
+ transition: none; |
|
111 |
+ -webkit-user-select: none !important; |
|
112 |
+ -moz-user-select: none !important; |
|
113 |
+ -ms-user-select: none !important; |
|
114 |
+ user-select: none !important; |
|
115 |
+} |
|
116 |
+.fs-dropdown-element { |
|
117 |
+ width: 100%; |
|
118 |
+ height: 100%; |
|
119 |
+ position: absolute; |
|
120 |
+ left: 0; |
|
121 |
+ opacity: 0; |
|
122 |
+ z-index: -1; |
|
123 |
+} |
|
124 |
+.fs-dropdown-element, |
|
125 |
+.fs-dropdown-element:focus { |
|
126 |
+ outline: none; |
|
127 |
+ -webkit-tap-highlight-color: rgba(255, 255, 255, 0); |
|
128 |
+ -webkit-tap-highlight-color: transparent; |
|
129 |
+} |
|
130 |
+.no-opacity .fs-dropdown-element { |
|
131 |
+ left: -999999px; |
|
132 |
+} |
|
133 |
+.fs-dropdown-selected { |
|
134 |
+ width: 100%; |
|
135 |
+ position: relative; |
|
136 |
+ background: #ffffff; |
|
137 |
+ border: 1px solid #cccccc; |
|
138 |
+ border-radius: 3px; |
|
139 |
+ color: #222222; |
|
140 |
+ cursor: pointer; |
|
141 |
+ display: block; |
|
142 |
+ font-size: 14px; |
|
143 |
+ height: 40px; |
|
144 |
+ line-height: 40px; |
|
145 |
+ margin: 0; |
|
146 |
+ overflow: hidden; |
|
147 |
+ padding: 0 40px 0 15px; |
|
148 |
+ text-align: left; |
|
149 |
+ text-overflow: clip; |
|
150 |
+ z-index: 2; |
|
151 |
+} |
|
152 |
+.fs-dropdown-selected:after { |
|
153 |
+ height: 0; |
|
154 |
+ width: 0; |
|
155 |
+ position: absolute; |
|
156 |
+ top: 0; |
|
157 |
+ right: 15px; |
|
158 |
+ bottom: 0; |
|
159 |
+ border-left: 5px solid transparent; |
|
160 |
+ border-right: 5px solid transparent; |
|
161 |
+ border-top: 5px solid #cccccc; |
|
162 |
+ content: ''; |
|
163 |
+ display: block; |
|
164 |
+ margin: auto 0; |
|
165 |
+} |
|
166 |
+.no-touch .fs-dropdown-selected:hover { |
|
167 |
+ color: #222222; |
|
168 |
+} |
|
169 |
+.no-touch .fs-dropdown-disabled .fs-dropdown-selected:hover { |
|
170 |
+ color: #cccccc; |
|
171 |
+} |
|
172 |
+.fs-dropdown-options { |
|
173 |
+ width: 100%; |
|
174 |
+ max-height: 260px; |
|
175 |
+ position: absolute; |
|
176 |
+ top: 100%; |
|
177 |
+ left: 0; |
|
178 |
+ border: 1px solid #cccccc; |
|
179 |
+ border-width: 0 1px 1px; |
|
180 |
+ border-radius: 0 0 3px 3px; |
|
181 |
+ box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15); |
|
182 |
+ background-color: #ffffff; |
|
183 |
+ display: none; |
|
184 |
+ margin: 0; |
|
185 |
+ overflow: auto; |
|
186 |
+ overflow-x: hidden; |
|
187 |
+ padding: 0; |
|
188 |
+ z-index: 50; |
|
189 |
+} |
|
190 |
+.fs-dropdown-options.fs-scrollbar { |
|
191 |
+ position: absolute; |
|
192 |
+} |
|
193 |
+.no-opacity .fs-dropdown-options { |
|
194 |
+ width: auto; |
|
195 |
+} |
|
196 |
+.fs-dropdown-group { |
|
197 |
+ border-bottom: 1px solid #cccccc; |
|
198 |
+ color: #999999; |
|
199 |
+ display: block; |
|
200 |
+ font-size: 11px; |
|
201 |
+ padding: 10px 15px; |
|
202 |
+ text-transform: uppercase; |
|
203 |
+} |
|
204 |
+.fs-dropdown-item { |
|
205 |
+ width: 100%; |
|
206 |
+ background: #ffffff; |
|
207 |
+ border-bottom: 1px solid #cccccc; |
|
208 |
+ color: #222222; |
|
209 |
+ cursor: pointer; |
|
210 |
+ display: block; |
|
211 |
+ font-size: 14px; |
|
212 |
+ margin: 0; |
|
213 |
+ height: 40px; |
|
214 |
+ line-height: 40px; |
|
215 |
+ overflow: hidden; |
|
216 |
+ padding: 0 15px; |
|
217 |
+ text-align: left; |
|
218 |
+ text-decoration: none; |
|
219 |
+ text-overflow: ellipsis; |
|
220 |
+ /** |
|
221 |
+ * @class |
|
222 |
+ * @name .fs-dropdown-item.fs-dropdown-item_placeholder |
|
223 |
+ * @type modifier |
|
224 |
+ * @description Indicates placeholder item |
|
225 |
+ */ |
|
226 |
+ /** |
|
227 |
+ * @class |
|
228 |
+ * @name .fs-dropdown-item.fs-dropdown-item_selected |
|
229 |
+ * @type modifier |
|
230 |
+ * @description Indicates selected item |
|
231 |
+ */ |
|
232 |
+ /** |
|
233 |
+ * @class |
|
234 |
+ * @name .fs-dropdown-item.fs-dropdown-item_disabled |
|
235 |
+ * @type modifier |
|
236 |
+ * @description Indicates disabled item |
|
237 |
+ */ |
|
238 |
+} |
|
239 |
+.fs-dropdown-item_placeholder { |
|
240 |
+ display: none; |
|
241 |
+} |
|
242 |
+.fs-dropdown-item_selected { |
|
243 |
+ background: #eeeeee; |
|
244 |
+} |
|
245 |
+.fs-dropdown-item_disabled { |
|
246 |
+ color: #999999; |
|
247 |
+ cursor: default; |
|
248 |
+} |
|
249 |
+.fs-dropdown-item:first-child { |
|
250 |
+ border-radius: 0; |
|
251 |
+} |
|
252 |
+.fs-dropdown-item:last-child { |
|
253 |
+ border-bottom: 0; |
|
254 |
+ border-radius: 0 0 3px 3px; |
|
255 |
+} |
|
256 |
+.no-touch .fs-dropdown-item:hover, |
|
257 |
+.no-touch .fs-dropdown-item_selected:hover { |
|
258 |
+ color: #222222; |
|
259 |
+ background-color: #dddddd; |
|
260 |
+ border-color: #cccccc; |
|
261 |
+} |
|
262 |
+.fs-dropdown-item_disabled, |
|
263 |
+.no-touch .fs-dropdown-item_disabled:hover { |
|
264 |
+ color: #cccccc; |
|
265 |
+ background-color: #ffffff; |
|
266 |
+ border-color: #cccccc; |
|
267 |
+} |
|
268 |
+.fs-dropdown-open { |
|
269 |
+ z-index: 3; |
|
270 |
+} |
|
271 |
+.fs-dropdown-open .fs-dropdown-options { |
|
272 |
+ display: block; |
|
273 |
+ border-radius: 0 0 3px 3px; |
|
274 |
+} |
|
275 |
+.fs-dropdown-open .fs-dropdown-selected { |
|
276 |
+ z-index: 51; |
|
277 |
+ border-radius: 3px 3px 0 0; |
|
278 |
+} |
|
279 |
+.fs-dropdown-open .fs-dropdown-selected, |
|
280 |
+.fs-dropdown-focus .fs-dropdown-selected { |
|
281 |
+ background-color: #ffffff; |
|
282 |
+ box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); |
|
283 |
+} |
|
284 |
+.fs-dropdown-cover.fs-dropdown-open .fs-dropdown-selected { |
|
285 |
+ z-index: 49; |
|
286 |
+} |
|
287 |
+.fs-dropdown-cover .fs-dropdown-options { |
|
288 |
+ top: 0; |
|
289 |
+ border-radius: 3px; |
|
290 |
+ border-width: 1px; |
|
291 |
+} |
|
292 |
+.fs-dropdown-cover .fs-dropdown-item:first-child { |
|
293 |
+ border-radius: 3px 3px 0 0; |
|
294 |
+} |
|
295 |
+.fs-dropdown-bottom .fs-dropdown-options { |
|
296 |
+ top: auto; |
|
297 |
+ bottom: 100%; |
|
298 |
+ border-width: 1px 1px 0; |
|
299 |
+} |
|
300 |
+.fs-dropdown-bottom .fs-dropdown-item:last-child { |
|
301 |
+ border: none; |
|
302 |
+} |
|
303 |
+.fs-dropdown-bottom.fs-dropdown-open .fs-dropdown-selected { |
|
304 |
+ border-radius: 0 0 3px 3px; |
|
305 |
+} |
|
306 |
+.fs-dropdown-bottom.fs-dropdown-open .fs-dropdown-options { |
|
307 |
+ border-radius: 3px 3px 0 0; |
|
308 |
+} |
|
309 |
+.fs-dropdown-bottom.fs-dropdown-cover .fs-dropdown-options { |
|
310 |
+ top: auto; |
|
311 |
+ bottom: 0; |
|
312 |
+} |
|
313 |
+.fs-dropdown-bottom.fs-dropdown-cover.fs-dropdown-open .fs-dropdown-selected { |
|
314 |
+ border-radius: 3px; |
|
315 |
+} |
|
316 |
+.fs-dropdown-bottom.fs-dropdown-cover.fs-dropdown-open .fs-dropdown-options { |
|
317 |
+ border-radius: 3px; |
|
318 |
+} |
|
319 |
+.fs-dropdown-multiple .fs-dropdown-options { |
|
320 |
+ width: 100%; |
|
321 |
+ position: static; |
|
322 |
+ border-radius: 3px; |
|
323 |
+ border-width: 1px; |
|
324 |
+ box-shadow: none; |
|
325 |
+ display: block; |
|
326 |
+} |
|
327 |
+.fs-dropdown-disabled .fs-dropdown-selected { |
|
328 |
+ background: #ffffff; |
|
329 |
+ border-color: #cccccc; |
|
330 |
+ color: #cccccc; |
|
331 |
+ cursor: default; |
|
332 |
+} |
|
333 |
+.fs-dropdown-disabled .fs-dropdown-options { |
|
334 |
+ background: #ffffff; |
|
335 |
+ border-color: #cccccc; |
|
336 |
+} |
|
337 |
+.fs-dropdown-disabled .fs-dropdown-group, |
|
338 |
+.fs-dropdown-disabled .fs-dropdown-item { |
|
339 |
+ border-color: #cccccc; |
|
340 |
+ color: #cccccc; |
|
341 |
+ cursor: default; |
|
342 |
+} |
|
343 |
+.fs-dropdown-disabled .fs-dropdown-item, |
|
344 |
+.no-touch .fs-dropdown-disabled .fs-dropdown-item:hover { |
|
345 |
+ color: #cccccc; |
|
346 |
+ background-color: #ffffff; |
|
347 |
+} |
|
348 |
+.fs-dropdown-disabled .fs-dropdown-item_selected, |
|
349 |
+.no-touch .fs-dropdown-disabled .fs-dropdown-item_selected:hover { |
|
350 |
+ background: #fafafa; |
|
351 |
+} |
0 | 352 |
new file mode 100755 |
... | ... |
@@ -0,0 +1,863 @@ |
1 |
+/*! formstone v0.7.12 [grid.css] 2015-08-12 | MIT License | formstone.it */ |
|
2 |
+ |
|
3 |
+/** |
|
4 |
+ * @grid |
|
5 |
+ * @name Grid |
|
6 |
+ * @description A responsive CSS grid. |
|
7 |
+ */ |
|
8 |
+.fs_grid_row, |
|
9 |
+.fs-grid .fs-row { |
|
10 |
+ width: 300px; |
|
11 |
+ margin-left: auto; |
|
12 |
+ margin-right: auto; |
|
13 |
+} |
|
14 |
+@media screen and (min-width: 500px) { |
|
15 |
+ .fs_grid_row, |
|
16 |
+ .fs-grid .fs-row { |
|
17 |
+ width: 480px; |
|
18 |
+ } |
|
19 |
+} |
|
20 |
+@media screen and (min-width: 740px) { |
|
21 |
+ .fs_grid_row, |
|
22 |
+ .fs-grid .fs-row { |
|
23 |
+ width: 720px; |
|
24 |
+ } |
|
25 |
+} |
|
26 |
+@media screen and (min-width: 980px) { |
|
27 |
+ .fs_grid_row, |
|
28 |
+ .fs-grid .fs-row { |
|
29 |
+ width: 960px; |
|
30 |
+ } |
|
31 |
+} |
|
32 |
+@media screen and (min-width: 1220px) { |
|
33 |
+ .fs_grid_row, |
|
34 |
+ .fs-grid .fs-row { |
|
35 |
+ width: 1200px; |
|
36 |
+ } |
|
37 |
+} |
|
38 |
+.fs_grid_row:after, |
|
39 |
+.fs-grid .fs-row:after { |
|
40 |
+ height: 0; |
|
41 |
+ clear: both; |
|
42 |
+ content: "."; |
|
43 |
+ display: block; |
|
44 |
+ line-height: 0; |
|
45 |
+ visibility: hidden; |
|
46 |
+} |
|
47 |
+.fs_grid_row_fluid, |
|
48 |
+.fs-grid-fluid .fs-row { |
|
49 |
+ width: 96%; |
|
50 |
+ width: -webkit-calc(100% - 40px); |
|
51 |
+ width: calc(100% - 40px); |
|
52 |
+} |
|
53 |
+@media screen and (max-width: 739px) { |
|
54 |
+ .fs_grid_row_fluid_sm, |
|
55 |
+ .fs-grid-sm-fluid .fs-row { |
|
56 |
+ width: 96%; |
|
57 |
+ width: -webkit-calc(100% - 40px); |
|
58 |
+ width: calc(100% - 40px); |
|
59 |
+ } |
|
60 |
+} |
|
61 |
+.fs_grid_row_row, |
|
62 |
+.fs-grid .fs-row .fs-row { |
|
63 |
+ width: 102.08333333%; |
|
64 |
+ margin-left: -1.04166667%; |
|
65 |
+ margin-right: -1.04166667%; |
|
66 |
+} |
|
67 |
+.fs_grid_row_row_contained, |
|
68 |
+.fs-grid .fs-row [class*="fs-cell"][class*="-contained"] .fs-row { |
|
69 |
+ width: 100%; |
|
70 |
+ margin-left: 0; |
|
71 |
+ margin-right: 0; |
|
72 |
+} |
|
73 |
+.fs_grid_cell, |
|
74 |
+.fs-grid .fs-row [class*="fs-cell"] { |
|
75 |
+ width: 97.91666667%; |
|
76 |
+ float: left; |
|
77 |
+ margin-left: 1.04166667%; |
|
78 |
+ margin-right: 1.04166667%; |
|
79 |
+} |
|
80 |
+.fs_grid_cell_centered, |
|
81 |
+.fs-grid .fs-row [class*="fs-cell"][class*="-centered"] { |
|
82 |
+ float: none; |
|
83 |
+ margin-left: auto; |
|
84 |
+ margin-right: auto; |
|
85 |
+} |
|
86 |
+.fs_grid_cell_padded, |
|
87 |
+.fs-grid .fs-row [class*="fs-cell"][class*="-padded"] { |
|
88 |
+ box-sizing: content-box; |
|
89 |
+ margin-left: 0; |
|
90 |
+ margin-right: 0; |
|
91 |
+ padding-left: 1.04166667%; |
|
92 |
+ padding-right: 1.04166667%; |
|
93 |
+} |
|
94 |
+.fs_grid_cell_contained, |
|
95 |
+.fs-grid .fs-row [class*="fs-cell"][class*="-contained"] { |
|
96 |
+ margin-left: 0; |
|
97 |
+ margin-right: 0; |
|
98 |
+} |
|
99 |
+.fs_grid_cell_right, |
|
100 |
+.fs-grid .fs-row [class*="fs-cell"][class*="-right"] { |
|
101 |
+ float: right; |
|
102 |
+} |
|
103 |
+* { |
|
104 |
+ box-sizing: border-box; |
|
105 |
+} |
|
106 |
+*:before, |
|
107 |
+*:after { |
|
108 |
+ box-sizing: inherit; |
|
109 |
+} |
|
110 |
+.fs-grid .fs-row .fs-all-fifth { |
|
111 |
+ width: 17.91666667%; |
|
112 |
+} |
|
113 |
+.fs-grid .fs-row .fs-all-fourth { |
|
114 |
+ width: 22.91666667%; |
|
115 |
+} |
|
116 |
+.fs-grid .fs-row .fs-all-third { |
|
117 |
+ width: 31.25%; |
|
118 |
+} |
|
119 |
+.fs-grid .fs-row .fs-all-half { |
|
120 |
+ width: 47.91666667%; |
|
121 |
+} |
|
122 |
+.fs-grid .fs-row .fs-all-full { |
|
123 |
+ width: 97.91666667%; |
|
124 |
+} |
|
125 |
+.fs-grid .fs-row .fs-all-push-fifth { |
|
126 |
+ margin-left: 21.04166667%; |
|
127 |
+} |
|
128 |
+.fs-grid .fs-row .fs-all-push-fourth { |
|
129 |
+ margin-left: 26.04166667%; |
|
130 |
+} |
|
131 |
+.fs-grid .fs-row .fs-all-push-third { |
|
132 |
+ margin-left: 34.375%; |
|
133 |
+} |
|
134 |
+.fs-grid .fs-row .fs-all-push-half { |
|
135 |
+ margin-left: 51.04166667%; |
|
136 |
+} |
|
137 |
+.fs-grid .fs-row [class*="-contained"].fs-all-fifth { |
|
138 |
+ width: 20%; |
|
139 |
+} |
|
140 |
+.fs-grid .fs-row [class*="-contained"].fs-all-fourth { |
|
141 |
+ width: 25%; |
|
142 |
+} |
|
143 |
+.fs-grid .fs-row [class*="-contained"].fs-all-third { |
|
144 |
+ width: 33.33333333%; |
|
145 |
+} |
|
146 |
+.fs-grid .fs-row [class*="-contained"].fs-all-half { |
|
147 |
+ width: 50%; |
|
148 |
+} |
|
149 |
+.fs-grid .fs-row [class*="-contained"].fs-all-full { |
|
150 |
+ width: 100%; |
|
151 |
+} |
|
152 |
+.fs-grid .fs-row [class*="-contained"].fs-all-push-fifth { |
|
153 |
+ margin-left: 20%; |
|
154 |
+} |
|
155 |
+.fs-grid .fs-row [class*="-contained"].fs-all-push-fourth { |
|
156 |
+ margin-left: 25%; |
|
157 |
+} |
|
158 |
+.fs-grid .fs-row [class*="-contained"].fs-all-push-third { |
|
159 |
+ margin-left: 33.33333333%; |
|
160 |
+} |
|
161 |
+.fs-grid .fs-row [class*="-contained"].fs-all-push-half { |
|
162 |
+ margin-left: 50%; |
|
163 |
+} |
|
164 |
+.fs-grid .fs-row .fs-all-hide { |
|
165 |
+ display: none; |
|
166 |
+} |
|
167 |
+@media screen and (max-width: 739px) { |
|
168 |
+ .fs-grid .fs-row .fs-sm-1 { |
|
169 |
+ width: 31.25%; |
|
170 |
+ } |
|
171 |
+ .fs-grid .fs-row .fs-sm-2 { |
|
172 |
+ width: 64.58333333%; |
|
173 |
+ } |
|
174 |
+ .fs-grid .fs-row .fs-sm-3 { |
|
175 |
+ width: 97.91666667%; |
|
176 |
+ } |
|
177 |
+ .fs-grid .fs-row .fs-sm-push-1 { |
|
178 |
+ margin-left: 34.375%; |
|
179 |
+ } |
|
180 |
+ .fs-grid .fs-row .fs-sm-push-2 { |
|
181 |
+ margin-left: 67.70833333%; |
|
182 |
+ } |
|
183 |
+ .fs-grid .fs-row [class*="-contained"].fs-sm-1 { |
|
184 |
+ width: 33.33333333%; |
|
185 |
+ } |
|
186 |
+ .fs-grid .fs-row [class*="-contained"].fs-sm-2 { |
|
187 |
+ width: 66.66666667%; |
|
188 |
+ } |
|
189 |
+ .fs-grid .fs-row [class*="-contained"].fs-sm-3 { |
|
190 |
+ width: 100%; |
|
191 |
+ } |
|
192 |
+ .fs-grid .fs-row [class*="-contained"].fs-sm-push-1 { |
|
193 |
+ margin-left: 33.33333333%; |
|
194 |
+ } |
|
195 |
+ .fs-grid .fs-row [class*="-contained"].fs-sm-push-2 { |
|
196 |
+ margin-left: 66.66666667%; |
|
197 |
+ } |
|
198 |
+ .fs-grid .fs-row .fs-sm-fifth { |
|
199 |
+ width: 17.91666667%; |
|
200 |
+ } |
|
201 |
+ .fs-grid .fs-row .fs-sm-fourth { |
|
202 |
+ width: 22.91666667%; |
|
203 |
+ } |
|
204 |
+ .fs-grid .fs-row .fs-sm-third { |
|
205 |
+ width: 31.25%; |
|
206 |
+ } |
|
207 |
+ .fs-grid .fs-row .fs-sm-half { |
|
208 |
+ width: 47.91666667%; |
|
209 |
+ } |
|
210 |
+ .fs-grid .fs-row .fs-sm-full { |
|
211 |
+ width: 97.91666667%; |
|
212 |
+ } |
|
213 |
+ .fs-grid .fs-row .fs-sm-push-fifth { |
|
214 |
+ margin-left: 21.04166667%; |
|
215 |
+ } |
|
216 |
+ .fs-grid .fs-row .fs-sm-push-fourth { |
|
217 |
+ margin-left: 26.04166667%; |
|
218 |
+ } |
|
219 |
+ .fs-grid .fs-row .fs-sm-push-third { |
|
220 |
+ margin-left: 34.375%; |
|
221 |
+ } |
|
222 |
+ .fs-grid .fs-row .fs-sm-push-half { |
|
223 |
+ margin-left: 51.04166667%; |
|
224 |
+ } |
|
225 |
+ .fs-grid .fs-row [class*="-contained"].fs-sm-fifth { |
|
226 |
+ width: 20%; |
|
227 |
+ } |
|
228 |
+ .fs-grid .fs-row [class*="-contained"].fs-sm-fourth { |
|
229 |
+ width: 25%; |
|
230 |
+ } |
|
231 |
+ .fs-grid .fs-row [class*="-contained"].fs-sm-third { |
|
232 |
+ width: 33.33333333%; |
|
233 |
+ } |
|
234 |
+ .fs-grid .fs-row [class*="-contained"].fs-sm-half { |
|
235 |
+ width: 50%; |
|
236 |
+ } |
|
237 |
+ .fs-grid .fs-row [class*="-contained"].fs-sm-full { |
|
238 |
+ width: 100%; |
|
239 |
+ } |
|
240 |
+ .fs-grid .fs-row [class*="-contained"].fs-sm-push-fifth { |
|
241 |
+ margin-left: 20%; |
|
242 |
+ } |
|
243 |
+ .fs-grid .fs-row [class*="-contained"].fs-sm-push-fourth { |
|
244 |
+ margin-left: 25%; |
|
245 |
+ } |
|
246 |
+ .fs-grid .fs-row [class*="-contained"].fs-sm-push-third { |
|
247 |
+ margin-left: 33.33333333%; |
|
248 |
+ } |
|
249 |
+ .fs-grid .fs-row [class*="-contained"].fs-sm-push-half { |
|
250 |
+ margin-left: 50%; |
|
251 |
+ } |
|
252 |
+ .fs-grid .fs-row .fs-sm-hide { |
|
253 |
+ display: none; |
|
254 |
+ } |
|
255 |
+} |
|
256 |
+@media screen and (max-width: 499px) { |
|
257 |
+ .fs-grid .fs-row .fs-xs-1 { |
|
258 |
+ width: 31.25%; |
|
259 |
+ } |
|
260 |
+ .fs-grid .fs-row .fs-xs-2 { |
|
261 |
+ width: 64.58333333%; |
|
262 |
+ } |
|
263 |
+ .fs-grid .fs-row .fs-xs-3 { |
|
264 |
+ width: 97.91666667%; |
|
265 |
+ } |
|
266 |
+ .fs-grid .fs-row .fs-xs-push-1 { |
|
267 |
+ margin-left: 34.375%; |
|
268 |
+ } |
|
269 |
+ .fs-grid .fs-row .fs-xs-push-2 { |
|
270 |
+ margin-left: 67.70833333%; |
|
271 |
+ } |
|
272 |
+ .fs-grid .fs-row [class*="-contained"].fs-xs-1 { |
|
273 |
+ width: 33.33333333%; |
|
274 |
+ } |
|
275 |
+ .fs-grid .fs-row [class*="-contained"].fs-xs-2 { |
|
276 |
+ width: 66.66666667%; |
|
277 |
+ } |
|
278 |
+ .fs-grid .fs-row [class*="-contained"].fs-xs-3 { |
|
279 |
+ width: 100%; |
|
280 |
+ } |
|
281 |
+ .fs-grid .fs-row [class*="-contained"].fs-xs-push-1 { |
|
282 |
+ margin-left: 33.33333333%; |
|
283 |
+ } |
|
284 |
+ .fs-grid .fs-row [class*="-contained"].fs-xs-push-2 { |
|
285 |
+ margin-left: 66.66666667%; |
|
286 |
+ } |
|
287 |
+ .fs-grid .fs-row .fs-xs-fifth { |
|
288 |
+ width: 17.91666667%; |
|
289 |
+ } |
|
290 |
+ .fs-grid .fs-row .fs-xs-fourth { |
|
291 |
+ width: 22.91666667%; |
|
292 |
+ } |
|
293 |
+ .fs-grid .fs-row .fs-xs-third { |
|
294 |
+ width: 31.25%; |
|
295 |
+ } |
|
296 |
+ .fs-grid .fs-row .fs-xs-half { |
|
297 |
+ width: 47.91666667%; |
|
298 |
+ } |
|
299 |
+ .fs-grid .fs-row .fs-xs-full { |
|
300 |
+ width: 97.91666667%; |
|
301 |
+ } |
|
302 |
+ .fs-grid .fs-row .fs-xs-push-fifth { |
|
303 |
+ margin-left: 21.04166667%; |
|
304 |
+ } |
|
305 |
+ .fs-grid .fs-row .fs-xs-push-fourth { |
|
306 |
+ margin-left: 26.04166667%; |
|
307 |
+ } |
|
308 |
+ .fs-grid .fs-row .fs-xs-push-third { |
|
309 |
+ margin-left: 34.375%; |
|
310 |
+ } |
|
311 |
+ .fs-grid .fs-row .fs-xs-push-half { |
|
312 |
+ margin-left: 51.04166667%; |
|
313 |
+ } |
|
314 |
+ .fs-grid .fs-row [class*="-contained"].fs-xs-fifth { |
|
315 |
+ width: 20%; |
|
316 |
+ } |
|
317 |
+ .fs-grid .fs-row [class*="-contained"].fs-xs-fourth { |
|
318 |
+ width: 25%; |
|
319 |
+ } |
|
320 |
+ .fs-grid .fs-row [class*="-contained"].fs-xs-third { |
|
321 |
+ width: 33.33333333%; |
|
322 |
+ } |
|
323 |
+ .fs-grid .fs-row [class*="-contained"].fs-xs-half { |
|
324 |
+ width: 50%; |
|
325 |
+ } |
|
326 |
+ .fs-grid .fs-row [class*="-contained"].fs-xs-full { |
|
327 |
+ width: 100%; |
|
328 |
+ } |
|
329 |
+ .fs-grid .fs-row [class*="-contained"].fs-xs-push-fifth { |
|
330 |
+ margin-left: 20%; |
|
331 |
+ } |
|
332 |
+ .fs-grid .fs-row [class*="-contained"].fs-xs-push-fourth { |
|
333 |
+ margin-left: 25%; |
|
334 |
+ } |
|
335 |
+ .fs-grid .fs-row [class*="-contained"].fs-xs-push-third { |
|
336 |
+ margin-left: 33.33333333%; |
|
337 |
+ } |
|
338 |
+ .fs-grid .fs-row [class*="-contained"].fs-xs-push-half { |
|
339 |
+ margin-left: 50%; |
|
340 |
+ } |
|
341 |
+ .fs-grid .fs-row .fs-xs-hide { |
|
342 |
+ display: none; |
|
343 |
+ } |
|
344 |
+} |
|
345 |
+@media screen and (min-width: 740px) and (max-width: 979px) { |
|
346 |
+ .fs-grid .fs-row .fs-md-1 { |
|
347 |
+ width: 14.58333333%; |
|
348 |
+ } |
|
349 |
+ .fs-grid .fs-row .fs-md-2 { |
|
350 |
+ width: 31.25%; |
|
351 |
+ } |
|
352 |
+ .fs-grid .fs-row .fs-md-3 { |
|
353 |
+ width: 47.91666667%; |
|
354 |
+ } |
|
355 |
+ .fs-grid .fs-row .fs-md-4 { |
|
356 |
+ width: 64.58333333%; |
|
357 |
+ } |
|
358 |
+ .fs-grid .fs-row .fs-md-5 { |
|
359 |
+ width: 81.25%; |
|
360 |
+ } |
|
361 |
+ .fs-grid .fs-row .fs-md-6 { |
|
362 |
+ width: 97.91666667%; |
|
363 |
+ } |
|
364 |
+ .fs-grid .fs-row .fs-md-push-1 { |
|
365 |
+ margin-left: 17.70833333%; |
|
366 |
+ } |
|
367 |
+ .fs-grid .fs-row .fs-md-push-2 { |
|
368 |
+ margin-left: 34.375%; |
|
369 |
+ } |
|
370 |
+ .fs-grid .fs-row .fs-md-push-3 { |
|
371 |
+ margin-left: 51.04166667%; |
|
372 |
+ } |
|
373 |
+ .fs-grid .fs-row .fs-md-push-4 { |
|
374 |
+ margin-left: 67.70833333%; |
|
375 |
+ } |
|
376 |
+ .fs-grid .fs-row .fs-md-push-5 { |
|
377 |
+ margin-left: 84.375%; |
|
378 |
+ } |
|
379 |
+ .fs-grid .fs-row [class*="-contained"].fs-md-1 { |
|
380 |
+ width: 16.66666667%; |
|
381 |
+ } |
|
382 |
+ .fs-grid .fs-row [class*="-contained"].fs-md-2 { |
|
383 |
+ width: 33.33333333%; |
|
384 |
+ } |
|
385 |
+ .fs-grid .fs-row [class*="-contained"].fs-md-3 { |
|
386 |
+ width: 50%; |
|
387 |
+ } |
|
388 |
+ .fs-grid .fs-row [class*="-contained"].fs-md-4 { |
|
389 |
+ width: 66.66666667%; |
|
390 |
+ } |
|
391 |
+ .fs-grid .fs-row [class*="-contained"].fs-md-5 { |
|
392 |
+ width: 83.33333333%; |
|
393 |
+ } |
|
394 |
+ .fs-grid .fs-row [class*="-contained"].fs-md-6 { |
|
395 |
+ width: 100%; |
|
396 |
+ } |
|
397 |
+ .fs-grid .fs-row [class*="-contained"].fs-md-push-1 { |
|
398 |
+ margin-left: 16.66666667%; |
|
399 |
+ } |
|
400 |
+ .fs-grid .fs-row [class*="-contained"].fs-md-push-2 { |
|
401 |
+ margin-left: 33.33333333%; |
|
402 |
+ } |
|
403 |
+ .fs-grid .fs-row [class*="-contained"].fs-md-push-3 { |
|
404 |
+ margin-left: 50%; |
|
405 |
+ } |
|
406 |
+ .fs-grid .fs-row [class*="-contained"].fs-md-push-4 { |
|
407 |
+ margin-left: 66.66666667%; |
|
408 |
+ } |
|
409 |
+ .fs-grid .fs-row [class*="-contained"].fs-md-push-5 { |
|
410 |
+ margin-left: 83.33333333%; |
|
411 |
+ } |
|
412 |
+ .fs-grid .fs-row .fs-md-fifth { |
|
413 |
+ width: 17.91666667%; |
|
414 |
+ } |
|
415 |
+ .fs-grid .fs-row .fs-md-fourth { |
|
416 |
+ width: 22.91666667%; |
|
417 |
+ } |
|
418 |
+ .fs-grid .fs-row .fs-md-third { |
|
419 |
+ width: 31.25%; |
|
420 |
+ } |
|
421 |
+ .fs-grid .fs-row .fs-md-half { |
|
422 |
+ width: 47.91666667%; |
|
423 |
+ } |
|
424 |
+ .fs-grid .fs-row .fs-md-full { |
|
425 |
+ width: 97.91666667%; |
|
426 |
+ } |
|
427 |
+ .fs-grid .fs-row .fs-md-push-fifth { |
|
428 |
+ margin-left: 21.04166667%; |
|
429 |
+ } |
|
430 |
+ .fs-grid .fs-row .fs-md-push-fourth { |
|
431 |
+ margin-left: 26.04166667%; |
|
432 |
+ } |
|
433 |
+ .fs-grid .fs-row .fs-md-push-third { |
|
434 |
+ margin-left: 34.375%; |
|
435 |
+ } |
|
436 |
+ .fs-grid .fs-row .fs-md-push-half { |
|
437 |
+ margin-left: 51.04166667%; |
|
438 |
+ } |
|
439 |
+ .fs-grid .fs-row [class*="-contained"].fs-md-fifth { |
|
440 |
+ width: 20%; |
|
441 |
+ } |
|
442 |
+ .fs-grid .fs-row [class*="-contained"].fs-md-fourth { |
|
443 |
+ width: 25%; |
|
444 |
+ } |
|
445 |
+ .fs-grid .fs-row [class*="-contained"].fs-md-third { |
|
446 |
+ width: 33.33333333%; |
|
447 |
+ } |
|
448 |
+ .fs-grid .fs-row [class*="-contained"].fs-md-half { |
|
449 |
+ width: 50%; |
|
450 |
+ } |
|
451 |
+ .fs-grid .fs-row [class*="-contained"].fs-md-full { |
|
452 |
+ width: 100%; |
|
453 |
+ } |
|
454 |
+ .fs-grid .fs-row [class*="-contained"].fs-md-push-fifth { |
|
455 |
+ margin-left: 20%; |
|
456 |
+ } |
|
457 |
+ .fs-grid .fs-row [class*="-contained"].fs-md-push-fourth { |
|
458 |
+ margin-left: 25%; |
|
459 |
+ } |
|
460 |
+ .fs-grid .fs-row [class*="-contained"].fs-md-push-third { |
|
461 |
+ margin-left: 33.33333333%; |
|
462 |
+ } |
|
463 |
+ .fs-grid .fs-row [class*="-contained"].fs-md-push-half { |
|
464 |
+ margin-left: 50%; |
|
465 |
+ } |
|
466 |
+ .fs-grid .fs-row .fs-md-hide { |
|
467 |
+ display: none; |
|
468 |
+ } |
|
469 |
+} |
|
470 |
+@media screen and (min-width: 980px) { |
|
471 |
+ .fs-grid .fs-row .fs-lg-1 { |
|
472 |
+ width: 6.25%; |
|
473 |
+ } |
|
474 |
+ .fs-grid .fs-row .fs-lg-2 { |
|
475 |
+ width: 14.58333333%; |
|
476 |
+ } |
|
477 |
+ .fs-grid .fs-row .fs-lg-3 { |
|
478 |
+ width: 22.91666667%; |
|
479 |
+ } |
|
480 |
+ .fs-grid .fs-row .fs-lg-4 { |
|
481 |
+ width: 31.25%; |
|
482 |
+ } |
|
483 |
+ .fs-grid .fs-row .fs-lg-5 { |
|
484 |
+ width: 39.58333333%; |
|
485 |
+ } |
|
486 |
+ .fs-grid .fs-row .fs-lg-6 { |
|
487 |
+ width: 47.91666667%; |
|
488 |
+ } |
|
489 |
+ .fs-grid .fs-row .fs-lg-7 { |
|
490 |
+ width: 56.25%; |
|
491 |
+ } |
|
492 |
+ .fs-grid .fs-row .fs-lg-8 { |
|
493 |
+ width: 64.58333333%; |
|
494 |
+ } |
|
495 |
+ .fs-grid .fs-row .fs-lg-9 { |
|
496 |
+ width: 72.91666667%; |
|
497 |
+ } |
|
498 |
+ .fs-grid .fs-row .fs-lg-10 { |
|
499 |
+ width: 81.25%; |
|
500 |
+ } |
|
501 |
+ .fs-grid .fs-row .fs-lg-11 { |
|
502 |
+ width: 89.58333333%; |
|
503 |
+ } |
|
504 |
+ .fs-grid .fs-row .fs-lg-12 { |
|
505 |
+ width: 97.91666667%; |
|
506 |
+ } |
|
507 |
+ .fs-grid .fs-row .fs-lg-push-1 { |
|
508 |
+ margin-left: 9.375%; |
|
509 |
+ } |
|
510 |
+ .fs-grid .fs-row .fs-lg-push-2 { |
|
511 |
+ margin-left: 17.70833333%; |
|
512 |
+ } |
|
513 |
+ .fs-grid .fs-row .fs-lg-push-3 { |
|
514 |
+ margin-left: 26.04166667%; |
|
515 |
+ } |
|
516 |
+ .fs-grid .fs-row .fs-lg-push-4 { |
|
517 |
+ margin-left: 34.375%; |
|
518 |
+ } |
|
519 |
+ .fs-grid .fs-row .fs-lg-push-5 { |
|
520 |
+ margin-left: 42.70833333%; |
|
521 |
+ } |
|
522 |
+ .fs-grid .fs-row .fs-lg-push-6 { |
|
523 |
+ margin-left: 51.04166667%; |
|
524 |
+ } |
|
525 |
+ .fs-grid .fs-row .fs-lg-push-7 { |
|
526 |
+ margin-left: 59.375%; |
|
527 |
+ } |
|
528 |
+ .fs-grid .fs-row .fs-lg-push-8 { |
|
529 |
+ margin-left: 67.70833333%; |
|
530 |
+ } |
|
531 |
+ .fs-grid .fs-row .fs-lg-push-9 { |
|
532 |
+ margin-left: 76.04166667%; |
|
533 |
+ } |
|
534 |
+ .fs-grid .fs-row .fs-lg-push-10 { |
|
535 |
+ margin-left: 84.375%; |
|
536 |
+ } |
|
537 |
+ .fs-grid .fs-row .fs-lg-push-11 { |
|
538 |
+ margin-left: 92.70833333%; |
|
539 |
+ } |
|
540 |
+ .fs-grid .fs-row [class*="-contained"].fs-lg-1 { |
|
541 |
+ width: 8.33333333%; |
|
542 |
+ } |
|
543 |
+ .fs-grid .fs-row [class*="-contained"].fs-lg-2 { |
|
544 |
+ width: 16.66666667%; |
|
545 |
+ } |
|
546 |
+ .fs-grid .fs-row [class*="-contained"].fs-lg-3 { |
|
547 |
+ width: 25%; |
|
548 |
+ } |
|
549 |
+ .fs-grid .fs-row [class*="-contained"].fs-lg-4 { |
|
550 |
+ width: 33.33333333%; |
|
551 |
+ } |
|
552 |
+ .fs-grid .fs-row [class*="-contained"].fs-lg-5 { |
|
553 |
+ width: 41.66666667%; |
|
554 |
+ } |
|
555 |
+ .fs-grid .fs-row [class*="-contained"].fs-lg-6 { |
|
556 |
+ width: 50%; |
|
557 |
+ } |
|
558 |
+ .fs-grid .fs-row [class*="-contained"].fs-lg-7 { |
|
559 |
+ width: 58.33333333%; |
|
560 |
+ } |
|
561 |
+ .fs-grid .fs-row [class*="-contained"].fs-lg-8 { |
|
562 |
+ width: 66.66666667%; |
|
563 |
+ } |
|
564 |
+ .fs-grid .fs-row [class*="-contained"].fs-lg-9 { |
|
565 |
+ width: 75%; |
|
566 |
+ } |
|
567 |
+ .fs-grid .fs-row [class*="-contained"].fs-lg-10 { |
|
568 |
+ width: 83.33333333%; |
|
569 |
+ } |
|
570 |
+ .fs-grid .fs-row [class*="-contained"].fs-lg-11 { |
|
571 |
+ width: 91.66666667%; |
|
572 |
+ } |
|
573 |
+ .fs-grid .fs-row [class*="-contained"].fs-lg-12 { |
|
574 |
+ width: 100%; |
|
575 |
+ } |
|
576 |
+ .fs-grid .fs-row [class*="-contained"].fs-lg-push-1 { |
|
577 |
+ margin-left: 8.33333333%; |
|
578 |
+ } |
|
579 |
+ .fs-grid .fs-row [class*="-contained"].fs-lg-push-2 { |
|
580 |
+ margin-left: 16.66666667%; |
|
581 |
+ } |
|
582 |
+ .fs-grid .fs-row [class*="-contained"].fs-lg-push-3 { |
|
583 |
+ margin-left: 25%; |
|
584 |
+ } |
|
585 |
+ .fs-grid .fs-row [class*="-contained"].fs-lg-push-4 { |
|
586 |
+ margin-left: 33.33333333%; |
|
587 |
+ } |
|
588 |
+ .fs-grid .fs-row [class*="-contained"].fs-lg-push-5 { |
|
589 |
+ margin-left: 41.66666667%; |
|
590 |
+ } |
|
591 |
+ .fs-grid .fs-row [class*="-contained"].fs-lg-push-6 { |
|
592 |
+ margin-left: 50%; |
|
593 |
+ } |
|
594 |
+ .fs-grid .fs-row [class*="-contained"].fs-lg-push-7 { |
|
595 |
+ margin-left: 58.33333333%; |
|
596 |
+ } |
|
597 |
+ .fs-grid .fs-row [class*="-contained"].fs-lg-push-8 { |
|
598 |
+ margin-left: 66.66666667%; |
|
599 |
+ } |
|
600 |
+ .fs-grid .fs-row [class*="-contained"].fs-lg-push-9 { |
|
601 |
+ margin-left: 75%; |
|
602 |
+ } |
|
603 |
+ .fs-grid .fs-row [class*="-contained"].fs-lg-push-10 { |
|
604 |
+ margin-left: 83.33333333%; |
|
605 |
+ } |
|
606 |
+ .fs-grid .fs-row [class*="-contained"].fs-lg-push-11 { |
|
607 |
+ margin-left: 91.66666667%; |
|
608 |
+ } |
|
609 |
+ .fs-grid .fs-row .fs-lg-fifth { |
|
610 |
+ width: 17.91666667%; |
|
611 |
+ } |
|
612 |
+ .fs-grid .fs-row .fs-lg-fourth { |
|
613 |
+ width: 22.91666667%; |
|
614 |
+ } |
|
615 |
+ .fs-grid .fs-row .fs-lg-third { |
|
616 |
+ width: 31.25%; |
|
617 |
+ } |
|
618 |
+ .fs-grid .fs-row .fs-lg-half { |
|
619 |
+ width: 47.91666667%; |
|
620 |
+ } |
|
621 |
+ .fs-grid .fs-row .fs-lg-full { |
|
622 |
+ width: 97.91666667%; |
|
623 |
+ } |
|
624 |
+ .fs-grid .fs-row .fs-lg-push-fifth { |
|
625 |
+ margin-left: 21.04166667%; |
|
626 |
+ } |
|
627 |
+ .fs-grid .fs-row .fs-lg-push-fourth { |
|
628 |
+ margin-left: 26.04166667%; |
|
629 |
+ } |
|
630 |
+ .fs-grid .fs-row .fs-lg-push-third { |
|
631 |
+ margin-left: 34.375%; |
|
632 |
+ } |
|
633 |
+ .fs-grid .fs-row .fs-lg-push-half { |
|
634 |
+ margin-left: 51.04166667%; |
|
635 |
+ } |
|
636 |
+ .fs-grid .fs-row [class*="-contained"].fs-lg-fifth { |
|
637 |
+ width: 20%; |
|
638 |
+ } |
|
639 |
+ .fs-grid .fs-row [class*="-contained"].fs-lg-fourth { |
|
640 |
+ width: 25%; |
|
641 |
+ } |
|
642 |
+ .fs-grid .fs-row [class*="-contained"].fs-lg-third { |
|
643 |
+ width: 33.33333333%; |
|
644 |
+ } |
|
645 |
+ .fs-grid .fs-row [class*="-contained"].fs-lg-half { |
|
646 |
+ width: 50%; |
|
647 |
+ } |
|
648 |
+ .fs-grid .fs-row [class*="-contained"].fs-lg-full { |
|
649 |
+ width: 100%; |
|
650 |
+ } |
|
651 |
+ .fs-grid .fs-row [class*="-contained"].fs-lg-push-fifth { |
|
652 |
+ margin-left: 20%; |
|
653 |
+ } |
|
654 |
+ .fs-grid .fs-row [class*="-contained"].fs-lg-push-fourth { |
|
655 |
+ margin-left: 25%; |
|
656 |
+ } |
|
657 |
+ .fs-grid .fs-row [class*="-contained"].fs-lg-push-third { |
|
658 |
+ margin-left: 33.33333333%; |
|
659 |
+ } |
|
660 |
+ .fs-grid .fs-row [class*="-contained"].fs-lg-push-half { |
|
661 |
+ margin-left: 50%; |
|
662 |
+ } |
|
663 |
+ .fs-grid .fs-row .fs-lg-hide { |
|
664 |
+ display: none; |
|
665 |
+ } |
|
666 |
+} |
|
667 |
+@media screen and (min-width: 1220px) { |
|
668 |
+ .fs-grid .fs-row .fs-xl-1 { |
|
669 |
+ width: 6.25%; |
|
670 |
+ } |
|
671 |
+ .fs-grid .fs-row .fs-xl-2 { |
|
672 |
+ width: 14.58333333%; |
|
673 |
+ } |
|
674 |
+ .fs-grid .fs-row .fs-xl-3 { |
|
675 |
+ width: 22.91666667%; |
|
676 |
+ } |
|
677 |
+ .fs-grid .fs-row .fs-xl-4 { |
|
678 |
+ width: 31.25%; |
|
679 |
+ } |
|
680 |
+ .fs-grid .fs-row .fs-xl-5 { |
|
681 |
+ width: 39.58333333%; |
|
682 |
+ } |
|
683 |
+ .fs-grid .fs-row .fs-xl-6 { |
|
684 |
+ width: 47.91666667%; |
|
685 |
+ } |
|
686 |
+ .fs-grid .fs-row .fs-xl-7 { |
|
687 |
+ width: 56.25%; |
|
688 |
+ } |
|
689 |
+ .fs-grid .fs-row .fs-xl-8 { |
|
690 |
+ width: 64.58333333%; |
|
691 |
+ } |
|
692 |
+ .fs-grid .fs-row .fs-xl-9 { |
|
693 |
+ width: 72.91666667%; |
|
694 |
+ } |
|
695 |
+ .fs-grid .fs-row .fs-xl-10 { |
|
696 |
+ width: 81.25%; |
|
697 |
+ } |
|
698 |
+ .fs-grid .fs-row .fs-xl-11 { |
|
699 |
+ width: 89.58333333%; |
|
700 |
+ } |
|
701 |
+ .fs-grid .fs-row .fs-xl-12 { |
|
702 |
+ width: 97.91666667%; |
|
703 |
+ } |
|
704 |
+ .fs-grid .fs-row .fs-xl-push-1 { |
|
705 |
+ margin-left: 9.375%; |
|
706 |
+ } |
|
707 |
+ .fs-grid .fs-row .fs-xl-push-2 { |
|
708 |
+ margin-left: 17.70833333%; |
|
709 |
+ } |
|
710 |
+ .fs-grid .fs-row .fs-xl-push-3 { |
|
711 |
+ margin-left: 26.04166667%; |
|
712 |
+ } |
|
713 |
+ .fs-grid .fs-row .fs-xl-push-4 { |
|
714 |
+ margin-left: 34.375%; |
|
715 |
+ } |
|
716 |
+ .fs-grid .fs-row .fs-xl-push-5 { |
|
717 |
+ margin-left: 42.70833333%; |
|
718 |
+ } |
|
719 |
+ .fs-grid .fs-row .fs-xl-push-6 { |
|
720 |
+ margin-left: 51.04166667%; |
|
721 |
+ } |
|
722 |
+ .fs-grid .fs-row .fs-xl-push-7 { |
|
723 |
+ margin-left: 59.375%; |
|
724 |
+ } |
|
725 |
+ .fs-grid .fs-row .fs-xl-push-8 { |
|
726 |
+ margin-left: 67.70833333%; |
|
727 |
+ } |
|
728 |
+ .fs-grid .fs-row .fs-xl-push-9 { |
|
729 |
+ margin-left: 76.04166667%; |
|
730 |
+ } |
|
731 |
+ .fs-grid .fs-row .fs-xl-push-10 { |
|
732 |
+ margin-left: 84.375%; |
|
733 |
+ } |
|
734 |
+ .fs-grid .fs-row .fs-xl-push-11 { |
|
735 |
+ margin-left: 92.70833333%; |
|
736 |
+ } |
|
737 |
+ .fs-grid .fs-row [class*="-contained"].fs-xl-1 { |
|
738 |
+ width: 8.33333333%; |
|
739 |
+ } |
|
740 |
+ .fs-grid .fs-row [class*="-contained"].fs-xl-2 { |
|
741 |
+ width: 16.66666667%; |
|
742 |
+ } |
|
743 |
+ .fs-grid .fs-row [class*="-contained"].fs-xl-3 { |
|
744 |
+ width: 25%; |
|
745 |
+ } |
|
746 |
+ .fs-grid .fs-row [class*="-contained"].fs-xl-4 { |
|
747 |
+ width: 33.33333333%; |
|
748 |
+ } |
|
749 |
+ .fs-grid .fs-row [class*="-contained"].fs-xl-5 { |
|
750 |
+ width: 41.66666667%; |
|
751 |
+ } |
|
752 |
+ .fs-grid .fs-row [class*="-contained"].fs-xl-6 { |
|
753 |
+ width: 50%; |
|
754 |
+ } |
|
755 |
+ .fs-grid .fs-row [class*="-contained"].fs-xl-7 { |
|
756 |
+ width: 58.33333333%; |
|
757 |
+ } |
|
758 |
+ .fs-grid .fs-row [class*="-contained"].fs-xl-8 { |
|
759 |
+ width: 66.66666667%; |
|
760 |
+ } |
|
761 |
+ .fs-grid .fs-row [class*="-contained"].fs-xl-9 { |
|
762 |
+ width: 75%; |
|
763 |
+ } |
|
764 |
+ .fs-grid .fs-row [class*="-contained"].fs-xl-10 { |
|
765 |
+ width: 83.33333333%; |
|
766 |
+ } |
|
767 |
+ .fs-grid .fs-row [class*="-contained"].fs-xl-11 { |
|
768 |
+ width: 91.66666667%; |
|
769 |
+ } |
|
770 |
+ .fs-grid .fs-row [class*="-contained"].fs-xl-12 { |
|
771 |
+ width: 100%; |
|
772 |
+ } |
|
773 |
+ .fs-grid .fs-row [class*="-contained"].fs-xl-push-1 { |
|
774 |
+ margin-left: 8.33333333%; |
|
775 |
+ } |
|
776 |
+ .fs-grid .fs-row [class*="-contained"].fs-xl-push-2 { |
|
777 |
+ margin-left: 16.66666667%; |
|
778 |
+ } |
|
779 |
+ .fs-grid .fs-row [class*="-contained"].fs-xl-push-3 { |
|
780 |
+ margin-left: 25%; |
|
781 |
+ } |
|
782 |
+ .fs-grid .fs-row [class*="-contained"].fs-xl-push-4 { |
|
783 |
+ margin-left: 33.33333333%; |
|
784 |
+ } |
|
785 |
+ .fs-grid .fs-row [class*="-contained"].fs-xl-push-5 { |
|
786 |
+ margin-left: 41.66666667%; |
|
787 |
+ } |
|
788 |
+ .fs-grid .fs-row [class*="-contained"].fs-xl-push-6 { |
|
789 |
+ margin-left: 50%; |
|
790 |
+ } |
|
791 |
+ .fs-grid .fs-row [class*="-contained"].fs-xl-push-7 { |
|
792 |
+ margin-left: 58.33333333%; |
|
793 |
+ } |
|
794 |
+ .fs-grid .fs-row [class*="-contained"].fs-xl-push-8 { |
|
795 |
+ margin-left: 66.66666667%; |
|
796 |
+ } |
|
797 |
+ .fs-grid .fs-row [class*="-contained"].fs-xl-push-9 { |
|
798 |
+ margin-left: 75%; |
|
799 |
+ } |
|
800 |
+ .fs-grid .fs-row [class*="-contained"].fs-xl-push-10 { |
|
801 |
+ margin-left: 83.33333333%; |
|
802 |
+ } |
|
803 |
+ .fs-grid .fs-row [class*="-contained"].fs-xl-push-11 { |
|
804 |
+ margin-left: 91.66666667%; |
|
805 |
+ } |
|
806 |
+ .fs-grid .fs-row .fs-xl-fifth { |
|
807 |
+ width: 17.91666667%; |
|
808 |
+ } |
|
809 |
+ .fs-grid .fs-row .fs-xl-fourth { |
|
810 |
+ width: 22.91666667%; |
|
811 |
+ } |
|
812 |
+ .fs-grid .fs-row .fs-xl-third { |
|
813 |
+ width: 31.25%; |
|
814 |
+ } |
|
815 |
+ .fs-grid .fs-row .fs-xl-half { |
|
816 |
+ width: 47.91666667%; |
|
817 |
+ } |
|
818 |
+ .fs-grid .fs-row .fs-xl-full { |
|
819 |
+ width: 97.91666667%; |
|
820 |
+ } |
|
821 |
+ .fs-grid .fs-row .fs-xl-push-fifth { |
|
822 |
+ margin-left: 21.04166667%; |
|
823 |
+ } |
|
824 |
+ .fs-grid .fs-row .fs-xl-push-fourth { |
|
825 |
+ margin-left: 26.04166667%; |
|
826 |
+ } |
|
827 |
+ .fs-grid .fs-row .fs-xl-push-third { |
|
828 |
+ margin-left: 34.375%; |
|
829 |
+ } |
|
830 |
+ .fs-grid .fs-row .fs-xl-push-half { |
|
831 |
+ margin-left: 51.04166667%; |
|
832 |
+ } |
|
833 |
+ .fs-grid .fs-row [class*="-contained"].fs-xl-fifth { |
|
834 |
+ width: 20%; |
|
835 |
+ } |
|
836 |
+ .fs-grid .fs-row [class*="-contained"].fs-xl-fourth { |
|
837 |
+ width: 25%; |
|
838 |
+ } |
|
839 |
+ .fs-grid .fs-row [class*="-contained"].fs-xl-third { |
|
840 |
+ width: 33.33333333%; |
|
841 |
+ } |
|
842 |
+ .fs-grid .fs-row [class*="-contained"].fs-xl-half { |
|
843 |
+ width: 50%; |
|
844 |
+ } |
|
845 |
+ .fs-grid .fs-row [class*="-contained"].fs-xl-full { |
|
846 |
+ width: 100%; |
|
847 |
+ } |
|
848 |
+ .fs-grid .fs-row [class*="-contained"].fs-xl-push-fifth { |
|
849 |
+ margin-left: 20%; |
|
850 |
+ } |
|
851 |
+ .fs-grid .fs-row [class*="-contained"].fs-xl-push-fourth { |
|
852 |
+ margin-left: 25%; |
|
853 |
+ } |
|
854 |
+ .fs-grid .fs-row [class*="-contained"].fs-xl-push-third { |
|
855 |
+ margin-left: 33.33333333%; |
|
856 |
+ } |
|
857 |
+ .fs-grid .fs-row [class*="-contained"].fs-xl-push-half { |
|
858 |
+ margin-left: 50%; |
|
859 |
+ } |
|
860 |
+ .fs-grid .fs-row .fs-xl-hide { |
|
861 |
+ display: none; |
|
862 |
+ } |
|
863 |
+} |
0 | 864 |
new file mode 100755 |
... | ... |
@@ -0,0 +1,288 @@ |
1 |
+/*! formstone v0.7.12 [grid.ie.css] 2015-08-12 | MIT License | formstone.it */ |
|
2 |
+ |
|
3 |
+.fs_grid_row { |
|
4 |
+ width: 300px; |
|
5 |
+ margin-left: auto; |
|
6 |
+ margin-right: auto; |
|
7 |
+} |
|
8 |
+@media screen and (min-width: 500px) { |
|
9 |
+ .fs_grid_row { |
|
10 |
+ width: 480px; |
|
11 |
+ } |
|
12 |
+} |
|
13 |
+@media screen and (min-width: 740px) { |
|
14 |
+ .fs_grid_row { |
|
15 |
+ width: 720px; |
|
16 |
+ } |
|
17 |
+} |
|
18 |
+@media screen and (min-width: 980px) { |
|
19 |
+ .fs_grid_row { |
|
20 |
+ width: 960px; |
|
21 |
+ } |
|
22 |
+} |
|
23 |
+@media screen and (min-width: 1220px) { |
|
24 |
+ .fs_grid_row { |
|
25 |
+ width: 1200px; |
|
26 |
+ } |
|
27 |
+} |
|
28 |
+.fs_grid_row:after { |
|
29 |
+ height: 0; |
|
30 |
+ clear: both; |
|
31 |
+ content: "."; |
|
32 |
+ display: block; |
|
33 |
+ line-height: 0; |
|
34 |
+ visibility: hidden; |
|
35 |
+} |
|
36 |
+.fs_grid_row_fluid { |
|
37 |
+ width: 96%; |
|
38 |
+ width: -webkit-calc(100% - 40px); |
|
39 |
+ width: calc(100% - 40px); |
|
40 |
+} |
|
41 |
+@media screen and (max-width: 739px) { |
|
42 |
+ .fs_grid_row_fluid_sm { |
|
43 |
+ width: 96%; |
|
44 |
+ width: -webkit-calc(100% - 40px); |
|
45 |
+ width: calc(100% - 40px); |
|
46 |
+ } |
|
47 |
+} |
|
48 |
+.fs_grid_row_row { |
|
49 |
+ width: 102.08333333%; |
|
50 |
+ margin-left: -1.04166667%; |
|
51 |
+ margin-right: -1.04166667%; |
|
52 |
+} |
|
53 |
+.fs_grid_row_row_contained { |
|
54 |
+ width: 100%; |
|
55 |
+ margin-left: 0; |
|
56 |
+ margin-right: 0; |
|
57 |
+} |
|
58 |
+.fs_grid_cell { |
|
59 |
+ width: 97.91666667%; |
|
60 |
+ float: left; |
|
61 |
+ margin-left: 1.04166667%; |
|
62 |
+ margin-right: 1.04166667%; |
|
63 |
+} |
|
64 |
+.fs_grid_cell_centered { |
|
65 |
+ float: none; |
|
66 |
+ margin-left: auto; |
|
67 |
+ margin-right: auto; |
|
68 |
+} |
|
69 |
+.fs_grid_cell_padded { |
|
70 |
+ box-sizing: content-box; |
|
71 |
+ margin-left: 0; |
|
72 |
+ margin-right: 0; |
|
73 |
+ padding-left: 1.04166667%; |
|
74 |
+ padding-right: 1.04166667%; |
|
75 |
+} |
|
76 |
+.fs_grid_cell_contained { |
|
77 |
+ margin-left: 0; |
|
78 |
+ margin-right: 0; |
|
79 |
+} |
|
80 |
+.fs_grid_cell_right { |
|
81 |
+ float: right; |
|
82 |
+} |
|
83 |
+*, |
|
84 |
+*:before, |
|
85 |
+*:after { |
|
86 |
+ behavior: url(boxsizing.htc); |
|
87 |
+} |
|
88 |
+.fs-grid .fs-row { |
|
89 |
+ width: 960px; |
|
90 |
+} |
|
91 |
+.fs-grid .fs-row .fs-lg-1 { |
|
92 |
+ width: 6.25%; |
|
93 |
+} |
|
94 |
+.fs-grid .fs-row .fs-lg-2 { |
|
95 |
+ width: 14.58333333%; |
|
96 |
+} |
|
97 |
+.fs-grid .fs-row .fs-lg-3 { |
|
98 |
+ width: 22.91666667%; |
|
99 |
+} |
|
100 |
+.fs-grid .fs-row .fs-lg-4 { |
|
101 |
+ width: 31.25%; |
|
102 |
+} |
|
103 |
+.fs-grid .fs-row .fs-lg-5 { |
|
104 |
+ width: 39.58333333%; |
|
105 |
+} |
|
106 |
+.fs-grid .fs-row .fs-lg-6 { |
|
107 |
+ width: 47.91666667%; |
|
108 |
+} |
|
109 |
+.fs-grid .fs-row .fs-lg-7 { |
|
110 |
+ width: 56.25%; |
|
111 |
+} |
|
112 |
+.fs-grid .fs-row .fs-lg-8 { |
|
113 |
+ width: 64.58333333%; |
|
114 |
+} |
|
115 |
+.fs-grid .fs-row .fs-lg-9 { |
|
116 |
+ width: 72.91666667%; |
|
117 |
+} |
|
118 |
+.fs-grid .fs-row .fs-lg-10 { |
|
119 |
+ width: 81.25%; |
|
120 |
+} |
|
121 |
+.fs-grid .fs-row .fs-lg-11 { |
|
122 |
+ width: 89.58333333%; |
|
123 |
+} |
|
124 |
+.fs-grid .fs-row .fs-lg-12 { |
|
125 |
+ width: 97.91666667%; |
|
126 |
+} |
|
127 |
+.fs-grid .fs-row .fs-lg-push-1 { |
|
128 |
+ margin-left: 9.375%; |
|
129 |
+} |
|
130 |
+.fs-grid .fs-row .fs-lg-push-2 { |
|
131 |
+ margin-left: 17.70833333%; |
|
132 |
+} |
|
133 |
+.fs-grid .fs-row .fs-lg-push-3 { |
|
134 |
+ margin-left: 26.04166667%; |
|
135 |
+} |
|
136 |
+.fs-grid .fs-row .fs-lg-push-4 { |
|
137 |
+ margin-left: 34.375%; |
|
138 |
+} |
|
139 |
+.fs-grid .fs-row .fs-lg-push-5 { |
|
140 |
+ margin-left: 42.70833333%; |
|
141 |
+} |
|
142 |
+.fs-grid .fs-row .fs-lg-push-6 { |
|
143 |
+ margin-left: 51.04166667%; |
|
144 |
+} |
|
145 |
+.fs-grid .fs-row .fs-lg-push-7 { |
|
146 |
+ margin-left: 59.375%; |
|
147 |
+} |
|
148 |
+.fs-grid .fs-row .fs-lg-push-8 { |
|
149 |
+ margin-left: 67.70833333%; |
|
150 |
+} |
|
151 |
+.fs-grid .fs-row .fs-lg-push-9 { |
|
152 |
+ margin-left: 76.04166667%; |
|
153 |
+} |
|
154 |
+.fs-grid .fs-row .fs-lg-push-10 { |
|
155 |
+ margin-left: 84.375%; |
|
156 |
+} |
|
157 |
+.fs-grid .fs-row .fs-lg-push-11 { |
|
158 |
+ margin-left: 92.70833333%; |
|
159 |
+} |
|
160 |
+.fs-grid .fs-row [class*="-contained"].fs-lg-1 { |
|
161 |
+ width: 8.33333333%; |
|
162 |
+} |
|
163 |
+.fs-grid .fs-row [class*="-contained"].fs-lg-2 { |
|
164 |
+ width: 16.66666667%; |
|
165 |
+} |
|
166 |
+.fs-grid .fs-row [class*="-contained"].fs-lg-3 { |
|
167 |
+ width: 25%; |
|
168 |
+} |
|
169 |
+.fs-grid .fs-row [class*="-contained"].fs-lg-4 { |
|
170 |
+ width: 33.33333333%; |
|
171 |
+} |
|
172 |
+.fs-grid .fs-row [class*="-contained"].fs-lg-5 { |
|
173 |
+ width: 41.66666667%; |
|
174 |
+} |
|
175 |
+.fs-grid .fs-row [class*="-contained"].fs-lg-6 { |
|
176 |
+ width: 50%; |
|
177 |
+} |
|
178 |
+.fs-grid .fs-row [class*="-contained"].fs-lg-7 { |
|
179 |
+ width: 58.33333333%; |
|
180 |
+} |
|
181 |
+.fs-grid .fs-row [class*="-contained"].fs-lg-8 { |
|
182 |
+ width: 66.66666667%; |
|
183 |
+} |
|
184 |
+.fs-grid .fs-row [class*="-contained"].fs-lg-9 { |
|
185 |
+ width: 75%; |
|
186 |
+} |
|
187 |
+.fs-grid .fs-row [class*="-contained"].fs-lg-10 { |
|
188 |
+ width: 83.33333333%; |
|
189 |
+} |
|
190 |
+.fs-grid .fs-row [class*="-contained"].fs-lg-11 { |
|
191 |
+ width: 91.66666667%; |
|
192 |
+} |
|
193 |
+.fs-grid .fs-row [class*="-contained"].fs-lg-12 { |
|
194 |
+ width: 100%; |
|
195 |
+} |
|
196 |
+.fs-grid .fs-row [class*="-contained"].fs-lg-push-1 { |
|
197 |
+ margin-left: 8.33333333%; |
|
198 |
+} |
|
199 |
+.fs-grid .fs-row [class*="-contained"].fs-lg-push-2 { |
|
200 |
+ margin-left: 16.66666667%; |
|
201 |
+} |
|
202 |
+.fs-grid .fs-row [class*="-contained"].fs-lg-push-3 { |
|
203 |
+ margin-left: 25%; |
|
204 |
+} |
|
205 |
+.fs-grid .fs-row [class*="-contained"].fs-lg-push-4 { |
|
206 |
+ margin-left: 33.33333333%; |
|
207 |
+} |
|
208 |
+.fs-grid .fs-row [class*="-contained"].fs-lg-push-5 { |
|
209 |
+ margin-left: 41.66666667%; |
|
210 |
+} |
|
211 |
+.fs-grid .fs-row [class*="-contained"].fs-lg-push-6 { |
|
212 |
+ margin-left: 50%; |
|
213 |
+} |
|
214 |
+.fs-grid .fs-row [class*="-contained"].fs-lg-push-7 { |
|
215 |
+ margin-left: 58.33333333%; |
|
216 |
+} |
|
217 |
+.fs-grid .fs-row [class*="-contained"].fs-lg-push-8 { |
|
218 |
+ margin-left: 66.66666667%; |
|
219 |
+} |
|
220 |
+.fs-grid .fs-row [class*="-contained"].fs-lg-push-9 { |
|
221 |
+ margin-left: 75%; |
|
222 |
+} |
|
223 |
+.fs-grid .fs-row [class*="-contained"].fs-lg-push-10 { |
|
224 |
+ margin-left: 83.33333333%; |
|
225 |
+} |
|
226 |
+.fs-grid .fs-row [class*="-contained"].fs-lg-push-11 { |
|
227 |
+ margin-left: 91.66666667%; |
|
228 |
+} |
|
229 |
+.fs-grid .fs-row .fs-lg-fifth { |
|
230 |
+ width: 17.91666667%; |
|
231 |
+} |
|
232 |
+.fs-grid .fs-row .fs-lg-fourth { |
|
233 |
+ width: 22.91666667%; |
|
234 |
+} |
|
235 |
+.fs-grid .fs-row .fs-lg-third { |
|
236 |
+ width: 31.25%; |
|
237 |
+} |
|
238 |
+.fs-grid .fs-row .fs-lg-half { |
|
239 |
+ width: 47.91666667%; |
|
240 |
+} |
|
241 |
+.fs-grid .fs-row .fs-lg-full { |
|
242 |
+ width: 97.91666667%; |
|
243 |
+} |
|
244 |
+.fs-grid .fs-row .fs-lg-push-fifth { |
|
245 |
+ margin-left: 21.04166667%; |
|
246 |
+} |
|
247 |
+.fs-grid .fs-row .fs-lg-push-fourth { |
|
248 |
+ margin-left: 26.04166667%; |
|
249 |
+} |
|
250 |
+.fs-grid .fs-row .fs-lg-push-third { |
|
251 |
+ margin-left: 34.375%; |
|
252 |
+} |
|
253 |
+.fs-grid .fs-row .fs-lg-push-half { |
|
254 |
+ margin-left: 51.04166667%; |
|
255 |
+} |
|
256 |
+.fs-grid .fs-row [class*="-contained"].fs-lg-fifth { |
|
257 |
+ width: 20%; |
|
258 |
+} |
|
259 |
+.fs-grid .fs-row [class*="-contained"].fs-lg-fourth { |
|
260 |
+ width: 25%; |
|
261 |
+} |
|
262 |
+.fs-grid .fs-row [class*="-contained"].fs-lg-third { |
|
263 |
+ width: 33.33333333%; |
|
264 |
+} |
|
265 |
+.fs-grid .fs-row [class*="-contained"].fs-lg-half { |
|
266 |
+ width: 50%; |
|
267 |
+} |
|
268 |
+.fs-grid .fs-row [class*="-contained"].fs-lg-full { |
|
269 |
+ width: 100%; |
|
270 |
+} |
|
271 |
+.fs-grid .fs-row [class*="-contained"].fs-lg-push-fifth { |
|
272 |
+ margin-left: 20%; |
|
273 |
+} |
|
274 |
+.fs-grid .fs-row [class*="-contained"].fs-lg-push-fourth { |
|
275 |
+ margin-left: 25%; |
|
276 |
+} |
|
277 |
+.fs-grid .fs-row [class*="-contained"].fs-lg-push-third { |
|
278 |
+ margin-left: 33.33333333%; |
|
279 |
+} |
|
280 |
+.fs-grid .fs-row [class*="-contained"].fs-lg-push-half { |
|
281 |
+ margin-left: 50%; |
|
282 |
+} |
|
283 |
+.fs-grid .fs-row .fs-lg-hide { |
|
284 |
+ display: none; |
|
285 |
+} |
|
286 |
+.fs-grid .fs-row .fs-cell.-padded { |
|
287 |
+ behavior: none; |
|
288 |
+} |
0 | 289 |
new file mode 100755 |
... | ... |
@@ -0,0 +1,675 @@ |
1 |
+/*! formstone v0.7.12 [lightbox.css] 2015-08-12 | MIT License | formstone.it */ |
|
2 |
+ |
|
3 |
+/** |
|
4 |
+ * @class |
|
5 |
+ * @name .fs-lightbox-element |
|
6 |
+ * @type element |
|
7 |
+ * @description Target elmement |
|
8 |
+ */ |
|
9 |
+/** |
|
10 |
+ * @class |
|
11 |
+ * @name .fs-lightbox |
|
12 |
+ * @type element |
|
13 |
+ * @description Base widget class |
|
14 |
+ */ |
|
15 |
+/** |
|
16 |
+ * @class |
|
17 |
+ * @name .fs-lightbox.fs-lightbox-open |
|
18 |
+ * @type modifier |
|
19 |
+ * @description Indicates open state |
|
20 |
+ */ |
|
21 |
+/** |
|
22 |
+ * @class |
|
23 |
+ * @name .fs-lightbox.fs-lightbox-loading |
|
24 |
+ * @type modifier |
|
25 |
+ * @description Indicates loading state |
|
26 |
+ */ |
|
27 |
+/** |
|
28 |
+ * @class |
|
29 |
+ * @name .fs-lightbox.fs-lightbox-animating |
|
30 |
+ * @type modifier |
|
31 |
+ * @description Indicates animating state |
|
32 |
+ */ |
|
33 |
+/** |
|
34 |
+ * @class |
|
35 |
+ * @name .fs-lightbox.fs-lightbox-mobile |
|
36 |
+ * @type modifier |
|
37 |
+ * @description Indicates mobile display |
|
38 |
+ */ |
|
39 |
+/** |
|
40 |
+ * @class |
|
41 |
+ * @name .fs-lightbox.fs-lightbox-fixed |
|
42 |
+ * @type modifier |
|
43 |
+ * @description Indicates fixed positioning |
|
44 |
+ */ |
|
45 |
+/** |
|
46 |
+ * @class |
|
47 |
+ * @name .fs-lightbox.fs-lightbox-inline |
|
48 |
+ * @type modifier |
|
49 |
+ * @description Indicates inline content |
|
50 |
+ */ |
|
51 |
+/** |
|
52 |
+ * @class |
|
53 |
+ * @name .fs-lightbox.fs-lightbox-iframed |
|
54 |
+ * @type modifier |
|
55 |
+ * @description Indicates iFrame content |
|
56 |
+ */ |
|
57 |
+/** |
|
58 |
+ * @class |
|
59 |
+ * @name .fs-lightbox.fs-lightbox-has_caption |
|
60 |
+ * @type modifier |
|
61 |
+ * @description Indicates caption is present |
|
62 |
+ */ |
|
63 |
+/** |
|
64 |
+ * @class |
|
65 |
+ * @name .fs-lightbox.fs-lightbox-has_controls |
|
66 |
+ * @type modifier |
|
67 |
+ * @description Indicates controls are present |
|
68 |
+ */ |
|
69 |
+.fs-lightbox { |
|
70 |
+ width: 200px; |
|
71 |
+ height: 200px; |
|
72 |
+ position: absolute; |
|
73 |
+ right: 0; |
|
74 |
+ left: 0; |
|
75 |
+ z-index: 101; |
|
76 |
+ background: #ffffff; |
|
77 |
+ border-radius: 3px; |
|
78 |
+ box-shadow: 0 0 25px #000000; |
|
79 |
+ opacity: 0; |
|
80 |
+ margin: 0 auto; |
|
81 |
+ padding: 10px; |
|
82 |
+ -webkit-transform: translateZ(0); |
|
83 |
+ /** |
|
84 |
+ * @class |
|
85 |
+ * @name .fs-lightbox-overlay |
|
86 |
+ * @type element |
|
87 |
+ * @description Overlay element |
|
88 |
+ */ |
|
89 |
+ /** |
|
90 |
+ * @class |
|
91 |
+ * @name .fs-lightbox-close |
|
92 |
+ * @type element |
|
93 |
+ * @description Close element |
|
94 |
+ */ |
|
95 |
+ /** |
|
96 |
+ * @class |
|
97 |
+ * @name .fs-lightbox-loading_icon |
|
98 |
+ * @type element |
|
99 |
+ * @description Loading icon element |
|
100 |
+ */ |
|
101 |
+ /** |
|
102 |
+ * @class |
|
103 |
+ * @name .fs-lightbox-container |
|
104 |
+ * @type element |
|
105 |
+ * @description Container element |
|
106 |
+ */ |
|
107 |
+ /** |
|
108 |
+ * @class |
|
109 |
+ * @name .fs-lightbox-content |
|
110 |
+ * @type element |
|
111 |
+ * @description Content element |
|
112 |
+ */ |
|
113 |
+ /** |
|
114 |
+ * @class |
|
115 |
+ * @name .fs-lightbox-image |
|
116 |
+ * @type element |
|
117 |
+ * @description Image element |
|
118 |
+ */ |
|
119 |
+ /** |
|
120 |
+ * @class |
|
121 |
+ * @name .fs-lightbox-video |
|
122 |
+ * @type element |
|
123 |
+ * @description Video element |
|
124 |
+ */ |
|
125 |
+ /** |
|
126 |
+ * @class |
|
127 |
+ * @name .fs-lightbox-iframe |
|
128 |
+ * @type element |
|
129 |
+ * @description iFrame element |
|
130 |
+ */ |
|
131 |
+ /** |
|
132 |
+ * @class |
|
133 |
+ * @name .fs-lightbox-tools |
|
134 |
+ * @type element |
|
135 |
+ * @description Tools element |
|
136 |
+ */ |
|
137 |
+ /** |
|
138 |
+ * @class |
|
139 |
+ * @name .fs-lightbox-meta |
|
140 |
+ * @type element |
|
141 |
+ * @description Meta info element |
|
142 |
+ */ |
|
143 |
+ /** |
|
144 |
+ * @class |
|
145 |
+ * @name .fs-lightbox-controls |
|
146 |
+ * @type element |
|
147 |
+ * @description Controls container element |
|
148 |
+ */ |
|
149 |
+ /** |
|
150 |
+ * @class |
|
151 |
+ * @name .fs-lightbox-control |
|
152 |
+ * @type element |
|
153 |
+ * @description Control element |
|
154 |
+ */ |
|
155 |
+ /** |
|
156 |
+ * @class |
|
157 |
+ * @name .fs-lightbox-control.fs-lightbox-control_previous |
|
158 |
+ * @type modifier |
|
159 |
+ * @description Indicates previous control |
|
160 |
+ */ |
|
161 |
+ /** |
|
162 |
+ * @class |
|
163 |
+ * @name .fs-lightbox-control.fs-lightbox-control_next |
|
164 |
+ * @type modifier |
|
165 |
+ * @description Indicates next control |
|
166 |
+ */ |
|
167 |
+ /** |
|
168 |
+ * @class |
|
169 |
+ * @name .fs-lightbox-control.fs-lightbox-control_disabled |
|
170 |
+ * @type modifier |
|
171 |
+ * @description Indicates disbaled state |
|
172 |
+ */ |
|
173 |
+ /** |
|
174 |
+ * @class |
|
175 |
+ * @name .fs-lightbox-position |
|
176 |
+ * @type element |
|
177 |
+ * @description Position element |
|
178 |
+ */ |
|
179 |
+ /** |
|
180 |
+ * @class |
|
181 |
+ * @name .fs-lightbox-position_current |
|
182 |
+ * @type element |
|
183 |
+ * @description Current position element |
|
184 |
+ */ |
|
185 |
+ /** |
|
186 |
+ * @class |
|
187 |
+ * @name .fs-lightbox-position_total |
|
188 |
+ * @type element |
|
189 |
+ * @description Total position element |
|
190 |
+ */ |
|
191 |
+ /** |
|
192 |
+ * @class |
|
193 |
+ * @name .fs-lightbox-caption |
|
194 |
+ * @type element |
|
195 |
+ * @description Caption element |
|
196 |
+ */ |
|
197 |
+ /** |
|
198 |
+ * @class |
|
199 |
+ * @name .fs-lightbox-error |
|
200 |
+ * @type element |
|
201 |
+ * @description Error message element |
|
202 |
+ */ |
|
203 |
+ /** |
|
204 |
+ * @class |
|
205 |
+ * @name .fs-lightbox-lock |
|
206 |
+ * @type modifier |
|
207 |
+ * @description Indicates locked state; Applied to body element |
|
208 |
+ */ |
|
209 |
+} |
|
210 |
+.fs-lightbox, |
|
211 |
+.fs-lightbox * { |
|
212 |
+ box-sizing: border-box; |
|
213 |
+ -webkit-user-select: none !important; |
|
214 |
+ -moz-user-select: none !important; |
|
215 |
+ -ms-user-select: none !important; |
|
216 |
+ user-select: none !important; |
|
217 |
+} |
|
218 |
+.fs-lightbox-fixed { |
|
219 |
+ position: fixed; |
|
220 |
+ top: 0; |
|
221 |
+ bottom: 0; |
|
222 |
+ margin: auto; |
|
223 |
+} |
|
224 |
+.fs-lightbox-inline { |
|
225 |
+ padding: 30px; |
|
226 |
+} |
|
227 |
+.fs-lightbox-animating { |
|
228 |
+ -webkit-transition: height 0.25s ease, width 0.25s ease, opacity 0.25s linear, top 0.25s ease; |
|
229 |
+ transition: height 0.25s ease, width 0.25s ease, opacity 0.25s linear, top 0.25s ease; |
|
230 |
+} |
|
231 |
+.fs-lightbox-animating .fs-lightbox-container { |
|
232 |
+ -webkit-transition: opacity 0.25s linear 0.25s; |
|
233 |
+ transition: opacity 0.25s linear 0.25s; |
|
234 |
+} |
|
235 |
+.fs-lightbox-overlay { |
|
236 |
+ width: 100%; |
|
237 |
+ height: 100%; |
|
238 |
+ position: fixed; |
|
239 |
+ top: 0; |
|
240 |
+ right: 0; |
|
241 |
+ bottom: 0; |
|
242 |
+ left: 0; |
|
243 |
+ z-index: 100; |
|
244 |
+ background: #000000; |
|
245 |
+ opacity: 0; |
|
246 |
+ -webkit-transition: opacity 0.25s linear; |
|
247 |
+ transition: opacity 0.25s linear; |
|
248 |
+} |
|
249 |
+.fs-lightbox-open { |
|
250 |
+ opacity: 1; |
|
251 |
+} |
|
252 |
+.fs-lightbox-overlay.fs-lightbox-open { |
|
253 |
+ opacity: 0.75; |
|
254 |
+} |
|
255 |
+.fs-lightbox-close { |
|
256 |
+ border: none; |
|
257 |
+ width: 30px; |
|
258 |
+ height: 30px; |
|
259 |
+ position: absolute; |
|
260 |
+ top: -7.5px; |
|
261 |
+ right: -7.5px; |
|
262 |
+ z-index: 105; |
|
263 |
+ background: #ffffff; |
|
264 |
+ border-radius: 100%; |
|
265 |
+ cursor: pointer; |
|
266 |
+ display: block; |
|
267 |
+ overflow: hidden; |
|
268 |
+ padding: 0; |
|
269 |
+ text-indent: 200%; |
|
270 |
+ white-space: nowrap; |
|
271 |
+} |
|
272 |
+.fs-lightbox-close:focus { |
|
273 |
+ outline: none; |
|
274 |
+} |
|
275 |
+.fs-lightbox-close:before { |
|
276 |
+ position: absolute; |
|
277 |
+ top: 0; |
|
278 |
+ right: 0; |
|
279 |
+ bottom: 0; |
|
280 |
+ left: 0; |
|
281 |
+ color: #333333; |
|
282 |
+ content: "\00d7"; |
|
283 |
+ display: block; |
|
284 |
+ font-family: "Helvetica", Arial, sans-serif; |
|
285 |
+ font-size: 22px; |
|
286 |
+ font-weight: 700; |
|
287 |
+ line-height: 30px; |
|
288 |
+ margin: auto; |
|
289 |
+ text-align: center; |
|
290 |
+ text-indent: 0; |
|
291 |
+ -webkit-transition: color 0.15s linear; |
|
292 |
+ transition: color 0.15s linear; |
|
293 |
+} |
|
294 |
+.no-opacity .fs-lightbox-close { |
|
295 |
+ text-indent: -999px; |
|
296 |
+} |
|
297 |
+.fs-lightbox-loading_icon { |
|
298 |
+ width: 50px; |
|
299 |
+ height: 50px; |
|
300 |
+ position: absolute; |
|
301 |
+ top: 0; |
|
302 |
+ right: 0; |
|
303 |
+ bottom: 0; |
|
304 |
+ left: 0; |
|
305 |
+ z-index: 105; |
|
306 |
+ display: block; |
|
307 |
+ margin: auto; |
|
308 |
+ opacity: 0; |
|
309 |
+ -webkit-transition: opacity 0.25s linear; |
|
310 |
+ transition: opacity 0.25s linear; |
|
311 |
+} |
|
312 |
+.fs-lightbox-loading_icon:before, |
|
313 |
+.fs-lightbox-loading_icon:after { |
|
314 |
+ width: 100%; |
|
315 |
+ height: 100%; |
|
316 |
+ position: absolute; |
|
317 |
+ top: 0; |
|
318 |
+ right: 0; |
|
319 |
+ bottom: 0; |
|
320 |
+ left: 0; |
|
321 |
+ border-radius: 110%; |
|
322 |
+ content: ''; |
|
323 |
+ display: block; |
|
324 |
+} |
|
325 |
+.fs-lightbox-loading_icon:before { |
|
326 |
+ border: 5px solid rgba(51, 51, 51, 0.25); |
|
327 |
+} |
|
328 |
+.fs-lightbox-loading_icon:after { |
|
329 |
+ -webkit-animation: fs-lightbox-loading-spin 0.75s linear infinite; |
|
330 |
+ animation: fs-lightbox-loading-spin 0.75s linear infinite; |
|
331 |
+ border: 5px solid transparent; |
|
332 |
+ border-top-color: #333333; |
|
333 |
+} |
|
334 |
+@-webkit-keyframes fs-lightbox-loading-spin { |
|
335 |
+ from { |
|
336 |
+ -webkit-transform: rotate(0deg); |
|
337 |
+ transform: rotate(0deg); |
|
338 |
+ } |
|
339 |
+ to { |
|
340 |
+ -webkit-transform: rotate(360deg); |
|
341 |
+ transform: rotate(360deg); |
|
342 |
+ } |
|
343 |
+} |
|
344 |
+@keyframes fs-lightbox-loading-spin { |
|
345 |
+ from { |
|
346 |
+ -webkit-transform: rotate(0deg); |
|
347 |
+ transform: rotate(0deg); |
|
348 |
+ } |
|
349 |
+ to { |
|
350 |
+ -webkit-transform: rotate(360deg); |
|
351 |
+ transform: rotate(360deg); |
|
352 |
+ } |
|
353 |
+} |
|
354 |
+.fs-lightbox-container { |
|
355 |
+ width: 100%; |
|
356 |
+ height: 100%; |
|
357 |
+ position: relative; |
|
358 |
+ z-index: 103; |
|
359 |
+ background: #ffffff; |
|
360 |
+ overflow: hidden; |
|
361 |
+} |
|
362 |
+.fs-lightbox-container:after { |
|
363 |
+ clear: both; |
|
364 |
+ content: ''; |
|
365 |
+ display: table; |
|
366 |
+} |
|
367 |
+.fs-lightbox-content { |
|
368 |
+ width: 100%; |
|
369 |
+ background: #ffffff; |
|
370 |
+ opacity: 1; |
|
371 |
+ overflow: hidden; |
|
372 |
+ padding: 0; |
|
373 |
+} |
|
374 |
+.fs-lightbox-content:after { |
|
375 |
+ clear: both; |
|
376 |
+ content: ''; |
|
377 |
+ display: table; |
|
378 |
+} |
|
379 |
+.fs-lightbox-inline .fs-lightbox-content { |
|
380 |
+ width: auto; |
|
381 |
+} |
|
382 |
+.fs-lightbox-iframed .fs-lightbox-content { |
|
383 |
+ width: 100%; |
|
384 |
+ height: 100%; |
|
385 |
+ overflow: auto; |
|
386 |
+ -webkit-overflow-scrolling: touch; |
|
387 |
+} |
|
388 |
+.fs-lightbox-image { |
|
389 |
+ float: left; |
|
390 |
+} |
|
391 |
+.fs-lightbox-video { |
|
392 |
+ width: 100%; |
|
393 |
+ height: 100%; |
|
394 |
+} |
|
395 |
+.fs-lightbox-iframe { |
|
396 |
+ width: 100%; |
|
397 |
+ height: 100%; |
|
398 |
+ border: none; |
|
399 |
+ float: left; |
|
400 |
+ overflow: auto; |
|
401 |
+} |
|
402 |
+.fs-lightbox-meta { |
|
403 |
+ clear: both; |
|
404 |
+ padding: 10px 10px 0; |
|
405 |
+} |
|
406 |
+.fs-lightbox-control { |
|
407 |
+ border: none; |
|
408 |
+ width: 40px; |
|
409 |
+ height: 40px; |
|
410 |
+ position: absolute; |
|
411 |
+ top: 0; |
|
412 |
+ z-index: 105; |
|
413 |
+ background: #ffffff; |
|
414 |
+ border-radius: 100%; |
|
415 |
+ box-shadow: 0 0 5px rgba(0, 0, 0, 0.25); |
|
416 |
+ cursor: pointer; |
|
417 |
+ display: block; |
|
418 |
+ margin-right: auto; |
|
419 |
+ margin-left: auto; |
|
420 |
+ opacity: 1; |
|
421 |
+ overflow: hidden; |
|
422 |
+ text-indent: 200%; |
|
423 |
+ -webkit-transition: opacity 0.15s linear; |
|
424 |
+ transition: opacity 0.15s linear; |
|
425 |
+ white-space: nowrap; |
|
426 |
+} |
|
427 |
+.fs-lightbox-control:focus { |
|
428 |
+ outline: none; |
|
429 |
+} |
|
430 |
+.fs-lightbox-control:before { |
|
431 |
+ width: 0; |
|
432 |
+ height: 0; |
|
433 |
+ position: absolute; |
|
434 |
+ top: 0; |
|
435 |
+ right: 0; |
|
436 |
+ bottom: 0; |
|
437 |
+ left: 0; |
|
438 |
+ content: ''; |
|
439 |
+ margin: auto; |
|
440 |
+} |
|
441 |
+.no-opacity .fs-lightbox-control { |
|
442 |
+ text-indent: -999px; |
|
443 |
+} |
|
444 |
+.fs-lightbox-control_previous { |
|
445 |
+ left: 20px; |
|
446 |
+} |
|
447 |
+.fs-lightbox-control_previous:before { |
|
448 |
+ border-top: 8px solid transparent; |
|
449 |
+ border-bottom: 8px solid transparent; |
|
450 |
+ border-right: 10.4px solid #333333; |
|
451 |
+ margin-left: 14px; |
|
452 |
+} |
|
453 |
+.fs-lightbox-control_next { |
|
454 |
+ right: 20px; |
|
455 |
+} |
|
456 |
+.fs-lightbox-control_next:before { |
|
457 |
+ border-top: 8px solid transparent; |
|
458 |
+ border-bottom: 8px solid transparent; |
|
459 |
+ border-left: 10.4px solid #333333; |
|
460 |
+ margin-right: 14px; |
|
461 |
+} |
|
462 |
+.fs-lightbox-control_disabled { |
|
463 |
+ opacity: 0; |
|
464 |
+} |
|
465 |
+.no-touch .fs-lightbox .fs-lightbox-control { |
|
466 |
+ opacity: 0; |
|
467 |
+} |
|
468 |
+.no-touch .fs-lightbox:hover .fs-lightbox-control { |
|
469 |
+ opacity: 1; |
|
470 |
+} |
|
471 |
+.no-touch .fs-lightbox .fs-lightbox-control_disabled, |
|
472 |
+.no-touch .fs-lightbox:hover .fs-lightbox-control_disabled { |
|
473 |
+ opacity: 0; |
|
474 |
+ cursor: default; |
|
475 |
+} |
|
476 |
+.fs-lightbox-position { |
|
477 |
+ color: #999999; |
|
478 |
+ font-size: 12px; |
|
479 |
+ margin: 5px 0; |
|
480 |
+ padding: 0; |
|
481 |
+} |
|
482 |
+.fs-lightbox-caption:after { |
|
483 |
+ clear: both; |
|
484 |
+ content: ''; |
|
485 |
+ display: table; |
|
486 |
+} |
|
487 |
+.fs-lightbox-caption p { |
|
488 |
+ color: #666666; |
|
489 |
+ font-size: 14px; |
|
490 |
+ margin: 5px 0; |
|
491 |
+ padding: 0; |
|
492 |
+} |
|
493 |
+.fs-lightbox-caption_toggle { |
|
494 |
+ display: none; |
|
495 |
+} |
|
496 |
+.fs-lightbox-error { |
|
497 |
+ width: 250px; |
|
498 |
+} |
|
499 |
+.fs-lightbox-error p { |
|
500 |
+ color: #990000; |
|
501 |
+ font-size: 14px; |
|
502 |
+ margin: 0; |
|
503 |
+ padding: 25px; |
|
504 |
+ text-align: center; |
|
505 |
+ text-transform: uppercase; |
|
506 |
+} |
|
507 |
+.fs-lightbox-loading .fs-lightbox-container { |
|
508 |
+ opacity: 0; |
|
509 |
+ -webkit-transition: opacity 0.25s linear; |
|
510 |
+ transition: opacity 0.25s linear; |
|
511 |
+} |
|
512 |
+.fs-lightbox-loading .fs-lightbox-loading_icon { |
|
513 |
+ opacity: 1; |
|
514 |
+} |
|
515 |
+.fs-lightbox-mobile { |
|
516 |
+ width: 100%; |
|
517 |
+ height: 100%; |
|
518 |
+ position: fixed; |
|
519 |
+ top: 0; |
|
520 |
+ right: 0; |
|
521 |
+ bottom: 0; |
|
522 |
+ left: 0; |
|
523 |
+ background: #111111; |
|
524 |
+ border-radius: 0; |
|
525 |
+ padding: 40px 0 0; |
|
526 |
+} |
|
527 |
+.fs-lightbox-mobile .fs-lightbox-close { |
|
528 |
+ height: 40px; |
|
529 |
+ width: 40px; |
|
530 |
+ top: 0; |
|
531 |
+ right: 0; |
|
532 |
+ background: #111111; |
|
533 |
+ border-radius: 0; |
|
534 |
+} |
|
535 |
+.fs-lightbox-mobile .fs-lightbox-close:before { |
|
536 |
+ color: #cccccc; |
|
537 |
+ font-size: 28px; |
|
538 |
+ font-weight: 700; |
|
539 |
+ line-height: 40px; |
|
540 |
+} |
|
541 |
+.fs-lightbox-mobile .fs-lightbox-loading_icon:before { |
|
542 |
+ border-color: rgba(153, 153, 153, 0.25); |
|
543 |
+} |
|
544 |
+.fs-lightbox-mobile .fs-lightbox-loading_icon:after { |
|
545 |
+ border-top-color: #999999; |
|
546 |
+} |
|
547 |
+.fs-lightbox-mobile .fs-lightbox-container { |
|
548 |
+ position: static; |
|
549 |
+ background: #111111; |
|
550 |
+} |
|
551 |
+.fs-lightbox-mobile .fs-lightbox-content { |
|
552 |
+ background-color: #111111; |
|
553 |
+ padding: 0 15px; |
|
554 |
+} |
|
555 |
+.fs-lightbox-mobile .fs-lightbox-tools { |
|
556 |
+ width: 100%; |
|
557 |
+ position: fixed; |
|
558 |
+ right: 0; |
|
559 |
+ bottom: 0; |
|
560 |
+ left: 0; |
|
561 |
+ background-color: #111111; |
|
562 |
+} |
|
563 |
+.fs-lightbox-mobile .fs-lightbox-control { |
|
564 |
+ width: 50px; |
|
565 |
+ height: 100%; |
|
566 |
+ min-height: 50px; |
|
567 |
+ background: #111111; |
|
568 |
+ border-radius: 0; |
|
569 |
+ box-shadow: none; |
|
570 |
+ opacity: 1; |
|
571 |
+} |
|
572 |
+.fs-lightbox-mobile .fs-lightbox-control_previous { |
|
573 |
+ left: 0; |
|
574 |
+} |
|
575 |
+.fs-lightbox-mobile .fs-lightbox-control_previous:before { |
|
576 |
+ border-right-color: #eeeeee; |
|
577 |
+ margin-left: 19px; |
|
578 |
+} |
|
579 |
+.fs-lightbox-mobile .fs-lightbox-control_next { |
|
580 |
+ right: 0; |
|
581 |
+} |
|
582 |
+.fs-lightbox-mobile .fs-lightbox-control_next:before { |
|
583 |
+ border-left-color: #eeeeee; |
|
584 |
+ margin-right: 19px; |
|
585 |
+} |
|
586 |
+.no-touch .fs-lightbox-mobile .fs-lightbox-control, |
|
587 |
+.no-touch .fs-lightbox-mobile:hover .fs-lightbox-control { |
|
588 |
+ opacity: 1; |
|
589 |
+} |
|
590 |
+.fs-lightbox-mobile .fs-lightbox-control_disabled, |
|
591 |
+.no-touch .fs-lightbox-mobile .fs-lightbox-control_disabled, |
|
592 |
+.no-touch .fs-lightbox-mobile:hover .fs-lightbox-control_disabled { |
|
593 |
+ opacity: 0; |
|
594 |
+ cursor: default !important; |
|
595 |
+} |
|
596 |
+.fs-lightbox-mobile .fs-lightbox-meta { |
|
597 |
+ padding: 15px 65px; |
|
598 |
+} |
|
599 |
+.fs-lightbox-mobile .fs-lightbox-position { |
|
600 |
+ color: #999999; |
|
601 |
+ font-size: 12px; |
|
602 |
+ margin: 0; |
|
603 |
+ padding: 0 15px 0 0; |
|
604 |
+} |
|
605 |
+.fs-lightbox-mobile .fs-lightbox-caption p { |
|
606 |
+ color: #eeeeee; |
|
607 |
+ font-size: 14px; |
|
608 |
+ margin: 0; |
|
609 |
+ padding: 0; |
|
610 |
+} |
|
611 |
+.fs-lightbox-mobile .fs-lightbox-image { |
|
612 |
+ -webkit-transition: none !important; |
|
613 |
+ transition: none !important; |
|
614 |
+ -webkit-transform: translate(0, 0); |
|
615 |
+ -ms-transform: translate(0, 0); |
|
616 |
+ transform: translate(0, 0); |
|
617 |
+} |
|
618 |
+.fs-lightbox-mobile.fs-lightbox-animated .fs-lightbox-image { |
|
619 |
+ -webkit-transition: -webkit-transform 0.25s ease-out !important; |
|
620 |
+ transition: transform 0.25s ease-out !important; |
|
621 |
+} |
|
622 |
+.fs-lightbox-mobile.fs-lightbox-inline .fs-lightbox-content, |
|
623 |
+.fs-lightbox-mobile.fs-lightbox-iframe .fs-lightbox-content { |
|
624 |
+ overflow-x: hidden; |
|
625 |
+ overflow-y: scroll; |
|
626 |
+ -webkit-overflow-scrolling: touch; |
|
627 |
+} |
|
628 |
+.fs-lightbox-lock { |
|
629 |
+ overflow: hidden !important; |
|
630 |
+} |
|
631 |
+.fs-lightbox-mobile.fs-lightbox-touch .fs-lightbox-tools { |
|
632 |
+ width: auto; |
|
633 |
+ position: static; |
|
634 |
+ background: transparent; |
|
635 |
+} |
|
636 |
+.fs-lightbox-mobile.fs-lightbox-touch .fs-lightbox-controls { |
|
637 |
+ width: 100%; |
|
638 |
+ height: 50px; |
|
639 |
+ position: fixed; |
|
640 |
+ right: 0; |
|
641 |
+ bottom: 0; |
|
642 |
+ left: 0; |
|
643 |
+ z-index: 105; |
|
644 |
+ background-color: #111111; |
|
645 |
+ padding: 0 65px; |
|
646 |
+} |
|
647 |
+.fs-lightbox-mobile.fs-lightbox-touch .fs-lightbox-caption_toggle { |
|
648 |
+ color: #999999; |
|
649 |
+ display: block; |
|
650 |
+ font-size: 12px; |
|
651 |
+ line-height: 50px; |
|
652 |
+} |
|
653 |
+.fs-lightbox-mobile.fs-lightbox-touch .fs-lightbox-meta { |
|
654 |
+ width: 100%; |
|
655 |
+ height: 80%; |
|
656 |
+ position: fixed; |
|
657 |
+ top: 20%; |
|
658 |
+ right: 0; |
|
659 |
+ bottom: 0; |
|
660 |
+ left: 0; |
|
661 |
+ z-index: 104; |
|
662 |
+ background: #222222; |
|
663 |
+ box-shadow: 0 0 25px #000000; |
|
664 |
+ padding: 15px 15px 65px; |
|
665 |
+ -webkit-transform: translate(0, 100%); |
|
666 |
+ -ms-transform: translate(0, 100%); |
|
667 |
+ transform: translate(0, 100%); |
|
668 |
+ -webkit-transition: -webkit-transform 0.25s ease; |
|
669 |
+ transition: transform 0.25s ease; |
|
670 |
+} |
|
671 |
+.fs-lightbox-touch.fs-lightbox-caption_open .fs-lightbox-meta { |
|
672 |
+ -webkit-transform: translate(0, 0); |
|
673 |
+ -ms-transform: translate(0, 0); |
|
674 |
+ transform: translate(0, 0); |
|
675 |
+} |
0 | 676 |
new file mode 100755 |
... | ... |
@@ -0,0 +1,526 @@ |
1 |
+/*! formstone v0.7.12 [navigation.css] 2015-08-12 | MIT License | formstone.it */ |
|
2 |
+ |
|
3 |
+/** |
|
4 |
+ * @class |
|
5 |
+ * @name .fs-navigation-element |
|
6 |
+ * @type element |
|
7 |
+ * @description Target elmement |
|
8 |
+ */ |
|
9 |
+/** |
|
10 |
+ * @class |
|
11 |
+ * @name .fs-navigation |
|
12 |
+ * @type element |
|
13 |
+ * @description Base widget class |
|
14 |
+ */ |
|
15 |
+.fs-navigation { |
|
16 |
+ /** |
|
17 |
+ * @class |
|
18 |
+ * @name .fs-navigation-toggle-nav |
|
19 |
+ * @type element |
|
20 |
+ * @description Toggle navigation |
|
21 |
+ */ |
|
22 |
+ /** |
|
23 |
+ * @class |
|
24 |
+ * @name .fs-navigation-toggle-nav.fs-navigation-enabled |
|
25 |
+ * @type modifier |
|
26 |
+ * @description Indicates enabled state |
|
27 |
+ */ |
|
28 |
+ /** |
|
29 |
+ * @class |
|
30 |
+ * @name .fs-navigation-toggle-nav.fs-navigation-open |
|
31 |
+ * @type modifier |
|
32 |
+ * @description Indicates open state |
|
33 |
+ */ |
|
34 |
+ /** |
|
35 |
+ * @class |
|
36 |
+ * @name .fs-navigation-toggle-handle |
|
37 |
+ * @type element |
|
38 |
+ * @description Toggle handle |
|
39 |
+ */ |
|
40 |
+ /** |
|
41 |
+ * @class |
|
42 |
+ * @name .fs-navigation-toggle-handle.fs-navigation-enabled |
|
43 |
+ * @type modifier |
|
44 |
+ * @description Indicates enabled state |
|
45 |
+ */ |
|
46 |
+ /** |
|
47 |
+ * @class |
|
48 |
+ * @name .fs-navigation-toggle-handle.fs-navigation-open |
|
49 |
+ * @type modifier |
|
50 |
+ * @description Indicates open state |
|
51 |
+ */ |
|
52 |
+ /** |
|
53 |
+ * @class |
|
54 |
+ * @name .fs-navigation-overlay-nav |
|
55 |
+ * @type element |
|
56 |
+ * @description Overlay nav |
|
57 |
+ */ |
|
58 |
+ /** |
|
59 |
+ * @class |
|
60 |
+ * @name .fs-navigation-overlay-nav.fs-navigation-enabled |
|
61 |
+ * @type modifier |
|
62 |
+ * @description Indicates enabled state |
|
63 |
+ */ |
|
64 |
+ /** |
|
65 |
+ * @class |
|
66 |
+ * @name .fs-navigation-overlay-nav.fs-navigation-animated |
|
67 |
+ * @type modifier |
|
68 |
+ * @description Indicates animated state |
|
69 |
+ */ |
|
70 |
+ /** |
|
71 |
+ * @class |
|
72 |
+ * @name .fs-navigation-overlay-nav.fs-navigation-open |
|
73 |
+ * @type modifier |
|
74 |
+ * @description Indicates open state |
|
75 |
+ */ |
|
76 |
+ /** |
|
77 |
+ * @class |
|
78 |
+ * @name .fs-navigation-overlay-left-nav |
|
79 |
+ * @type modifier |
|
80 |
+ * @description Indicates left hand nav |
|
81 |
+ */ |
|
82 |
+ /** |
|
83 |
+ * @class |
|
84 |
+ * @name .fs-navigation-overlay-right-nav |
|
85 |
+ * @type modifier |
|
86 |
+ * @description Indicates right hand nav |
|
87 |
+ */ |
|
88 |
+ /** |
|
89 |
+ * @class |
|
90 |
+ * @name .fs-navigation-push-nav |
|
91 |
+ * @type element |
|
92 |
+ * @description Push nav |
|
93 |
+ */ |
|
94 |
+ /** |
|
95 |
+ * @class |
|
96 |
+ * @name .fs-navigation-push-nav.fs-navigation-enabled |
|
97 |
+ * @type modifier |
|
98 |
+ * @description Indicates enabled state |
|
99 |
+ */ |
|
100 |
+ /** |
|
101 |
+ * @class |
|
102 |
+ * @name .fs-navigation-push-nav.fs-navigation-animated |
|
103 |
+ * @type modifier |
|
104 |
+ * @description Indicates animated state |
|
105 |
+ */ |
|
106 |
+ /** |
|
107 |
+ * @class |
|
108 |
+ * @name .fs-navigation-push-nav.fs-navigation-open |
|
109 |
+ * @type modifier |
|
110 |
+ * @description Indicates open state |
|
111 |
+ */ |
|
112 |
+ /** |
|
113 |
+ * @class |
|
114 |
+ * @name .fs-navigation-push-left-nav |
|
115 |
+ * @type modifier |
|
116 |
+ * @description Indicates left hand nav |
|
117 |
+ */ |
|
118 |
+ /** |
|
119 |
+ * @class |
|
120 |
+ * @name .fs-navigation-push-right-nav |
|
121 |
+ * @type modifier |
|
122 |
+ * @description Indicates right hand nav |
|
123 |
+ */ |
|
124 |
+ /** |
|
125 |
+ * @class |
|
126 |
+ * @name .fs-navigation-reveal-nav |
|
127 |
+ * @type element |
|
128 |
+ * @description Reveal nav |
|
129 |
+ */ |
|
130 |
+ /** |
|
131 |
+ * @class |
|
132 |
+ * @name .fs-navigation-reveal-nav.fs-navigation-enabled |
|
133 |
+ * @type modifier |
|
134 |
+ * @description Indicates enabled state |
|
135 |
+ */ |
|
136 |
+ /** |
|
137 |
+ * @class |
|
138 |
+ * @name .fs-navigation-reveal-nav.fs-navigation-animated |
|
139 |
+ * @type modifier |
|
140 |
+ * @description Indicates animated state |
|
141 |
+ */ |
|
142 |
+ /** |
|
143 |
+ * @class |
|
144 |
+ * @name .fs-navigation-reveal-nav.fs-navigation-open |
|
145 |
+ * @type modifier |
|
146 |
+ * @description Indicates open state |
|
147 |
+ */ |
|
148 |
+ /** |
|
149 |
+ * @class |
|
150 |
+ * @name .fs-navigation-reveal-left-nav |
|
151 |
+ * @type modifier |
|
152 |
+ * @description Indicates left hand nav |
|
153 |
+ */ |
|
154 |
+ /** |
|
155 |
+ * @class |
|
156 |
+ * @name .fs-navigation-reveal-right-nav |
|
157 |
+ * @type modifier |
|
158 |
+ * @description Indicates right hand nav |
|
159 |
+ */ |
|
160 |
+ /** |
|
161 |
+ * @class |
|
162 |
+ * @name .fs-navigation-overlay-handle |
|
163 |
+ * @type element |
|
164 |
+ * @description Overlay handle |
|
165 |
+ */ |
|
166 |
+ /** |
|
167 |
+ * @class |
|
168 |
+ * @name .fs-navigation-overlay-handle.fs-navigation-enabled |
|
169 |
+ * @type modifier |
|
170 |
+ * @description Indicates enabled state |
|
171 |
+ */ |
|
172 |
+ /** |
|
173 |
+ * @class |
|
174 |
+ * @name .fs-navigation-push-handle |
|
175 |
+ * @type element |
|
176 |
+ * @description Push handle |
|
177 |
+ */ |
|
178 |
+ /** |
|
179 |
+ * @class |
|
180 |
+ * @name .fs-navigation-push-handle.fs-navigation-enabled |
|
181 |
+ * @type modifier |
|
182 |
+ * @description Indicates enabled state |
|
183 |
+ */ |
|
184 |
+ /** |
|
185 |
+ * @class |
|
186 |
+ * @name .fs-navigation-overlay-content:before |
|
187 |
+ * @type element |
|
188 |
+ * @description Overlay mask |
|
189 |
+ */ |
|
190 |
+ /** |
|
191 |
+ * @class |
|
192 |
+ * @name .fs-navigation-overlay-content.fs-navigation-open:before |
|
193 |
+ * @type modifier |
|
194 |
+ * @description Indicates open state |
|
195 |
+ */ |
|
196 |
+ /** |
|
197 |
+ * @class |
|
198 |
+ * @name .fs-navigation-push-content |
|
199 |
+ * @type element |
|
200 |
+ * @description Target page content |
|
201 |
+ */ |
|
202 |
+ /** |
|
203 |
+ * @class |
|
204 |
+ * @name .fs-navigation-push-content.fs-navigation-enabled |
|
205 |
+ * @type modifier |
|
206 |
+ * @description Indicates enabled state |
|
207 |
+ */ |
|
208 |
+ /** |
|
209 |
+ * @class |
|
210 |
+ * @name .fs-navigation-push-content.fs-navigation-animated |
|
211 |
+ * @type modifier |
|
212 |
+ * @description Indicates animted state |
|
213 |
+ */ |
|
214 |
+ /** |
|
215 |
+ * @class |
|
216 |
+ * @name .fs-navigation-push-content.fs-navigation-open |
|
217 |
+ * @type modifier |
|
218 |
+ * @description Indicates open state |
|
219 |
+ */ |
|
220 |
+ /** |
|
221 |
+ * @class |
|
222 |
+ * @name .fs-navigation-push-left-content |
|
223 |
+ * @type modifier |
|
224 |
+ * @description Indicates left hand nav |
|
225 |
+ */ |
|
226 |
+ /** |
|
227 |
+ * @class |
|
228 |
+ * @name .fs-navigation-push-right-content |
|
229 |
+ * @type modifier |
|
230 |
+ * @description Indicates right hand nav |
|
231 |
+ */ |
|
232 |
+ /** |
|
233 |
+ * @class |
|
234 |
+ * @name .fs-navigation-reveal-content |
|
235 |
+ * @type element |
|
236 |
+ * @description Target page content |
|
237 |
+ */ |
|
238 |
+ /** |
|
239 |
+ * @class |
|
240 |
+ * @name .fs-navigation-reveal-content.fs-navigation-enabled |
|
241 |
+ * @type modifier |
|
242 |
+ * @description Indicates enabled state |
|
243 |
+ */ |
|
244 |
+ /** |
|
245 |
+ * @class |
|
246 |
+ * @name .fs-navigation-reveal-content.fs-navigation-animated |
|
247 |
+ * @type modifier |
|
248 |
+ * @description Indicates animted state |
|
249 |
+ */ |
|
250 |
+ /** |
|
251 |
+ * @class |
|
252 |
+ * @name .fs-navigation-reveal-content.fs-navigation-open |
|
253 |
+ * @type modifier |
|
254 |
+ * @description Indicates open state |
|
255 |
+ */ |
|
256 |
+ /** |
|
257 |
+ * @class |
|
258 |
+ * @name .fs-navigation-reveal-left-content |
|
259 |
+ * @type modifier |
|
260 |
+ * @description Indicates left hand nav |
|
261 |
+ */ |
|
262 |
+ /** |
|
263 |
+ * @class |
|
264 |
+ * @name .fs-navigation-reveal-right-content |
|
265 |
+ * @type modifier |
|
266 |
+ * @description Indicates right hand nav |
|
267 |
+ */ |
|
268 |
+ /** |
|
269 |
+ * @class |
|
270 |
+ * @name .fs-navigation-handle |
|
271 |
+ * @type element |
|
272 |
+ * @description Click target to toggle navigation |
|
273 |
+ */ |
|
274 |
+ /** |
|
275 |
+ * @class |
|
276 |
+ * @name .fs-navigation-handle.fs-navigation-open |
|
277 |
+ * @type modifier |
|
278 |
+ * @description Indicates open state |
|
279 |
+ */ |
|
280 |
+ /** |
|
281 |
+ * @class |
|
282 |
+ * @name .fs-navigation-handle.fs-navigation-enabled |
|
283 |
+ * @type modifier |
|
284 |
+ * @description Indicates enabled state |
|
285 |
+ */ |
|
286 |
+ /** |
|
287 |
+ * @class |
|
288 |
+ * @name .fs-navigation-handle:after |
|
289 |
+ * @type element |
|
290 |
+ * @description Icon displayed in handle |
|
291 |
+ */ |
|
292 |
+ /** |
|
293 |
+ * @class |
|
294 |
+ * @name .fs-navigation-lock |
|
295 |
+ * @type modifier |
|
296 |
+ * @description Indicates locked state; Applied to body element |
|
297 |
+ */ |
|
298 |
+} |
|
299 |
+.fs-navigation.fs-navigation-enabled { |
|
300 |
+ margin: 0; |
|
301 |
+} |
|
302 |
+.fs-navigation, |
|
303 |
+.fs-navigation:after, |
|
304 |
+.fs-navigation:before, |
|
305 |
+.fs-navigation *, |
|
306 |
+.fs-navigation *:after, |
|
307 |
+.fs-navigation *:before { |
|
308 |
+ box-sizing: border-box; |
|
309 |
+ -webkit-transition: none; |
|
310 |
+ transition: none; |
|
311 |
+ -webkit-user-select: none !important; |
|
312 |
+ -moz-user-select: none !important; |
|
313 |
+ -ms-user-select: none !important; |
|
314 |
+ user-select: none !important; |
|
315 |
+} |
|
316 |
+.fs-navigation-toggle-nav.fs-navigation-enabled { |
|
317 |
+ background: #ffffff; |
|
318 |
+ border: 1px solid #cccccc; |
|
319 |
+ border-width: 0 1px 1px; |
|
320 |
+ border-radius: 0 0 3px 3px; |
|
321 |
+ display: none; |
|
322 |
+} |
|
323 |
+.fs-navigation-toggle-nav.fs-navigation-open { |
|
324 |
+ display: block; |
|
325 |
+} |
|
326 |
+.fs-navigation-toggle-handle.fs-navigation-enabled { |
|
327 |
+ width: 100%; |
|
328 |
+ background: #ffffff; |
|
329 |
+ border: 1px solid #cccccc; |
|
330 |
+ border-radius: 3px; |
|
331 |
+ color: #111111; |
|
332 |
+ cursor: pointer; |
|
333 |
+ display: block; |
|
334 |
+ font-size: 14px; |
|
335 |
+ height: 40px; |
|
336 |
+ line-height: 40px; |
|
337 |
+ margin: 0; |
|
338 |
+ padding: 0 45px 0 15px; |
|
339 |
+ position: relative; |
|
340 |
+ -webkit-user-select: none; |
|
341 |
+ -moz-user-select: none; |
|
342 |
+ -ms-user-select: none; |
|
343 |
+ user-select: none; |
|
344 |
+} |
|
345 |
+.fs-navigation-toggle-handle.fs-navigation-open { |
|
346 |
+ border-radius: 3px 3px 0 0; |
|
347 |
+} |
|
348 |
+.fs-navigation-push-nav.fs-navigation-enabled, |
|
349 |
+.fs-navigation-reveal-nav.fs-navigation-enabled, |
|
350 |
+.fs-navigation-overlay-nav.fs-navigation-enabled { |
|
351 |
+ width: 270px; |
|
352 |
+ height: 100%; |
|
353 |
+ height: -webkit-calc(100% + 60px); |
|
354 |
+ height: calc(100% + 60px); |
|
355 |
+ position: fixed; |
|
356 |
+ top: 0; |
|
357 |
+ background: #ffffff; |
|
358 |
+ display: block; |
|
359 |
+ overflow: auto; |
|
360 |
+ visibility: hidden; |
|
361 |
+} |
|
362 |
+.fs-navigation-reveal-nav.fs-navigation-animated { |
|
363 |
+ -webkit-transition: visibility 0.001s linear 0.2s; |
|
364 |
+ transition: visibility 0.001s linear 0.2s; |
|
365 |
+} |
|
366 |
+.fs-navigation-push-nav.fs-navigation-animated, |
|
367 |
+.fs-navigation-overlay-nav.fs-navigation-animated { |
|
368 |
+ -webkit-transition: -webkit-transform 0.2s ease, visibility 0.001s linear 0.2s; |
|
369 |
+ transition: transform 0.2s ease, visibility 0.001s linear 0.2s; |
|
370 |
+} |
|
371 |
+.fs-navigation-push-nav.fs-navigation-enabled, |
|
372 |
+.fs-navigation-reveal-nav.fs-navigation-enabled { |
|
373 |
+ z-index: 0; |
|
374 |
+} |
|
375 |
+.fs-navigation-push-left-nav.fs-navigation-enabled, |
|
376 |
+.fs-navigation-reveal-left-nav.fs-navigation-enabled, |
|
377 |
+.fs-navigation-overlay-left-nav.fs-navigation-enabled { |
|
378 |
+ left: 0; |
|
379 |
+} |
|
380 |
+.fs-navigation-push-right-nav.fs-navigation-enabled, |
|
381 |
+.fs-navigation-reveal-right-nav.fs-navigation-enabled, |
|
382 |
+.fs-navigation-overlay-right-nav.fs-navigation-enabled { |
|
383 |
+ right: 0; |
|
384 |
+} |
|
385 |
+.fs-navigation-push-left-nav.fs-navigation-enabled, |
|
386 |
+.fs-navigation-overlay-left-nav.fs-navigation-enabled { |
|
387 |
+ -webkit-transform: translate3D(-270px, 0, 0); |
|
388 |
+ -ms-transform: translate3D(-270px, 0, 0); |
|
389 |
+ transform: translate3D(-270px, 0, 0); |
|
390 |
+} |
|
391 |
+.fs-navigation-push-right-nav.fs-navigation-enabled, |
|
392 |
+.fs-navigation-overlay-right-nav.fs-navigation-enabled { |
|
393 |
+ -webkit-transform: translate3D(270px, 0, 0); |
|
394 |
+ -ms-transform: translate3D(270px, 0, 0); |
|
395 |
+ transform: translate3D(270px, 0, 0); |
|
396 |
+} |
|
397 |
+.fs-navigation-overlay-nav.fs-navigation-enabled { |
|
398 |
+ z-index: 2; |
|
399 |
+} |
|
400 |
+.fs-navigation-overlay-left-nav.fs-navigation-enabled { |
|
401 |
+ box-shadow: 2px 0 2px rgba(0, 0, 0, 0.15); |
|
402 |
+} |
|
403 |
+.fs-navigation-overlay-right-nav.fs-navigation-enabled { |
|
404 |
+ box-shadow: -2px 0 2px rgba(0, 0, 0, 0.15); |
|
405 |
+} |
|
406 |
+.fs-navigation-reveal-nav.fs-navigation-open { |
|
407 |
+ visibility: visible; |
|
408 |
+ -webkit-transition: visibility 0.001s ease; |
|
409 |
+ transition: visibility 0.001s ease; |
|
410 |
+} |
|
411 |
+.fs-navigation-push-nav.fs-navigation-open, |
|
412 |
+.fs-navigation-overlay-nav.fs-navigation-open { |
|
413 |
+ -webkit-transform: translate3D(0, 0, 0); |
|
414 |
+ -ms-transform: translate3D(0, 0, 0); |
|
415 |
+ transform: translate3D(0, 0, 0); |
|
416 |
+ -webkit-transition: -webkit-transform 0.2s ease, visibility 0.001s ease; |
|
417 |
+ transition: transform 0.2s ease, visibility 0.001s ease; |
|
418 |
+ visibility: visible; |
|
419 |
+} |
|
420 |
+.fs-navigation-push-handle.fs-navigation-enabled, |
|
421 |
+.fs-navigation-overlay-handle.fs-navigation-enabled { |
|
422 |
+ padding: 10px 40px 10px 15px; |
|
423 |
+ background: #ffffff; |
|
424 |
+ color: #111111; |
|
425 |
+ cursor: pointer; |
|
426 |
+ display: block; |
|
427 |
+ font-size: 14px; |
|
428 |
+ margin: 0; |
|
429 |
+ padding: 0 45px 0 15px; |
|
430 |
+ position: relative; |
|
431 |
+ -webkit-user-select: none; |
|
432 |
+ -moz-user-select: none; |
|
433 |
+ -ms-user-select: none; |
|
434 |
+ user-select: none; |
|
435 |
+} |
|
436 |
+.fs-navigation-overlay-content:before { |
|
437 |
+ width: 100%; |
|
438 |
+ height: 100%; |
|
439 |
+ height: -webkit-calc(100% + 60px); |
|
440 |
+ height: calc(100% + 60px); |
|
441 |
+ position: fixed; |
|
442 |
+ top: 0; |
|
443 |
+ right: 0; |
|
444 |
+ bottom: 0; |
|
445 |
+ left: 0; |
|
446 |
+ z-index: 1; |
|
447 |
+ background: #ffffff; |
|
448 |
+ background: rgba(255, 255, 255, 0.75); |
|
449 |
+ content: ''; |
|
450 |
+ display: block; |
|
451 |
+ opacity: 0; |
|
452 |
+ -webkit-transition: opacity 0.2s ease, visibility 0.2s ease; |
|
453 |
+ transition: opacity 0.2s ease, visibility 0.2s ease; |
|
454 |
+ visibility: hidden; |
|
455 |
+} |
|
456 |
+.fs-navigation-overlay-content.fs-navigation-open:before { |
|
457 |
+ opacity: 1; |
|
458 |
+ visibility: visible; |
|
459 |
+} |
|
460 |
+.fs-navigation-reveal-content.fs-navigation-enabled, |
|
461 |
+.fs-navigation-push-content.fs-navigation-enabled { |
|
462 |
+ position: relative; |
|
463 |
+ z-index: 1; |
|
464 |
+ display: block; |
|
465 |
+ overflow: hidden; |
|
466 |
+ -webkit-transform: translate3D(0, 0, 0); |
|
467 |
+ -ms-transform: translate3D(0, 0, 0); |
|
468 |
+ transform: translate3D(0, 0, 0); |
|
469 |
+} |
|
470 |
+.fs-navigation-reveal-content.fs-navigation-animated, |
|
471 |
+.fs-navigation-push-content.fs-navigation-animated { |
|
472 |
+ -webkit-transition: -webkit-transform 0.2s ease; |
|
473 |
+ transition: transform 0.2s ease; |
|
474 |
+} |
|
475 |
+.fs-navigation-reveal-left-content.fs-navigation-enabled, |
|
476 |
+.fs-navigation-push-left-content.fs-navigation-enabled { |
|
477 |
+ box-shadow: -2px 0 2px rgba(0, 0, 0, 0.15); |
|
478 |
+} |
|
479 |
+.fs-navigation-reveal-right-content.fs-navigation-enabled, |
|
480 |
+.fs-navigation-push-right-content.fs-navigation-enabled { |
|
481 |
+ box-shadow: 2px 0 2px rgba(0, 0, 0, 0.15); |
|
482 |
+} |
|
483 |
+.fs-navigation-reveal-left-content.fs-navigation-open, |
|
484 |
+.fs-navigation-push-left-content.fs-navigation-open { |
|
485 |
+ -webkit-transform: translate3D(270px, 0, 0); |
|
486 |
+ -ms-transform: translate3D(270px, 0, 0); |
|
487 |
+ transform: translate3D(270px, 0, 0); |
|
488 |
+} |
|
489 |
+.fs-navigation-reveal-right-content.fs-navigation-open, |
|
490 |
+.fs-navigation-push-right-content.fs-navigation-open { |
|
491 |
+ -webkit-transform: translate3D(-270px, 0, 0); |
|
492 |
+ -ms-transform: translate3D(-270px, 0, 0); |
|
493 |
+ transform: translate3D(-270px, 0, 0); |
|
494 |
+} |
|
495 |
+.fs-navigation-handle.fs-navigation-enabled { |
|
496 |
+ position: relative; |
|
497 |
+} |
|
498 |
+.fs-navigation-handle.fs-navigation-enabled:after { |
|
499 |
+ height: 3px; |
|
500 |
+ width: 15px; |
|
501 |
+ position: absolute; |
|
502 |
+ top: 0; |
|
503 |
+ right: 15px; |
|
504 |
+ bottom: 0; |
|
505 |
+ background: #cccccc; |
|
506 |
+ box-shadow: 0 5px 0 #cccccc, 0 -5px 0 #cccccc; |
|
507 |
+ content: ''; |
|
508 |
+ display: block; |
|
509 |
+ margin: auto 0; |
|
510 |
+} |
|
511 |
+.fs-navigation-handle.fs-navigation-open:after { |
|
512 |
+ width: 15px; |
|
513 |
+ height: 15px; |
|
514 |
+ background: transparent; |
|
515 |
+ border: none; |
|
516 |
+ box-shadow: none; |
|
517 |
+ color: #cccccc; |
|
518 |
+ content: "\00d7"; |
|
519 |
+ font-size: 22px; |
|
520 |
+ font-weight: 700; |
|
521 |
+ line-height: 13px; |
|
522 |
+ text-align: center; |
|
523 |
+} |
|
524 |
+.fs-navigation-lock { |
|
525 |
+ overflow: hidden !important; |
|
526 |
+} |
0 | 527 |
new file mode 100755 |
... | ... |
@@ -0,0 +1,158 @@ |
1 |
+/*! formstone v0.7.12 [number.css] 2015-08-12 | MIT License | formstone.it */ |
|
2 |
+ |
|
3 |
+/** |
|
4 |
+ * @class |
|
5 |
+ * @name .fs-number-element |
|
6 |
+ * @type element |
|
7 |
+ * @description Target elmement |
|
8 |
+ */ |
|
9 |
+/** |
|
10 |
+ * @class |
|
11 |
+ * @name .fs-number |
|
12 |
+ * @type element |
|
13 |
+ * @description Base widget class |
|
14 |
+ */ |
|
15 |
+/** |
|
16 |
+ * @class |
|
17 |
+ * @name .fs-number.fs-number-disabled |
|
18 |
+ * @type modifier |
|
19 |
+ * @description Indicates disabled state |
|
20 |
+ */ |
|
21 |
+.fs-number { |
|
22 |
+ position: relative; |
|
23 |
+ border-radius: 3px; |
|
24 |
+ margin: 0 0 10px 0; |
|
25 |
+ overflow: hidden; |
|
26 |
+ /** |
|
27 |
+ * @class |
|
28 |
+ * @name .fs-number-arrow |
|
29 |
+ * @type element |
|
30 |
+ * @description Arrow elmement |
|
31 |
+ */ |
|
32 |
+ /** |
|
33 |
+ * @class |
|
34 |
+ * @name .fs-number-arrow:after |
|
35 |
+ * @type element |
|
36 |
+ * @description Arrow icon |
|
37 |
+ */ |
|
38 |
+ /** |
|
39 |
+ * @class |
|
40 |
+ * @name .fs-number-arrow.fs-number-up |
|
41 |
+ * @type modifier |
|
42 |
+ * @description Indicates up state |
|
43 |
+ */ |
|
44 |
+ /** |
|
45 |
+ * @class |
|
46 |
+ * @name .fs-number-arrow.fs-number-down |
|
47 |
+ * @type modifier |
|
48 |
+ * @description Indicates up state |
|
49 |
+ */ |
|
50 |
+} |
|
51 |
+.fs-number, |
|
52 |
+.fs-number:after, |
|
53 |
+.fs-number:before, |
|
54 |
+.fs-number *, |
|
55 |
+.fs-number *:after, |
|
56 |
+.fs-number *:before { |
|
57 |
+ box-sizing: border-box; |
|
58 |
+ -webkit-transition: none; |
|
59 |
+ transition: none; |
|
60 |
+ -webkit-user-select: none !important; |
|
61 |
+ -moz-user-select: none !important; |
|
62 |
+ -ms-user-select: none !important; |
|
63 |
+ user-select: none !important; |
|
64 |
+} |
|
65 |
+.fs-number-element { |
|
66 |
+ width: 100%; |
|
67 |
+ background: #ffffff; |
|
68 |
+ border: 1px solid #cccccc; |
|
69 |
+ border-radius: 3px; |
|
70 |
+ color: #222222; |
|
71 |
+ font-size: 15px; |
|
72 |
+ line-height: 1; |
|
73 |
+ overflow: hidden; |
|
74 |
+ padding: 0 10px; |
|
75 |
+ -moz-appearance: textfield; |
|
76 |
+} |
|
77 |
+.fs-number-element::-webkit-inner-spin-button, |
|
78 |
+.fs-number-element::-webkit-outer-spin-button { |
|
79 |
+ margin: 0; |
|
80 |
+ -webkit-appearance: none; |
|
81 |
+} |
|
82 |
+.fs-number-element::-ms-clear { |
|
83 |
+ display: none; |
|
84 |
+} |
|
85 |
+.fs-number-element:focus { |
|
86 |
+ background-color: #ffffff; |
|
87 |
+} |
|
88 |
+.fs-number-disabled .fs-number-element { |
|
89 |
+ background: #ffffff; |
|
90 |
+ border-color: #cccccc; |
|
91 |
+ color: #cccccc; |
|
92 |
+} |
|
93 |
+.fs-number-arrow { |
|
94 |
+ width: 25px; |
|
95 |
+ height: 50%; |
|
96 |
+ position: absolute; |
|
97 |
+ right: 0; |
|
98 |
+ z-index: 1; |
|
99 |
+ background: #ffffff; |
|
100 |
+ border: 1px solid #cccccc; |
|
101 |
+ cursor: pointer; |
|
102 |
+ display: block; |
|
103 |
+ overflow: hidden; |
|
104 |
+ text-indent: 200%; |
|
105 |
+ white-space: nowrap; |
|
106 |
+} |
|
107 |
+.no-opacity .fs-number-arrow { |
|
108 |
+ text-indent: -999999px; |
|
109 |
+} |
|
110 |
+.fs-number-arrow:focus { |
|
111 |
+ outline: none; |
|
112 |
+} |
|
113 |
+.fs-number-arrow:after { |
|
114 |
+ width: 0; |
|
115 |
+ height: 0; |
|
116 |
+ position: absolute; |
|
117 |
+ top: 0; |
|
118 |
+ right: 0; |
|
119 |
+ bottom: 0; |
|
120 |
+ left: 0; |
|
121 |
+ border-left: 5px solid transparent; |
|
122 |
+ border-right: 5px solid transparent; |
|
123 |
+ content: ''; |
|
124 |
+ display: block; |
|
125 |
+ margin: auto; |
|
126 |
+} |
|
127 |
+.fs-number-arrow.fs-number-up { |
|
128 |
+ top: 0; |
|
129 |
+} |
|
130 |
+.fs-number-arrow.fs-number-up:after { |
|
131 |
+ border-bottom: 5px solid #666666; |
|
132 |
+} |
|
133 |
+.fs-number-arrow.fs-number-down { |
|
134 |
+ bottom: 0; |
|
135 |
+ border-top: none; |
|
136 |
+} |
|
137 |
+.fs-number-arrow.fs-number-down:after { |
|
138 |
+ border-top: 5px solid #666666; |
|
139 |
+} |
|
140 |
+.fs-number-disabled .fs-number-arrow { |
|
141 |
+ cursor: default; |
|
142 |
+} |
|
143 |
+.fs-number-disabled .fs-number-arrow:after { |
|
144 |
+ border-top-color: #cccccc; |
|
145 |
+ border-bottom-color: #cccccc; |
|
146 |
+} |
|
147 |
+/* |
|
148 |
+ @media screen and (min-width: 740px) { |
|
149 |
+ .stepper:hover .stepper-input { background-color: #fff; } |
|
150 |
+ |
|
151 |
+ .stepper .stepper-step:hover { background-color: #F9F9F9; } |
|
152 |
+ |
|
153 |
+ .stepper.disabled .stepper-arrow { background: #fff; border-color: #eee; cursor: default; } |
|
154 |
+ } |
|
155 |
+ |
|
156 |
+ .stepper.disabled .stepper-input { background: #fff; border-color: #eee; color: #ccc; } |
|
157 |
+ .stepper.disabled .stepper-arrow { background: #fff; border-color: #eee; cursor: default; } |
|
158 |
+*/ |
0 | 159 |
new file mode 100755 |
... | ... |
@@ -0,0 +1,138 @@ |
1 |
+/*! formstone v0.7.12 [pagination.css] 2015-08-12 | MIT License | formstone.it */ |
|
2 |
+ |
|
3 |
+/** |
|
4 |
+ * @class |
|
5 |
+ * @name .fs-pagination-element |
|
6 |
+ * @type element |
|
7 |
+ * @description Target elmement |
|
8 |
+ */ |
|
9 |
+/** |
|
10 |
+ * @class |
|
11 |
+ * @name .fs-pagination |
|
12 |
+ * @type element |
|
13 |
+ * @description Base widget class |
|
14 |
+ */ |
|
15 |
+/** |
|
16 |
+ * @class |
|
17 |
+ * @name .fs-pagination.fs-pagination-mobile |
|
18 |
+ * @type modifier |
|
19 |
+ * @description Indicates mobile display |
|
20 |
+ */ |
|
21 |
+.fs-pagination { |
|
22 |
+ /** |
|
23 |
+ * @class |
|
24 |
+ * @name .fs-pagination |
|
25 |
+ * @type element |
|
26 |
+ * @description Pages container |
|
27 |
+ */ |
|
28 |
+ /** |
|
29 |
+ * @class |
|
30 |
+ * @name .fs-pagination-page |
|
31 |
+ * @type element |
|
32 |
+ * @description Page element |
|
33 |
+ */ |
|
34 |
+ /** |
|
35 |
+ * @class |
|
36 |
+ * @name .fs-pagination-ellipsis |
|
37 |
+ * @type element |
|
38 |
+ * @description Ellipsis element |
|
39 |
+ */ |
|
40 |
+ /** |
|
41 |
+ * @class |
|
42 |
+ * @name .fs-pagination-page.fs-pagination-active |
|
43 |
+ * @type modifier |
|
44 |
+ * @description Indicates active page |
|
45 |
+ */ |
|
46 |
+ /** |
|
47 |
+ * @class |
|
48 |
+ * @name .fs-pagination-page.fs-pagination-first |
|
49 |
+ * @type modifier |
|
50 |
+ * @description Indicates first page |
|
51 |
+ */ |
|
52 |
+ /** |
|
53 |
+ * @class |
|
54 |
+ * @name .fs-pagination-page.fs-pagination-last |
|
55 |
+ * @type modifier |
|
56 |
+ * @description Indicates last page |
|
57 |
+ */ |
|
58 |
+ /** |
|
59 |
+ * @class |
|
60 |
+ * @name .fs-pagination-page.fs-pagination-visible |
|
61 |
+ * @type modifier |
|
62 |
+ * @description Indicates visible page |
|
63 |
+ */ |
|
64 |
+ /** |
|
65 |
+ * @class |
|
66 |
+ * @name .fs-pagination-control |
|
67 |
+ * @type element |
|
68 |
+ * @description Pagination button |
|
69 |
+ */ |
|
70 |
+ /** |
|
71 |
+ * @class |
|
72 |
+ * @name .fs-pagination-control.fs-pagination-control_previous |
|
73 |
+ * @type modifier |
|
74 |
+ * @description Indicates previous control |
|
75 |
+ */ |
|
76 |
+ /** |
|
77 |
+ * @class |
|
78 |
+ * @name .fs-pagination-control.fs-pagination-control_next |
|
79 |
+ * @type modifier |
|
80 |
+ * @description Indicates next control |
|
81 |
+ */ |
|
82 |
+ /** |
|
83 |
+ * @class |
|
84 |
+ * @name .fs-pagination-position |
|
85 |
+ * @type element |
|
86 |
+ * @description Mobile position indicator |
|
87 |
+ */ |
|
88 |
+ /** |
|
89 |
+ * @class |
|
90 |
+ * @name .fs-pagination-select |
|
91 |
+ * @type element |
|
92 |
+ * @description Mobile page dropdown |
|
93 |
+ */ |
|
94 |
+} |
|
95 |
+.fs-pagination-pages { |
|
96 |
+ text-align: center; |
|
97 |
+} |
|
98 |
+.fs-pagination-page, |
|
99 |
+.fs-pagination-ellipsis { |
|
100 |
+ display: none; |
|
101 |
+ margin: 0 5px; |
|
102 |
+} |
|
103 |
+.fs-pagination-active, |
|
104 |
+.fs-pagination-first, |
|
105 |
+.fs-pagination-last, |
|
106 |
+.fs-pagination-visible { |
|
107 |
+ display: inline-block; |
|
108 |
+} |
|
109 |
+.fs-pagination-control { |
|
110 |
+ border: none; |
|
111 |
+ display: block; |
|
112 |
+} |
|
113 |
+.fs-pagination-control:focus { |
|
114 |
+ outline: none; |
|
115 |
+} |
|
116 |
+.fs-pagination-control_previous { |
|
117 |
+ float: left; |
|
118 |
+} |
|
119 |
+.fs-pagination-control_next { |
|
120 |
+ float: right; |
|
121 |
+} |
|
122 |
+.fs-pagination-position, |
|
123 |
+.fs-pagination-select { |
|
124 |
+ display: none; |
|
125 |
+} |
|
126 |
+.fs-pagination-mobile .fs-pagination-pages { |
|
127 |
+ display: none; |
|
128 |
+} |
|
129 |
+.fs-pagination-mobile .fs-pagination-position { |
|
130 |
+ display: block; |
|
131 |
+ text-align: center; |
|
132 |
+} |
|
133 |
+.fs-pagination-mobile .fs-pagination-select { |
|
134 |
+ position: absolute; |
|
135 |
+ z-index: -1; |
|
136 |
+ display: block; |
|
137 |
+ opacity: 0; |
|
138 |
+} |
0 | 139 |
new file mode 100755 |
... | ... |
@@ -0,0 +1,132 @@ |
1 |
+/*! formstone v0.7.12 [range.css] 2015-08-12 | MIT License | formstone.it */ |
|
2 |
+ |
|
3 |
+.fs-range { |
|
4 |
+ width: 100%; |
|
5 |
+} |
|
6 |
+.fs-range, |
|
7 |
+.fs-range:after, |
|
8 |
+.fs-range:before, |
|
9 |
+.fs-range *, |
|
10 |
+.fs-range *:after, |
|
11 |
+.fs-range *:before { |
|
12 |
+ box-sizing: border-box; |
|
13 |
+ -webkit-transition: none; |
|
14 |
+ transition: none; |
|
15 |
+ -webkit-user-select: none !important; |
|
16 |
+ -moz-user-select: none !important; |
|
17 |
+ -ms-user-select: none !important; |
|
18 |
+ user-select: none !important; |
|
19 |
+} |
|
20 |
+.fs-range-element { |
|
21 |
+ width: 1px; |
|
22 |
+ height: 1px; |
|
23 |
+ position: absolute; |
|
24 |
+ z-index: -1; |
|
25 |
+ opacity: 0; |
|
26 |
+} |
|
27 |
+.no-touch .fs-range-element { |
|
28 |
+ left: -9999px; |
|
29 |
+} |
|
30 |
+.fs-range-track { |
|
31 |
+ width: 100%; |
|
32 |
+ height: 8px; |
|
33 |
+ position: relative; |
|
34 |
+ background: #fbfbfb; |
|
35 |
+ border: 1px solid #ddd; |
|
36 |
+ border-radius: 4px; |
|
37 |
+ float: left; |
|
38 |
+ margin: 10px 0; |
|
39 |
+} |
|
40 |
+.fs-range-handle { |
|
41 |
+ width: 1px; |
|
42 |
+ height: 100%; |
|
43 |
+ left: 0; |
|
44 |
+ position: absolute; |
|
45 |
+ top: 0; |
|
46 |
+ display: block; |
|
47 |
+ overflow: visible; |
|
48 |
+} |
|
49 |
+.fs-range-marker { |
|
50 |
+ width: 14px; |
|
51 |
+ height: 14px; |
|
52 |
+ background: #DCDCDC; |
|
53 |
+ border: 1px solid #AFAFAF; |
|
54 |
+ border-radius: 100%; |
|
55 |
+ cursor: pointer; |
|
56 |
+ display: block; |
|
57 |
+ margin: -4px 0 0 -6px; |
|
58 |
+} |
|
59 |
+.no-touch .fs-range:hover .fs-range-track { |
|
60 |
+ box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1); |
|
61 |
+} |
|
62 |
+.no-touch .fs-range:hover .fs-range-marker { |
|
63 |
+ background: #ccc; |
|
64 |
+ border-color: #999; |
|
65 |
+ box-shadow: 0 0 3px rgba(0, 0, 0, 0.25); |
|
66 |
+} |
|
67 |
+.fs-range-focus .fs-range-track { |
|
68 |
+ box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1); |
|
69 |
+} |
|
70 |
+.fs-range-focus .fs-range-marker { |
|
71 |
+ background: #ccc; |
|
72 |
+ border-color: #999; |
|
73 |
+ box-shadow: 0 0 3px rgba(0, 0, 0, 0.25); |
|
74 |
+} |
|
75 |
+.fs-range-labels .fs-range-track { |
|
76 |
+ width: 80%; |
|
77 |
+} |
|
78 |
+.fs-range-label { |
|
79 |
+ width: 8%; |
|
80 |
+ display: block; |
|
81 |
+ font-size: 12px; |
|
82 |
+ line-height: 28px; |
|
83 |
+} |
|
84 |
+.fs-range-label_min { |
|
85 |
+ float: left; |
|
86 |
+ margin: 0 2% 0 0; |
|
87 |
+ text-align: right; |
|
88 |
+} |
|
89 |
+.fs-range-label_max { |
|
90 |
+ float: right; |
|
91 |
+ margin: 0 0 0 2%; |
|
92 |
+ text-align: left; |
|
93 |
+} |
|
94 |
+.fs-range-vertical { |
|
95 |
+ height: 300px; |
|
96 |
+ width: 30px; |
|
97 |
+} |
|
98 |
+.fs-range-vertical .fs-range-track { |
|
99 |
+ width: 8px; |
|
100 |
+ height: 75%; |
|
101 |
+ margin: 0 11px 0; |
|
102 |
+} |
|
103 |
+.fs-range-vertical .fs-range-handle { |
|
104 |
+ width: 100%; |
|
105 |
+ height: 1px; |
|
106 |
+ top: auto; |
|
107 |
+ bottom: 0; |
|
108 |
+ left: 0; |
|
109 |
+} |
|
110 |
+.fs-range-vertical .fs-range-marker { |
|
111 |
+ margin: -7px 0 0 -4px; |
|
112 |
+} |
|
113 |
+.fs-range-vertical .fs-range-label { |
|
114 |
+ clear: both; |
|
115 |
+ float: none; |
|
116 |
+ height: 10%; |
|
117 |
+ text-align: center; |
|
118 |
+ width: 100%; |
|
119 |
+} |
|
120 |
+.fs-range-vertical .fs-range-label_min { |
|
121 |
+ padding: 5px 0 0; |
|
122 |
+} |
|
123 |
+.fs-range-vertical .fs-range-label_max { |
|
124 |
+ padding: 0; |
|
125 |
+} |
|
126 |
+.fs-range-disabled { |
|
127 |
+ cursor: default; |
|
128 |
+ opacity: 0.5; |
|
129 |
+} |
|
130 |
+.fs-range-disabled .fs-range-disc { |
|
131 |
+ cursor: default; |
|
132 |
+} |
0 | 133 |
new file mode 100755 |
... | ... |
@@ -0,0 +1,154 @@ |
1 |
+/*! formstone v0.7.12 [scrollbar.css] 2015-08-12 | MIT License | formstone.it */ |
|
2 |
+ |
|
3 |
+/** |
|
4 |
+ * @class |
|
5 |
+ * @name .fs-scrollbar-element |
|
6 |
+ * @type element |
|
7 |
+ * @description Target elmement |
|
8 |
+ */ |
|
9 |
+/** |
|
10 |
+ * @class |
|
11 |
+ * @name .fs-scrollbar |
|
12 |
+ * @type element |
|
13 |
+ * @description Base widget class |
|
14 |
+ */ |
|
15 |
+/** |
|
16 |
+ * @class |
|
17 |
+ * @name .fs-scrollbar.fs-scrollbar-horizontal |
|
18 |
+ * @type modifier |
|
19 |
+ * @description Indicates horizontal scrolling |
|
20 |
+ */ |
|
21 |
+/** |
|
22 |
+ * @class |
|
23 |
+ * @name .fs-scrollbar.fs-scrollbar-setup |
|
24 |
+ * @type modifier |
|
25 |
+ * @description Indicates setup state |
|
26 |
+ */ |
|
27 |
+/** |
|
28 |
+ * @class |
|
29 |
+ * @name .fs-scrollbar.fs-scrollbar-active |
|
30 |
+ * @type modifier |
|
31 |
+ * @description Indicates active state |
|
32 |
+ */ |
|
33 |
+.fs-scrollbar { |
|
34 |
+ overflow: hidden; |
|
35 |
+ overflow-x: hidden; |
|
36 |
+ overflow-y: hidden; |
|
37 |
+ position: relative; |
|
38 |
+ /** |
|
39 |
+ * @class |
|
40 |
+ * @name .fs-scrollbar-content |
|
41 |
+ * @type element |
|
42 |
+ * @description Scrolling content |
|
43 |
+ */ |
|
44 |
+ /** |
|
45 |
+ * @class |
|
46 |
+ * @name .fs-scrollbar-bar |
|
47 |
+ * @type element |
|
48 |
+ * @description Scrollbar container |
|
49 |
+ */ |
|
50 |
+ /** |
|
51 |
+ * @class |
|
52 |
+ * @name .fs-scrollbar-track |
|
53 |
+ * @type element |
|
54 |
+ * @description Scrollbar track container |
|
55 |
+ */ |
|
56 |
+ /** |
|
57 |
+ * @class |
|
58 |
+ * @name .fs-scrollbar-handle |
|
59 |
+ * @type element |
|
60 |
+ * @description Scrollbar handle |
|
61 |
+ */ |
|
62 |
+} |
|
63 |
+.fs-scrollbar, |
|
64 |
+.fs-scrollbar * { |
|
65 |
+ -webkit-user-select: none !important; |
|
66 |
+ -moz-user-select: none !important; |
|
67 |
+ -ms-user-select: none !important; |
|
68 |
+ user-select: none !important; |
|
69 |
+} |
|
70 |
+.fs-scrollbar, |
|
71 |
+.fs-scrollbar-content, |
|
72 |
+.fs-scrollbar-bar, |
|
73 |
+.fs-scrollbar-track, |
|
74 |
+.fs-scrollbar-handle { |
|
75 |
+ box-sizing: border-box; |
|
76 |
+} |
|
77 |
+.fs-scrollbar-content { |
|
78 |
+ position: relative; |
|
79 |
+ z-index: 1; |
|
80 |
+ height: 100%; |
|
81 |
+ overflow: auto; |
|
82 |
+ overflow-x: hidden; |
|
83 |
+ overflow-y: auto; |
|
84 |
+ -webkit-overflow-scrolling: touch; |
|
85 |
+} |
|
86 |
+.fs-scrollbar-content::-webkit-scrollbar, |
|
87 |
+.fs-scrollbar-content::-webkit-scrollbar-button, |
|
88 |
+.fs-scrollbar-content::-webkit-scrollbar-track, |
|
89 |
+.fs-scrollbar-content::-webkit-scrollbar-track-piece, |
|
90 |
+.fs-scrollbar-content::-webkit-scrollbar-thumb, |
|
91 |
+.fs-scrollbar-content::-webkit-scrollbar-corner, |
|
92 |
+.fs-scrollbar-content::-webkit-resizer { |
|
93 |
+ background: transparent; |
|
94 |
+ opacity: 0; |
|
95 |
+} |
|
96 |
+.fs-scrollbar-bar { |
|
97 |
+ width: 16px; |
|
98 |
+ height: 100%; |
|
99 |
+ position: absolute; |
|
100 |
+ right: 0; |
|
101 |
+ top: 0; |
|
102 |
+ z-index: 2; |
|
103 |
+ background: #ffffff; |
|
104 |
+ border: 1px solid #eeeeee; |
|
105 |
+ border-width: 0 0 0 1px; |
|
106 |
+ display: none; |
|
107 |
+} |
|
108 |
+.fs-scrollbar-track { |
|
109 |
+ width: 100%; |
|
110 |
+ height: 100%; |
|
111 |
+ position: relative; |
|
112 |
+ background: #ffffff; |
|
113 |
+ overflow: hidden; |
|
114 |
+} |
|
115 |
+.fs-scrollbar-handle { |
|
116 |
+ width: 10px; |
|
117 |
+ height: 20px; |
|
118 |
+ position: absolute; |
|
119 |
+ top: 0; |
|
120 |
+ right: 3px; |
|
121 |
+ z-index: 2; |
|
122 |
+ background: #cccccc; |
|
123 |
+ border: 1px solid #ffffff; |
|
124 |
+ border-radius: 5px; |
|
125 |
+ cursor: pointer; |
|
126 |
+} |
|
127 |
+.fs-scrollbar-horizontal .fs-scrollbar-content { |
|
128 |
+ overflow: auto; |
|
129 |
+ overflow-x: auto; |
|
130 |
+ overflow-y: hidden; |
|
131 |
+ padding: 0 0 16px 0; |
|
132 |
+} |
|
133 |
+.fs-scrollbar-horizontal .fs-scrollbar-bar { |
|
134 |
+ width: 100%; |
|
135 |
+ height: 16px; |
|
136 |
+ top: auto; |
|
137 |
+ bottom: 0; |
|
138 |
+ border-width: 1px 0 0 0; |
|
139 |
+} |
|
140 |
+.fs-scrollbar-horizontal .fs-scrollbar-handle { |
|
141 |
+ width: 20px; |
|
142 |
+ height: 10px; |
|
143 |
+ top: auto; |
|
144 |
+ right: auto; |
|
145 |
+ bottom: 3px; |
|
146 |
+} |
|
147 |
+.fs-scrollbar-setup .fs-scrollbar-content, |
|
148 |
+.fs-scrollbar-active .fs-scrollbar-content { |
|
149 |
+ padding: 20px; |
|
150 |
+} |
|
151 |
+.fs-scrollbar-setup .fs-scrollbar-bar, |
|
152 |
+.fs-scrollbar-active .fs-scrollbar-bar { |
|
153 |
+ display: block; |
|
154 |
+} |
0 | 155 |
new file mode 100755 |
... | ... |
@@ -0,0 +1,110 @@ |
1 |
+/*! formstone v0.7.12 [tabs.css] 2015-08-12 | MIT License | formstone.it */ |
|
2 |
+ |
|
3 |
+/** |
|
4 |
+ * @class |
|
5 |
+ * @name .fs-tabs-element |
|
6 |
+ * @type element |
|
7 |
+ * @description Target elmement |
|
8 |
+ */ |
|
9 |
+/** |
|
10 |
+ * @class |
|
11 |
+ * @name .fs-tabs |
|
12 |
+ * @type element |
|
13 |
+ * @description Base widget class |
|
14 |
+ */ |
|
15 |
+/** |
|
16 |
+ * @class |
|
17 |
+ * @name .fs-tabs.fs-tabs-enabled |
|
18 |
+ * @type modifier |
|
19 |
+ * @description Indicates enabled state |
|
20 |
+ */ |
|
21 |
+.fs-tabs { |
|
22 |
+ /** |
|
23 |
+ * @class |
|
24 |
+ * @name .fs-tabs-tab |
|
25 |
+ * @type element |
|
26 |
+ * @description Tab handle element |
|
27 |
+ */ |
|
28 |
+ /** |
|
29 |
+ * @class |
|
30 |
+ * @name .fs-tabs-tab.fs-tabs-enabled |
|
31 |
+ * @type modifier |
|
32 |
+ * @description Indicates enabled state |
|
33 |
+ */ |
|
34 |
+ /** |
|
35 |
+ * @class |
|
36 |
+ * @name .fs-tabs-tab.fs-tabs-active |
|
37 |
+ * @type modifier |
|
38 |
+ * @description Indicates active state |
|
39 |
+ */ |
|
40 |
+ /** |
|
41 |
+ * @class |
|
42 |
+ * @name .fs-tabs-tab.fs-tabs-mobile |
|
43 |
+ * @type modifier |
|
44 |
+ * @description Indicates mobile interface |
|
45 |
+ */ |
|
46 |
+ /** |
|
47 |
+ * @class |
|
48 |
+ * @name .fs-tabs-content |
|
49 |
+ * @type element |
|
50 |
+ * @description Tab content element |
|
51 |
+ */ |
|
52 |
+ /** |
|
53 |
+ * @class |
|
54 |
+ * @name .fs-tabs-content.fs-tabs-enabled |
|
55 |
+ * @type modifier |
|
56 |
+ * @description Indicates enabled state |
|
57 |
+ */ |
|
58 |
+ /** |
|
59 |
+ * @class |
|
60 |
+ * @name .fs-tabs-content.fs-tabs-active |
|
61 |
+ * @type modifier |
|
62 |
+ * @description Indicates active state |
|
63 |
+ */ |
|
64 |
+ /** |
|
65 |
+ * @class |
|
66 |
+ * @name .fs-tabs-tab_mobile |
|
67 |
+ * @type element |
|
68 |
+ * @description Mobile tab handle element |
|
69 |
+ */ |
|
70 |
+ /** |
|
71 |
+ * @class |
|
72 |
+ * @name .fs-tabs-tab_mobile.fs-tabs-active |
|
73 |
+ * @type modifier |
|
74 |
+ * @description Indicates active state |
|
75 |
+ */ |
|
76 |
+} |
|
77 |
+.fs-tabs.fs-tabs-enabled:after { |
|
78 |
+ clear: both; |
|
79 |
+ content: ''; |
|
80 |
+ display: table; |
|
81 |
+} |
|
82 |
+.fs-tabs-tab.fs-tabs-enabled { |
|
83 |
+ box-sizing: border-box; |
|
84 |
+ border: none; |
|
85 |
+ cursor: pointer; |
|
86 |
+} |
|
87 |
+.fs-tabs-tab.fs-tabs-enabled:focus { |
|
88 |
+ outline: none; |
|
89 |
+} |
|
90 |
+.fs-tabs-content.fs-tabs-enabled { |
|
91 |
+ box-sizing: border-box; |
|
92 |
+ display: none; |
|
93 |
+} |
|
94 |
+.fs-tabs-content.fs-tabs-enabled:after { |
|
95 |
+ clear: both; |
|
96 |
+ content: ''; |
|
97 |
+ display: table; |
|
98 |
+} |
|
99 |
+.fs-tabs-content.fs-tabs-active { |
|
100 |
+ display: block; |
|
101 |
+} |
|
102 |
+.fs-tabs-tab.fs-tabs-mobile, |
|
103 |
+.fs-tabs-tab_mobile, |
|
104 |
+.fs-tabs-tab_mobile.fs-tabs-active { |
|
105 |
+ display: none; |
|
106 |
+} |
|
107 |
+.fs-tabs-tab_mobile.fs-tabs-mobile, |
|
108 |
+.fs-tabs-tab_mobile.fs-tabs-mobile.fs-tabs-active { |
|
109 |
+ display: block; |
|
110 |
+} |
0 | 111 |
new file mode 100755 |
... | ... |
@@ -0,0 +1,151 @@ |
1 |
+/*! formstone v0.7.12 [tooltip.css] 2015-08-12 | MIT License | formstone.it */ |
|
2 |
+ |
|
3 |
+/** |
|
4 |
+ * @class |
|
5 |
+ * @name .fs-tooltip-element |
|
6 |
+ * @type element |
|
7 |
+ * @description Target elmement |
|
8 |
+ */ |
|
9 |
+/** |
|
10 |
+ * @class |
|
11 |
+ * @name .fs-tooltip |
|
12 |
+ * @type element |
|
13 |
+ * @description Base widget class |
|
14 |
+ */ |
|
15 |
+/** |
|
16 |
+ * @class |
|
17 |
+ * @name .fs-tooltip.fs-tooltip-visible |
|
18 |
+ * @type modifier |
|
19 |
+ * @description Inidcates visible state |
|
20 |
+ */ |
|
21 |
+/** |
|
22 |
+ * @class |
|
23 |
+ * @name .fs-tooltip.fs-tooltip-right |
|
24 |
+ * @type modifier |
|
25 |
+ * @description Inidcates right side display |
|
26 |
+ */ |
|
27 |
+/** |
|
28 |
+ * @class |
|
29 |
+ * @name .fs-tooltip.fs-tooltip-left |
|
30 |
+ * @type modifier |
|
31 |
+ * @description Inidcates left side display |
|
32 |
+ */ |
|
33 |
+/** |
|
34 |
+ * @class |
|
35 |
+ * @name .fs-tooltip.fs-tooltip-top |
|
36 |
+ * @type modifier |
|
37 |
+ * @description Inidcates top display |
|
38 |
+ */ |
|
39 |
+/** |
|
40 |
+ * @class |
|
41 |
+ * @name .fs-tooltip.fs-tooltip-bottom |
|
42 |
+ * @type modifier |
|
43 |
+ * @description Inidcates bottom display |
|
44 |
+ */ |
|
45 |
+.fs-tooltip { |
|
46 |
+ width: 1px; |
|
47 |
+ height: 1px; |
|
48 |
+ position: absolute; |
|
49 |
+ top: -999px; |
|
50 |
+ left: -999px; |
|
51 |
+ z-index: 10; |
|
52 |
+ opacity: 0; |
|
53 |
+ pointer-events: none; |
|
54 |
+ -webkit-transition: opacity 0.15s linear; |
|
55 |
+ transition: opacity 0.15s linear; |
|
56 |
+ /** |
|
57 |
+ * @class |
|
58 |
+ * @name .fs-tooltip-content |
|
59 |
+ * @type element |
|
60 |
+ * @description Tooltip content wrapper |
|
61 |
+ */ |
|
62 |
+ /** |
|
63 |
+ * @class |
|
64 |
+ * @name .fs-tooltip-caret |
|
65 |
+ * @type element |
|
66 |
+ * @description Tooltip caret |
|
67 |
+ */ |
|
68 |
+} |
|
69 |
+.fs-tooltip, |
|
70 |
+.fs-tooltip:after, |
|
71 |
+.fs-tooltip:before, |
|
72 |
+.fs-tooltip *, |
|
73 |
+.fs-tooltip *:after, |
|
74 |
+.fs-tooltip *:before { |
|
75 |
+ box-sizing: border-box; |
|
76 |
+ -webkit-transition: none; |
|
77 |
+ transition: none; |
|
78 |
+ -webkit-user-select: none !important; |
|
79 |
+ -moz-user-select: none !important; |
|
80 |
+ -ms-user-select: none !important; |
|
81 |
+ user-select: none !important; |
|
82 |
+} |
|
83 |
+.fs-tooltip-visible { |
|
84 |
+ opacity: 1; |
|
85 |
+} |
|
86 |
+.fs-tooltip-content { |
|
87 |
+ background: #111111; |
|
88 |
+ border-radius: 3px; |
|
89 |
+ color: #ffffff; |
|
90 |
+ display: block; |
|
91 |
+ float: left; |
|
92 |
+ font-size: 12px; |
|
93 |
+ margin: 0; |
|
94 |
+ padding: 10px 15px; |
|
95 |
+ position: relative; |
|
96 |
+ white-space: nowrap; |
|
97 |
+} |
|
98 |
+.fs-tooltip-caret { |
|
99 |
+ width: 0; |
|
100 |
+ height: 0; |
|
101 |
+ content: ''; |
|
102 |
+ display: block; |
|
103 |
+ margin: 0; |
|
104 |
+ position: absolute; |
|
105 |
+} |
|
106 |
+.fs-tooltip-right .fs-tooltip-content { |
|
107 |
+ box-shadow: 1px 0 5px rgba(0, 0, 0, 0.35); |
|
108 |
+} |
|
109 |
+.fs-tooltip-right .fs-tooltip-caret { |
|
110 |
+ top: 0; |
|
111 |
+ left: -5px; |
|
112 |
+ border-top: 5px solid transparent; |
|
113 |
+ border-bottom: 5px solid transparent; |
|
114 |
+ border-right: 5px solid #111111; |
|
115 |
+} |
|
116 |
+.fs-tooltip-left .fs-tooltip-content { |
|
117 |
+ box-shadow: -1px 0 5px rgba(0, 0, 0, 0.35); |
|
118 |
+} |
|
119 |
+.fs-tooltip-left .fs-tooltip-caret { |
|
120 |
+ top: 0; |
|
121 |
+ right: -5px; |
|
122 |
+ border-top: 5px solid transparent; |
|
123 |
+ border-bottom: 5px solid transparent; |
|
124 |
+ border-left: 5px solid #111111; |
|
125 |
+} |
|
126 |
+.fs-tooltip-top .fs-tooltip-caret, |
|
127 |
+.fs-tooltip-bottom .fs-tooltip-caret { |
|
128 |
+ display: block; |
|
129 |
+ float: none; |
|
130 |
+ margin: 0 auto; |
|
131 |
+} |
|
132 |
+.fs-tooltip-top .fs-tooltip-content { |
|
133 |
+ box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.35); |
|
134 |
+} |
|
135 |
+.fs-tooltip-top .fs-tooltip-caret { |
|
136 |
+ bottom: -5px; |
|
137 |
+ left: 0; |
|
138 |
+ border-left: 5px solid transparent; |
|
139 |
+ border-right: 5px solid transparent; |
|
140 |
+ border-top: 5px solid #111111; |
|
141 |
+} |
|
142 |
+.fs-tooltip-bottom .fs-tooltip-content { |
|
143 |
+ box-shadow: 0 1px 5px rgba(0, 0, 0, 0.35); |
|
144 |
+} |
|
145 |
+.fs-tooltip-bottom .fs-tooltip-caret { |
|
146 |
+ top: -5px; |
|
147 |
+ left: 0; |
|
148 |
+ border-left: 5px solid transparent; |
|
149 |
+ border-right: 5px solid transparent; |
|
150 |
+ border-bottom: 5px solid #111111; |
|
151 |
+} |
0 | 152 |
new file mode 100755 |
... | ... |
@@ -0,0 +1,80 @@ |
1 |
+/*! formstone v0.7.12 [upload.css] 2015-08-12 | MIT License | formstone.it */ |
|
2 |
+ |
|
3 |
+/** |
|
4 |
+ * @class |
|
5 |
+ * @name .fs-upload-element |
|
6 |
+ * @type element |
|
7 |
+ * @description Target elmement |
|
8 |
+ */ |
|
9 |
+/** |
|
10 |
+ * @class |
|
11 |
+ * @name .fs-upload |
|
12 |
+ * @type element |
|
13 |
+ * @description Base widget class |
|
14 |
+ */ |
|
15 |
+/** |
|
16 |
+ * @class |
|
17 |
+ * @name .fs-upload.fs-upload-dropping |
|
18 |
+ * @type modifier |
|
19 |
+ * @description Indicates dropping state |
|
20 |
+ */ |
|
21 |
+.fs-upload { |
|
22 |
+ overflow: hidden; |
|
23 |
+ /** |
|
24 |
+ * @class |
|
25 |
+ * @name .fs-upload-input |
|
26 |
+ * @type element |
|
27 |
+ * @description Masked Input |
|
28 |
+ */ |
|
29 |
+ /** |
|
30 |
+ * @class |
|
31 |
+ * @name .fs-upload-target |
|
32 |
+ * @type element |
|
33 |
+ * @description Drop target |
|
34 |
+ */ |
|
35 |
+} |
|
36 |
+.fs-upload, |
|
37 |
+.fs-upload:after, |
|
38 |
+.fs-upload:before, |
|
39 |
+.fs-upload *, |
|
40 |
+.fs-upload *:after, |
|
41 |
+.fs-upload *:before { |
|
42 |
+ box-sizing: border-box; |
|
43 |
+ -webkit-transition: none; |
|
44 |
+ transition: none; |
|
45 |
+ -webkit-user-select: none !important; |
|
46 |
+ -moz-user-select: none !important; |
|
47 |
+ -ms-user-select: none !important; |
|
48 |
+ user-select: none !important; |
|
49 |
+} |
|
50 |
+.fs-upload-input { |
|
51 |
+ position: absolute; |
|
52 |
+ left: 100%; |
|
53 |
+ opacity: 0; |
|
54 |
+} |
|
55 |
+.no-opacity .fs-upload-input { |
|
56 |
+ left: -999px; |
|
57 |
+} |
|
58 |
+.fs-upload-target { |
|
59 |
+ background: #ffffff; |
|
60 |
+ border: 3px dashed #cccccc; |
|
61 |
+ border-radius: 3px; |
|
62 |
+ color: #666666; |
|
63 |
+ cursor: pointer; |
|
64 |
+ font-size: 14px; |
|
65 |
+ margin: 0; |
|
66 |
+ padding: 25px; |
|
67 |
+ text-align: center; |
|
68 |
+ -webkit-transition: background 0.15s linear, |
|
69 |
+ border 0.15s linear, |
|
70 |
+ opacity 0.15s linear; |
|
71 |
+ transition: background 0.15s linear, |
|
72 |
+ border 0.15s linear, |
|
73 |
+ opacity 0.15s linear; |
|
74 |
+} |
|
75 |
+.fs-upload.dropping .fs-upload-target, |
|
76 |
+.no-touch .fs-upload:hover .fs-upload-target { |
|
77 |
+ background: #eeeeee; |
|
78 |
+ border-color: #999999; |
|
79 |
+ color: #333333; |
|
80 |
+} |
0 | 81 |
new file mode 100755 |
... | ... |
@@ -0,0 +1,3 @@ |
1 |
+/*! formstone v0.7.12 [analytics.js] 2015-08-12 | MIT License | formstone.it */ |
|
2 |
+ |
|
3 |
+!function(a,b,c){"use strict";function d(){t=b.$body}function e(){q.scrollDepth&&l()}function f(){return arguments.length&&"object"!==a.type(arguments[0])?"destroy"===arguments[0]?h.apply(this):n.apply(this,arguments):g.apply(this,arguments),null}function g(b){!w&&t.length&&(w=!0,D="function"===a.type(r.ga),E="undefined"!==a.type(r.dataLayer)&&"function"===a.type(r.dataLayer.push),q=a.extend(q,b||{}),q.autoEvents&&t.find("a").not("["+y+"]").each(i),q.scrollDepth&&(l(),s.on(v.scroll,j),s.one(v.load,e)),t.on(v.click,"*["+y+"]",m))}function h(){w&&t.length&&(s.off(v.namespace),t.off(v.namespace))}function i(){if(q.autoEvents){var b,d=a(this),e="undefined"!==a.type(d[0].href)?d[0].href:"",f=document.domain.split(".").reverse(),g=null!==e.match(f[1]+"."+f[0]);if(e.match(/^mailto\:/i))b="Email, Click, "+e.replace(/^mailto\:/i,"");else if(e.match(/^tel\:/i))b="Telephone, Click, "+e.replace(/^tel\:/i,"");else if(e.match(q.filetypes)){var h=/[.]/.exec(e)?/[^.]+$/.exec(e):c;b="File, Download:"+h[0]+", "+e.replace(/ /g,"-")}else g||(b="ExternalLink, Click, "+e);b&&d.attr(y,b)}}function j(){u.startTimer(A,250,k)}function k(){for(var a,c=b.$window.scrollTop()+b.windowHeight,d=1/q.scrollStops,e=d,f=1;f<=q.scrollStops;f++)a=Math.round(100*e).toString(),!z[B][a].passed&&c>z[B][a].edge&&(z[B][a].passed=!0,n("ScrollDepth",B,a)),e+=d}function l(){var b,c=a.mediaquery("state"),d=t.outerHeight(),e={},f=1/q.scrollStops,g=f,h=0;c.minWidth&&(B="MinWidth:"+c.minWidth+"px");for(var i=1;i<=q.scrollStops;i++)h=parseInt(d*g),b=Math.round(100*g).toString(),e[b]={edge:"100"===b?h-10:h,passsed:z[B]&&z[B][b]?z[B][b].passed:!1},g+=f;z[B]=e}function m(b){if(D||E){var c=a(this),d=c.attr("href"),e=c.data(x).split(",");q.eventCallback&&b.preventDefault();for(var f in e)e.hasOwnProperty(f)&&(e[f]=a.trim(e[f]));n(e[0],e[1],e[2]||d,e[3],e[4],c)}}function n(b,d,e,f,g,h){if(D||E){var i={hitType:"event",location:r.location,title:r.document.title};if(i.eventCategory=b||c,i.eventAction=d||c,i.eventLabel=e||c,i.eventValue=f||c,i.nonInteraction=g||c,"undefined"!==a.type(h)&&!h.attr("data-analytics-stop")){var j="undefined"!==a.type(h[0].href)?h[0].href:"",k=!j.match(/^mailto\:/i)&&!j.match(/^tel\:/i)&&j.indexOf(":")<0?r.location.protocol+"//"+r.location.hostname+"/"+j:j;if(""!==j)if(h.attr("target"))r.open(k,h.attr("target"));else if(q.eventCallback){var l="hitCallback";i[l]=function(){C&&(u.clearTimer(C),o(k))},C=u.startTimer(C,q.eventTimeout,i[l])}}for(var m=r.ga.getAll(),n=0,p=m.length;p>n;n++)r.ga(m[n].get("name")+".send",i)}}function o(a){document.location=a}var p=b.Plugin("analytics",{methods:{_setup:d,_resize:e},utilities:{_delegate:f}}),q={autoEvents:!1,filetypes:/\.(zip|exe|dmg|pdf|doc.*|xls.*|ppt.*|mp3|txt|rar|wma|mov|avi|wmv|flv|wav)$/i,eventCallback:!1,eventTimeout:1e3,scrollDepth:!1,scrollStops:5,trackerName:"all"},r=b.window,s=b.$window,t=null,u=p.functions,v=p.events,w=!1,x="analytics-event",y="data-"+x,z={},A=null,B="Site",C=null,D=!1,E=!1}(jQuery,Formstone); |
|
0 | 4 |
\ No newline at end of file |
1 | 5 |
new file mode 100755 |
... | ... |
@@ -0,0 +1,3 @@ |
1 |
+/*! formstone v0.7.12 [asap.js] 2015-08-12 | MIT License | formstone.it */ |
|
2 |
+ |
|
3 |
+!function(a,b){"use strict";function c(c){p||b.support.history&&(n=b.$body,p=a.extend(r,c),p.$container=a(p.container),p.render===a.noop&&(p.render=j),p.transitionOut===a.noop&&(p.transitionOut=function(){return a.Deferred().resolve()}),x=window.location.href,s.on(v.popState,g),d())}function d(){n&&!n.hasClass(w.base)&&n.on(v.click,r.selector,f).addClass(w.base)}function e(a){p&&b.support.history?a&&h(a):window.location.href=a}function f(a){var b=a.currentTarget;a.which>1||a.metaKey||a.ctrlKey||a.shiftKey||a.altKey||window.location.protocol!==b.protocol||window.location.host!==b.host||"_blank"===b.target||(!b.hash||b.href.replace(b.hash,"")!==window.location.href.replace(location.hash,"")&&b.href!==window.location.href+"#")&&(u.killEvent(a),a.stopImmediatePropagation(),b.href===x||h(b.href))}function g(a){var b=a.originalEvent.state;b&&(p.modal&&0===y&&b.url&&!b.initial?window.location.href=b.url:b.url!==x&&(p.force?h(b.url):(s.trigger(v.request,[!0]),i(b.url,b.hash,b.data,b.scroll,!1))))}function h(b){o&&o.abort(),s.trigger(v.request,[!1]),p.transitionOutDeferred=p.transitionOut.apply(t,[!1]);var c=b.indexOf("?"),d=b.indexOf("#"),e={},f="",g=b,h="User error",j=null,k=a.Deferred();d>-1&&(f=b.slice(d),g=b.slice(0,d)),c>-1&&(e=m(b.slice(c+1,d>-1?d:b.length)),g=b.slice(0,c)),e[p.requestKey]=!0,o=a.ajax({url:g,data:e,dataType:"json",cache:p.cache,xhr:function(){var a=new t.XMLHttpRequest;return a.addEventListener("progress",function(a){if(a.lengthComputable){var b=a.loaded/a.total;s.trigger(v.progress,[b])}},!1),a},success:function(c){j="string"===a.type(c)?a.parseJSON(c):c,c.location&&(b=c.location),k.resolve()},error:function(a,b,c){h=c,k.reject()}}),a.when(k,p.transitionOutDeferred).done(function(){i(b,f,j,p.jump?0:!1,!0)}).fail(function(){s.trigger(v.error,[h])})}function i(b,c,d,e,f){if(s.trigger(v.load,[d]),l(b),k(d),p.render.call(this,d,c),x=b,f?(history.pushState({url:x,data:d,scroll:e,hash:c},"state-"+x,x),y++):k(d),s.trigger(v.render,[d]),""!==c){var g=a(c);g.length&&(e=g.offset().top)}e!==!1&&s.scrollTop(e)}function j(b){if("undefined"!==a.type(b)){var c;for(var d in b)b.hasOwnProperty(d)&&(c=a(d),c.length&&c.html(b[d]))}}function k(b){var c=[];if("undefined"!==a.type(b)){var d;for(var e in b)b.hasOwnProperty(e)&&(d=a(e),d.length&&(c[e]=d.html()))}history.replaceState({url:x,data:c,scroll:s.scrollTop()},"state-"+x,x)}function l(b){if(b=b.replace(window.location.protocol+"//"+window.location.host,""),p.tracking.legacy)t._gaq=t._gaq||[],t._gaq.push(["_trackPageview",b]);else if(p.tracking.manager){var c={};c[p.tracking.variable]=b,t.dataLayer=window.dataLayer||[],t.dataLayer.push(c),t.dataLayer.push({event:p.tracking.event})}else"undefined"!==a.type(t.ga)&&t.ga("send","pageview",b)}function m(a){for(var b={},c=a.slice(a.indexOf("?")+1).split("&"),d=0;d<c.length;d++){var e=c[d].split("=");b[e[0]]=e[1]}return b}var n,o,p,q=b.Plugin("asap",{utilities:{_initialize:c,load:e},events:{popState:"popstate",progress:"progress",request:"request",render:"render"}}),r={cache:!0,force:!1,jump:!0,modal:!1,selector:"a",render:a.noop,requestKey:"fs-asap",tracking:{legacy:!1,manager:!1,variable:"currentURL",event:"PageView"},transitionOut:a.noop},s=b.$window,t=s[0],u=q.functions,v=q.events,w=q.classes.raw,x="",y=0}(jQuery,Formstone); |
|
0 | 4 |
\ No newline at end of file |
1 | 5 |
new file mode 100755 |
... | ... |
@@ -0,0 +1,3 @@ |
1 |
+/*! formstone v0.7.12 [background.js] 2015-08-12 | MIT License | formstone.it */ |
|
2 |
+ |
|
3 |
+!function(a,b){"use strict";function c(){w.iterate.call(y,p)}function d(){y=a(t.base)}function e(b){b.youTubeGuid=0,b.$container=a('<div class="'+u.container+'"></div>').appendTo(this),this.addClass([u.base,b.customClass].join(" "));var c=b.source;b.source=null,g(b,c,!0),d()}function f(a){a.$container.remove(),this.removeClass([u.base,a.customClass].join(" ")).off(v.namespace),d()}function g(b,c,d){if(c!==b.source){if(b.source=c,b.responsive=!1,b.isYouTube=!1,"object"===a.type(c)&&"string"===a.type(c.video)){var e=c.video.match(/(?:youtube\.com\/(?:[^\/]+\/.+\/|(?:v|e(?:mbed)?)\/|.*[?&]v=)|youtu\.be\/)([^"&?\/ ]{11})/i);e&&e.length>=1&&(b.isYouTube=!0,b.videoId=e[1])}var f=!b.isYouTube&&"object"===a.type(c)&&(c.hasOwnProperty("mp4")||c.hasOwnProperty("ogg")||c.hasOwnProperty("webm"));if(b.video=b.isYouTube||f,b.playing=!1,b.isYouTube)b.playerReady=!1,b.posterLoaded=!1,k(b,c,d);else if("object"===a.type(c)&&c.hasOwnProperty("poster"))j(b,c,d);else{var g=c;if("object"===a.type(c)){var l,m={},n=[];for(l in c)c.hasOwnProperty(l)&&n.push(l);n.sort(w.sortAsc);for(l in n)n.hasOwnProperty(l)&&(m[n[l]]={width:parseInt(n[l]),url:c[n[l]]});b.responsive=!0,b.sources=m,g=h(b)}i(b,g,!1,d)}}else b.$el.trigger(v.loaded)}function h(a){if(a.responsive)for(var c in a.sources)if(a.sources.hasOwnProperty(c)&&b.windowWidth>=a.sources[c].width)return a.sources[c].url;return a.source}function i(b,c,d,e){var f=[u.media,u.image,e!==!0?u.animated:""].join(" "),g=a('<div class="'+f+'"><img></div>'),h=g.find("img"),i=c;h.one(v.load,function(){z&&g.addClass(u["native"]).css({backgroundImage:"url('"+i+"')"}),g.fsTransition({property:"opacity"},function(){d||l(b)}).css({opacity:1}),q(b),(!d||e)&&b.$el.trigger(v.loaded)}).attr("src",i),b.responsive&&g.addClass(u.responsive),b.$container.append(g),(h[0].complete||4===h[0].readyState)&&h.trigger(v.load),b.currentSource=i}function j(c,d,e){if(c.source&&c.source.poster&&(i(c,c.source.poster,!0,!0),e=!1),!b.isMobile){var f=[u.media,u.video,e!==!0?u.animated:""].join(" "),g='<div class="'+f+'">';g+="<video",c.loop&&(g+=" loop"),c.mute&&(g+=" muted"),g+=">",c.source.webm&&(g+='<source src="'+c.source.webm+'" type="video/webm" />'),c.source.mp4&&(g+='<source src="'+c.source.mp4+'" type="video/mp4" />'),c.source.ogg&&(g+='<source src="'+c.source.ogg+'" type="video/ogg" />'),g+="</video>",g+="</div>";var h=a(g),j=h.find("video");j.one(v.loadedMetaData,function(){h.fsTransition({property:"opacity"},function(){l(c)}).css({opacity:1}),q(c),c.$el.trigger(v.loaded),c.autoPlay&&o(c)}),c.$container.append(h)}}function k(c,d,e){if(!c.videoId){var f=d.match(/^.*(?:youtu.be\/|v\/|e\/|u\/\w+\/|embed\/|v=)([^#\&\?]*).*/);c.videoId=f[1]}if(c.posterLoaded||(c.source.poster||(c.source.poster="http://img.youtube.com/vi/"+c.videoId+"/0.jpg"),c.posterLoaded=!0,i(c,c.source.poster,!0,e),e=!1),!b.isMobile)if(a("script[src*='youtube.com/iframe_api']").length||a("head").append('<script src="//www.youtube.com/iframe_api"></script>'),A){var g=c.guid+"_"+c.youTubeGuid++,h=[u.media,u.embed,e!==!0?u.animated:""].join(" "),j='<div class="'+h+'">';j+='<div id="'+g+'"></div>',j+="</div>";var k=a(j),m=a.extend(!0,{},{controls:0,rel:0,showinfo:0,wmode:"transparent",enablejsapi:1,version:3,playerapiid:g,loop:c.loop?1:0,autoplay:1,origin:x.location.protocol+"//"+x.location.host},c.youtubeOptions);c.$container.append(k),c.player&&(c.oldPlayer=c.player,c.player=null),c.player=new x.YT.Player(g,{videoId:c.videoId,playerVars:m,events:{onReady:function(){c.playerReady=!0,c.mute&&c.player.mute(),c.autoPlay&&c.player.playVideo()},onStateChange:function(a){c.playing||a.data!==x.YT.PlayerState.PLAYING?c.loop&&c.playing&&a.data===x.YT.PlayerState.ENDED&&c.player.playVideo():(c.playing=!0,c.autoPlay||c.player.pauseVideo(),k.fsTransition({property:"opacity"},function(){l(c)}).css({opacity:1}),q(c),c.$el.trigger(v.loaded)),c.$el.find(t.embed).addClass(u.ready)},onPlaybackQualityChange:function(){},onPlaybackRateChange:function(){},onError:function(){},onApiChange:function(){}}}),q(c)}else B.push({data:c,source:d})}function l(a){var b=a.$container.find(t.media);b.length>=1&&(b.not(":last").remove(),a.oldPlayer=null)}function m(a){var b=a.$container.find(t.media);b.length>=1&&b.fsTransition({property:"opacity"},function(){b.remove(),delete a.source}).css({opacity:0})}function n(a){if(a.video){if(a.isYouTube&&a.playerReady)a.player.pauseVideo();else{var b=a.$container.find("video");b.length&&b[0].pause()}a.playing=!1}}function o(a){if(a.video){if(a.isYouTube&&a.playerReady)a.player.playVideo();else{var b=a.$container.find("video");b.length&&b[0].play()}a.playing=!0}}function p(a){if(a.responsive){var b=h(a);b!==a.currentSource?i(a,b,!1,!0):q(a)}else q(a)}function q(a){for(var b=a.$container.find(t.media),c=0,d=b.length;d>c;c++){var e=b.eq(c),f=a.isYouTube?"iframe":e.find("video").length?"video":"img",g=e.find(f);if(g.length&&("img"!==f||!z)){var h=a.$el.outerWidth(),i=a.$el.outerHeight(),j=r(a,g);a.width=j.width,a.height=j.height,a.left=0,a.top=0;var k=a.isYouTube?a.embedRatio:a.width/a.height;a.height=i,a.width=a.height*k,a.width<h&&(a.width=h,a.height=a.width/k),a.left=-(a.width-h)/2,a.top=-(a.height-i)/2,e.css({height:a.height,width:a.width,left:a.left,top:a.top})}}}function r(b,c){if(b.isYouTube)return{height:500,width:500/b.embedRatio};if(c.is("img")){var d=c[0];if("undefined"!==a.type(d.naturalHeight))return{height:d.naturalHeight,width:d.naturalWidth};var e=new Image;return e.src=d.src,{height:e.height,width:e.width}}return{height:c[0].videoHeight,width:c[0].videoWidth}}var s=b.Plugin("background",{widget:!0,defaults:{autoPlay:!0,customClass:"",embedRatio:1.777777,loop:!0,mute:!0,source:null,youtubeOptions:{}},classes:["container","media","animated","responsive","native","fixed","ready"],events:{loaded:"loaded",ready:"ready",loadedMetaData:"loadedmetadata"},methods:{_construct:e,_destruct:f,_resize:c,play:o,pause:n,resize:q,load:g,unload:m}}),t=s.classes,u=t.raw,v=s.events,w=s.functions,x=b.window,y=[],z="backgroundSize"in b.document.documentElement.style,A=!1,B=[];x.onYouTubeIframeAPIReady=function(){A=!0;for(var a in B)B.hasOwnProperty(a)&&k(B[a].data,B[a].source);B=[]}}(jQuery,Formstone); |
|
0 | 4 |
\ No newline at end of file |
1 | 5 |
new file mode 100755 |
... | ... |
@@ -0,0 +1,3 @@ |
1 |
+/*! formstone v0.7.12 [carousel.js] 2015-08-12 | MIT License | formstone.it */ |
|
2 |
+ |
|
3 |
+!function(a,b){"use strict";function c(){J.iterate.call(K,i)}function d(){K=a(G.base)}function e(c){var e,f=[H.base,c.customClass,c.rtl?H.rtl:H.ltr];c.maxWidth=c.maxWidth===1/0?"100000px":c.maxWidth,c.mq="(min-width:"+c.minWidth+") and (max-width:"+c.maxWidth+")",c.customControls="object"===a.type(c.controls)&&c.controls.previous&&c.controls.next,b.support.transform||(c.useMargin=!0);var i="",k="",l=[H.control,H.control_previous].join(" "),m=[H.control,H.control_next].join(" ");if(c.controls&&!c.customControls&&(i+='<div class="'+H.controls+'">',i+='<button type="button" class="'+l+'">'+c.labels.previous+"</button>",i+='<button type="button" class="'+m+'">'+c.labels.next+"</button>",i+="</div>"),c.pagination&&(k+='<div class="'+H.pagination+'">',k+="</div>"),c.autoHeight&&f.push(H.auto_height),this.addClass(f.join(" ")).wrapInner('<div class="'+H.wrapper+'"><div class="'+H.container+'"><div class="'+H.canister+'"></div></div></div>').append(i).wrapInner('<div class="'+H.viewport+'"></div>').append(k),c.$viewport=this.find(G.viewport).eq(0),c.$container=this.find(G.container).eq(0),c.$canister=this.find(G.canister).eq(0),c.$controls=this.find(G.controls).eq(0),c.$pagination=this.find(G.pagination).eq(0),c.$paginationItems=c.$pagination.find(G.page),c.$controlPrevious=c.$controlNext=a(""),c.customControls?(c.$controlPrevious=a(c.controls.previous).addClass(l),c.$controlNext=a(c.controls.next).addClass(m)):(c.$controlPrevious=c.$controls.find(G.control_previous),c.$controlNext=c.$controls.find(G.control_next)),c.$controlItems=c.$controlPrevious.add(c.$controlNext),c.index=0,c.enabled=!1,c.leftPosition=0,c.autoTimer=null,c.resizeTimer=null,"object"===a.type(c.show)){var n=c.show,o=[];for(e in n)n.hasOwnProperty(e)&&o.push(e);o.sort(J.sortAsc),c.show={};for(e in o)o.hasOwnProperty(e)&&(c.show[o[e]]={width:parseInt(o[e]),count:n[o[e]]})}j(c),a.fsMediaquery("bind",c.rawGuid,c.mq,{enter:function(){h.call(c.$el,c)},leave:function(){g.call(c.$el,c)}}),d()}function f(b){J.clearTimer(b.autoTimer),J.startTimer(b.resizeTimer),g.call(this,b),a.fsMediaquery("unbind",b.rawGuid),b.$controlItems.removeClass([G.control,H.control_previous,G.control_next,G.visible].join(" ")).off(I.namespace),b.$images.off(I.namespace),b.$canister.fsTouch("destroy"),b.$items.removeClass([H.item,H.visible].join(" ")).unwrap().unwrap().unwrap().unwrap(),b.pagination&&b.$pagination.remove(),b.controls&&b.$controls.remove(),this.removeClass([H.base,H.ltr,H.rtl,H.enabled,H.animated,b.customClass].join(" ")),d()}function g(a){a.enabled&&(J.clearTimer(a.autoTimer),a.enabled=!1,this.removeClass([H.enabled,H.animated].join(" ")).off(I.namespace),a.$canister.fsTouch("destroy").off(I.namespace).attr("style","").css(M,"none"),a.$items.css({width:"",height:""}),a.$images.off(I.namespace),a.$controlItems.off(I.namespace),a.$pagination.html(""),u(a),a.useMargin?a.$canister.css({marginLeft:""}):a.$canister.css(L,""),a.index=0)}function h(a){a.enabled||(a.enabled=!0,this.addClass(H.enabled).on(I.clickTouchStart,G.page,a,s),a.$controlItems.on(I.clickTouchStart,a,r),a.$canister.fsTouch({axis:"x",pan:!0,swipe:!0}).on(I.panStart,a,y).on(I.pan,a,z).on(I.panEnd,a,A).on(I.swipe,a,B).css(M,""),j(a),a.$images.on(I.load,a,p),a.autoAdvance&&(a.autoTimer=J.startTimer(a.autoTimer,a.autoTime,function(){q(a)},!0)),i.call(this,a))}function i(a){if(a.enabled){var b,c,d,e,f,g,h,i;if(a.count=a.$items.length,a.count<1)return u(a),void a.$canister.css({height:""});for(this.removeClass(H.animated),a.containerWidth=a.$container.outerWidth(!1),a.visible=x(a),a.perPage=a.paged?1:a.visible,a.itemMargin=parseInt(a.$items.eq(0).css("marginRight"))+parseInt(a.$items.eq(0).css("marginLeft")),a.itemWidth=(a.containerWidth-a.itemMargin*(a.visible-1))/a.visible,a.itemHeight=0,a.pageWidth=a.paged?a.itemWidth:a.containerWidth,a.pageCount=Math.ceil(a.count/a.perPage),a.canisterWidth=(a.pageWidth+a.itemMargin)*a.pageCount,a.$canister.css({width:a.canisterWidth,height:""}),a.$items.css({width:a.itemWidth,height:""}).removeClass(H.visible),a.pages=[],c=0,d=0;c<a.count;c+=a.perPage){if(f=a.$items.slice(c,c+a.perPage),h=0,f.length<a.perPage&&(f=0===c?a.$items:a.$items.slice(a.$items.length-a.perPage)),g=f.eq(a.rtl?f.length-1:0),i=g.position().left,a.autoHeight)for(e=0;e<f.length;e++)b=f.eq(e).outerHeight(),b>h&&(h=b);else h=g.outerHeight();a.pages.push({left:a.rtl?i-(a.canisterWidth-a.pageWidth-a.itemMargin):i,height:h,$items:f}),h>a.itemHeight&&(a.itemHeight=h),d++}a.paged&&(a.pageCount-=a.count%a.visible),a.pageCount<=0&&(a.pageCount=1),a.maxMove=-a.pages[a.pageCount-1].left,a.autoHeight?a.$canister.css({height:a.pages[0].height}):a.matchHeight&&a.$items.css({height:a.itemHeight});var j="";for(c=0;c<a.pageCount;c++)j+='<button type="button" class="'+H.page+'">'+(c+1)+"</button>";a.$pagination.html(j),a.pageCount<=1?u(a):v(a),a.$paginationItems=a.$el.find(G.page),t(a,a.index,!1),setTimeout(function(){a.$el.addClass(H.animated)},5)}}function j(a){a.$items=a.$canister.children().addClass(H.item),a.$images=a.$canister.find("img"),a.totalImages=a.$images.length}function k(a){a.enabled&&l.call(this,a,!1)}function l(a,b){a.$images.off(I.namespace),b!==!1&&a.$canister.html(b),a.index=0,j(a),i.call(this,a)}function m(a,b){a.enabled&&(J.clearTimer(a.autoTimer),t(a,b-1))}function n(a){var b=a.index-1;a.infinite&&0>b&&(b=a.pageCount-1),t(a,b)}function o(a){var b=a.index+1;a.infinite&&b>=a.pageCount&&(b=0),t(a,b)}function p(a){var b=a.data;b.resizeTimer=J.startTimer(b.resizeTimer,20,function(){i.call(b.$el,b)})}function q(a){var b=a.index+1;b>=a.pageCount&&(b=0),t(a,b)}function r(b){J.killEvent(b);var c=b.data,d=c.index+(a(b.currentTarget).hasClass(H.control_next)?1:-1);J.clearTimer(c.autoTimer),t(c,d)}function s(b){J.killEvent(b);var c=b.data,d=c.$paginationItems.index(a(b.currentTarget));J.clearTimer(c.autoTimer),t(c,d)}function t(a,b,c){0>b&&(b=a.infinite?a.pageCount-1:0),b>=a.pageCount&&(b=a.infinite?0:a.pageCount-1),a.count<1||(a.pages[b]&&(a.leftPosition=-a.pages[b].left),a.leftPosition=D(a,a.leftPosition),a.useMargin?a.$canister.css({marginLeft:a.leftPosition}):c===!1?(a.$canister.css(M,"none").css(L,"translateX("+a.leftPosition+"px)"),setTimeout(function(){a.$canister.css(M,"")},5)):a.$canister.css(L,"translateX("+a.leftPosition+"px)"),a.$items.removeClass(H.visible),a.pages[b].$items.addClass(H.visible),a.autoHeight&&a.$canister.css({height:a.pages[b].height}),c!==!1&&b!==a.index&&(a.infinite||b>-1&&b<a.pageCount)&&a.$el.trigger(I.update,[b]),a.index=b,w(a))}function u(a){a.$controls.removeClass(H.visible),a.$controlItems.removeClass(H.visible),a.$pagination.removeClass(H.visible)}function v(a){a.$controls.addClass(H.visible),a.$controlItems.addClass(H.visible),a.$pagination.addClass(H.visible)}function w(a){a.$paginationItems.removeClass(H.active).eq(a.index).addClass(H.active),a.infinite?a.$controlItems.addClass(H.visible):a.pageCount<1?a.$controlItems.removeClass(H.visible):(a.$controlItems.addClass(H.visible),a.index<=0?a.$controlPrevious.removeClass(H.visible):(a.index>=a.pageCount||a.leftPosition===a.maxMove)&&a.$controlNext.removeClass(H.visible))}function x(c){if("object"===a.type(c.show)){for(var d in c.show)if(c.show.hasOwnProperty(d)&&b.windowWidth>=c.show[d].width)return c.fill&&c.count<c.show[d].count?c.count:c.show[d].count;return 1}return c.fill&&c.count<c.show?c.count:c.show}function y(a){var b=a.data;if(b.useMargin)b.leftPosition=parseInt(b.$canister.css("marginLeft"));else{var c=b.$canister.css(L).split(",");b.leftPosition=parseInt(c[4])}b.$canister.css(M,"none"),z(a),b.isTouching=!0}function z(a){var b=a.data;b.touchLeft=D(b,b.leftPosition+a.deltaX),b.useMargin?b.$canister.css({marginLeft:b.touchLeft}):b.$canister.css(L,"translateX("+b.touchLeft+"px)")}function A(a){var b=a.data,c=E(b,a),d=a.deltaX>-50&&a.deltaX<50?b.index:b.index+c;C(b,d)}function B(a){var b=a.data,c=E(b,a),d=b.index+c;C(b,d)}function C(a,b){a.$canister.css(M,""),t(a,b),a.isTouching=!1}function D(a,b){return isNaN(b)?b=0:a.rtl?(b>a.maxMove&&(b=a.maxMove),0>b&&(b=0)):(b<a.maxMove&&(b=a.maxMove),b>0&&(b=0)),b}function E(a,b){return a.rtl?"right"===b.directionX?1:-1:"left"===b.directionX?1:-1}var F=b.Plugin("carousel",{widget:!0,defaults:{autoAdvance:!1,autoHeight:!1,autoTime:8e3,controls:!0,customClass:"",fill:!1,infinite:!1,labels:{next:"Next",previous:"Previous"},matchHeight:!1,maxWidth:1/0,minWidth:"0px",paged:!1,pagination:!0,show:1,rtl:!1,useMargin:!1},classes:["ltr","rtl","viewport","wrapper","container","canister","item","controls","control","pagination","page","animated","enabled","visible","active","auto_height","control_previous","control_next"],events:{update:"update",panStart:"panstart",pan:"pan",panEnd:"panend",swipe:"swipe"},methods:{_construct:e,_destruct:f,_resize:c,disable:g,enable:h,jump:m,previous:n,next:o,reset:k,resize:i,update:l}}),G=F.classes,H=G.raw,I=F.events,J=F.functions,K=[],L=b.transform,M=b.transition}(jQuery,Formstone); |
|
0 | 4 |
\ No newline at end of file |
1 | 5 |
new file mode 100755 |
... | ... |
@@ -0,0 +1,3 @@ |
1 |
+/*! formstone v0.7.12 [checkbox.js] 2015-08-12 | MIT License | formstone.it */ |
|
2 |
+ |
|
3 |
+!function(a,b){"use strict";function c(b){var c=this.closest("label"),d=c.length?c.eq(0):a("label[for="+this.attr("id")+"]"),e=[p.base,b.customClass].join(" "),f="";b.radio="radio"===this.attr("type"),b.group=this.attr("name"),f+='<div class="'+p.marker+'">',f+='<div class="'+p.flag+'"></div>',b.toggle&&(e+=" "+p.toggle,f+='<span class="'+[p.state,p.state_on].join(" ")+'">'+b.labels.on+"</span>",f+='<span class="'+[p.state,p.state_off].join(" ")+'">'+b.labels.off+"</span>"),b.radio&&(e+=" "+p.radio),f+="</div>",d.length?d.addClass(p.label).wrap('<div class="'+e+'"></div>').before(f):this.before('<div class=" '+e+'">'+f+"</div>"),b.$checkbox=d.length?d.parents(o.base):this.prev(o.base),b.$marker=b.$checkbox.find(o.marker),b.$states=b.$checkbox.find(o.state),b.$label=d,this.is(":checked")&&b.$checkbox.addClass(p.checked),this.is(":disabled")&&b.$checkbox.addClass(p.disabled),this.wrap('<div class="'+p.element_wrapper+'"></div>'),this.on(q.focus,b,l).on(q.blur,b,m).on(q.change,b,i).on(q.click,b,h).on(q.deselect,b,k),b.$checkbox.fsTouch({tap:!0}).on(q.tap,b,h)}function d(a){a.$checkbox.off(q.namespace).fsTouch("destroy"),a.$marker.remove(),a.$states.remove(),a.$label.unwrap().removeClass(p.label),this.unwrap().off(q.namespace)}function e(a){this.prop("disabled",!1),a.$checkbox.removeClass(p.disabled)}function f(a){this.prop("disabled",!0),a.$checkbox.addClass(p.disabled)}function g(a){var b=a.$el.is(":disabled"),c=a.$el.is(":checked");b||(c?j({data:a}):k({data:a}))}function h(b){b.stopPropagation();var c=b.data;a(b.target).is(c.$el)||(b.preventDefault(),c.$el.trigger("click"))}function i(a){var b=a.data,c=b.$el.is(":disabled"),d=b.$el.is(":checked");c||(b.radio?j(a):d?j(a):k(a))}function j(b){b.data.radio&&a('input[name="'+b.data.group+'"]').not(b.data.$el).trigger("deselect"),b.data.$checkbox.addClass(p.checked)}function k(a){a.data.$checkbox.removeClass(p.checked)}function l(a){a.data.$checkbox.addClass(p.focus)}function m(a){a.data.$checkbox.removeClass(p.focus)}{var n=b.Plugin("checkbox",{widget:!0,defaults:{customClass:"",toggle:!1,labels:{on:"ON",off:"OFF"}},classes:["element_wrapper","label","marker","flag","radio","focus","checked","disabled","toggle","state","state_on","state_off"],methods:{_construct:c,_destruct:d,enable:e,disable:f,update:g},events:{deselect:"deselect",tap:"tap"}}),o=n.classes,p=o.raw,q=n.events;n.functions}}(jQuery,Formstone); |
|
0 | 4 |
\ No newline at end of file |
1 | 5 |
new file mode 100755 |
... | ... |
@@ -0,0 +1,3 @@ |
1 |
+/*! formstone v0.7.12 [cookie.js] 2015-08-12 | MIT License | formstone.it */ |
|
2 |
+ |
|
3 |
+!function(a,b){"use strict";function c(b,c,h){if("object"===a.type(b))g=a.extend(g,b);else if(h=a.extend({},g,h||{}),"undefined"!==a.type(b)){if("undefined"===a.type(c))return e(b);null===c?f(b):d(b,c,h)}return null}function d(b,c,d){var e=!1,f=new Date;d.expires&&"number"===a.type(d.expires)&&(f.setTime(f.getTime()+d.expires),e=f.toGMTString());var g=d.domain?"; domain="+d.domain:"",i=e?"; expires="+e:"",j=e?"; max-age="+d.expires/1e3:"",k=d.path?"; path="+d.path:"",l=d.secure?"; secure":"";h.cookie=b+"="+c+i+j+g+k+l}function e(a){for(var b=a+"=",c=h.cookie.split(";"),d=0;d<c.length;d++){for(var e=c[d];" "===e.charAt(0);)e=e.substring(1,e.length);if(0===e.indexOf(b))return e.substring(b.length,e.length)}return null}function f(a){d(a,"",{expires:-6048e5})}var g=(b.Plugin("cookie",{utilities:{_delegate:c}}),{domain:null,expires:6048e5,path:null,secure:null}),h=b.document}(jQuery,Formstone); |
|
0 | 4 |
\ No newline at end of file |
1 | 5 |
new file mode 100755 |
... | ... |
@@ -0,0 +1,3 @@ |
1 |
+/*! formstone v0.7.12 [core.js] 2015-08-12 | MIT License | formstone.it */ |
|
2 |
+ |
|
3 |
+var Formstone=this.Formstone=function(a,b,c){"use strict";function d(a){l.Plugins[a].initialized||(l.Plugins[a].methods._setup.call(c),l.Plugins[a].initialized=!0)}function e(a,b,c,d){var e,f={raw:{}};d=d||{};for(e in d)d.hasOwnProperty(e)&&("classes"===a?(f.raw[d[e]]=b+"-"+d[e],f[d[e]]="."+b+"-"+d[e]):(f.raw[e]=d[e],f[e]=d[e]+"."+b));for(e in c)c.hasOwnProperty(e)&&("classes"===a?(f.raw[e]=c[e].replace(/{ns}/g,b),f[e]=c[e].replace(/{ns}/g,"."+b)):(f.raw[e]=c[e].replace(/.{ns}/g,""),f[e]=c[e].replace(/{ns}/g,b)));return f}function f(){var a,b={transition:"transitionend",MozTransition:"transitionend",OTransition:"otransitionend",WebkitTransition:"webkitTransitionEnd"},d=["transition","-webkit-transition"],e={transform:"transform",MozTransform:"-moz-transform",OTransform:"-o-transform",msTransform:"-ms-transform",webkitTransform:"-webkit-transform"},f="transitionend",g="",h="",i=c.createElement("div");for(a in b)if(b.hasOwnProperty(a)&&a in i.style){f=b[a],l.support.transition=!0;break}o.transitionEnd=f+".{ns}";for(a in d)if(d.hasOwnProperty(a)&&d[a]in i.style){g=d[a];break}l.transition=g;for(a in e)if(e.hasOwnProperty(a)&&e[a]in i.style){l.support.transform=!0,h=e[a];break}l.transform=h}function g(){l.windowWidth=l.$window.width(),l.windowHeight=l.$window.height(),p=k.startTimer(p,q,h)}function h(){for(var a in l.ResizeHandlers)l.ResizeHandlers.hasOwnProperty(a)&&l.ResizeHandlers[a].callback.call(b,l.windowWidth,l.windowHeight)}function i(a,b){return parseInt(a.priority)-parseInt(b.priority)}var j=function(){this.Version="0.7.12",this.Plugins={},this.DontConflict=!1,this.Conflicts={fn:{}},this.ResizeHandlers=[],this.window=b,this.$window=a(b),this.document=c,this.$document=a(c),this.$body=null,this.windowWidth=0,this.windowHeight=0,this.userAgent=b.navigator.userAgent||b.navigator.vendor||b.opera,this.isFirefox=/Firefox/i.test(this.userAgent),this.isChrome=/Chrome/i.test(this.userAgent),this.isSafari=/Safari/i.test(this.userAgent)&&!this.isChrome,this.isMobile=/Android|webOS|iPhone|iPad|iPod|BlackBerry/i.test(this.userAgent),this.isFirefoxMobile=this.isFirefox&&this.isMobile,this.transform=null,this.transition=null,this.support={file:!!(b.File&&b.FileList&&b.FileReader),history:!!(b.history&&b.history.pushState&&b.history.replaceState),matchMedia:!(!b.matchMedia&&!b.msMatchMedia),raf:!(!b.requestAnimationFrame||!b.cancelAnimationFrame),touch:!!("ontouchstart"in b||b.DocumentTouch&&c instanceof b.DocumentTouch),transition:!1,transform:!1}},k={killEvent:function(a,b){try{a.preventDefault(),a.stopPropagation(),b&&a.stopImmediatePropagation()}catch(c){}},startTimer:function(a,b,c,d){return k.clearTimer(a),d?setInterval(c,b):setTimeout(c,b)},clearTimer:function(a,b){a&&(b?clearInterval(a):clearTimeout(a),a=null)},sortAsc:function(a,b){return parseInt(b)-parseInt(a)},sortDesc:function(a,b){return parseInt(b)-parseInt(a)}},l=new j,m=a.Deferred(),n={base:"{ns}",element:"{ns}-element"},o={namespace:".{ns}",blur:"blur.{ns}",change:"change.{ns}",click:"click.{ns}",dblClick:"dblclick.{ns}",drag:"drag.{ns}",dragEnd:"dragend.{ns}",dragEnter:"dragenter.{ns}",dragLeave:"dragleave.{ns}",dragOver:"dragover.{ns}",dragStart:"dragstart.{ns}",drop:"drop.{ns}",error:"error.{ns}",focus:"focus.{ns}",focusIn:"focusin.{ns}",focusOut:"focusout.{ns}",input:"input.{ns}",keyDown:"keydown.{ns}",keyPress:"keypress.{ns}",keyUp:"keyup.{ns}",load:"load.{ns}",mouseDown:"mousedown.{ns}",mouseEnter:"mouseenter.{ns}",mouseLeave:"mouseleave.{ns}",mouseMove:"mousemove.{ns}",mouseOut:"mouseout.{ns}",mouseOver:"mouseover.{ns}",mouseUp:"mouseup.{ns}",resize:"resize.{ns}",scroll:"scroll.{ns}",select:"select.{ns}",touchCancel:"touchcancel.{ns}",touchEnd:"touchend.{ns}",touchLeave:"touchleave.{ns}",touchMove:"touchmove.{ns}",touchStart:"touchstart.{ns}"};j.prototype.NoConflict=function(){l.DontConflict=!0;for(var b in l.Plugins)l.Plugins.hasOwnProperty(b)&&(a[b]=l.Conflicts[b],a.fn[b]=l.Conflicts.fn[b])},j.prototype.Plugin=function(c,f){return l.Plugins[c]=function(c,d){function f(b){var e="object"===a.type(b);b=a.extend(!0,{},d.defaults||{},e?b:{});for(var f=this,g=0,i=f.length;i>g;g++){var j=f.eq(g);if(!h(j)){var k="__"+d.guid++,l=d.classes.raw.base+k,m=j.data(c+"-options"),n=a.extend(!0,{$el:j,guid:k,rawGuid:l,dotGuid:"."+l},b,"object"===a.type(m)?m:{});j.addClass(d.classes.raw.element).data(s,n),d.methods._construct.apply(j,[n].concat(Array.prototype.slice.call(arguments,e?1:0)))}}return f}function g(){d.functions.iterate.apply(this,[d.methods._destruct].concat(Array.prototype.slice.call(arguments,1))),this.removeClass(d.classes.raw.element).removeData(s)}function h(a){return a.data(s)}function j(b){if(this instanceof a){var c=d.methods[b];return"object"!==a.type(b)&&b?c&&0!==b.indexOf("_")?d.functions.iterate.apply(this,[c].concat(Array.prototype.slice.call(arguments,1))):this:f.apply(this,arguments)}}function m(c){var e=d.utilities[c]||d.utilities._initialize||!1;return e?e.apply(b,Array.prototype.slice.call(arguments,"object"===a.type(c)?0:1)):void 0}function p(b){d.defaults=a.extend(!0,d.defaults,b||{})}function q(b){for(var c=this,d=0,e=c.length;e>d;d++){var f=c.eq(d),g=h(f)||{};"undefined"!==a.type(g.$el)&&b.apply(f,[g].concat(Array.prototype.slice.call(arguments,1)))}return c}var r="fs-"+c,s="fs"+c.replace(/(^|\s)([a-z])/g,function(a,b,c){return b+c.toUpperCase()});return d.initialized=!1,d.priority=d.priority||10,d.classes=e("classes",r,n,d.classes),d.events=e("events",c,o,d.events),d.functions=a.extend({getData:h,iterate:q},k,d.functions),d.methods=a.extend(!0,{_setup:a.noop,_construct:a.noop,_destruct:a.noop,_resize:!1,destroy:g},d.methods),d.utilities=a.extend(!0,{_initialize:!1,_delegate:!1,defaults:p},d.utilities),d.widget&&(l.Conflicts.fn[c]=a.fn[c],a.fn[s]=j,l.DontConflict||(a.fn[c]=a.fn[s])),l.Conflicts[c]=a[c],a[s]=d.utilities._delegate||m,l.DontConflict||(a[c]=a[s]),d.namespace=c,d.namespaceClean=s,d.guid=0,d.methods._resize&&(l.ResizeHandlers.push({namespace:c,priority:d.priority,callback:d.methods._resize}),l.ResizeHandlers.sort(i)),d}(c,f),m.then(function(){d(c)}),l.Plugins[c]};var p=null,q=20;return l.$window.on("resize.fs",g),g(),a(function(){l.$body=a("body"),m.resolve()}),o.clickTouchStart=o.click+" "+o.touchStart,f(),l}(jQuery,this,document); |
|
0 | 4 |
\ No newline at end of file |
1 | 5 |
new file mode 100755 |
... | ... |
@@ -0,0 +1,3 @@ |
1 |
+/*! formstone v0.7.12 [dropdown.js] 2015-08-12 | MIT License | formstone.it */ |
|
2 |
+ |
|
3 |
+!function(a,b){"use strict";function c(){H=b.$body}function d(c){c.multiple=this.prop("multiple"),c.disabled=this.is(":disabled"),c.multiple?c.links=!1:c.external&&(c.links=!0);var d=this.find(":selected").not(":disabled"),e=d.text(),f=this.find("option").index(d);c.multiple||""===c.label?c.label="":(d=this.prepend('<option value="" class="'+C.item_placeholder+'" selected>'+c.label+"</option>"),e=c.label,f=0);var g=this.find("option, optgroup"),h=g.filter("option");c.tabIndex=this[0].tabIndex,this[0].tabIndex=-1;var k=[C.base,c.customClass];c.mobile||b.isMobile?k.push(C.mobile):c.cover&&k.push(C.cover),c.multiple&&k.push(C.multiple),c.disabled&&k.push(C.disabled);var l='<div class="'+k.join(" ")+'" tabindex="'+c.tabIndex+'"></div>',m="";c.multiple||(m+='<button type="button" class="'+C.selected+'">',m+=a("<span></span>").text(y(e,c.trim)).html(),m+="</button>"),m+='<div class="'+C.options+'">',m+="</div>",this.wrap(l).after(m),c.$dropdown=this.parent(B.base),c.$allOptions=g,c.$options=h,c.$selected=c.$dropdown.find(B.selected),c.$wrapper=c.$dropdown.find(B.options),c.$placeholder=c.$dropdown.find(B.placeholder),c.index=-1,c.closed=!0,c.focused=!1,i(c),c.multiple||u(f,c),c.$selected.fsTouch({tap:!0}).on(D.tap,c,j),c.$dropdown.on(D.click,B.item,c,p).on(D.close,c,o),this.on(D.change,c,q),b.isMobile||(c.$dropdown.on(D.focusIn,c,r).on(D.focusOut,c,s),this.on(D.focusIn,c,function(a){a.data.$dropdown.trigger(D.raw.focusIn)}))}function e(a){a.$dropdown.hasClass(C.open)&&a.$selected.trigger(D.click),a.$el[0].tabIndex=a.tabIndex,a.$dropdown.off(D.namespace),a.$options.off(D.namespace),a.$placeholder.remove(),a.$selected.fsTouch("destroy").remove(),a.$wrapper.remove(),a.$el.off(D.namespace).show().unwrap()}function f(a,b){if("undefined"!=typeof b){var c=a.$items.index(a.$items.filter("[data-value="+b+"]"));a.$items.eq(c).addClass(C.item_disabled),a.$options.eq(c).prop("disabled",!0)}else a.$dropdown.hasClass(C.open)&&a.$selected.trigger(D.click),a.$dropdown.addClass(C.disabled),a.$el.prop("disabled",!0),a.disabled=!0}function g(a,b){if("undefined"!=typeof b){var c=a.$items.index(a.$items.filter("[data-value="+b+"]"));a.$items.eq(c).removeClass(C.item_disabled),a.$options.eq(c).prop("disabled",!1)}else a.$dropdown.removeClass(C.disabled),a.$el.prop("disabled",!1),a.disabled=!1}function h(a){var b=a.index;a.$allOptions=a.$el.find("option, optgroup"),a.$options=a.$allOptions.filter("option"),a.index=-1,b=a.$options.index(a.$options.filter(":selected")),i(a),a.multiple||u(b,a)}function i(b){for(var c="",d=0,e=0,f=b.$allOptions.length;f>e;e++){var g=b.$allOptions.eq(e),h=[];if("OPTGROUP"===g[0].tagName)h.push(C.group),g.is(":disabled")&&h.push(C.disabled),c+='<span class="'+h.join(" ")+'">'+g.attr("label")+"</span>";else{var i=g.val();g.attr("value")||g.attr("value",i),h.push(C.item),g.hasClass(C.item_placeholder)&&h.push(C.item_placeholder),g.is(":selected")&&h.push(C.item_selected),g.is(":disabled")&&h.push(C.item_disabled),c+='<button type="button" class="'+h.join(" ")+'" ',c+='data-value="'+i+'">',c+=a("<span></span>").text(y(g.text(),b.trim)).html(),c+="</button>",d++}}b.$items=b.$wrapper.html(c).find(B.item)}function j(a){E.killEvent(a);var c=a.data;if(!c.disabled)if(c.mobile||!b.isMobile||b.isFirefoxMobile)c.closed?l(c):m(c);else{var d=c.$el[0];if(G.createEvent){var e=G.createEvent("MouseEvents");e.initMouseEvent("mousedown",!1,!0,F,0,0,0,0,0,!1,!1,!1,!1,0,null),d.dispatchEvent(e)}else d.fireEvent&&d.fireEvent("onmousedown")}k(c)}function k(b){a(B.base).not(b.$dropdown).trigger(D.close,[b])}function l(a){if(a.closed){{var b=a.$dropdown.offset(),c=H.outerHeight(),d=a.$wrapper.outerHeight(!0);a.index>=0?a.$items.eq(a.index).position():{left:0,top:0}}b.top+d>c&&a.$dropdown.addClass(C.bottom),H.on(D.click+a.dotGuid,":not("+B.options+")",a,n),a.$dropdown.trigger(D.focusIn),a.$dropdown.addClass(C.open),v(a),a.closed=!1}}function m(a){a&&!a.closed&&(H.off(D.click+a.dotGuid),a.$dropdown.removeClass([C.open,C.bottom].join(" ")),a.closed=!0)}function n(b){E.killEvent(b);var c=b.data;c&&0===a(b.currentTarget).parents(B.base).length&&(m(c),c.$dropdown.trigger(D.focusOut))}function o(a){var b=a.data;b&&(m(b),b.$dropdown.trigger(D.focusOut))}function p(b){E.killEvent(b);var c=a(this),d=b.data;if(!d.disabled){if(d.$wrapper.is(":visible")){var e=d.$items.index(c);e!==d.index&&(u(e,d),w(d))}d.multiple||m(d),d.$dropdown.trigger(D.focusIn)}}function q(b,c){var d=a(this),e=b.data;if(!c&&!e.multiple){var f=e.$options.index(e.$options.filter("[value='"+z(d.val())+"']"));u(f,e),w(e)}}function r(b){E.killEvent(b);var c=(a(b.currentTarget),b.data);c.disabled||c.multiple||c.focused||(k(c),c.focused=!0,c.$dropdown.addClass(C.focus).on(D.keyDown+c.dotGuid,c,t))}function s(b){E.killEvent(b);var c=(a(b.currentTarget),b.data);c.focused&&c.closed&&(c.focused=!1,c.$dropdown.removeClass(C.focus).off(D.keyDown+c.dotGuid),c.multiple||m(c))}function t(c){var d=c.data;if(13===c.keyCode)d.closed||(m(d),u(d.index,d)),w(d);else if(!(9===c.keyCode||c.metaKey||c.altKey||c.ctrlKey||c.shiftKey)){E.killEvent(c);var e=d.$items.length-1,f=d.index<0?0:d.index;if(a.inArray(c.keyCode,b.isFirefox?[38,40,37,39]:[38,40])>-1)f+=38===c.keyCode||b.isFirefox&&37===c.keyCode?-1:1,0>f&&(f=0),f>e&&(f=e);else{var g,h,i=String.fromCharCode(c.keyCode).toUpperCase();for(h=d.index+1;e>=h;h++)if(g=d.$options.eq(h).text().charAt(0).toUpperCase(),g===i){f=h;break}if(0>f||f===d.index)for(h=0;e>=h;h++)if(g=d.$options.eq(h).text().charAt(0).toUpperCase(),g===i){f=h;break}}f>=0&&(u(f,d),v(d))}}function u(a,b){var c=b.$items.eq(a),d=b.$options.eq(a),e=c.hasClass(C.item_selected),f=c.hasClass(C.item_disabled);if(!f)if(b.multiple)e?(d.prop("selected",null),c.removeClass(C.item_selected)):(d.prop("selected",!0),c.addClass(C.item_selected));else if(a>-1&&a<b.$items.length){var g=d.data("label")||c.html();b.$selected.html(g).removeClass(B.item_placeholder),b.$items.filter(B.item_selected).removeClass(C.item_selected),b.$el[0].selectedIndex=a,c.addClass(C.item_selected),b.index=a}else""!==b.label&&b.$selected.html(b.label)}function v(a){var b=a.$items.eq(a.index),c=a.index>=0&&!b.hasClass(C.item_placeholder)?b.position():{left:0,top:0},d=(a.$wrapper.outerHeight()-b.outerHeight())/2;a.$wrapper.scrollTop(a.$wrapper.scrollTop()+c.top-d)}function w(a){a.links?x(a):a.$el.trigger(D.raw.change,[!0])}function x(a){var b=a.$el.val();a.external?F.open(b):F.location.href=b}function y(a,b){return 0===b?a:a.length>b?a.substring(0,b)+"...":a}function z(a){return"string"==typeof a?a.replace(/([;&,\.\+\*\~':"\!\^#$%@\[\]\(\)=>\|])/g,"\\$1"):a}var A=b.Plugin("dropdown",{widget:!0,defaults:{cover:!1,customClass:"",label:"",external:!1,links:!1,mobile:!1,trim:0},methods:{_setup:c,_construct:d,_destruct:e,disable:f,enable:g,update:h,open:l,close:m},classes:["cover","bottom","multiple","mobile","open","disabled","focus","selected","options","group","item","item_disabled","item_selected","item_placeholder"],events:{tap:"tap",close:"close"}}),B=A.classes,C=B.raw,D=A.events,E=A.functions,F=b.window,G=(b.$window,b.document),H=null}(jQuery,Formstone); |
|
0 | 4 |
\ No newline at end of file |
1 | 5 |
new file mode 100755 |
... | ... |
@@ -0,0 +1,3 @@ |
1 |
+/*! formstone v0.7.12 [equalize.js] 2015-08-12 | MIT License | formstone.it */ |
|
2 |
+ |
|
3 |
+!function(a,b){"use strict";function c(){n.iterate.call(o,g)}function d(){o=a(l.element)}function e(b){b.maxWidth=b.maxWidth===1/0?"100000px":b.maxWidth,b.mq="(min-width:"+b.minWidth+") and (max-width:"+b.maxWidth+")",b.type="height"===b.property?"outerHeight":"outerWidth",b.target?a.isArray(b.target)||(b.target=[b.target]):b.target=["> *"],d(),a.fsMediaquery("bind",b.rawGuid,b.mq,{enter:function(){i.call(b.$el,b)},leave:function(){h.call(b.$el,b)}})}function f(b){j(b),a.fsMediaquery("unbind",b.rawGuid),d()}function g(a){if(a.data&&(a=a.data),a.enabled)for(var b,c,d,e=0;e<a.target.length;e++){b=0,c=0,d=a.$el.find(a.target[e]),d.css(a.property,"");for(var f=0;f<d.length;f++)c=d.eq(f)[a.type](),c>b&&(b=c);d.css(a.property,b)}}function h(a){a.enabled&&(a.enabled=!1,j(a))}function i(a){if(!a.enabled){a.enabled=!0;var b=a.$el.find("img");b.length&&b.on(m.load,a,g),g(a)}}function j(a){for(var b=0;b<a.target.length;b++)a.$el.find(a.target[b]).css(a.property,"");a.$el.find("img").off(m.namespace)}var k=b.Plugin("equalize",{widget:!0,priority:5,defaults:{maxWidth:1/0,minWidth:"0px",property:"height",target:null},methods:{_construct:e,_destruct:f,_resize:c,resize:g}}),l=k.classes,m=(l.raw,k.events),n=k.functions,o=[]}(jQuery,Formstone); |
|
0 | 4 |
\ No newline at end of file |
1 | 5 |
new file mode 100755 |
... | ... |
@@ -0,0 +1,3 @@ |
1 |
+/*! formstone v0.7.12 [lightbox.js] 2015-08-12 | MIT License | formstone.it */ |
|
2 |
+ |
|
3 |
+!function(a,b,c){"use strict";function d(){S=b.$body,T=a("html, body")}function e(){U&&j()}function f(a){this.on(O.click,a,i)}function g(){k(),this.off(O.namespace)}function h(b,c){b instanceof a&&i.apply(Q,[{data:a.extend(!0,{},{$object:b},L,c||{})}])}function i(c){if(!U){var d=c.data,e=d.$el,f=d.$object,g=e&&e[0].href?e[0].href||"":"",h=e&&e[0].hash?e[0].hash||"":"",i=g.toLowerCase().split(".").pop().split(/\#|\?/),j=i[0],l=e?e.data(K+"-type"):"",m="image"===l||a.inArray(j,d.extensions)>-1||"data:image"===g.substr(0,10),o=I(g),q="url"===l||!m&&!o&&"http"===g.substr(0,4)&&!h,r="element"===l||!m&&!o&&!q&&"#"===h.substr(0,1),t="undefined"!=typeof f;if(r&&(g=h),!(m||o||q||r||t))return;if(P.killEvent(c),U=a.extend({},{visible:!1,gallery:{active:!1},isMobile:b.isMobile||d.mobile,isTouch:b.support.touch,isAnimating:!0,oldContentHeight:0,oldContentWidth:0},d),U.margin*=2,U.type=m?"image":o?"video":"element",m||o){var u=e.data(K+"-gallery");u&&(U.gallery.active=!0,U.gallery.id=u,U.gallery.$items=a("a[data-lightbox-gallery= "+U.gallery.id+"], a[rel= "+U.gallery.id+"]"),U.gallery.index=U.gallery.$items.index(U.$el),U.gallery.total=U.gallery.$items.length-1)}var w="";U.isMobile||(w+='<div class="'+[M.raw.overlay,U.customClass].join(" ")+'"></div>');var x=[M.raw.base,M.raw.loading,M.raw.animating,U.customClass];U.fixed&&x.push(M.raw.fixed),U.isMobile&&x.push(M.raw.mobile),U.isTouch&&x.push(M.raw.touch),q&&x.push(M.raw.iframed),(r||t)&&x.push(M.raw.inline),w+='<div class="'+x.join(" ")+'">',w+='<button type="button" class="'+M.raw.close+'">'+U.labels.close+"</button>",w+='<span class="'+M.raw.loading_icon+'"></span>',w+='<div class="'+M.raw.container+'">',w+='<div class="'+M.raw.content+'">',(m||o)&&(w+='<div class="'+M.raw.tools+'">',w+='<div class="'+M.raw.controls+'">',U.gallery.active&&(w+='<button type="button" class="'+[M.raw.control,M.raw.control_previous].join(" ")+'">'+U.labels.previous+"</button>",w+='<button type="button" class="'+[M.raw.control,M.raw.control_next].join(" ")+'">'+U.labels.next+"</button>"),U.isMobile&&U.isTouch&&(w+='<button type="button" class="'+[M.raw.caption_toggle].join(" ")+'">'+U.labels.captionClosed+"</button>"),w+="</div>",w+='<div class="'+M.raw.meta+'">',U.gallery.active&&(w+='<p class="'+M.raw.position+'"',U.gallery.total<1&&(w+=' style="display: none;"'),w+=">",w+='<span class="'+M.raw.position_current+'">'+(U.gallery.index+1)+"</span> ",w+=U.labels.count,w+=' <span class="'+M.raw.position_total+'">'+(U.gallery.total+1)+"</span>",w+="</p>"),w+='<div class="'+M.raw.caption+'">',w+=U.formatter.call(e,d),w+="</div></div>",w+="</div>"),w+="</div></div></div>",S.append(w),U.$overlay=a(M.overlay),U.$lightbox=a(M.base),U.$close=a(M.close),U.$container=a(M.container),U.$content=a(M.content),U.$tools=a(M.tools),U.$meta=a(M.meta),U.$position=a(M.position),U.$caption=a(M.caption),U.$controlBox=a(M.controls),U.$controls=a(M.control),U.isMobile?(U.paddingVertical=U.$close.outerHeight(),U.paddingHorizontal=0,U.mobilePaddingVertical=parseInt(U.$content.css("paddingTop"),10)+parseInt(U.$content.css("paddingBottom"),10),U.mobilePaddingHorizontal=parseInt(U.$content.css("paddingLeft"),10)+parseInt(U.$content.css("paddingRight"),10)):(U.paddingVertical=parseInt(U.$lightbox.css("paddingTop"),10)+parseInt(U.$lightbox.css("paddingBottom"),10),U.paddingHorizontal=parseInt(U.$lightbox.css("paddingLeft"),10)+parseInt(U.$lightbox.css("paddingRight"),10),U.mobilePaddingVertical=0,U.mobilePaddingHorizontal=0),U.contentHeight=U.$lightbox.outerHeight()-U.paddingVertical,U.contentWidth=U.$lightbox.outerWidth()-U.paddingHorizontal,U.controlHeight=U.$controls.outerHeight(),n(),U.gallery.active&&(U.$lightbox.addClass(N.has_controls),z()),R.on(O.keyDown,A),S.on(O.clickTouchStart,[M.overlay,M.close].join(", "),k),U.gallery.active&&U.$lightbox.on(O.clickTouchStart,M.control,y),U.isMobile&&U.isTouch&&U.$lightbox.on(O.clickTouchStart,M.caption_toggle,p),U.$lightbox.fsTransition({property:"opacity"},function(){m?s(g):o?v(g):q?C(g):r?B(g):t&&D(U.$object)}).addClass(M.raw.open),U.$overlay.addClass(M.raw.open)}}function j(a){"object"!=typeof a&&(U.targetHeight=arguments[0],U.targetWidth=arguments[1]),"element"===U.type?E(U.$content.find("> :first-child")):"image"===U.type?t():"video"===U.type&&w(),m()}function k(a){P.killEvent(a),U&&(U.$lightbox.fsTransition("destroy"),U.$container.fsTransition("destroy"),U.$lightbox.addClass(M.raw.animating).fsTransition({property:"opacity"},function(){U.$lightbox.off(O.namespace),U.$container.off(O.namespace),R.off(O.namespace),S.off(O.namespace),U.$overlay.remove(),U.$lightbox.remove(),U=null,R.trigger(O.close)}),U.$lightbox.removeClass(M.raw.open),U.$overlay.removeClass(M.raw.open),U.isMobile&&T.removeClass(N.lock))}function l(){{var a=o();U.isMobile?0:U.duration}U.isMobile||U.$controls.css({marginTop:(U.contentHeight-U.controlHeight-U.metaHeight)/2}),!U.visible&&U.isMobile&&U.gallery.active&&U.$content.fsTouch({axis:"x",swipe:!0}).on(O.swipe,G),U.$lightbox.fsTransition({property:U.contentHeight!==U.oldContentHeight?"height":"width"},function(){U.$container.fsTransition({property:"opacity"},function(){U.$lightbox.removeClass(M.raw.animating),U.isAnimating=!1}),U.$lightbox.removeClass(M.raw.loading),U.visible=!0,R.trigger(O.open),U.gallery.active&&x()}),U.isMobile||U.$lightbox.css({height:U.contentHeight+U.paddingVertical,width:U.contentWidth+U.paddingHorizontal,top:U.fixed?0:a.top});var b=U.oldContentHeight!==U.contentHeight||U.oldContentWidth!==U.contentWidth;(U.isMobile||!b)&&U.$lightbox.fsTransition("resolve"),U.oldContentHeight=U.contentHeight,U.oldContentWidth=U.contentWidth,U.isMobile&&T.addClass(N.lock)}function m(){if(U.visible&&!U.isMobile){var a=o();U.$controls.css({marginTop:(U.contentHeight-U.controlHeight-U.metaHeight)/2}),U.$lightbox.css({height:U.contentHeight+U.paddingVertical,width:U.contentWidth+U.paddingHorizontal,top:U.fixed?0:a.top})}}function n(){var a=o();U.$lightbox.css({top:U.fixed?0:a.top})}function o(){if(U.isMobile)return{left:0,top:0};var a={left:(b.windowWidth-U.contentWidth-U.paddingHorizontal)/2,top:U.top<=0?(b.windowHeight-U.contentHeight-U.paddingVertical)/2:U.top};return U.fixed!==!0&&(a.top+=R.scrollTop()),a}function p(a){P.killEvent(a),U.captionOpen?q():(U.$lightbox.addClass(M.raw.caption_open).find(M.caption_toggle).text(U.labels.captionOpen),U.captionOpen=!0)}function q(){U.$lightbox.removeClass(M.raw.caption_open).find(M.caption_toggle).text(U.labels.captionClosed),U.captionOpen=!1}function r(){var a=this.attr("title"),b=a!==c&&a?a.replace(/^\s+|\s+$/g,""):!1;return b?'<p class="caption">'+b+"</p>":""}function s(b){U.$image=a("<img>"),U.$image.one(O.load,function(){var a=H(U.$image);U.naturalHeight=a.naturalHeight,U.naturalWidth=a.naturalWidth,U.retina&&(U.naturalHeight/=2,U.naturalWidth/=2),U.$content.prepend(U.$image),""===U.$caption.html()?(U.$caption.hide(),U.$lightbox.removeClass(N.has_caption)):(U.$caption.show(),U.$lightbox.addClass(N.has_caption)),t(),l()}).error(F).attr("src",b).addClass(M.raw.image),(U.$image[0].complete||4===U.$image[0].readyState)&&U.$image.trigger(O.load)}function t(){var a=0;for(U.windowHeight=U.viewportHeight=b.windowHeight-U.mobilePaddingVertical-U.paddingVertical,U.windowWidth=U.viewportWidth=b.windowWidth-U.mobilePaddingHorizontal-U.paddingHorizontal,U.contentHeight=1/0,U.contentWidth=1/0,U.imageMarginTop=0,U.imageMarginLeft=0;U.contentHeight>U.viewportHeight&&2>a;)U.imageHeight=0===a?U.naturalHeight:U.$image.outerHeight(),U.imageWidth=0===a?U.naturalWidth:U.$image.outerWidth(),U.metaHeight=0===a?0:U.metaHeight,U.spacerHeight=0===a?0:U.spacerHeight,0===a&&(U.ratioHorizontal=U.imageHeight/U.imageWidth,U.ratioVertical=U.imageWidth/U.imageHeight,U.isWide=U.imageWidth>U.imageHeight),U.imageHeight<U.minHeight&&(U.minHeight=U.imageHeight),U.imageWidth<U.minWidth&&(U.minWidth=U.imageWidth),U.isMobile?(U.isTouch?(U.$controlBox.css({width:b.windowWidth}),U.spacerHeight=U.$controls.outerHeight(!0)):(U.$tools.css({width:b.windowWidth}),U.spacerHeight=U.$tools.outerHeight(!0)),U.contentHeight=U.viewportHeight,U.contentWidth=U.viewportWidth,u(),U.imageMarginTop=(U.contentHeight-U.targetImageHeight-U.spacerHeight)/2,U.imageMarginLeft=(U.contentWidth-U.targetImageWidth)/2):(0===a&&(U.viewportHeight-=U.margin+U.paddingVertical,U.viewportWidth-=U.margin+U.paddingHorizontal),U.viewportHeight-=U.metaHeight,u(),U.contentHeight=U.targetImageHeight,U.contentWidth=U.targetImageWidth),U.isMobile||U.isTouch||U.$meta.css({width:U.contentWidth}),U.$image.css({height:U.targetImageHeight,width:U.targetImageWidth,marginTop:U.imageMarginTop,marginLeft:U.imageMarginLeft}),U.isMobile||(U.metaHeight=U.$meta.outerHeight(!0),U.contentHeight+=U.metaHeight),a++}function u(){var a=U.isMobile?U.contentHeight-U.spacerHeight:U.viewportHeight,b=U.isMobile?U.contentWidth:U.viewportWidth;U.isWide?(U.targetImageWidth=b,U.targetImageHeight=U.targetImageWidth*U.ratioHorizontal,U.targetImageHeight>a&&(U.targetImageHeight=a,U.targetImageWidth=U.targetImageHeight*U.ratioVertical)):(U.targetImageHeight=a,U.targetImageWidth=U.targetImageHeight*U.ratioVertical,U.targetImageWidth>b&&(U.targetImageWidth=b,U.targetImageHeight=U.targetImageWidth*U.ratioHorizontal)),(U.targetImageWidth>U.imageWidth||U.targetImageHeight>U.imageHeight)&&(U.targetImageHeight=U.imageHeight,U.targetImageWidth=U.imageWidth),(U.targetImageWidth<U.minWidth||U.targetImageHeight<U.minHeight)&&(U.targetImageWidth<U.minWidth?(U.targetImageWidth=U.minWidth,U.targetImageHeight=U.targetImageWidth*U.ratioHorizontal):(U.targetImageHeight=U.minHeight,U.targetImageWidth=U.targetImageHeight*U.ratioVertical))}function v(b){var c=b.match(/(?:youtube\.com\/(?:[^\/]+\/.+\/|(?:v|e(?:mbed)?)\/|.*[?&]v=)|youtu\.be\/)([^"&?\/ ]{11})/i),d=b.match(/(?:www\.|player\.)?vimeo.com\/(?:channels\/(?:\w+\/)?|groups\/([^\/]*)\/videos\/|album\/(\d+)\/video\/|video\/|)(\d+)(?:$|\/|\?)/),e=b.split("?"),f=null!==c?"//www.youtube.com/embed/"+c[1]:"//player.vimeo.com/video/"+d[3];e.length>=2&&(f+="?"+e.slice(1)[0].trim()),U.$videoWrapper=a('<div class="'+M.raw.videoWrapper+'"></div>'),U.$video=a('<iframe class="'+M.raw.video+'" seamless="seamless"></iframe>'),U.$video.attr("src",f).addClass(M.raw.video).prependTo(U.$videoWrapper),U.$content.prepend(U.$videoWrapper),w(),l()}function w(){U.windowHeight=U.viewportHeight=b.windowHeight-U.mobilePaddingVertical-U.paddingVertical,U.windowWidth=U.viewportWidth=b.windowWidth-U.mobilePaddingHorizontal-U.paddingHorizontal,U.videoMarginTop=0,U.videoMarginLeft=0,U.isMobile?(U.isTouch?(U.$controlBox.css({width:b.windowWidth}),U.spacerHeight=U.$controls.outerHeight(!0)):(U.$tools.css({width:b.windowWidth}),U.spacerHeight=U.$tools.outerHeight(!0)),U.viewportHeight-=U.spacerHeight,U.targetVideoWidth=U.viewportWidth,U.targetVideoHeight=U.targetVideoWidth*U.videoRatio,U.targetVideoHeight>U.viewportHeight&&(U.targetVideoHeight=U.viewportHeight,U.targetVideoWidth=U.targetVideoHeight/U.videoRatio),U.videoMarginTop=(U.viewportHeight-U.targetVideoHeight)/2,U.videoMarginLeft=(U.viewportWidth-U.targetVideoWidth)/2):(U.viewportHeight=U.windowHeight-U.margin,U.viewportWidth=U.windowWidth-U.margin,U.targetVideoWidth=U.videoWidth>U.viewportWidth?U.viewportWidth:U.videoWidth,U.targetVideoWidth<U.minWidth&&(U.targetVideoWidth=U.minWidth),U.targetVideoHeight=U.targetVideoWidth*U.videoRatio,U.contentHeight=U.targetVideoHeight,U.contentWidth=U.targetVideoWidth),U.isMobile||U.isTouch||U.$meta.css({width:U.contentWidth}),U.$videoWrapper.css({height:U.targetVideoHeight,width:U.targetVideoWidth,marginTop:U.videoMarginTop,marginLeft:U.videoMarginLeft}),U.isMobile||(U.metaHeight=U.$meta.outerHeight(!0),U.contentHeight=U.targetVideoHeight+U.metaHeight)}function x(){var b="";U.gallery.index>0&&(b=U.gallery.$items.eq(U.gallery.index-1).attr("href"),I(b)||a('<img src="'+b+'">')),U.gallery.index<U.gallery.total&&(b=U.gallery.$items.eq(U.gallery.index+1).attr("href"),I(b)||a('<img src="'+b+'">'))}function y(b){P.killEvent(b);var c=a(b.currentTarget);U.isAnimating||c.hasClass(M.raw.control_disabled)||(U.isAnimating=!0,q(),U.gallery.index+=c.hasClass(M.raw.control_next)?1:-1,U.gallery.index>U.gallery.total&&(U.gallery.index=U.infinite?0:U.gallery.total),U.gallery.index<0&&(U.gallery.index=U.infinite?U.gallery.total:0),U.$lightbox.addClass(M.raw.animating),U.$container.fsTransition({property:"opacity"},function(){"undefined"!=typeof U.$image&&U.$image.remove(),"undefined"!=typeof U.$videoWrapper&&U.$videoWrapper.remove(),U.$el=U.gallery.$items.eq(U.gallery.index),U.$caption.html(U.formatter.call(U.$el,U)),U.$position.find(M.position_current).html(U.gallery.index+1);var a=U.$el.attr("href"),b=I(a);b?v(a):s(a),z()}),U.$lightbox.addClass(M.raw.loading))}function z(){U.$controls.removeClass(M.raw.control_disabled),U.infinite||(0===U.gallery.index&&U.$controls.filter(M.control_previous).addClass(N.control_disabled),U.gallery.index===U.gallery.total&&U.$controls.filter(M.control_next).addClass(N.control_disabled))}function A(a){!U.gallery.active||37!==a.keyCode&&39!==a.keyCode?27===a.keyCode&&U.$close.trigger(O.click):(P.killEvent(a),U.$controls.filter(37===a.keyCode?M.control_previous:M.control_next).trigger(O.click))}function B(b){var c=a(b).find("> :first-child").clone();D(c)}function C(b){b+=b.indexOf("?")>-1?"&"+U.requestKey+"=true":"?"+U.requestKey+"=true";var c=a('<iframe class="'+M.raw.iframe+'" src="'+b+'"></iframe>');D(c)}function D(a){U.$content.append(a),E(a),l()}function E(a){U.windowHeight=b.windowHeight-U.mobilePaddingVertical-U.paddingVertical,U.windowWidth=b.windowWidth-U.mobilePaddingHorizontal-U.paddingHorizontal,U.objectHeight=a.outerHeight(!0),U.objectWidth=a.outerWidth(!0),U.targetHeight=U.targetHeight||(U.$el?U.$el.data(K+"-height"):null),U.targetWidth=U.targetWidth||(U.$el?U.$el.data(K+"-width"):null),U.maxHeight=U.windowHeight<0?U.minHeight:U.windowHeight,U.isIframe=a.is("iframe"),U.objectMarginTop=0,U.objectMarginLeft=0,U.isMobile||(U.windowHeight-=U.margin,U.windowWidth-=U.margin),U.contentHeight=U.targetHeight?U.targetHeight:U.isIframe||U.isMobile?U.windowHeight:U.objectHeight,U.contentWidth=U.targetWidth?U.targetWidth:U.isIframe||U.isMobile?U.windowWidth:U.objectWidth,(U.isIframe||U.isObject)&&U.isMobile?(U.contentHeight=U.windowHeight,U.contentWidth=U.windowWidth):U.isObject&&(U.contentHeight=U.contentHeight>U.windowHeight?U.windowHeight:U.contentHeight,U.contentWidth=U.contentWidth>U.windowWidth?U.windowWidth:U.contentWidth)}function F(){var b=a('<div class="'+M.raw.error+'"><p>Error Loading Resource</p></div>');U.type="element",U.$tools.remove(),U.$image.off(O.namespace),D(b)}function G(a){U.captionOpen||U.$controls.filter("left"===a.directionX?M.control_next:M.control_previous).trigger(O.click)}function H(a){var b=a[0],c=new Image;return"undefined"!=typeof b.naturalHeight?{naturalHeight:b.naturalHeight,naturalWidth:b.naturalWidth}:"img"===b.tagName.toLowerCase()?(c.src=b.src,{naturalHeight:c.height,naturalWidth:c.width}):!1}function I(a){return a.indexOf("youtube.com")>-1||a.indexOf("youtu.be")>-1||a.indexOf("vimeo.com")>-1}var J=b.Plugin("lightbox",{widget:!0,defaults:{customClass:"",extensions:["jpg","sjpg","jpeg","png","gif"],fixed:!1,formatter:r,infinite:!1,labels:{close:"Close",count:"of",next:"Next",previous:"Previous",captionClosed:"View Caption",captionOpen:"Close Caption"},margin:50,minHeight:100,minWidth:100,mobile:!1,retina:!1,requestKey:"fs-lightbox",top:0,videoRatio:.5625,videoWidth:800},classes:["loading","animating","fixed","mobile","touch","inline","iframed","open","overlay","close","loading_icon","container","content","image","video","video_wrapper","tools","meta","controls","control","control_previous","control_next","control_disabled","position","position_current","position_total","caption_toggle","caption","caption_open","has_controls","has_caption","iframe","error","lock"],events:{open:"open",close:"close",swipe:"swipe"},methods:{_setup:d,_construct:f,_destruct:g,_resize:e,resize:j},utilities:{_initialize:h,close:k}}),K=J.namespace,L=J.defaults,M=J.classes,N=M.raw,O=J.events,P=J.functions,Q=b.window,R=b.$window,S=null,T=null,U=null}(jQuery,Formstone); |
|
0 | 4 |
\ No newline at end of file |
1 | 5 |
new file mode 100755 |
... | ... |
@@ -0,0 +1,3 @@ |
1 |
+/*! formstone v0.7.12 [mediaquery.js] 2015-08-12 | MIT License | formstone.it */ |
|
2 |
+ |
|
3 |
+!function(a,b){"use strict";function c(b){b=b||{};for(var c in t)t.hasOwnProperty(c)&&(l[c]=b[c]?a.merge(b[c],l[c]):l[c]);l=a.extend(l,b),l.minWidth.sort(p.sortDesc),l.maxWidth.sort(p.sortAsc),l.minHeight.sort(p.sortDesc),l.maxHeight.sort(p.sortAsc);for(var d in t)if(t.hasOwnProperty(d)){s[d]={};for(var e in l[d])if(l[d].hasOwnProperty(e)){var f=window.matchMedia("("+t[d]+": "+(l[d][e]===1/0?1e5:l[d][e])+l.unit+")");f.addListener(g),s[d][l[d][e]]=f}}g()}function d(a,b,c){var d=o.matchMedia(b),e=i(d.media);r[e]||(r[e]={mq:d,active:!0,enter:{},leave:{}},r[e].mq.addListener(h));for(var f in c)c.hasOwnProperty(f)&&r[e].hasOwnProperty(f)&&(r[e][f][a]=c[f]);h(r[e].mq)}function e(a,b){if(a)if(b){var c=i(b);r[c]&&(r[c].enter[a]&&delete r[c].enter[a],r[c].leave[a]&&delete r[c].leave[a])}else for(var d in r)r.hasOwnProperty(d)&&(r[d].enter[a]&&delete r[d].enter[a],r[d].leave[a]&&delete r[d].leave[a])}function f(){q={unit:l.unit};for(var a in t)if(t.hasOwnProperty(a))for(var b in s[a])if(s[a].hasOwnProperty(b)&&s[a][b].matches){var c="Infinity"===b?1/0:parseInt(b,10);a.indexOf("max")>-1?(!q[a]||c<q[a])&&(q[a]=c):(!q[a]||c>q[a])&&(q[a]=c)}}function g(){f(),n.trigger(m.mqChange,[q])}function h(a){var b=i(a.media),c=r[b],d=a.matches?m.enter:m.leave;if(c&&c.active||!c.active&&a.matches){for(var e in c[d])c[d].hasOwnProperty(e)&&c[d][e].apply(c.mq);c.active=!0}}function i(a){return a.replace(/[^a-z0-9\s]/gi,"").replace(/[_\s]/g,"").replace(/^\s+|\s+$/g,"")}function j(){return q}var k=b.Plugin("mediaquery",{utilities:{_initialize:c,state:j,bind:d,unbind:e},events:{mqChange:"mqchange"}}),l={minWidth:[0],maxWidth:[1/0],minHeight:[0],maxHeight:[1/0],unit:"px"},m=a.extend(k.events,{enter:"enter",leave:"leave"}),n=b.$window,o=n[0],p=k.functions,q=null,r=[],s={},t={minWidth:"min-width",maxWidth:"max-width",minHeight:"min-height",maxHeight:"max-height"}}(jQuery,Formstone); |
|
0 | 4 |
\ No newline at end of file |
1 | 5 |
new file mode 100755 |
... | ... |
@@ -0,0 +1,3 @@ |
1 |
+/*! formstone v0.7.12 [navigation.js] 2015-08-12 | MIT License | formstone.it */ |
|
2 |
+ |
|
3 |
+!function(a,b){"use strict";function c(){w=a("html, body")}function d(b){b.handleGuid=u.handle+b.guid,b.isToggle="toggle"===b.type,b.open=!1,b.isToggle&&(b.gravity="");var c=u.base,d=[c,b.type].join("-"),e=b.gravity?[d,b.gravity].join("-"):"",f=[b.rawGuid,b.customClass].join(" ");b.handle=this.data(s+"-handle"),b.content=this.data(s+"-content"),b.handleClasses=[u.handle,u.handle.replace(c,d),e?u.handle.replace(c,e):"",b.handleGuid,f].join(" "),b.navClasses=[u.nav.replace(c,d),e?u.nav.replace(c,e):"",f].join(" "),b.contentClasses=[u.content.replace(c,d),e?u.content.replace(c,e):"",f].join(" "),b.$nav=this.addClass(b.navClasses),b.$handle=a(b.handle).addClass(b.handleClasses),b.$content=a(b.content).addClass(b.contentClasses),b.$animate=a().add(b.$nav).add(b.$content),p(b),b.$handle.attr("data-swap-target",b.dotGuid).attr("data-swap-linked","."+b.handleGuid).attr("data-swap-group",u.base).on("activate.swap"+b.dotGuid,b,j).on("deactivate.swap"+b.dotGuid,b,k).on("enable.swap"+b.dotGuid,b,l).on("disable.swap"+b.dotGuid,b,m).fsSwap({maxWidth:b.maxWidth,classes:{target:b.dotGuid,enabled:t.enabled,active:t.open,raw:{target:b.rawGuid,enabled:u.enabled,active:u.open}}})}function e(a){a.$content.removeClass(a.contentClasses).off(v.namespace),a.$handle.removeAttr("data-swap-target").removeData("swap-target").removeAttr("data-swap-linked").removeData("swap-linked").removeClass(a.handleClasses).off(a.dotGuid).text(a.originalLabel).fsSwap("destroy"),q(a),o(a),this.removeClass(a.navClasses).off(v.namespace)}function f(a){a.$handle.fsSwap("activate")}function g(a){a.$handle.fsSwap("deactivate")}function h(a){a.$handle.fsSwap("enable")}function i(a){a.$handle.fsSwap("disable")}function j(a){if(!a.originalEvent){var b=a.data;b.open||(b.$el.trigger(v.open),b.$content.addClass(u.open).one(v.clickTouchStart,function(){g(b)}),b.label&&b.$handle.text(b.labels.open),n(b),b.open=!0)}}function k(a){if(!a.originalEvent){var b=a.data;b.open&&(b.$el.trigger(v.close),b.$content.removeClass(u.open).off(v.namespace),b.label&&b.$handle.text(b.labels.closed),o(b),b.open=!1)}}function l(a){var b=a.data;b.$content.addClass(u.enabled),setTimeout(function(){b.$animate.addClass(u.animated)},0),b.label&&b.$handle.text(b.labels.closed)}function m(a){var b=a.data;b.$content.removeClass(u.enabled,u.animated),b.$animate.removeClass(u.animated),q(b),o(b)}function n(a){a.isToggle||w.addClass(u.lock)}function o(a){a.isToggle||w.removeClass(u.lock)}function p(a){if(a.label)if(a.$handle.length>1){a.originalLabel=[];for(var b=0,c=a.$handle.length;c>b;b++)a.originalLabel[b]=a.$handle.eq(b).text()}else a.originalLabel=a.$handle.text()}function q(a){if(a.label)if(a.$handle.length>1)for(var b=0,c=a.$handle.length;c>b;b++)a.$handle.eq(b).text(a.originalLabel[b]);else a.$handle.text(a.originalLabel)}var r=b.Plugin("navigation",{widget:!0,defaults:{customClass:"",gravity:"left",label:!0,labels:{closed:"Menu",open:"Close"},maxWidth:"980px",type:"toggle"},classes:["handle","nav","content","animated","enabled","open","toggle","push","reveal","overlay","left","right","lock"],events:{tap:"tap",open:"open",close:"close"},methods:{_setup:c,_construct:d,_destruct:e,open:f,close:g,enable:h,disable:i}}),s=r.namespace,t=r.classes,u=t.raw,v=r.events,w=(r.functions,null)}(jQuery,Formstone); |
|
0 | 4 |
\ No newline at end of file |
1 | 5 |
new file mode 100755 |
... | ... |
@@ -0,0 +1,3 @@ |
1 |
+/*! formstone v0.7.12 [number.js] 2015-08-12 | MIT License | formstone.it */ |
|
2 |
+ |
|
3 |
+!function(a,b){"use strict";function c(){s=b.$body}function d(a){var b=parseFloat(this.attr("min")),c=parseFloat(this.attr("max"));a.min=b||0===b?b:!1,a.max=c||0===c?c:!1,a.step=parseFloat(this.attr("step"))||1,a.timer=null,a.digits=l(a.step),a.disabled=this.prop("disabled");var d="";d+='<button type="button" class="'+[p.arrow,p.up].join(" ")+'">'+a.labels.up+"</button>",d+='<button type="button" class="'+[p.arrow,p.down].join(" ")+'">'+a.labels.down+"</button>",this.wrap('<div class="'+[p.base,a.customClass,a.disabled?p.disabled:""].join(" ")+'"></div>').after(d),a.$container=this.parent(o.base),a.$arrows=a.$container.find(o.arrow),this.on(q.keyPress,o.element,a,h),a.$container.on([q.touchStart,q.mouseDown].join(" "),o.arrow,a,i)}function e(a){a.$arrows.remove(),this.unwrap().off(q.namespace)}function f(a){a.disabled&&(this.prop("disabled",!1),a.$container.removeClass(p.disabled),a.disabled=!1)}function g(a){a.disabled||(this.prop("disabled",!0),a.$container.addClass(p.disabled),a.disabled=!0)}function h(a){var b=a.data;(38===a.keyCode||40===a.keyCode)&&(a.preventDefault(),k(b,38===a.keyCode?b.step:-b.step))}function i(b){r.killEvent(b),j(b);var c=b.data;if(!c.disabled){var d=a(b.target).hasClass(p.up)?c.step:-c.step;c.timer=r.startTimer(c.timer,110,function(){k(c,d,!1)},!0),k(c,d),s.on([q.touchEnd,q.mouseUp].join(" "),c,j)}}function j(a){r.killEvent(a);var b=a.data;r.clearTimer(b.timer,!0),s.off(q.namespace)}function k(b,c){var d=parseFloat(b.$el.val()),e=c;"undefined"===a.type(d)||isNaN(d)?e=b.min!==!1?b.min:0:b.min!==!1&&d<b.min?e=b.min:e+=d;var f=(e-b.min)%b.step;0!==f&&(e-=f),b.min!==!1&&e<b.min&&(e=b.min),b.max!==!1&&e>b.max&&(e-=b.step),e!==d&&(e=m(e,b.digits),b.$el.val(e).trigger(q.raw.change))}function l(a){var b=String(a);return b.indexOf(".")>-1?b.length-b.indexOf(".")-1:0}function m(a,b){var c=Math.pow(10,b);return Math.round(a*c)/c}var n=b.Plugin("number",{widget:!0,defaults:{customClass:"",labels:{up:"Up",down:"Down"}},classes:["arrow","up","down","disabled"],methods:{_setup:c,_construct:d,_destruct:e,enable:f,disable:g},events:{tap:"tap"}}),o=n.classes,p=o.raw,q=n.events,r=n.functions,s=null}(jQuery,Formstone); |
|
0 | 4 |
\ No newline at end of file |
1 | 5 |
new file mode 100755 |
... | ... |
@@ -0,0 +1,3 @@ |
1 |
+/*! formstone v0.7.12 [pagination.js] 2015-08-12 | MIT License | formstone.it */ |
|
2 |
+ |
|
3 |
+!function(a,b){"use strict";function c(b){b.mq="(max-width:"+(b.maxWidth===1/0?"100000px":b.maxWidth)+")";var c="";c+='<button type="button" class="'+[m.control,m.control_previous].join(" ")+'">'+b.labels.previous+"</button>",c+='<button type="button" class="'+[m.control,m.control_next].join(" ")+'">'+b.labels.next+"</button>",c+='<div class="'+m.position+'">',c+='<span class="'+m.current+'">0</span>',c+=" "+b.labels.count+" ",c+='<span class="'+m.total+'">0</span>',c+="</div>",c+='<select class="'+m.select+'" tab-index="-1"></select>',this.addClass(m.base).wrapInner('<div class="'+m.pages+'"></div>').prepend(c),b.$controls=this.find(l.control),b.$pages=this.find(l.pages),b.$items=b.$pages.children().addClass(m.page),b.$position=this.find(l.position),b.$select=this.find(l.select),b.index=-1,b.total=b.$items.length-1;var d=b.$items.index(b.$items.filter(l.active));b.$items.eq(0).addClass(m.first).after('<span class="'+m.ellipsis+'">…</span>').end().eq(b.total).addClass(m.last).before('<span class="'+m.ellipsis+'">…</span>'),b.$ellipsis=b.$pages.find(l.ellipsis),j(b),this.on(n.clickTouchStart,l.page,b,g).on(n.clickTouchStart,l.control,b,e).on(n.clickTouchStart,l.position,b,h).on(n.change,l.select,f),a.fsMediaquery("bind",b.rawGuid,b.mq,{enter:function(){b.$el.addClass(m.mobile)},leave:function(){b.$el.removeClass(m.mobile)}}),i(b,d)}function d(b){a.fsMediaquery("unbind",b.rawGuid),b.$controls.remove(),b.$ellipsis.remove(),b.$select.remove(),b.$position.remove(),b.$items.removeClass([m.page,m.active,m.visible,m.first,m.last].join(" ")).unwrap(),this.removeClass(m.base).off(n.namespace)}function e(b){o.killEvent(b);var c=b.data,d=c.index+(a(b.currentTarget).hasClass(m.control_previous)?-1:1);d>=0&&c.$items.eq(d).trigger(n.raw.click)}function f(b){o.killEvent(b);var c=b.data,d=a(b.currentTarget),e=parseInt(d.val(),10);c.$items.eq(e).trigger(n.raw.click)}function g(b){o.killEvent(b);var c=b.data,d=c.$items.index(a(b.currentTarget));i(c,d)}function h(a){o.killEvent(a);var c=a.data;if(b.isMobile&&!b.isFirefoxMobile){var d=c.$select[0];if(window.document.createEvent){var e=window.document.createEvent("MouseEvents");e.initMouseEvent("mousedown",!1,!0,window,0,0,0,0,0,!1,!1,!1,!1,0,null),d.dispatchEvent(e)}else d.fireEvent&&d.fireEvent("onmousedown")}}function i(a,b){if(0>b&&(b=0),b>a.total&&(b=a.total),b!==a.index){a.index=b;var c=a.index-a.visible,d=a.index+(a.visible+1);0>c&&(c=0),d>a.total&&(d=a.total),a.$items.removeClass(m.visible).filter(l.active).removeClass(m.active).end().eq(a.index).addClass(m.active).end().slice(c,d).addClass(m.visible),a.$position.find(l.current).text(a.index+1).end().find(l.total).text(a.total+1),a.$select.val(a.index),a.$controls.removeClass(l.disabled),0===b&&a.$controls.filter(l.control_previous).addClass(m.disabled),b===a.total&&a.$controls.filter(l.control_next).addClass(m.disabled),a.$ellipsis.removeClass(m.visible),b>a.visible+1&&a.$ellipsis.eq(0).addClass(m.visible),b<a.total-a.visible-1&&a.$ellipsis.eq(1).addClass(m.visible),a.$el.trigger(n.update,[a.index])}}function j(a){for(var b="",c=0;c<=a.total;c++)b+='<option value="'+c+'"',c===a.index&&(b+='selected="selected"'),b+=">Page "+(c+1)+"</option>";a.$select.html(b)}var k=b.Plugin("pagination",{widget:!0,defaults:{ajax:!1,customClass:"",labels:{count:"of",next:"Next",previous:"Previous"},maxWidth:"740px",visible:2},classes:["pages","page","active","first","last","visible","ellipsis","control","control_previous","control_next","position","select","mobile","current","total"],events:{update:"update"},methods:{_construct:c,_destruct:d}}),l=k.classes,m=l.raw,n=k.events,o=k.functions}(jQuery,Formstone); |
|
0 | 4 |
\ No newline at end of file |
1 | 5 |
new file mode 100755 |
... | ... |
@@ -0,0 +1,3 @@ |
1 |
+/*! formstone v0.7.12 [range.js] 2015-08-12 | MIT License | formstone.it */ |
|
2 |
+ |
|
3 |
+!function(a,b){"use strict";function c(){v.iterate.call(w,i)}function d(){w=a(s.element)}function e(a){a.formatter||(a.formatter=q),a.min=parseFloat(this.attr("min"))||0,a.max=parseFloat(this.attr("max"))||100,a.step=parseFloat(this.attr("step"))||1,a.digits=a.step.toString().length-a.step.toString().indexOf("."),a.value=parseFloat(this.val())||a.min+(a.max-a.min)/2;var b="";a.disbaled=this.is(":disabled"),a.vertical="vertical"===this.attr("orient")||a.vertical,b+='<div class="'+t.track+'">',b+='<div class="'+t.handle+'">',b+='<span class="'+t.marker+'"></span>',b+="</div>",b+="</div>";var c=[t.base,a.customClass,a.vertical?t.vertical:"",a.labels?t.labels:"",a.disabled?t.disabled:""];if(this.addClass(t.element).wrap('<div class="'+c.join(" ")+'"></div>').after(b),a.$container=this.parents(s.base),a.$track=a.$container.find(s.track),a.$handle=a.$container.find(s.handle),a.$output=a.$container.find(s.output),a.labels){var e='<span class="'+[t.label,t.label_max].join(" ")+'">'+a.formatter.call(this,a.labels.max?a.labels.max:a.max)+"</span>",f='<span class="'+[t.label,t.label_min].join(" ")+'">'+a.formatter.call(this,a.labels.max?a.labels.min:a.min)+"</span>";a.$container.prepend(a.vertical?e:f).append(a.vertical?f:e)}a.$labels=a.$container.find(s.label),this.on(u.focus,a,m).on(u.blur,a,n).on(u.change,a,p),a.$container.fsTouch({pan:!0,axis:a.vertical?"y":"x"}).on(u.panStart,a,j).on(u.pan,a,k).on(u.panEnd,a,l),d(),i.call(this,a)}function f(a){a.$container.off(u.namespace).fsTouch("destroy"),a.$track.remove(),a.$labels.remove(),this.unwrap().removeClass(t.element).off(u.namespace),d()}function g(a){a.disabled&&(this.prop("disabled",!1),a.$container.removeClass(t.disabled),a.disabled=!1)}function h(a){a.disabled||(this.prop("disabled",!0),a.$container.addClass(t.disabled),a.disabled=!0)}function i(a){a.stepCount=(a.max-a.min)/a.step,a.offset=a.$track.offset(),a.vertical?(a.trackHeight=a.$track.outerHeight(),a.handleHeight=a.$handle.outerHeight(),a.increment=a.trackHeight/a.stepCount):(a.trackWidth=a.$track.outerWidth(),a.handleWidth=a.$handle.outerWidth(),a.increment=a.trackWidth/a.stepCount);var b=(a.$el.val()-a.min)/(a.max-a.min);o(a,b,!0)}function j(a){v.killEvent(a);var b=a.data;b.disbaled||(k(a),b.$container.addClass(t.focus))}function k(a){v.killEvent();var b=a.data,c=0;c=b.vertical?1-(a.pageY-b.offset.top)/b.trackHeight:(a.pageX-b.offset.left)/b.trackWidth,o(b,c)}function l(a){v.killEvent(a);var b=a.data;b.$container.removeClass(t.focus)}function m(a){a.data.$container.addClass("focus")}function n(a){a.data.$container.removeClass("focus")}function o(a,b,c){a.increment>1&&(b=a.vertical?Math.round(b*a.stepCount)*a.increment/a.trackHeight:Math.round(b*a.stepCount)*a.increment/a.trackWidth),0>b&&(b=0),b>1&&(b=1);var d=(a.min-a.max)*b;d=-parseFloat(d.toFixed(a.digits)),a.$handle.css(a.vertical?"bottom":"left",100*b+"%"),d+=a.min,d!==a.value&&d&&c!==!0&&(a.$el.val(d).trigger(u.change,[!0]),a.value=d)}function p(a,b){var c=a.data;if(!b&&!c.disabled){var d=(c.$el.val()-c.min)/(c.max-c.min);o(c,d)}}function q(a){var b=a.toString().split(".");return b[0]=b[0].replace(/\B(?=(\d{3})+(?!\d))/g,","),b.join(".")}var r=b.Plugin("range",{widget:!0,defaults:{customClass:"",formatter:!1,labels:{max:!1,min:!1},vertical:!1},classes:["track","handle","marker","labels","label","label_min","label_max","vertical","focus","disabled"],methods:{_construct:e,_destruct:f,_resize:c,enable:g,disable:h,resize:i},events:{panStart:"panstart",pan:"pan",panEnd:"panend"}}),s=r.classes,t=s.raw,u=r.events,v=r.functions,w=[]}(jQuery,Formstone); |
|
0 | 4 |
\ No newline at end of file |
1 | 5 |
new file mode 100755 |
... | ... |
@@ -0,0 +1,3 @@ |
1 |
+/*! formstone v0.7.12 [scrollbar.js] 2015-08-12 | MIT License | formstone.it */ |
|
2 |
+ |
|
3 |
+!function(a,b){"use strict";function c(){r=b.$body}function d(){w.iterate.call(y,i)}function e(){y=a(t.base)}function f(a){var b="";b+='<div class="'+u.bar+'">',b+='<div class="'+u.track+'">',b+='<span class="'+u.handle+'"></span>',b+="</div></div>",a.paddingRight=parseInt(this.css("padding-right"),10),a.paddingBottom=parseInt(this.css("padding-bottom"),10),this.addClass([u.base,a.customClass,a.horizontal?u.horizontal:""].join(" ")).wrapInner('<div class="'+u.content+'" />').prepend(b),a.$content=this.find(t.content),a.$bar=this.find(t.bar),a.$track=this.find(t.track),a.$handle=this.find(t.handle),a.trackMargin=parseInt(a.trackMargin,10),a.$content.on(v.scroll,a,j),this.on(v.touchMouseDown,t.track,a,l).on(v.touchMouseDown,t.handle,a,m),i(a),e()}function g(a){a.$bar.remove(),a.$content.off(v.namespace).contents().unwrap(),this.removeClass([u.base,u.active,a.customClass].join(" ")).off(v.namespace)}function h(b,c,d){var e=d||b.duration,f={};if("number"!==a.type(c)){var g=a(c);if(g.length>0){var h=g.position();c=b.horizontal?h.left+b.$content.scrollLeft():h.top+b.$content.scrollTop()}else c=b.$content.scrollTop()}f[b.horizontal?"scrollLeft":"scrollTop"]=c,b.$content.stop().animate(f,e)}function i(a){a.$el.addClass(u.isSetup);var b={},c={},d={},e=0,f=!0;if(a.horizontal){a.barHeight=a.$content[0].offsetHeight-a.$content[0].clientHeight,a.frameWidth=a.$content.outerWidth(),a.trackWidth=a.frameWidth-2*a.trackMargin,a.scrollWidth=a.$content[0].scrollWidth,a.ratio=a.trackWidth/a.scrollWidth,a.trackRatio=a.trackWidth/a.scrollWidth,a.handleWidth=a.handleSize>0?a.handleSize:a.trackWidth*a.trackRatio,a.scrollRatio=(a.scrollWidth-a.frameWidth)/(a.trackWidth-a.handleWidth),a.handleBounds={left:0,right:a.trackWidth-a.handleWidth},a.$content.css({paddingBottom:a.barHeight+a.paddingBottom});var g=a.$content.scrollLeft();e=g*a.ratio,f=a.scrollWidth<=a.frameWidth,b={width:a.frameWidth},c={width:a.trackWidth,marginLeft:a.trackMargin,marginRight:a.trackMargin},d={width:a.handleWidth}}else{a.barWidth=a.$content[0].offsetWidth-a.$content[0].clientWidth,a.frameHeight=a.$content.outerHeight(),a.trackHeight=a.frameHeight-2*a.trackMargin,a.scrollHeight=a.$content[0].scrollHeight,a.ratio=a.trackHeight/a.scrollHeight,a.trackRatio=a.trackHeight/a.scrollHeight,a.handleHeight=a.handleSize>0?a.handleSize:a.trackHeight*a.trackRatio,a.scrollRatio=(a.scrollHeight-a.frameHeight)/(a.trackHeight-a.handleHeight),a.handleBounds={top:0,bottom:a.trackHeight-a.handleHeight};var h=a.$content.scrollTop();e=h*a.ratio,f=a.scrollHeight<=a.frameHeight,b={height:a.frameHeight},c={height:a.trackHeight,marginBottom:a.trackMargin,marginTop:a.trackMargin},d={height:a.handleHeight}}f?a.$el.removeClass(u.active):a.$el.addClass(u.active),a.$bar.css(b),a.$track.css(c),a.$handle.css(d),q(a,e),a.$el.removeClass(u.setup)}function j(a){w.killEvent(a);var b=a.data,c={};if(b.horizontal){var d=b.$content.scrollLeft();0>d&&(d=0),b.handleLeft=d/b.scrollRatio,b.handleLeft>b.handleBounds.right&&(b.handleLeft=b.handleBounds.right),c={left:b.handleLeft}}else{var e=b.$content.scrollTop();0>e&&(e=0),b.handleTop=e/b.scrollRatio,b.handleTop>b.handleBounds.bottom&&(b.handleTop=b.handleBounds.bottom),c={top:b.handleTop}}b.$handle.css(c)}function k(b){var c=b.originalEvent,d="undefined"!==a.type(c.targetTouches)?c.targetTouches[0]:null;return{pageX:d?d.pageX:b.clientX,pageY:d?d.pageY:b.clientY}}function l(a){w.killEvent(a);var b=a.data,c=k(a),d=b.$track.offset();b.horizontal?(b.pointerStart=c.pageX,b.handleLeft=c.pageX-d.left+x.scrollLeft()-b.handleWidth/2,q(b,b.handleLeft)):(b.pointerStart=c.pageY,b.handleTop=c.pageY-d.top+x.scrollTop()-b.handleHeight/2,q(b,b.handleTop)),n(b)}function m(a){w.killEvent(a);var b=a.data,c=k(a);b.horizontal?(b.pointerStart=c.pageX,b.handleLeft=parseInt(b.$handle.css("left"),10)):(b.pointerStart=c.pageY,b.handleTop=parseInt(b.$handle.css("top"),10)),n(b)}function n(a){a.$content.off(v.namespace),r.on(v.touchMouseMove,a,o).on(v.touchMouseUp,a,p)}function o(a){w.killEvent(a);var b=a.data,c=k(a),d=0;d=b.horizontal?b.handleLeft-(b.pointerStart-c.pageX):b.handleTop-(b.pointerStart-c.pageY),q(b,d)}function p(a){w.killEvent(a),a.data.$content.on(v.scroll,a.data,j),r.off(v.namespace)}function q(a,b){var c={};a.horizontal?(b<a.handleBounds.left&&(b=a.handleBounds.left),b>a.handleBounds.right&&(b=a.handleBounds.right),c={left:b},a.$content.scrollLeft(Math.round(b*a.scrollRatio))):(b<a.handleBounds.top&&(b=a.handleBounds.top),b>a.handleBounds.bottom&&(b=a.handleBounds.bottom),c={top:b},a.$content.scrollTop(Math.round(b*a.scrollRatio))),a.$handle.css(c)}var r,s=b.Plugin("scrollbar",{widget:!0,defaults:{customClass:"",duration:0,handleSize:0,horizontal:!1,trackMargin:0},classes:["content","bar","track","handle","horizontal","setup","active"],methods:{_setup:c,_construct:f,_destruct:g,_resize:d,scroll:h,resize:i}}),t=s.classes,u=t.raw,v=s.events,w=s.functions,x=b.$window,y=[];v.touchMouseDown=[v.touchStart,v.mouseDown].join(" "),v.touchMouseMove=[v.touchMove,v.mouseMove].join(" "),v.touchMouseUp=[v.touchEnd,v.mouseUp].join(" ")}(jQuery,Formstone); |
|
0 | 4 |
\ No newline at end of file |
1 | 5 |
new file mode 100755 |
... | ... |
@@ -0,0 +1,3 @@ |
1 |
+/*! formstone v0.7.12 [swap.js] 2015-08-12 | MIT License | formstone.it */ |
|
2 |
+ |
|
3 |
+!function(a,b){"use strict";function c(b){b.enabled=!1,b.active=!1,b.classes=a.extend(!0,{},l,b.classes),b.target=this.data(k+"-target"),b.$target=a(b.target).addClass(b.classes.raw.target),b.linked=this.data(k+"-linked"),b.mq="(max-width:"+(b.maxWidth===1/0?"100000px":b.maxWidth)+")";var c=this.data(k+"-group");b.group=c?"[data-"+k+'-group="'+c+'"]':!1,!b.collapse&&b.group&&a(b.group).eq(0).attr("data-"+k+"-active","true"),b.onEnable=this.data(k+"-active"),b.$swaps=a().add(this).add(b.$target),this.fsTouch({tap:!0}).on(m.tap+b.dotGuid,b,i),a.fsMediaquery("bind",b.rawGuid,b.mq,{enter:function(){g.call(b.$el,b,!0)},leave:function(){h.call(b.$el,b,!0)}})}function d(b){a.fsMediaquery("unbind",b.rawGuid),b.$swaps.removeClass([b.classes.raw.enabled,b.classes.raw.active].join(" ")).off(m.namespace),this.fsTouch("destroy")}function e(b,c){if(b.enabled&&!b.active){b.group&&!c&&a(b.group).not(b.$el)[j.namespaceClean]("deactivate");var d=b.group?a(b.group).index(b.$el):null;b.$swaps.addClass(b.classes.raw.active),c||(b.linked&&a(b.linked).not(b.$el).swap("activate",!0),this.trigger(m.activate,[d])),b.active=!0}}function f(b,c){b.enabled&&b.active&&(b.$swaps.removeClass(b.classes.raw.active),c||(b.linked&&a(b.linked).not(b.$el).swap("deactivate",!0),this.trigger(m.deactivate)),b.active=!1)}function g(b,c){b.enabled||(b.enabled=!0,b.$swaps.addClass(b.classes.raw.enabled),c||a(b.linked).not(b.$el).swap("enable"),this.trigger(m.enable),b.onEnable?(b.active=!0,b.$swaps.addClass(b.classes.raw.active)):(b.active=!0,f.call(this,b)))}function h(b,c){b.enabled&&(b.enabled=!1,b.$swaps.removeClass([b.classes.raw.enabled,b.classes.raw.active].join(" ")),c||a(b.linked).not(b.$el).swap("disable"),this.trigger(m.disable))}function i(a){n.killEvent(a);var b=a.data;b.active&&b.collapse?f.call(b.$el,b):e.call(b.$el,b)}var j=b.Plugin("swap",{widget:!0,defaults:{collapse:!0,maxWidth:1/0},classes:["target","enabled","active"],events:{tap:"tap",activate:"activate",deactivate:"deactivate",enable:"enable",disable:"disable"},methods:{_construct:c,_destruct:d,activate:e,deactivate:f,enable:g,disable:h}}),k=j.namespace,l=j.classes,m=j.events,n=j.functions}(jQuery,Formstone); |
|
0 | 4 |
\ No newline at end of file |
1 | 5 |
new file mode 100755 |
... | ... |
@@ -0,0 +1,3 @@ |
1 |
+/*! formstone v0.7.12 [tabs.js] 2015-08-12 | MIT License | formstone.it */ |
|
2 |
+ |
|
3 |
+!function(a,b){"use strict";function c(b){b.mq="(max-width:"+(b.mobileMaxWidth===1/0?"100000px":b.mobileMaxWidth)+")",b.content=this.attr("href"),b.group=this.data(p+"-group"),b.tabClasses=[r.tab,b.rawGuid].join(" "),b.mobileTabClasses=[r.tab,r.tab_mobile,b.rawGuid].join(" "),b.contentClasses=[r.content,b.rawGuid].join(" "),b.$mobileTab=a('<button type="button" class="'+b.mobileTabClasses+'">'+this.text()+"</button>"),b.$content=a(b.content).addClass(b.contentClasses),b.$content.before(b.$mobileTab),this.attr("data-swap-target",b.content).attr("data-swap-group",b.group).addClass(b.tabClasses).on("activate.swap"+b.dotGuid,b,h).on("deactivate.swap"+b.dotGuid,b,i).on("enable.swap"+b.dotGuid,b,j).on("disable.swap"+b.dotGuid,b,k).fsSwap({maxWidth:b.maxWidth,classes:{target:b.dotGuid,enabled:q.enabled,active:q.active,raw:{target:b.rawGuid,enabled:r.enabled,active:r.active}},collapse:!1}),b.$mobileTab.fsTouch({tap:!0}).on("tap"+b.dotGuid,b,l),a.fsMediaquery("bind",b.rawGuid,b.mq,{enter:function(){m.call(b.$el,b)},leave:function(){n.call(b.$el,b)}})}function d(b){a.fsMediaquery("unbind",b.rawGuid),b.$mobileTab.off(s.namespace).fsTouch("destroy").remove(),b.$content.removeClass(r.content),this.removeAttr("data-swap-target").removeData("data-swap-target").removeAttr("data-swap-group").removeData("data-swap-group").removeClass(r.tab).off(s.namespace).fsSwap("destroy")}function e(){this.fsSwap("activate")}function f(){this.fsSwap("enable")}function g(){this.fsSwap("disable")}function h(a){if(!a.originalEvent){var b=a.data,c=0;b.$el.trigger(s.update,[c]),b.$mobileTab.addClass(r.active),b.$content.addClass(r.active)}}function i(a){if(!a.originalEvent){var b=a.data;b.$mobileTab.removeClass(r.active),b.$content.removeClass(r.active)}}function j(a){var b=a.data;b.$mobileTab.addClass(r.enabled),b.$content.addClass(r.enabled)}function k(a){var b=a.data;b.$mobileTab.removeClass(r.enabled),b.$content.removeClass(r.enabled)}function l(a){a.data.$el.fsSwap("activate")}function m(a){a.$el.addClass(r.mobile),a.$mobileTab.addClass(r.mobile)}function n(a){a.$el.removeClass(r.mobile),a.$mobileTab.removeClass(r.mobile)}{var o=b.Plugin("tabs",{widget:!0,defaults:{customClass:"",maxWidth:1/0,mobileMaxWidth:"740px",vertical:!1},classes:["tab","tab_mobile","mobile","content","enabled","active"],events:{tap:"tap",update:"update"},methods:{_construct:c,_destruct:d,activate:e,enable:f,disable:g}}),p=o.namespace,q=o.classes,r=q.raw,s=o.events;o.functions}}(jQuery,Formstone); |
|
0 | 4 |
\ No newline at end of file |
1 | 5 |
new file mode 100755 |
... | ... |
@@ -0,0 +1,3 @@ |
1 |
+/*! formstone v0.7.12 [tooltip.js] 2015-08-12 | MIT License | formstone.it */ |
|
2 |
+ |
|
3 |
+!function(a,b){"use strict";function c(a){this.on(o.mouseEnter,a,e)}function d(){j(),this.off(o.namespace)}function e(a){j();var b=a.data;b.left=a.pageX,b.top=a.pageY,h(b)}function f(a){var b=a.data;p.clearTimer(b.timer),j()}function g(a){i(a.pageX,a.pageY)}function h(c){j();var d="";d+='<div class="',d+=[n.base,n[c.direction],c.customClass].join(" "),d+='">',d+='<div class="'+n.content+'">',d+=c.formatter.call(c.$el,c),d+='<span class="'+n.caret+'"></span>',d+="</div>",d+="</div>",q={$tooltip:a(d),$el:c.$el},b.$body.append(q.$tooltip);var e=q.$tooltip.find(m.content),h=q.$tooltip.find(m.caret),k=c.$el.offset(),l=c.$el.outerHeight(),r=c.$el.outerWidth(),s=0,t=0,u=0,v=0,w=!1,x=!1,y=h.outerHeight(!0),z=h.outerWidth(!0),A=e.outerHeight(!0),B=e.outerWidth(!0);"right"===c.direction||"left"===c.direction?(x=(A-y)/2,v=-A/2,"right"===c.direction?u=c.margin:"left"===c.direction&&(u=-(B+c.margin))):(w=(B-z)/2,u=-B/2,"bottom"===c.direction?v=c.margin:"top"===c.direction&&(v=-(A+c.margin))),e.css({top:v,left:u}),h.css({top:x,left:w}),c.follow?c.$el.on(o.mouseMove,c,g):(c.match?"right"===c.direction||"left"===c.direction?(t=c.top,"right"===c.direction?s=k.left+r:"left"===c.direction&&(s=k.left)):(s=c.left,"bottom"===c.direction?t=k.top+l:"top"===c.direction&&(t=k.top)):"right"===c.direction||"left"===c.direction?(t=k.top+l/2,"right"===c.direction?s=k.left+r:"left"===c.direction&&(s=k.left)):(s=k.left+r/2,"bottom"===c.direction?t=k.top+l:"top"===c.direction&&(t=k.top)),i(s,t)),c.timer=p.startTimer(c.timer,c.delay,function(){q.$tooltip.addClass(n.visible)}),c.$el.one(o.mouseLeave,c,f)}function i(a,b){q&&q.$tooltip.css({left:a,top:b})}function j(){q&&(q.$el.off([o.mouseMove,o.mouseLeave].join(" ")),q.$tooltip.remove(),q=null)}function k(){return this.data("title")}var l=b.Plugin("tooltip",{widget:!0,defaults:{customClass:"",delay:0,direction:"top",follow:!1,formatter:k,margin:15,match:!1},classes:["content","caret","visible","top","bottom","right","left"],methods:{_construct:c,_destruct:d}}),m=l.classes,n=m.raw,o=l.events,p=l.functions,q=null}(jQuery,Formstone); |
|
0 | 4 |
\ No newline at end of file |
1 | 5 |
new file mode 100755 |
... | ... |
@@ -0,0 +1,3 @@ |
1 |
+/*! formstone v0.7.12 [touch.js] 2015-08-12 | MIT License | formstone.it */ |
|
2 |
+ |
|
3 |
+!function(a,b){"use strict";function c(a){a.touches=[],a.touching=!1,this.on(r.dragStart,s.killEvent),a.tap?(a.pan=!1,a.scale=!1,a.swipe=!1,b.support.touch?this.on([r.touchStart,r.pointerDown].join(" "),a,f):this.on(r.click,a,k)):(a.pan||a.swipe||a.scale)&&(a.tap=!1,a.swipe&&(a.pan=!0),a.scale&&(a.axis=!1),a.axis?(a.axisX="x"===a.axis,a.axisY="y"===a.axis):o(this,"none"),this.on([r.touchStart,r.pointerDown].join(" "),a,e),a.pan&&!b.support.touch&&this.on(r.mouseDown,a,f))}function d(){this.off(r.namespace),o(this,"")}function e(a){a.preventManipulation&&a.preventManipulation();var b=a.data,c=a.originalEvent;if(c.type.match(/(up|end)$/i))return void j(a);if(c.pointerId){var d=!1;for(var e in b.touches)b.touches[e].id===c.pointerId&&(d=!0,b.touches[e].pageX=c.clientX,b.touches[e].pageY=c.clientY);d||b.touches.push({id:c.pointerId,pageX:c.clientX,pageY:c.clientY})}else b.touches=c.touches;c.type.match(/(down|start)$/i)?f(a):c.type.match(/move$/i)&&g(a)}function f(b){var c=b.data,d="undefined"!==a.type(c.touches)?c.touches[0]:null;if(c.touching||(c.startE=b.originalEvent,c.startX=d?d.pageX:b.pageX,c.startY=d?d.pageY:b.pageY,c.startT=(new Date).getTime(),c.scaleD=1,c.passed=!1),c.tap)c.clicked=!1,c.$el.on([r.touchMove,r.pointerMove].join(" "),c,e).on([r.touchEnd,r.touchCancel,r.pointerUp,r.pointerCancel].join(" "),c,e);else if(c.pan||c.scale){c.$links&&c.$links.off(r.click);var f=l(c.scale?r.scaleStart:r.panStart,b,c.startX,c.startY,c.scaleD,0,0,"","");if(c.scale&&c.touches&&c.touches.length>=2){var h=c.touches;c.pinch={startX:m(h[0].pageX,h[1].pageX),startY:m(h[0].pageY,h[1].pageY),startD:n(h[1].pageX-h[0].pageX,h[1].pageY-h[0].pageY)},f.pageX=c.startX=c.pinch.startX,f.pageY=c.startY=c.pinch.startY}c.touching||(c.touching=!0,c.pan&&t.on(r.mouseMove,c,g).on(r.mouseUp,c,j),t.on([r.touchMove,r.touchEnd,r.touchCancel,r.pointerMove,r.pointerUp,r.pointerCancel].join(" "),c,e),c.$el.trigger(f))}}function g(b){var c=b.data,d="undefined"!==a.type(c.touches)?c.touches[0]:null,e=d?d.pageX:b.pageX,f=d?d.pageY:b.pageY,g=e-c.startX,h=f-c.startY,i=g>0?"right":"left",k=h>0?"down":"up",o=Math.abs(g)>u,p=Math.abs(h)>u;if(c.tap)(o||p)&&c.$el.off([r.touchMove,r.touchEnd,r.touchCancel,r.pointerMove,r.pointerUp,r.pointerCancel].join(" "));else if(c.pan||c.scale)if(!c.passed&&c.axis&&(c.axisX&&p||c.axisY&&o))j(b);else{!c.passed&&(!c.axis||c.axis&&c.axisX&&o||c.axisY&&p)&&(c.passed=!0),c.passed&&(s.killEvent(b),s.killEvent(c.startE));var q=!0,t=l(c.scale?r.scale:r.pan,b,e,f,c.scaleD,g,h,i,k);if(c.scale)if(c.touches&&c.touches.length>=2){var v=c.touches;c.pinch.endX=m(v[0].pageX,v[1].pageX),c.pinch.endY=m(v[0].pageY,v[1].pageY),c.pinch.endD=n(v[1].pageX-v[0].pageX,v[1].pageY-v[0].pageY),c.scaleD=c.pinch.endD/c.pinch.startD,t.pageX=c.pinch.endX,t.pageY=c.pinch.endY,t.scale=c.scaleD,t.deltaX=c.pinch.endX-c.pinch.startX,t.deltaY=c.pinch.endY-c.pinch.startY}else c.pan||(q=!1);q&&c.$el.trigger(t)}}function h(b,c){b.on(r.click,c,i);var d=a._data(b[0],"events").click;d.unshift(d.pop())}function i(a){s.killEvent(a,!0),a.data.$links.off(r.click)}function j(b){var c=b.data;if(c.tap)c.$el.off([r.touchMove,r.touchEnd,r.touchCancel,r.pointerMove,r.pointerUp,r.pointerCancel,r.mouseMove,r.mouseUp].join(" ")),c.startE.preventDefault(),k(b);else if(c.pan||c.scale){var d="undefined"!==a.type(c.touches)?c.touches[0]:null,e=d?d.pageX:b.pageX,f=d?d.pageY:b.pageY,g=e-c.startX,i=f-c.startY,j=(new Date).getTime(),m=c.scale?r.scaleEnd:r.panEnd,n=g>0?"right":"left",o=i>0?"down":"up",p=Math.abs(g)>1,q=Math.abs(i)>1;if(c.swipe&&Math.abs(g)>u&&j-c.startT<v&&(m=r.swipe),c.axis&&(c.axisX&&q||c.axisY&&p)||p||q){c.$links=c.$el.find("a");for(var s=0,w=c.$links.length;w>s;s++)h(c.$links.eq(s),c)}var x=l(m,b,e,f,c.scaleD,g,i,n,o);t.off([r.touchMove,r.touchEnd,r.touchCancel,r.mouseMove,r.mouseUp,r.pointerMove,r.pointerUp,r.pointerCancel].join(" ")),c.$el.trigger(x),c.touches=[],c.scale}c.touching=!1}function k(a){s.killEvent(a);var b=a.data;if(!b.clicked){"click"!==a.type&&(b.clicked=!0);var c=b.startE?b.startX:a.pageX,d=b.startE?b.startY:a.pageY,e=l(r.tap,a.originalEvent,c,d,1,0,0);b.$el.trigger(e)}}function l(b,c,d,e,f,g,h,i,j){return a.Event(b,{originalEvent:c,bubbles:!0,pageX:d,pageY:e,scale:f,deltaX:g,deltaY:h,directionX:i,directionY:j})}function m(a,b){return(a+b)/2}function n(a,b){return Math.sqrt(a*a+b*b)}function o(a,b){a.css({"-ms-touch-action":b,"touch-action":b})}var p=!b.window.PointerEvent,q=b.Plugin("touch",{widget:!0,defaults:{axis:!1,pan:!1,scale:!1,swipe:!1,tap:!1},methods:{_construct:c,_destruct:d},events:{pointerDown:p?"MSPointerDown":"pointerdown",pointerUp:p?"MSPointerUp":"pointerup",pointerMove:p?"MSPointerMove":"pointermove",pointerCancel:p?"MSPointerCancel":"pointercancel"}}),r=q.events,s=q.functions,t=b.$window,u=10,v=50;r.tap="tap",r.pan="pan",r.panStart="panstart",r.panEnd="panend",r.scale="scale",r.scaleStart="scalestart",r.scaleEnd="scaleend",r.swipe="swipe"}(jQuery,Formstone); |
|
0 | 4 |
\ No newline at end of file |
1 | 5 |
new file mode 100755 |
... | ... |
@@ -0,0 +1,3 @@ |
1 |
+/*! formstone v0.7.12 [transition.js] 2015-08-12 | MIT License | formstone.it */ |
|
2 |
+ |
|
3 |
+!function(a,b){"use strict";function c(a,c){if(c){a.$target=this.find(a.target),a.$check=a.target?a.$target:this,a.callback=c,a.styles=h(a.$check),a.timer=null;var d=a.$check.css(b.transition+"-duration"),f=parseFloat(d);b.support.transition&&d&&f?this.on(k.transitionEnd,a,e):a.timer=l.startTimer(a.timer,50,function(){g(a)},!0)}}function d(a){l.clearTimer(a.timer,!0),this.off(k.namespace)}function e(b){b.stopPropagation(),b.preventDefault();var c=b.data,d=b.originalEvent,e=c.target?c.$target:c.$el;c.property&&d.propertyName!==c.property||!a(d.target).is(e)||f(c)}function f(a){a.always||a.$el[j.namespaceClean]("destroy"),a.callback.apply(a.$el)}function g(a){var b=h(a.$check);i(a.styles,b)||f(a),a.styles=b}function h(b){var c,d,e,f={};if(b instanceof a&&(b=b[0]),m.getComputedStyle){c=m.getComputedStyle(b,null);for(var g=0,h=c.length;h>g;g++)d=c[g],e=c.getPropertyValue(d),f[d]=e}else if(b.currentStyle){c=b.currentStyle;for(d in c)c[d]&&(f[d]=c[d])}return f}function i(b,c){if(a.type(b)!==a.type(c))return!1;for(var d in b)if(!b.hasOwnProperty(d)||!c.hasOwnProperty(d)||b[d]!==c[d])return!1;return!0}var j=b.Plugin("transition",{widget:!0,defaults:{always:!1,property:null,target:null},methods:{_construct:c,_destruct:d,resolve:f}}),k=j.events,l=j.functions,m=b.window}(jQuery,Formstone); |
|
0 | 4 |
\ No newline at end of file |
1 | 5 |
new file mode 100755 |
... | ... |
@@ -0,0 +1,3 @@ |
1 |
+/*! formstone v0.7.12 [upload.js] 2015-08-12 | MIT License | formstone.it */ |
|
2 |
+ |
|
3 |
+!function(a,b){"use strict";function c(a){if(b.support.file){var c="";c+='<div class="'+p.target+'">',c+=a.label,c+="</div>",c+='<input class="'+p.input+'" type="file"',a.maxQueue>1&&(c+=" "+p.multiple),c+=">",this.addClass(p.base).append(c),a.$input=this.find(o.input),a.queue=[],a.total=0,a.uploading=!1,this.on(q.click,o.target,a,e).on(q.dragEnter,a,g).on(q.dragOver,a,h).on(q.dragLeave,a,i).on(q.drop,o.target,a,j),a.$input.on(q.change,a,f)}}function d(a){b.support.file&&(a.$input.off(q.namespace),this.off([q.click,q.dragEnter,q.dragOver,q.dragLeave,q.drop].join(" ")).removeClass(p.base).html(""))}function e(a){a.stopPropagation(),a.preventDefault();var b=a.data;b.$input.trigger(q.click)}function f(a){a.stopPropagation(),a.preventDefault();var b=a.data,c=b.$input[0].files;c.length&&k(b,c)}function g(a){a.stopPropagation(),a.preventDefault();var b=a.data;b.$el.addClass(p.dropping)}function h(a){a.stopPropagation(),a.preventDefault();var b=a.data;b.$el.addClass(p.dropping)}function i(a){a.stopPropagation(),a.preventDefault();var b=a.data;b.$el.removeClass(p.dropping)}function j(a){a.preventDefault();var b=a.data,c=a.originalEvent.dataTransfer.files;b.$el.removeClass(p.dropping),k(b,c)}function k(a,b){for(var c=[],d=0;d<b.length;d++){var e={index:a.total++,file:b[d],name:b[d].name,size:b[d].size,started:!1,complete:!1,error:!1,transfer:null};c.push(e),a.queue.push(e)}a.uploading||(r.on(q.beforeUnload,function(){return a.leave}),a.uploading=!0),a.$el.trigger(q.start,[c]),l(a)}function l(a){var b=0,c=[];for(var d in a.queue)!a.queue.hasOwnProperty(d)||a.queue[d].complete||a.queue[d].error||c.push(a.queue[d]);a.queue=c;for(var e in a.queue)if(a.queue.hasOwnProperty(e)){if(!a.queue[e].started){var f=new FormData;f.append(a.postKey,a.queue[e].file);for(var g in a.postData)a.postData.hasOwnProperty(g)&&f.append(g,a.postData[g]);m(a,a.queue[e],f)}if(b++,b>=a.maxQueue)return;d++}0===b&&(r.off(q.beforeUnload),a.uploading=!1,a.$el.trigger(q.complete))}function m(b,c,d){c.size>=b.maxSize?(c.error=!0,b.$el.trigger(q.fileError,[c,"Too large"]),l(b)):(c.started=!0,c.transfer=a.ajax({url:b.action,data:d,type:"POST",contentType:!1,processData:!1,cache:!1,xhr:function(){var d=a.ajaxSettings.xhr();return d.upload&&d.upload.addEventListener("progress",function(a){var d=0,e=a.loaded||a.position,f=a.total;a.lengthComputable&&(d=Math.ceil(e/f*100)),b.$el.trigger(q.fileProgress,[c,d])},!1),d},beforeSend:function(){b.$el.trigger(q.fileStart,[c])},success:function(a){c.complete=!0,b.$el.trigger(q.fileComplete,[c,a]),l(b)},error:function(a,d,e){c.error=!0,b.$el.trigger(q.fileError,[c,e]),l(b)}}))}var n=b.Plugin("upload",{widget:!0,defaults:{customClass:"",action:"",label:"Drag and drop files or click to select",leave:"You have uploads pending, are you sure you want to leave this page?",maxQueue:2,maxSize:5242880,postData:{},postKey:"file"},classes:["input","target","multiple","dropping"],methods:{_construct:c,_destruct:d}}),o=n.classes,p=o.raw,q=n.events,r=(n.functions,b.$window);q.complete="complete",q.fileStart="filestart",q.fileProgress="fileprogress",q.fileComplete="filecomplete",q.fileError="fileerror",q.start="start"}(jQuery,Formstone); |
|
0 | 4 |
\ No newline at end of file |
0 | 6 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,15 @@ |
1 |
+<?php |
|
2 |
+ |
|
3 |
+/** |
|
4 |
+ * Formstone for Contao |
|
5 |
+ * |
|
6 |
+ * Copyright (c) 2015 Benjamin Roth |
|
7 |
+ * |
|
8 |
+ * @license LGPL-3.0+ |
|
9 |
+ */ |
|
10 |
+ |
|
11 |
+ |
|
12 |
+/** |
|
13 |
+ * Asset version |
|
14 |
+ */ |
|
15 |
+$GLOBALS['TL_ASSETS']['FORMSTONE'] = '0.7.12'; |
|
0 | 16 |
\ No newline at end of file |