ui_alchemy-rails 1.0.4 → 1.0.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (54) hide show
  1. data/app/assets/stylesheets/alchemy/components/_chosen.scss +1 -2
  2. data/app/assets/stylesheets/alchemy/components/_content.scss +1 -1
  3. data/app/assets/stylesheets/alchemy/components/_media.scss +1 -1
  4. data/app/assets/stylesheets/alchemy/components/_shared.scss +1 -1
  5. data/app/assets/stylesheets/alchemy/components/flash_messages/_flash_messages.scss +1 -1
  6. data/app/assets/stylesheets/alchemy/components/fonts/_liberation.scss +1 -1
  7. data/app/assets/stylesheets/alchemy/components/fonts/_overpass.scss +1 -1
  8. data/app/assets/stylesheets/alchemy/components/footer/_footer.scss +1 -1
  9. data/app/assets/stylesheets/alchemy/components/header/_header.scss +1 -1
  10. data/app/assets/stylesheets/alchemy/components/login/_login.scss +3 -3
  11. data/app/assets/stylesheets/alchemy/components/sprites/_sprites.scss +1 -1
  12. data/app/assets/stylesheets/alchemy/components/text/_text.scss +1 -1
  13. data/app/assets/stylesheets/alchemy/composites/content_elements.scss +2 -2
  14. data/lib/ui_alchemy/rails/engine.rb +4 -0
  15. data/lib/ui_alchemy/rails/version.rb +1 -1
  16. data/{app/assets/stylesheets/alchemy/components/buttons → vendor/assets/ui_alchemy/alchemy-buttons}/_buttons_vars.scss +0 -0
  17. data/vendor/assets/ui_alchemy/alchemy-buttons/alchemy-buttons.css +836 -0
  18. data/{app/assets/stylesheets/alchemy/components/buttons/_buttons.scss → vendor/assets/ui_alchemy/alchemy-buttons/buttons.scss} +3 -3
  19. data/vendor/assets/ui_alchemy/alchemy-buttons/component.json +26 -0
  20. data/{app/assets/stylesheets/alchemy/components/forms → vendor/assets/ui_alchemy/alchemy-forms}/_forms_ie.scss +0 -0
  21. data/{app/assets/stylesheets/alchemy/components/forms → vendor/assets/ui_alchemy/alchemy-forms}/_forms_mixins.scss +0 -0
  22. data/{app/assets/stylesheets/alchemy/components/forms → vendor/assets/ui_alchemy/alchemy-forms}/_forms_responsive.scss +0 -0
  23. data/{app/assets/stylesheets/alchemy/components/forms → vendor/assets/ui_alchemy/alchemy-forms}/_forms_vars.scss +0 -0
  24. data/vendor/assets/ui_alchemy/alchemy-forms/alchemy-forms.css +1101 -0
  25. data/vendor/assets/ui_alchemy/alchemy-forms/alchemy-forms.js +0 -0
  26. data/vendor/assets/ui_alchemy/alchemy-forms/component.json +27 -0
  27. data/{app/assets/stylesheets/alchemy/components/forms/_forms.scss → vendor/assets/ui_alchemy/alchemy-forms/forms.scss} +10 -11
  28. data/vendor/assets/ui_alchemy/alchemy-tables/alchemy-tables.css +1445 -0
  29. data/vendor/assets/ui_alchemy/alchemy-tables/alchemy-tables.js +134 -0
  30. data/vendor/assets/ui_alchemy/alchemy-tables/component.json +27 -0
  31. data/vendor/assets/ui_alchemy/alchemy-tables/tables.scss +220 -0
  32. data/{app/assets/stylesheets/alchemy/partials → vendor/assets/ui_alchemy/alchemy}/_colors.scss +0 -0
  33. data/vendor/assets/ui_alchemy/alchemy/_media_object.scss +22 -0
  34. data/{app/assets/stylesheets/alchemy/partials → vendor/assets/ui_alchemy/alchemy}/_mixins.scss +0 -0
  35. data/vendor/assets/ui_alchemy/alchemy/_normalize.scss +396 -0
  36. data/{app/assets/stylesheets/alchemy/partials → vendor/assets/ui_alchemy/alchemy}/_vars.scss +1 -1
  37. data/vendor/assets/ui_alchemy/alchemy/alchemy.css +0 -0
  38. data/vendor/assets/ui_alchemy/alchemy/alchemy.js +20 -0
  39. data/vendor/assets/ui_alchemy/alchemy/alchemy.scss +8 -0
  40. data/vendor/assets/ui_alchemy/alchemy/component.json +25 -0
  41. data/vendor/assets/ui_alchemy/angular/angular.js +14760 -0
  42. data/vendor/assets/ui_alchemy/angular/angular.min.js +162 -0
  43. data/vendor/assets/ui_alchemy/angular/component.json +14 -0
  44. data/vendor/assets/ui_alchemy/jquery/README.md +4 -0
  45. data/vendor/assets/ui_alchemy/jquery/component.json +21 -0
  46. data/vendor/assets/ui_alchemy/jquery/composer.json +30 -0
  47. data/vendor/assets/ui_alchemy/jquery/jquery-migrate.js +496 -0
  48. data/vendor/assets/ui_alchemy/jquery/jquery-migrate.min.js +3 -0
  49. data/vendor/assets/ui_alchemy/jquery/jquery.js +9597 -0
  50. data/vendor/assets/ui_alchemy/jquery/jquery.min.js +5 -0
  51. data/vendor/assets/ui_alchemy/jquery/package.json +7 -0
  52. metadata +39 -14
  53. data/app/assets/stylesheets/alchemy/partials/_base.scss +0 -8
  54. data/vendor/assets/javascripts/alchemy/jquery/jquery-1.6.2.js +0 -8981
@@ -1,5 +1,5 @@
1
- @import "alchemy/partials/base";
2
- @import "alchemy/components/buttons/buttons_vars";
1
+ @import "alchemy/alchemy";
2
+ @import "buttons_vars";
3
3
 
