Browse code

Removing old formstone libraries

Benjamin Roth authored on08/06/2016 14:32:18
Showing1 changed files
1 1
deleted file mode 100755
... ...
@@ -1,328 +0,0 @@
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
-}
Browse code

Initial commit

Benjamin Roth authored on13/08/2015 16:05:27
Showing1 changed files
1 1
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
+}