4
4
  /*
5
5
  ====================================
@@ -167,7 +167,7 @@ button {
167
167
  &:hover,
168
168
  &:active {
169
169
  @include background(
170
- image-url("alchemy/icons/spinner.gif") no-repeat 50% 50%,
170
+ url("images/spinner.gif") no-repeat 50% 50%,
171
171
  linear-gradient(lighten($btn_neutral_color, 17%), lighten($btn_neutral_color, 6%)));
172
172
  }
173
173
  }
@@ -0,0 +1,26 @@
1
+ {
2
+ "name": "alchemy-buttons",
3
+ "version": "0.0.3",
4
+ "main": [
5
+ "./*.js",
6
+ "./*.scss",
7
+ "./*.css"
8
+ ],
9
+ "dependencies": {
10
+ "angular": "~1.0.5",
11
+ "jquery": "~1.9.1",
12
+ "alchemy": ">=0.0.1"
13
+ },
14
+ "devDependencies": {
15
+ "angular-mocks": "~1.0.5",
16
+ "angular-scenario": "~1.0.5"
17
+ },
18
+ "gitHead": "dd570ddb3bc4567c9975c7c24696c88e487eb1f6",
19
+ "_id": "alchemy-buttons@0.0.3",
20
+ "readme": "ERROR: No README.md file found!",
21
+ "description": "ERROR: No README.md file found!",
22
+ "repository": {
23
+ "type": "git",
24
+ "url": "git://github.com/ui-alchemy/alchemy-buttons.git"
25
+ }
26
+ }
@@ -0,0 +1,1101 @@
1
+ /* Will be compiled down to a single stylesheet with your sass files */
2
+ /*****************
3
+ * Font Types
4
+ *****************/
5
+ /*****************
6
+ * Static
7
+ *****************/
8
+ /*****************
9
+ * Responsive
10
+ *****************/
11
+ /*****************
12
+ * Elements - Global
13
+ *****************/
14
+ /********
15
+ * Images
16
+ *********/
17
+ /*************
18
+ * Base Colors
19
+ **************/
20
+ /****************
21
+ * Palette Colors
22
+ *****************/
23
+ /* Proposed colour palette
24
+ ===========================*/
25
+ /* Generic default tone for non interactive elements */
26
+ /* Favorite greys for warm interactive elements */
27
+ /* Red Hat toners */
28
+ /* Red Hat Official */
29
+ /* Red Hat Apps - Web Extended
30
+ ================================*/
31
+ /* Orange (the letter o) */
32
+ /* Green */
33
+ /* Red */
34
+ /************
35
+ * Theme color
36
+ ************/
37
+ /* background for header */
38
+ /* ie9 support */
39
+ /*
40
+ =======================================
41
+ FORMS
42
+ =======================================
43
+ */
44
+ /* line 11, ../../component/styles/forms.scss */
45
+ .form {
46
+ width: 100%;
47
+ display: block;
48
+ line-height: 1;
49
+ color: #3c3c3c;
50
+ }
51
+ /* line 18, ../../component/styles/forms.scss */
52
+ .form .control_group,
53
+ .form .control-group {
54
+ padding: 5px 8px;
55
+ position: relative;
56
+ white-space: nowrap;
57
+ }
58
+ /* line 24, ../../component/styles/forms.scss */
59
+ .form .control_group .label,
60
+ .form .control_group .control-label,
61
+ .form .control-group .label,
62
+ .form .control-group .control-label {
63
+ width: 200px;
64
+ float: left;
65
+ text-align: right;
66
+ position: relative;
67
+ padding: 0;
68
+ }
69
+ /* line 32, ../../component/styles/forms.scss */
70
+ .form .control_group .input,
71
+ .form .control-group .input {
72
+ margin-left: 200px;
73
+ position: relative;
74
+ min-height: 2.5em;
75
+ }
76
+ /* line 39, ../../component/styles/forms.scss */
77
+ .form fieldset {
78
+ border: 1px solid #e2e2e2;
79
+ -webkit-border-radius: 5px;
80
+ -moz-border-radius: 5px;
81
+ -ms-border-radius: 5px;
82
+ -o-border-radius: 5px;
83
+ border-radius: 5px;
84
+ padding: 0;
85
+ margin: 0 0 10px;
86
+ background: #fdfdfd;
87
+ }
88
+ /* line 46, ../../component/styles/forms.scss */
89
+ .form fieldset legend {
90
+ width: auto;
91
+ margin-left: 10px;
92
+ padding: 3px 5px;
93
+ color: #b1b1b1;
94
+ background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjUwJSIgeTE9IjAlIiB4Mj0iNTAlIiB5Mj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjxzdG9wIG9mZnNldD0iOTAlIiBzdG9wLWNvbG9yPSJyZ2JhKDI1NSwgMjU1LCAyNTUsIDApIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
95
+ background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(90%, rgba(255, 255, 255, 0)));
96
+ background: -webkit-linear-gradient(#ffffff, rgba(255, 255, 255, 0) 90%);
97
+ background: -moz-linear-gradient(#ffffff, rgba(255, 255, 255, 0) 90%);
98
+ background: -o-linear-gradient(#ffffff, rgba(255, 255, 255, 0) 90%);
99
+ background: linear-gradient(#ffffff, rgba(255, 255, 255, 0) 90%);
100
+ }
101
+
102
+ /*
103
+ =======================================
104
+ INPUTS
105
+ =======================================
106
+ */
107
+ /* general */
108
+ /* line 64, ../../component/styles/forms.scss */
109
+ .form {
110
+ /* general styling of fields */
111
+ /* placeholder for various browsers
112
+ (needs to be separate) */
113
+ /* remove placeholder on focus
114
+ (needs to be separate) */
115
+ /* required field */
116
+ /* informative values */
117
+ /* readonly field */
118
+ /* disabled field */
119
+ /* warning field */
120
+ /* error field */
121
+ /* checking items */
122
+ }
123
+ /* line 67, ../../component/styles/forms.scss */
124
+ .form .label label,
125
+ .form .control-label label {
126
+ line-height: 2.5;
127
+ display: inline-block;
128
+ padding: 0 20px 0 3px;
129
+ }
130
+ /* line 77, ../../component/styles/forms.scss */
131
+ .form input,
132
+ .form select,
133
+ .form textarea {
134
+ font-family: "Liberation Sans", sans-serif;
135
+ }
136
+ /* line 82, ../../component/styles/forms.scss */
137
+ .form input {
138
+ line-height: 1.3;
139
+ }
140
+ /* line 93, ../../component/styles/forms.scss */
141
+ .form input[type="text"],
142
+ .form input[type="password"],
143
+ .form input[type="email"],
144
+ .form input[type="url"],
145
+ .form input[type="search"],
146
+ .form input[type="date"],
147
+ .form input[type="number"],
148
+ .form textarea {
149
+ width: 280px;
150
+ padding: 6px 10px;
151
+ color: inherit;
152
+ outline: none;
153
+ border: 1px solid #c8c8c8;
154
+ margin-bottom: 7px;
155
+ -webkit-box-shadow: 0 1px 2px 0 #d5d5d5 inset;
156
+ -moz-box-shadow: 0 1px 2px 0 #d5d5d5 inset;
157
+ box-shadow: 0 1px 2px 0 #d5d5d5 inset;
158
+ -webkit-border-radius: 3px;
159
+ -moz-border-radius: 3px;
160
+ -ms-border-radius: 3px;
161
+ -o-border-radius: 3px;
162
+ border-radius: 3px;
163
+ }
164
+ /* line 103, ../../component/styles/forms.scss */
165
+ .form input[type="text"]:hover,
166
+ .form input[type="password"]:hover,
167
+ .form input[type="email"]:hover,
168
+ .form input[type="url"]:hover,
169
+ .form input[type="search"]:hover,
170
+ .form input[type="date"]:hover,
171
+ .form input[type="number"]:hover,
172
+ .form textarea:hover {
173
+ border-color: #9a9a9a;
174
+ }
175
+ /* line 107, ../../component/styles/forms.scss */
176
+ .form input[type="text"]:focus,
177
+ .form input[type="password"]:focus,
178
+ .form input[type="email"]:focus,
179
+ .form input[type="url"]:focus,
180
+ .form input[type="search"]:focus,
181
+ .form input[type="date"]:focus,
182
+ .form input[type="number"]:focus,
183
+ .form textarea:focus {
184
+ border-color: #35b4ee;
185
+ -webkit-box-shadow: 0 0 2px #35b4ee;
186
+ -moz-box-shadow: 0 0 2px #35b4ee;
187
+ box-shadow: 0 0 2px #35b4ee;
188
+ -webkit-transition: all 0.17s linear;
189
+ -moz-transition: all 0.17s linear;
190
+ -o-transition: all 0.17s linear;
191
+ transition: all 0.17s linear;
192
+ }
193
+ /* line 115, ../../component/styles/forms.scss */
194
+ .form input[type="file"],
195
+ .form input[type="range"] {
196
+ width: auto;
197
+ max-width: 290px;
198
+ padding: 6px 0;
199
+ margin-bottom: 7px;
200
+ }
201
+ /* line 122, ../../component/styles/forms.scss */
202
+ .form input[type="range"] {
203
+ width: 290px;
204
+ padding-top: 4px;
205
+ }
206
+ /* line 127, ../../component/styles/forms.scss */
207
+ .form input[type="number"] {
208
+ width: 50px;
209
+ text-align: left;
210
+ padding: 4px 10px;
211
+ }
212
+ /* line 133, ../../component/styles/forms.scss */
213
+ .form select {
214
+ min-width: 186.66667px;
215
+ width: auto;
216
+ max-width: 270px;
217
+ padding: 4px 0 4px 10px;
218
+ margin-bottom: 7px;
219
+ position: relative;
220
+ top: 2px;
221
+ font-size: 100%;
222
+ color: #3c3c3c;
223
+ }
224
+ /* line 144, ../../component/styles/forms.scss */
225
+ .form select[multiple="multiple"] {
226
+ background: white;
227
+ height: auto;
228
+ line-height: 1.5;
229
+ border: 1px solid #c8c8c8;
230
+ }
231
+ /* line 152, ../../component/styles/forms.scss */
232
+ .form textarea {
233
+ height: auto;
234
+ resize: none;
235
+ overflow: auto;
236
+ }
237
+ /* line 160, ../../component/styles/forms.scss */
238
+ .form input::-webkit-input-placeholder {
239
+ color: #c8c8c8;
240
+ font-style: italic;
241
+ }
242
+ /* line 165, ../../component/styles/forms.scss */
243
+ .form input:-moz-placeholder {
244
+ color: #c8c8c8;
245
+ font-style: italic;
246
+ }
247
+ /* line 172, ../../component/styles/forms.scss */
248
+ .form input:focus::-webkit-input-placeholder {
249
+ color: rgba(255, 255, 255, 0);
250
+ }
251
+ /* line 176, ../../component/styles/forms.scss */
252
+ .form input:focus:-moz-placeholder {
253
+ color: rgba(255, 255, 255, 0);
254
+ }
255
+ /* line 183, ../../component/styles/forms.scss */
256
+ .form .required .label,
257
+ .form .required .control-label {
258
+ position: relative;
259
+ }
260
+ /* line 186, ../../component/styles/forms.scss */
261
+ .form .required .label:after,
262
+ .form .required .control-label:after {
263
+ display: inline-block;
264
+ position: absolute;
265
+ right: 11px;
266
+ top: 4px;
267
+ font-size: 125%;
268
+ font-weight: bold;
269
+ content: '*';
270
+ color: #139edd;
271
+ }
272
+ /* line 200, ../../component/styles/forms.scss */
273
+ .form .required.warning .label:after,
274
+ .form .required.warning .control-label:after {
275
+ color: #ff860e;
276
+ }
277
+ /* line 207, ../../component/styles/forms.scss */
278
+ .form .required.error .label:after,
279
+ .form .required.error .control-label:after {
280
+ color: #c81e28;
281
+ }
282
+ /* line 214, ../../component/styles/forms.scss */
283
+ .form .value {
284
+ display: inline-block;
285
+ width: 280px;
286
+ padding: 8px 0;
287
+ margin-bottom: 7px;
288
+ line-height: 1.3;
289
+ font-size: 100%;
290
+ color: #a7a7a7;
291
+ }
292
+ /* line 227, ../../component/styles/forms.scss */
293
+ .form .readonly input,
294
+ .form input[readonly="readonly"],
295
+ .form textarea[readonly="readonly"] {
296
+ color: #a7a7a7;
297
+ }
298
+ /* line 231, ../../component/styles/forms.scss */
299
+ .form .readonly input:hover, .form .readonly input:focus,
300
+ .form input[readonly="readonly"]:hover,
301
+ .form input[readonly="readonly"]:focus,
302
+ .form textarea[readonly="readonly"]:hover,
303
+ .form textarea[readonly="readonly"]:focus {
304
+ border: 1px solid #c8c8c8;
305
+ -webkit-box-shadow: 0 1px 2px 0 #d5d5d5 inset;
306
+ -moz-box-shadow: 0 1px 2px 0 #d5d5d5 inset;
307
+ box-shadow: 0 1px 2px 0 #d5d5d5 inset;
308
+ }
309
+ /* line 239, ../../component/styles/forms.scss */
310
+ .form .disabled label {
311
+ color: #a2a2a2;
312
+ }
313
+ /* line 245, ../../component/styles/forms.scss */
314
+ .form input[disabled="disabled"],
315
+ .form textarea[disabled="disabled"] {
316
+ color: #a2a2a2;
317
+ background: #f7f7f6;
318
+ border: 1px solid #c8c8c8;
319
+ }
320
+ /* line 251, ../../component/styles/forms.scss */
321
+ .form input[disabled="disabled"]:hover, .form input[disabled="disabled"]:focus,
322
+ .form textarea[disabled="disabled"]:hover,
323
+ .form textarea[disabled="disabled"]:focus {
324
+ border: 1px solid #c8c8c8;
325
+ -webkit-box-shadow: 0 1px 2px 0 #d5d5d5 inset;
326
+ -moz-box-shadow: 0 1px 2px 0 #d5d5d5 inset;
327
+ box-shadow: 0 1px 2px 0 #d5d5d5 inset;
328
+ }
329
+ /* line 257, ../../component/styles/forms.scss */
330
+ .form select[disabled="disabled"] {
331
+ color: #a2a2a2;
332
+ }
333
+ /* line 261, ../../component/styles/forms.scss */
334
+ .form input[type="file"][disabled="disabled"] {
335
+ color: #a2a2a2;
336
+ border: 0 none;
337
+ -webkit-box-shadow: none;
338
+ -moz-box-shadow: none;
339
+ box-shadow: none;
340
+ }
341
+ /* line 2, ../../component/styles/_forms_mixins.scss */
342
+ .form .warning .label {
343
+ color: #ff860e;
344
+ }
345
+ /* line 6, ../../component/styles/_forms_mixins.scss */
346
+ .form .warning input {
347
+ border-color: #ff860e;
348
+ }
349
+ /* line 9, ../../component/styles/_forms_mixins.scss */
350
+ .form .warning input:hover {
351
+ border-color: #d06700;
352
+ }
353
+ /* line 13, ../../component/styles/_forms_mixins.scss */
354
+ .form .warning input:focus {
355
+ border-color: #ff860e;
356
+ -webkit-box-shadow: 0 0 2px #ff860e;
357
+ -moz-box-shadow: 0 0 2px #ff860e;
358
+ box-shadow: 0 0 2px #ff860e;
359
+ }
360
+ /* line 2, ../../component/styles/_forms_mixins.scss */
361
+ .form .error .label {
362
+ color: #c81e28;
363
+ }
364
+ /* line 6, ../../component/styles/_forms_mixins.scss */
365
+ .form .error input {
366
+ border-color: #c81e28;
367
+ }
368
+ /* line 9, ../../component/styles/_forms_mixins.scss */
369
+ .form .error input:hover {
370
+ border-color: #93161d;
371
+ }
372
+ /* line 13, ../../component/styles/_forms_mixins.scss */
373
+ .form .error input:focus {
374
+ border-color: #c81e28;
375
+ -webkit-box-shadow: 0 0 2px #c81e28;
376
+ -moz-box-shadow: 0 0 2px #c81e28;
377
+ box-shadow: 0 0 2px #c81e28;
378
+ }
379
+ /* line 280, ../../component/styles/forms.scss */
380
+ .form .checkbox .control,
381
+ .form .radio .control {
382
+ display: block;
383
+ padding: 1px 0 5px 0;
384
+ }
385
+ /* line 284, ../../component/styles/forms.scss */
386
+ .form .checkbox .control label,
387
+ .form .radio .control label {
388
+ padding-right: 15px;
389
+ }
390
+ /* line 289, ../../component/styles/forms.scss */
391
+ .form .checkbox > label + .control,
392
+ .form .radio > label + .control {
393
+ display: inline-block;
394
+ }
395
+ /* line 293, ../../component/styles/forms.scss */
396
+ .form .checkbox.horizontal .control,
397
+ .form .radio.horizontal .control {
398
+ display: inline-block;
399
+ margin: 0 5px 0 0;
400
+ }
401
+ /* line 299, ../../component/styles/forms.scss */
402
+ .form .checkbox:not(.inline) label,
403
+ .form .radio:not(.inline) label {
404
+ line-height: 2;
405
+ }
406
+ /* line 305, ../../component/styles/forms.scss */
407
+ .form .checkbox input[type="radio"],
408
+ .form .checkbox input[type="checkbox"],
409
+ .form .radio input[type="radio"],
410
+ .form .radio input[type="checkbox"] {
411
+ margin: 0 2px 0 0;
412
+ position: relative;
413
+ top: 1px;
414
+ }
415
+ /* line 312, ../../component/styles/forms.scss */
416
+ .form .checkbox.inline .control,
417
+ .form .radio.inline .control {
418
+ display: inline-block;
419
+ margin-left: 15px;
420
+ }
421
+
422
+ /*
423
+ =======================================
424
+ MESSAGES
425
+ =======================================
426
+ */
427
+ /* line 326, ../../component/styles/forms.scss */
428
+ .form {
429
+ /* field validations */
430
+ /* success message */
431
+ /* warning message */
432
+ /* error message */
433
+ }
434
+ /* line 330, ../../component/styles/forms.scss */
435
+ .form span {
436
+ display: inline-block;
437
+ max-width: 280px;
438
+ line-height: 1.1;
439
+ vertical-align: middle;
440
+ font-size: 90%;
441
+ white-space: normal;
442
+ }
443
+ /* line 343, ../../component/styles/forms.scss */
444
+ .form .help i {
445
+ display: inline-block;
446
+ position: relative;
447
+ height: 13px;
448
+ width: 13px;
449
+ padding-top: 1px;
450
+ text-align: center;
451
+ color: #a2a2a2;
452
+ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
453
+ -webkit-border-radius: 50%;
454
+ -moz-border-radius: 50%;
455
+ -ms-border-radius: 50%;
456
+ -o-border-radius: 50%;
457
+ border-radius: 50%;
458
+ border: 1px solid #e2e2e2;
459
+ background: #f7f7f6 url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjUwJSIgeTE9IjAlIiB4Mj0iNTAlIiB5Mj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2VkZWRlYyIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
460
+ background: #f7f7f6 -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #ededec));
461
+ background: #f7f7f6 -webkit-linear-gradient(#ffffff, #ededec);
462
+ background: #f7f7f6 -moz-linear-gradient(#ffffff, #ededec);
463
+ background: #f7f7f6 -o-linear-gradient(#ffffff, #ededec);
464
+ background: #f7f7f6 linear-gradient(#ffffff, #ededec);
465
+ cursor: default;
466
+ }
467
+ /* line 359, ../../component/styles/forms.scss */
468
+ .form .help i:hover {
469
+ color: white;
470
+ text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
471
+ border-color: #585854;
472
+ background: #585854 url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjUwJSIgeTE9IjAlIiB4Mj0iNTAlIiB5Mj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzZkNmQ2NyIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzYwNjA1YiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
473
+ background: #585854 -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #6d6d67), color-stop(100%, #60605b));
474
+ background: #585854 -webkit-linear-gradient(#6d6d67, #60605b);
475
+ background: #585854 -moz-linear-gradient(#6d6d67, #60605b);
476
+ background: #585854 -o-linear-gradient(#6d6d67, #60605b);
477
+ background: #585854 linear-gradient(#6d6d67, #60605b);
478
+ }
479
+ /* line 369, ../../component/styles/forms.scss */
480
+ .form .help i:after {
481
+ display: none;
482
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=97);
483
+ opacity: 0.97;
484
+ content: "";
485
+ height: 0;
486
+ width: 0;
487
+ border-style: solid;
488
+ border-width: 0 9px 8px 9px;
489
+ border-color: rgba(255, 255, 255, 0) rgba(255, 255, 255, 0) #6d6d67;
490
+ position: absolute;
491
+ bottom: -11px;
492
+ left: -2px;
493
+ z-index: 2;
494
+ }
495
+ /* line 385, ../../component/styles/forms.scss */
496
+ .form .help span {
497
+ display: none;
498
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=97);
499
+ opacity: 0.97;
500
+ position: absolute;
501
+ left: 5px;
502
+ top: 33px;
503
+ z-index: 1;
504
+ width: 160px;
505
+ padding: 7px 10px 9px 10px;
506
+ margin: 0;
507
+ -webkit-border-radius: 3px;
508
+ -moz-border-radius: 3px;
509
+ -ms-border-radius: 3px;
510
+ -o-border-radius: 3px;
511
+ border-radius: 3px;
512
+ background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjUwJSIgeTE9IjAlIiB4Mj0iNTAlIiB5Mj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzZkNmQ2NyIvPjxzdG9wIG9mZnNldD0iMjAlIiBzdG9wLWNvbG9yPSIjNTg1ODU0Ii8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
513
+ background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #6d6d67), color-stop(20%, #585854));
514
+ background: -webkit-linear-gradient(#6d6d67, #585854 20%);
515
+ background: -moz-linear-gradient(#6d6d67, #585854 20%);
516
+ background: -o-linear-gradient(#6d6d67, #585854 20%);
517
+ background: linear-gradient(#6d6d67, #585854 20%);
518
+ /* general */
519
+ *zoom: 1;
520
+ filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF585854', endColorstr='#FF585854');
521
+ /* IE */
522
+ background-color: #585854;
523
+ /* fallback */
524
+ *zoom: 1;
525
+ filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF6D6D67', endColorstr='#FF585854');
526
+ color: white;
527
+ border-color: #585854;
528
+ text-align: left;
529
+ line-height: 1.2;
530
+ text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
531
+ -webkit-box-shadow: 0 1px 3px #fbfbfb;
532
+ -moz-box-shadow: 0 1px 3px #fbfbfb;
533
+ box-shadow: 0 1px 3px #fbfbfb;
534
+ }
535
+ /* line 407, ../../component/styles/forms.scss */
536
+ .form .help i:hover:after {
537
+ display: block;
538
+ }
539
+ /* line 411, ../../component/styles/forms.scss */
540
+ .form .help i:hover ~ span {
541
+ display: block;
542
+ }
543
+ /* line 419, ../../component/styles/forms.scss */
544
+ .form .note {
545
+ display: block;
546
+ font-size: 85%;
547
+ color: #a2a2a2;
548
+ margin: 0 0 5px 10px;
549
+ }
550
+ /* line 425, ../../component/styles/forms.scss */
551
+ .form .note strong {
552
+ font-weight: bold;
553
+ font-size: 110%;
554
+ }
555
+ /* line 434, ../../component/styles/forms.scss */
556
+ .form .hint,
557
+ .form .message {
558
+ position: relative;
559
+ left: 0;
560
+ color: #6f6f6f;
561
+ padding: 9px 10px 7px 10px;
562
+ margin-left: 10px;
563
+ background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjUwJSIgeTE9IjAlIiB4Mj0iNTAlIiB5Mj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjxzdG9wIG9mZnNldD0iMzAlIiBzdG9wLWNvbG9yPSIjZjdmN2Y2Ii8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
564
+ background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(30%, #f7f7f6));
565
+ background: -webkit-linear-gradient(#ffffff, #f7f7f6 30%);
566
+ background: -moz-linear-gradient(#ffffff, #f7f7f6 30%);
567
+ background: -o-linear-gradient(#ffffff, #f7f7f6 30%);
568
+ background: linear-gradient(#ffffff, #f7f7f6 30%);
569
+ /* general */
570
+ *zoom: 1;
571
+ filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFF7F7F6', endColorstr='#FFF7F7F6');
572
+ /* IE */
573
+ background-color: #f7f7f6;
574
+ /* fallback */
575
+ *zoom: 1;
576
+ filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFFFFFFF', endColorstr='#FFF7F7F6');
577
+ -webkit-border-radius: 3px;
578
+ -moz-border-radius: 3px;
579
+ -ms-border-radius: 3px;
580
+ -o-border-radius: 3px;
581
+ border-radius: 3px;
582
+ border: 1px solid #e2e2e2;
583
+ -webkit-box-shadow: #fbfbfb 0 1px 3px;
584
+ -moz-box-shadow: #fbfbfb 0 1px 3px;
585
+ box-shadow: #fbfbfb 0 1px 3px;
586
+ vertical-align: top;
587
+ }
588
+ /* line 448, ../../component/styles/forms.scss */
589
+ .form .hint:before, .form .hint:after,
590
+ .form .message:before,
591
+ .form .message:after {
592
+ content: "";
593
+ display: block;
594
+ height: 0;
595
+ width: 0;
596
+ border-style: solid;
597
+ border-width: 8px 8px 8px 0;
598
+ border-color: rgba(255, 255, 255, 0) #f7f7f6 rgba(255, 255, 255, 0);
599
+ position: absolute;
600
+ top: 14px;
601
+ left: -8px;
602
+ margin-top: -8px;
603
+ z-index: 2;
604
+ }
605
+ /* line 463, ../../component/styles/forms.scss */
606
+ .form .hint:after,
607
+ .form .message:after {
608
+ border-right-color: #e2e2e2;
609
+ left: -9px;
610
+ z-index: 1;
611
+ }
612
+ /* line 470, ../../component/styles/forms.scss */
613
+ .form .hint {
614
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
615
+ opacity: 0;
616
+ position: absolute;
617
+ top: 0;
618
+ left: 320px;
619
+ }
620
+ /* line 476, ../../component/styles/forms.scss */
621
+ .form .hint.always_visible {
622
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
623
+ opacity: 1;
624
+ position: relative;
625
+ left: 0;
626
+ }
627
+ /* line 483, ../../component/styles/forms.scss */
628
+ .form .message ~ .hint {
629
+ display: none;
630
+ }
631
+ /* line 489, ../../component/styles/forms.scss */
632
+ .form .control_group input:focus ~ .hint,
633
+ .form .control-group input:focus ~ .hint {
634
+ -webkit-transition: all 0.29s ease;
635
+ -moz-transition: all 0.29s ease;
636
+ -o-transition: all 0.29s ease;
637
+ transition: all 0.29s ease;
638
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
639
+ opacity: 1;
640
+ left: 305px;
641
+ }
642
+ /* line 494, ../../component/styles/forms.scss */
643
+ .form .control_group input:focus ~ .hint.always_visible,
644
+ .form .control-group input:focus ~ .hint.always_visible {
645
+ left: 0;
646
+ }
647
+ /* line 504, ../../component/styles/forms.scss */
648
+ .form .success .message,
649
+ .form .warning .message,
650
+ .form .error .message {
651
+ padding-left: 29px;
652
+ max-width: 261px;
653
+ }
654
+ /* line 511, ../../component/styles/forms.scss */
655
+ .form .success .message {
656
+ background: #f7f7f6 url('../../app/images/alchemy/icons/success_icon.png') no-repeat 8px 6px;
657
+ background: url('../../app/images/alchemy/icons/success_icon.png') no-repeat 8px 6px, url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjUwJSIgeTE9IjAlIiB4Mj0iNTAlIiB5Mj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjxzdG9wIG9mZnNldD0iMzAlIiBzdG9wLWNvbG9yPSIjZjdmN2Y2Ii8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
658
+ background: url('../../app/images/alchemy/icons/success_icon.png') no-repeat 8px 6px, -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(30%, #f7f7f6));
659
+ background: url('../../app/images/alchemy/icons/success_icon.png') no-repeat 8px 6px, -webkit-linear-gradient(#ffffff, #f7f7f6 30%);
660
+ background: url('../../app/images/alchemy/icons/success_icon.png') no-repeat 8px 6px, -moz-linear-gradient(#ffffff, #f7f7f6 30%);
661
+ background: url('../../app/images/alchemy/icons/success_icon.png') no-repeat 8px 6px, -o-linear-gradient(#ffffff, #f7f7f6 30%);
662
+ background: url('../../app/images/alchemy/icons/success_icon.png') no-repeat 8px 6px, linear-gradient(#ffffff, #f7f7f6 30%);
663
+ *zoom: 1;
664
+ filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#00FFFFFF', endColorstr='#00FFFFFF');
665
+ }
666
+ /* line 520, ../../component/styles/forms.scss */
667
+ .form .warning .message {
668
+ background: #f7f7f6 url('../../app/images/alchemy/icons/warning_icon.png') no-repeat 7px 6px;
669
+ background: url('../../app/images/alchemy/icons/warning_icon.png') no-repeat 7px 6px, url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjUwJSIgeTE9IjAlIiB4Mj0iNTAlIiB5Mj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjxzdG9wIG9mZnNldD0iMzAlIiBzdG9wLWNvbG9yPSIjZjdmN2Y2Ii8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
670
+ background: url('../../app/images/alchemy/icons/warning_icon.png') no-repeat 7px 6px, -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(30%, #f7f7f6));
671
+ background: url('../../app/images/alchemy/icons/warning_icon.png') no-repeat 7px 6px, -webkit-linear-gradient(#ffffff, #f7f7f6 30%);
672
+ background: url('../../app/images/alchemy/icons/warning_icon.png') no-repeat 7px 6px, -moz-linear-gradient(#ffffff, #f7f7f6 30%);
673
+ background: url('../../app/images/alchemy/icons/warning_icon.png') no-repeat 7px 6px, -o-linear-gradient(#ffffff, #f7f7f6 30%);
674
+ background: url('../../app/images/alchemy/icons/warning_icon.png') no-repeat 7px 6px, linear-gradient(#ffffff, #f7f7f6 30%);
675
+ *zoom: 1;
676
+ filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#00FFFFFF', endColorstr='#00FFFFFF');
677
+ }
678
+ /* line 529, ../../component/styles/forms.scss */
679
+ .form .error .message {
680
+ background: #f7f7f6 url('../../app/images/alchemy/icons/error_icon.png') no-repeat 7px 6px;
681
+ background: url('../../app/images/alchemy/icons/error_icon.png') no-repeat 7px 6px, url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjUwJSIgeTE9IjAlIiB4Mj0iNTAlIiB5Mj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjxzdG9wIG9mZnNldD0iMzAlIiBzdG9wLWNvbG9yPSIjZjdmN2Y2Ii8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
682
+ background: url('../../app/images/alchemy/icons/error_icon.png') no-repeat 7px 6px, -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(30%, #f7f7f6));
683
+ background: url('../../app/images/alchemy/icons/error_icon.png') no-repeat 7px 6px, -webkit-linear-gradient(#ffffff, #f7f7f6 30%);
684
+ background: url('../../app/images/alchemy/icons/error_icon.png') no-repeat 7px 6px, -moz-linear-gradient(#ffffff, #f7f7f6 30%);
685
+ background: url('../../app/images/alchemy/icons/error_icon.png') no-repeat 7px 6px, -o-linear-gradient(#ffffff, #f7f7f6 30%);
686
+ background: url('../../app/images/alchemy/icons/error_icon.png') no-repeat 7px 6px, linear-gradient(#ffffff, #f7f7f6 30%);
687
+ *zoom: 1;
688
+ filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#00FFFFFF', endColorstr='#00FFFFFF');
689
+ }
690
+
691
+ /*
692
+ =======================================
693
+ RESPONSIVE
694
+ =======================================
695
+ */
696
+ /* line 5, ../../component/styles/_forms_responsive.scss */
697
+ .form.labels_top .control_group .input,
698
+ .form.labels_top .control-group .input {
699
+ margin: 0 0 5px 0;
700
+ }
701
+ /* line 10, ../../component/styles/_forms_responsive.scss */
702
+ .form.labels_top .control_group .label,
703
+ .form.labels_top .control_group .control-label,
704
+ .form.labels_top .control-group .label,
705
+ .form.labels_top .control-group .control-label {
706
+ float: none;
707
+ text-align: left;
708
+ display: inline-block;
709
+ width: auto;
710
+ }
711
+ /* line 16, ../../component/styles/_forms_responsive.scss */
712
+ .form.labels_top .control_group .label label,
713
+ .form.labels_top .control_group .control-label label,
714
+ .form.labels_top .control-group .label label,
715
+ .form.labels_top .control-group .control-label label {
716
+ padding: 0 8px 0 0;
717
+ line-height: 1.8;
718
+ }
719
+ /* line 22, ../../component/styles/_forms_responsive.scss */
720
+ .form.labels_top .control_group .label.help i,
721
+ .form.labels_top .control_group .control-label.help i,
722
+ .form.labels_top .control-group .label.help i,
723
+ .form.labels_top .control-group .control-label.help i {
724
+ position: absolute;
725
+ right: -13px;
726
+ top: 2px;
727
+ }
728
+ /* line 28, ../../component/styles/_forms_responsive.scss */
729
+ .form.labels_top .control_group .label.help span,
730
+ .form.labels_top .control_group .control-label.help span,
731
+ .form.labels_top .control-group .label.help span,
732
+ .form.labels_top .control-group .control-label.help span {
733
+ left: 60%;
734
+ top: 27px;
735
+ }
736
+ /* line 37, ../../component/styles/_forms_responsive.scss */
737
+ .form.labels_top fieldset legend {
738
+ margin-left: 3px;
739
+ }
740
+ /* line 42, ../../component/styles/_forms_responsive.scss */
741
+ .form.labels_top .value {
742
+ padding-top: 2px;
743
+ }
744
+ /* line 49, ../../component/styles/_forms_responsive.scss */
745
+ .form.labels_top .required .label:after,
746
+ .form.labels_top .required .control-label:after {
747
+ right: 0;
748
+ top: 0;
749
+ }
750
+ /* line 55, ../../component/styles/_forms_responsive.scss */
751
+ .form.labels_top .required .label.help i,
752
+ .form.labels_top .required .control-label.help i {
753
+ right: -19px;
754
+ }
755
+
756
+ /* line 67, ../../component/styles/_forms_responsive.scss */
757
+ .form.messages_bottom .note {
758
+ display: block;
759
+ padding: 10px 10px 6px 10px;
760
+ margin: 0;
761
+ border: 1px solid #e2e2e2;
762
+ border-top-width: 0;
763
+ -webkit-border-radius: 0 0 3px 3px;
764
+ -moz-border-radius: 0 0 3px 3px;
765
+ -ms-border-radius: 0 0 3px 3px;
766
+ -o-border-radius: 0 0 3px 3px;
767
+ border-radius: 0 0 3px 3px;
768
+ position: relative;
769
+ top: -10px;
770
+ }
771
+ /* line 79, ../../component/styles/_forms_responsive.scss */
772
+ .form.messages_bottom .hint ~ .note,
773
+ .form.messages_bottom .message ~ .note {
774
+ background: white;
775
+ top: -4px;
776
+ padding-top: 7px;
777
+ border-top-width: 1px;
778
+ }
779
+ /* line 86, ../../component/styles/_forms_responsive.scss */
780
+ .form.messages_bottom .message ~ .hint {
781
+ display: none;
782
+ }
783
+ /* line 91, ../../component/styles/_forms_responsive.scss */
784
+ .form.messages_bottom .hint,
785
+ .form.messages_bottom .message {
786
+ display: block;
787
+ position: relative;
788
+ left: 0;
789
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
790
+ opacity: 1;
791
+ margin: 3px 0 0 0;
792
+ }
793
+ /* line 99, ../../component/styles/_forms_responsive.scss */
794
+ .form.messages_bottom .hint:before, .form.messages_bottom .hint:after,
795
+ .form.messages_bottom .message:before,
796
+ .form.messages_bottom .message:after {
797
+ border-width: 0 8px 8px 8px;
798
+ border-color: rgba(255, 255, 255, 0) rgba(255, 255, 255, 0) white;
799
+ top: 0;
800
+ left: auto;
801
+ right: 20px;
802
+ }
803
+ /* line 107, ../../component/styles/_forms_responsive.scss */
804
+ .form.messages_bottom .hint:after,
805
+ .form.messages_bottom .message:after {
806
+ top: -1px;
807
+ left: auto;
808
+ border-color: rgba(255, 255, 255, 0) rgba(255, 255, 255, 0) #e2e2e2;
809
+ }
810
+ /* line 113, ../../component/styles/_forms_responsive.scss */
811
+ .form.messages_bottom .hint:hover,
812
+ .form.messages_bottom .message:hover {
813
+ left: 0;
814
+ }
815
+ /* line 120, ../../component/styles/_forms_responsive.scss */
816
+ .form.messages_bottom .control_group input:focus ~ .hint,
817
+ .form.messages_bottom .control-group input:focus ~ .hint {
818
+ left: 0;
819
+ }
820
+ /* line 128, ../../component/styles/_forms_responsive.scss */
821
+ .form.messages_bottom .success .message,
822
+ .form.messages_bottom .warning .message,
823
+ .form.messages_bottom .error .message {
824
+ display: block;
825
+ margin: 3px 0 0 0;
826
+ }
827
+ /* line 132, ../../component/styles/_forms_responsive.scss */
828
+ .form.messages_bottom .success .message ~ .hint,
829
+ .form.messages_bottom .warning .message ~ .hint,
830
+ .form.messages_bottom .error .message ~ .hint {
831
+ margin: 0;
832
+ position: relative;
833
+ top: -2px;
834
+ -webkit-border-radius: 0 0 3px 3px;
835
+ -moz-border-radius: 0 0 3px 3px;
836
+ -ms-border-radius: 0 0 3px 3px;
837
+ -o-border-radius: 0 0 3px 3px;
838
+ border-radius: 0 0 3px 3px;
839
+ }
840
+ /* line 139, ../../component/styles/_forms_responsive.scss */
841
+ .form.messages_bottom .success .message ~ .hint:before, .form.messages_bottom .success .message ~ .hint:after,
842
+ .form.messages_bottom .warning .message ~ .hint:before,
843
+ .form.messages_bottom .warning .message ~ .hint:after,
844
+ .form.messages_bottom .error .message ~ .hint:before,
845
+ .form.messages_bottom .error .message ~ .hint:after {
846
+ display: none;
847
+ }
848
+
849
+ @media screen and (max-width: 1024px) {
850
+ /* line 5, ../../component/styles/_forms_responsive.scss */
851
+ .form .control_group .input,
852
+ .form .control-group .input {
853
+ margin: 0 0 5px 0;
854
+ }
855
+ /* line 10, ../../component/styles/_forms_responsive.scss */
856
+ .form .control_group .label,
857
+ .form .control_group .control-label,
858
+ .form .control-group .label,
859
+ .form .control-group .control-label {
860
+ float: none;
861
+ text-align: left;
862
+ display: inline-block;
863
+ width: auto;
864
+ }
865
+ /* line 16, ../../component/styles/_forms_responsive.scss */
866
+ .form .control_group .label label,
867
+ .form .control_group .control-label label,
868
+ .form .control-group .label label,
869
+ .form .control-group .control-label label {
870
+ padding: 0 8px 0 0;
871
+ line-height: 1.8;
872
+ }
873
+ /* line 22, ../../component/styles/_forms_responsive.scss */
874
+ .form .control_group .label.help i,
875
+ .form .control_group .control-label.help i,
876
+ .form .control-group .label.help i,
877
+ .form .control-group .control-label.help i {
878
+ position: absolute;
879
+ right: -13px;
880
+ top: 2px;
881
+ }
882
+ /* line 28, ../../component/styles/_forms_responsive.scss */
883
+ .form .control_group .label.help span,
884
+ .form .control_group .control-label.help span,
885
+ .form .control-group .label.help span,
886
+ .form .control-group .control-label.help span {
887
+ left: 60%;
888
+ top: 27px;
889
+ }
890
+ /* line 37, ../../component/styles/_forms_responsive.scss */
891
+ .form fieldset legend {
892
+ margin-left: 3px;
893
+ }
894
+ /* line 42, ../../component/styles/_forms_responsive.scss */
895
+ .form .value {
896
+ padding-top: 2px;
897
+ }
898
+ /* line 49, ../../component/styles/_forms_responsive.scss */
899
+ .form .required .label:after,
900
+ .form .required .control-label:after {
901
+ right: 0;
902
+ top: 0;
903
+ }
904
+ /* line 55, ../../component/styles/_forms_responsive.scss */
905
+ .form .required .label.help i,
906
+ .form .required .control-label.help i {
907
+ right: -19px;
908
+ }
909
+ }
910
+ @media screen and (max-width: 768px) {
911
+ /* line 5, ../../component/styles/_forms_responsive.scss */
912
+ .form .control_group .input,
913
+ .form .control-group .input {
914
+ margin: 0 0 5px 0;
915
+ }
916
+ /* line 10, ../../component/styles/_forms_responsive.scss */
917
+ .form .control_group .label,
918
+ .form .control_group .control-label,
919
+ .form .control-group .label,
920
+ .form .control-group .control-label {
921
+ float: none;
922
+ text-align: left;
923
+ display: inline-block;
924
+ width: auto;
925
+ }
926
+ /* line 16, ../../component/styles/_forms_responsive.scss */
927
+ .form .control_group .label label,
928
+ .form .control_group .control-label label,
929
+ .form .control-group .label label,
930
+ .form .control-group .control-label label {
931
+ padding: 0 8px 0 0;
932
+ line-height: 1.8;
933
+ }
934
+ /* line 22, ../../component/styles/_forms_responsive.scss */
935
+ .form .control_group .label.help i,
936
+ .form .control_group .control-label.help i,
937
+ .form .control-group .label.help i,
938
+ .form .control-group .control-label.help i {
939
+ position: absolute;
940
+ right: -13px;
941
+ top: 2px;
942
+ }
943
+ /* line 28, ../../component/styles/_forms_responsive.scss */
944
+ .form .control_group .label.help span,
945
+ .form .control_group .control-label.help span,
946
+ .form .control-group .label.help span,
947
+ .form .control-group .control-label.help span {
948
+ left: 60%;
949
+ top: 27px;
950
+ }
951
+ /* line 37, ../../component/styles/_forms_responsive.scss */
952
+ .form fieldset legend {
953
+ margin-left: 3px;
954
+ }
955
+ /* line 42, ../../component/styles/_forms_responsive.scss */
956
+ .form .value {
957
+ padding-top: 2px;
958
+ }
959
+ /* line 49, ../../component/styles/_forms_responsive.scss */
960
+ .form .required .label:after,
961
+ .form .required .control-label:after {
962
+ right: 0;
963
+ top: 0;
964
+ }
965
+ /* line 55, ../../component/styles/_forms_responsive.scss */
966
+ .form .required .label.help i,
967
+ .form .required .control-label.help i {
968
+ right: -19px;
969
+ }
970
+ /* line 67, ../../component/styles/_forms_responsive.scss */
971
+ .form .note {
972
+ display: block;
973
+ padding: 10px 10px 6px 10px;
974
+ margin: 0;
975
+ border: 1px solid #e2e2e2;
976
+ border-top-width: 0;
977
+ -webkit-border-radius: 0 0 3px 3px;
978
+ -moz-border-radius: 0 0 3px 3px;
979
+ -ms-border-radius: 0 0 3px 3px;
980
+ -o-border-radius: 0 0 3px 3px;
981
+ border-radius: 0 0 3px 3px;
982
+ position: relative;
983
+ top: -10px;
984
+ }
985
+ /* line 79, ../../component/styles/_forms_responsive.scss */
986
+ .form .hint ~ .note,
987
+ .form .message ~ .note {
988
+ background: white;
989
+ top: -4px;
990
+ padding-top: 7px;
991
+ border-top-width: 1px;
992
+ }
993
+ /* line 86, ../../component/styles/_forms_responsive.scss */
994
+ .form .message ~ .hint {
995
+ display: none;
996
+ }
997
+ /* line 91, ../../component/styles/_forms_responsive.scss */
998
+ .form .hint,
999
+ .form .message {
1000
+ display: block;
1001
+ position: relative;
1002
+ left: 0;
1003
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
1004
+ opacity: 1;
1005
+ margin: 3px 0 0 0;
1006
+ }
1007
+ /* line 99, ../../component/styles/_forms_responsive.scss */
1008
+ .form .hint:before, .form .hint:after,
1009
+ .form .message:before,
1010
+ .form .message:after {
1011
+ border-width: 0 8px 8px 8px;
1012
+ border-color: rgba(255, 255, 255, 0) rgba(255, 255, 255, 0) white;
1013
+ top: 0;
1014
+ left: auto;
1015
+ right: 20px;
1016
+ }
1017
+ /* line 107, ../../component/styles/_forms_responsive.scss */
1018
+ .form .hint:after,
1019
+ .form .message:after {
1020
+ top: -1px;
1021
+ left: auto;
1022
+ border-color: rgba(255, 255, 255, 0) rgba(255, 255, 255, 0) #e2e2e2;
1023
+ }
1024
+ /* line 113, ../../component/styles/_forms_responsive.scss */
1025
+ .form .hint:hover,
1026
+ .form .message:hover {
1027
+ left: 0;
1028
+ }
1029
+ /* line 120, ../../component/styles/_forms_responsive.scss */
1030
+ .form .control_group input:focus ~ .hint,
1031
+ .form .control-group input:focus ~ .hint {
1032
+ left: 0;
1033
+ }
1034
+ /* line 128, ../../component/styles/_forms_responsive.scss */
1035
+ .form .success .message,
1036
+ .form .warning .message,
1037
+ .form .error .message {
1038
+ display: block;
1039
+ margin: 3px 0 0 0;
1040
+ }
1041
+ /* line 132, ../../component/styles/_forms_responsive.scss */
1042
+ .form .success .message ~ .hint,
1043
+ .form .warning .message ~ .hint,
1044
+ .form .error .message ~ .hint {
1045
+ margin: 0;
1046
+ position: relative;
1047
+ top: -2px;
1048
+ -webkit-border-radius: 0 0 3px 3px;
1049
+ -moz-border-radius: 0 0 3px 3px;
1050
+ -ms-border-radius: 0 0 3px 3px;
1051
+ -o-border-radius: 0 0 3px 3px;
1052
+ border-radius: 0 0 3px 3px;
1053
+ }
1054
+ /* line 139, ../../component/styles/_forms_responsive.scss */
1055
+ .form .success .message ~ .hint:before, .form .success .message ~ .hint:after,
1056
+ .form .warning .message ~ .hint:before,
1057
+ .form .warning .message ~ .hint:after,
1058
+ .form .error .message ~ .hint:before,
1059
+ .form .error .message ~ .hint:after {
1060
+ display: none;
1061
+ }
1062
+ }
1063
+ /*
1064
+ =======================================
1065
+ IE tweaks
1066
+ =======================================
1067
+ */
1068
+ /* line 4, ../../component/styles/_forms_ie.scss */
1069
+ .ie8 .form .help i:hover:after {
1070
+ display: none;
1071
+ }
1072
+ /* line 8, ../../component/styles/_forms_ie.scss */
1073
+ .ie8 .form .help span {
1074
+ top: 25px;
1075
+ }
1076
+ /* line 15, ../../component/styles/_forms_ie.scss */
1077
+ .ie8 .form.labels_top .help span {
1078
+ top: 20px;
1079
+ }
1080
+ /* line 24, ../../component/styles/_forms_ie.scss */
1081
+ .ie8 .form .hint:before, .ie8 .form .hint:after,
1082
+ .ie8 .form .message:before,
1083
+ .ie8 .form .message:after {
1084
+ display: none;
1085
+ }
1086
+ /* line 29, ../../component/styles/_forms_ie.scss */
1087
+ .ie8 .form .hint {
1088
+ display: none;
1089
+ }
1090
+ /* line 32, ../../component/styles/_forms_ie.scss */
1091
+ .ie8 .form .hint.always_visible {
1092
+ display: inline-block;
1093
+ }
1094
+ /* line 37, ../../component/styles/_forms_ie.scss */
1095
+ .ie8 .form .control_group input:focus ~ .hint {
1096
+ display: block;
1097
+ }
1098
+ /* line 40, ../../component/styles/_forms_ie.scss */
1099
+ .ie8 .form .control_group input:focus ~ .hint.always_visible {
1100
+ display: inline-block;
1101
+ }