archetype 0.0.1.pre.3.811928f → 0.0.1.pre.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (75) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +24 -1
  3. data/LICENSE +1 -1
  4. data/README.md +1 -1
  5. data/VERSION.yml +1 -1
  6. data/bin/archetype +3 -0
  7. data/lib/archetype.rb +4 -0
  8. data/lib/archetype/actions/help.rb +16 -0
  9. data/lib/archetype/actions/theme.rb +73 -0
  10. data/lib/archetype/executor.rb +27 -0
  11. data/lib/archetype/functions/hash.rb +28 -12
  12. data/lib/archetype/functions/helpers.rb +46 -13
  13. data/lib/archetype/functions/styleguide_memoizer.rb +9 -1
  14. data/lib/archetype/sass_extensions.rb +1 -0
  15. data/lib/archetype/sass_extensions/functions/lists.rb +34 -40
  16. data/lib/archetype/sass_extensions/functions/locale.rb +32 -16
  17. data/lib/archetype/sass_extensions/functions/styleguide.rb +115 -37
  18. data/lib/archetype/sass_extensions/functions/ui.rb +3 -2
  19. data/lib/archetype/sass_extensions/functions/version.rb +11 -6
  20. data/lib/archetype/sass_extensions/monkey_patches.rb +3 -0
  21. data/lib/archetype/sass_extensions/monkey_patches/handle_include_loop.rb +13 -0
  22. data/lib/archetype/version.rb +19 -12
  23. data/stylesheets/archetype/_base.scss +3 -0
  24. data/stylesheets/archetype/_config.scss +31 -7
  25. data/stylesheets/archetype/_hacks.scss +17 -5
  26. data/stylesheets/archetype/_ui.scss +64 -23
  27. data/stylesheets/archetype/styleguide/components/_buttons.scss +6 -6
  28. data/stylesheets/archetype/styleguide/components/_headlines.scss +1 -0
  29. data/stylesheets/archetype/styleguide/components/_links.scss +2 -0
  30. data/stylesheets/archetype/util/_styles.scss +59 -14
  31. data/stylesheets/archetype/util/_targeting.scss +1 -1
  32. data/templates/_theme/_components.scss +3 -0
  33. data/templates/_theme/_config.scss +1 -0
  34. data/templates/_theme/_core.scss +13 -0
  35. data/templates/_theme/_helpers.scss +1 -0
  36. data/templates/_theme/_primitives.scss +3 -0
  37. data/templates/_theme/components/README +1 -0
  38. data/templates/_theme/primitives/README +1 -0
  39. data/test/fixtures/stylesheets/archetype/config.rb +2 -0
  40. data/test/fixtures/stylesheets/archetype/expected/base.css +349 -0
  41. data/test/fixtures/stylesheets/archetype/expected/hacks/ie_pseudo.css +3 -3
  42. data/test/fixtures/stylesheets/archetype/expected/hacks/transparent_focusable.css +4 -0
  43. data/test/fixtures/stylesheets/archetype/expected/locale.css +23 -0
  44. data/test/fixtures/stylesheets/archetype/expected/styleguide/alerts.css +675 -0
  45. data/test/fixtures/stylesheets/archetype/expected/styleguide/buttons.css +110 -18
  46. data/test/fixtures/stylesheets/archetype/expected/styleguide/drop.css +63 -0
  47. data/test/fixtures/stylesheets/archetype/expected/styleguide/extend.css +7 -0
  48. data/test/fixtures/stylesheets/archetype/expected/styleguide/invalid_structures.css +21 -0
  49. data/test/fixtures/stylesheets/archetype/expected/styleguide/multi_value.css +13 -0
  50. data/test/fixtures/stylesheets/archetype/expected/styleguide/selective_state.css +3 -0
  51. data/test/fixtures/stylesheets/archetype/expected/ui/glyph_icon.css +116 -2
  52. data/test/fixtures/stylesheets/archetype/expected/utilities/associative.css +9 -0
  53. data/test/fixtures/stylesheets/archetype/expected/utilities/custom_output_styler.css +8 -0
  54. data/test/fixtures/stylesheets/archetype/expected/utilities/targeting/target-browser.css +5 -0
  55. data/test/fixtures/stylesheets/archetype/source/base.scss +3 -0
  56. data/test/fixtures/stylesheets/archetype/source/hacks/transparent_focusable.scss +5 -0
  57. data/test/fixtures/stylesheets/archetype/source/locale.scss +43 -0
  58. data/test/fixtures/stylesheets/archetype/source/styleguide/alerts.scss +21 -0
  59. data/test/fixtures/stylesheets/archetype/source/styleguide/buttons.scss +5 -1
  60. data/test/fixtures/stylesheets/archetype/source/styleguide/drop.scss +101 -0
  61. data/test/fixtures/stylesheets/archetype/source/styleguide/extend.scss +23 -0
  62. data/test/fixtures/stylesheets/archetype/source/styleguide/fallback_styles.scss +1 -1
  63. data/test/fixtures/stylesheets/archetype/source/styleguide/invalid_structures.scss +85 -0
  64. data/test/fixtures/stylesheets/archetype/source/styleguide/multi_value.scss +18 -0
  65. data/test/fixtures/stylesheets/archetype/source/styleguide/nested_styleguides.scss +1 -1
  66. data/test/fixtures/stylesheets/archetype/source/styleguide/selective_state.scss +1 -1
  67. data/test/fixtures/stylesheets/archetype/source/ui/glyph_icon.scss +30 -0
  68. data/test/fixtures/stylesheets/archetype/source/utilities/associative.scss +24 -0
  69. data/test/fixtures/stylesheets/archetype/source/utilities/custom_output_styler.scss +21 -0
  70. data/test/fixtures/stylesheets/archetype/source/utilities/targeting/target-browser.scss +8 -1
  71. data/test/helpers/test_case.rb +2 -2
  72. data/test/integrations/archetype_test.rb +3 -1
  73. data/test/units/sass_extensions_test.rb +18 -25
  74. metadata +108 -36
  75. data/test/fixtures/stylesheets/archetype/assets/images/vendor/archetype/animations/loaders-s7889ccc8c1.png +0 -0
@@ -0,0 +1 @@
1
+ // place your component partials in this directory
@@ -0,0 +1 @@
1
+ // place your primitive partials in this directory
@@ -11,9 +11,11 @@ http_images_path = "/assets/images"
11
11
  http_fonts_path = "/assets/fonts"
12
12
  line_comments = false
13
13
  environment = :production
14
+ testing = true
14
15
 
15
16
  asset_cache_buster do |path, file|
16
17
  "busted=true"
17
18
  end
18
19
 
19
20
  disable_warnings = true
21
+
@@ -0,0 +1,349 @@
1
+ @-webkit-keyframes archetype-loader {
2
+ from {
3
+ -webkit-transform: rotate(0deg);
4
+ }
5
+
6
+ to {
7
+ -webkit-transform: rotate(360deg);
8
+ }
9
+ }
10
+
11
+ @-moz-keyframes archetype-loader {
12
+ from {
13
+ -moz-transform: rotate(0deg);
14
+ }
15
+
16
+ to {
17
+ -moz-transform: rotate(360deg);
18
+ }
19
+ }
20
+
21
+ @-ms-keyframes archetype-loader {
22
+ from {
23
+ -ms-transform: rotate(0deg);
24
+ }
25
+
26
+ to {
27
+ -ms-transform: rotate(360deg);
28
+ }
29
+ }
30
+
31
+ @-o-keyframes archetype-loader {
32
+ from {
33
+ -o-transform: rotate(0deg);
34
+ }
35
+
36
+ to {
37
+ -o-transform: rotate(360deg);
38
+ }
39
+ }
40
+
41
+ @keyframes archetype-loader {
42
+ from {
43
+ transform: rotate(0deg);
44
+ }
45
+
46
+ to {
47
+ transform: rotate(360deg);
48
+ }
49
+ }
50
+
51
+ @-webkit-keyframes archetype-loader-position-medium-1 {
52
+ from, to {
53
+ background-position: 0 -230px;
54
+ width: 58px;
55
+ height: 58px;
56
+ margin-left: -29px;
57
+ margin-top: -29px;
58
+ }
59
+ }
60
+
61
+ @-moz-keyframes archetype-loader-position-medium-1 {
62
+ from, to {
63
+ background-position: 0 -230px;
64
+ width: 58px;
65
+ height: 58px;
66
+ margin-left: -29px;
67
+ margin-top: -29px;
68
+ }
69
+ }
70
+
71
+ @-ms-keyframes archetype-loader-position-medium-1 {
72
+ from, to {
73
+ background-position: 0 -230px;
74
+ width: 58px;
75
+ height: 58px;
76
+ margin-left: -29px;
77
+ margin-top: -29px;
78
+ }
79
+ }
80
+
81
+ @-o-keyframes archetype-loader-position-medium-1 {
82
+ from, to {
83
+ background-position: 0 -230px;
84
+ width: 58px;
85
+ height: 58px;
86
+ margin-left: -29px;
87
+ margin-top: -29px;
88
+ }
89
+ }
90
+
91
+ @keyframes archetype-loader-position-medium-1 {
92
+ from, to {
93
+ background-position: 0 -230px;
94
+ width: 58px;
95
+ height: 58px;
96
+ margin-left: -29px;
97
+ margin-top: -29px;
98
+ }
99
+ }
100
+
101
+ @-webkit-keyframes archetype-loader-position-medium-2 {
102
+ from, to {
103
+ background-position: 0 -288px;
104
+ width: 58px;
105
+ height: 58px;
106
+ margin-left: -29px;
107
+ margin-top: -29px;
108
+ }
109
+ }
110
+
111
+ @-moz-keyframes archetype-loader-position-medium-2 {
112
+ from, to {
113
+ background-position: 0 -288px;
114
+ width: 58px;
115
+ height: 58px;
116
+ margin-left: -29px;
117
+ margin-top: -29px;
118
+ }
119
+ }
120
+
121
+ @-ms-keyframes archetype-loader-position-medium-2 {
122
+ from, to {
123
+ background-position: 0 -288px;
124
+ width: 58px;
125
+ height: 58px;
126
+ margin-left: -29px;
127
+ margin-top: -29px;
128
+ }
129
+ }
130
+
131
+ @-o-keyframes archetype-loader-position-medium-2 {
132
+ from, to {
133
+ background-position: 0 -288px;
134
+ width: 58px;
135
+ height: 58px;
136
+ margin-left: -29px;
137
+ margin-top: -29px;
138
+ }
139
+ }
140
+
141
+ @keyframes archetype-loader-position-medium-2 {
142
+ from, to {
143
+ background-position: 0 -288px;
144
+ width: 58px;
145
+ height: 58px;
146
+ margin-left: -29px;
147
+ margin-top: -29px;
148
+ }
149
+ }
150
+
151
+ @-webkit-keyframes archetype-loader-position-small-1 {
152
+ from, to {
153
+ background-position: 0 -692px;
154
+ width: 16px;
155
+ height: 16px;
156
+ margin-left: -8px;
157
+ margin-top: -8px;
158
+ }
159
+ }
160
+
161
+ @-moz-keyframes archetype-loader-position-small-1 {
162
+ from, to {
163
+ background-position: 0 -692px;
164
+ width: 16px;
165
+ height: 16px;
166
+ margin-left: -8px;
167
+ margin-top: -8px;
168
+ }
169
+ }
170
+
171
+ @-ms-keyframes archetype-loader-position-small-1 {
172
+ from, to {
173
+ background-position: 0 -692px;
174
+ width: 16px;
175
+ height: 16px;
176
+ margin-left: -8px;
177
+ margin-top: -8px;
178
+ }
179
+ }
180
+
181
+ @-o-keyframes archetype-loader-position-small-1 {
182
+ from, to {
183
+ background-position: 0 -692px;
184
+ width: 16px;
185
+ height: 16px;
186
+ margin-left: -8px;
187
+ margin-top: -8px;
188
+ }
189
+ }
190
+
191
+ @keyframes archetype-loader-position-small-1 {
192
+ from, to {
193
+ background-position: 0 -692px;
194
+ width: 16px;
195
+ height: 16px;
196
+ margin-left: -8px;
197
+ margin-top: -8px;
198
+ }
199
+ }
200
+
201
+ @-webkit-keyframes archetype-loader-position-small-2 {
202
+ from, to {
203
+ background-position: 0 -708px;
204
+ width: 16px;
205
+ height: 16px;
206
+ margin-left: -8px;
207
+ margin-top: -8px;
208
+ }
209
+ }
210
+
211
+ @-moz-keyframes archetype-loader-position-small-2 {
212
+ from, to {
213
+ background-position: 0 -708px;
214
+ width: 16px;
215
+ height: 16px;
216
+ margin-left: -8px;
217
+ margin-top: -8px;
218
+ }
219
+ }
220
+
221
+ @-ms-keyframes archetype-loader-position-small-2 {
222
+ from, to {
223
+ background-position: 0 -708px;
224
+ width: 16px;
225
+ height: 16px;
226
+ margin-left: -8px;
227
+ margin-top: -8px;
228
+ }
229
+ }
230
+
231
+ @-o-keyframes archetype-loader-position-small-2 {
232
+ from, to {
233
+ background-position: 0 -708px;
234
+ width: 16px;
235
+ height: 16px;
236
+ margin-left: -8px;
237
+ margin-top: -8px;
238
+ }
239
+ }
240
+
241
+ @keyframes archetype-loader-position-small-2 {
242
+ from, to {
243
+ background-position: 0 -708px;
244
+ width: 16px;
245
+ height: 16px;
246
+ margin-left: -8px;
247
+ margin-top: -8px;
248
+ }
249
+ }
250
+
251
+ @-webkit-keyframes archetype-loader-position-large-1 {
252
+ from, to {
253
+ background-position: 0 -462px;
254
+ width: 115px;
255
+ height: 115px;
256
+ margin-left: -57.5px;
257
+ margin-top: -57.5px;
258
+ }
259
+ }
260
+
261
+ @-moz-keyframes archetype-loader-position-large-1 {
262
+ from, to {
263
+ background-position: 0 -462px;
264
+ width: 115px;
265
+ height: 115px;
266
+ margin-left: -57.5px;
267
+ margin-top: -57.5px;
268
+ }
269
+ }
270
+
271
+ @-ms-keyframes archetype-loader-position-large-1 {
272
+ from, to {
273
+ background-position: 0 -462px;
274
+ width: 115px;
275
+ height: 115px;
276
+ margin-left: -57.5px;
277
+ margin-top: -57.5px;
278
+ }
279
+ }
280
+
281
+ @-o-keyframes archetype-loader-position-large-1 {
282
+ from, to {
283
+ background-position: 0 -462px;
284
+ width: 115px;
285
+ height: 115px;
286
+ margin-left: -57.5px;
287
+ margin-top: -57.5px;
288
+ }
289
+ }
290
+
291
+ @keyframes archetype-loader-position-large-1 {
292
+ from, to {
293
+ background-position: 0 -462px;
294
+ width: 115px;
295
+ height: 115px;
296
+ margin-left: -57.5px;
297
+ margin-top: -57.5px;
298
+ }
299
+ }
300
+
301
+ @-webkit-keyframes archetype-loader-position-large-2 {
302
+ from, to {
303
+ background-position: 0 -577px;
304
+ width: 115px;
305
+ height: 115px;
306
+ margin-left: -57.5px;
307
+ margin-top: -57.5px;
308
+ }
309
+ }
310
+
311
+ @-moz-keyframes archetype-loader-position-large-2 {
312
+ from, to {
313
+ background-position: 0 -577px;
314
+ width: 115px;
315
+ height: 115px;
316
+ margin-left: -57.5px;
317
+ margin-top: -57.5px;
318
+ }
319
+ }
320
+
321
+ @-ms-keyframes archetype-loader-position-large-2 {
322
+ from, to {
323
+ background-position: 0 -577px;
324
+ width: 115px;
325
+ height: 115px;
326
+ margin-left: -57.5px;
327
+ margin-top: -57.5px;
328
+ }
329
+ }
330
+
331
+ @-o-keyframes archetype-loader-position-large-2 {
332
+ from, to {
333
+ background-position: 0 -577px;
334
+ width: 115px;
335
+ height: 115px;
336
+ margin-left: -57.5px;
337
+ margin-top: -57.5px;
338
+ }
339
+ }
340
+
341
+ @keyframes archetype-loader-position-large-2 {
342
+ from, to {
343
+ background-position: 0 -577px;
344
+ width: 115px;
345
+ height: 115px;
346
+ margin-left: -57.5px;
347
+ margin-top: -57.5px;
348
+ }
349
+ }
@@ -1,11 +1,11 @@
1
1
  .before {
2
- *zoom: expression(this.runtimeStyle.zoom="1", this.el=document.createElement("x-archetype"),this.el.style.cssText="color: red; background: green;",this.insertBefore(this.el));
2
+ *zoom: expression(this.runtimeStyle.zoom="1", this.el=document.createElement("x-archetype"),this.el.id="ie-pseudo-archetype-uid-RANDOM_UID",this.el.style.cssText="color: red; background: green;",this.insertBefore(this.el));
3
3
  }
4
4
 
5
5
  .after-content {
6
- *zoom: expression(this.runtimeStyle.zoom="1", this.el=document.createElement("x-archetype"),this.el.innerHTML="➽",this.appendChild(this.el));
6
+ *zoom: expression(this.runtimeStyle.zoom="1", this.el=document.createElement("x-archetype"),this.el.id="ie-pseudo-archetype-uid-RANDOM_UID",this.el.innerHTML="➽",this.appendChild(this.el));
7
7
  }
8
8
 
9
9
  .before-style-content {
10
- *zoom: expression(this.runtimeStyle.zoom="1", this.el=document.createElement("x-archetype"),this.el.innerHTML="testing ➽if this works",this.el.style.cssText="color: red; background: green;",this.insertBefore(this.el));
10
+ *zoom: expression(this.runtimeStyle.zoom="1", this.el=document.createElement("x-archetype"),this.el.id="ie-pseudo-archetype-uid-RANDOM_UID",this.el.innerHTML="testing ➽if this works",this.el.style.cssText="color: red; background: green;",this.insertBefore(this.el));
11
11
  }
@@ -0,0 +1,4 @@
1
+ .test {
2
+ background: transparent "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7";
3
+ *background: transparent url(https://);
4
+ }
@@ -0,0 +1,23 @@
1
+ .en_US {
2
+ content: "en_US";
3
+ }
4
+
5
+ .en_wild {
6
+ content: "en_*";
7
+ }
8
+
9
+ .wild_US {
10
+ content: "*_US";
11
+ }
12
+
13
+ .one {
14
+ content: "one of de_DE fr_FR pt_ en_US";
15
+ }
16
+
17
+ .not {
18
+ content: "not one of ja_JP pt_BR _GB de_";
19
+ }
20
+
21
+ .lang {
22
+ content: "en_US";
23
+ }
@@ -0,0 +1,675 @@
1
+ .alert.error {
2
+ background-color: #da4f49;
3
+ background-repeat: no-repeat;
4
+ background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ee5f5b), color-stop(100%, #bd362f));
5
+ background: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
6
+ background: -moz-linear-gradient(top, #ee5f5b, #bd362f);
7
+ background: -o-linear-gradient(top, #ee5f5b, #bd362f);
8
+ background: linear-gradient(top, #ee5f5b, #bd362f);
9
+ -webkit-box-shadow: 0 0 0 1px #bd362f, 0 1px 2px rgba(0, 0, 0, 0.45);
10
+ -moz-box-shadow: 0 0 0 1px #bd362f, 0 1px 2px rgba(0, 0, 0, 0.45);
11
+ box-shadow: 0 0 0 1px #bd362f, 0 1px 2px rgba(0, 0, 0, 0.45);
12
+ overflow: hidden;
13
+ display: block;
14
+ color: white;
15
+ font-size: 15px;
16
+ line-height: 20px;
17
+ position: relative;
18
+ padding: 10px 20px 10px 50px;
19
+ *zoom: expression(this.runtimeStyle.zoom="1", this.el=document.createElement("x-archetype-glyph"),this.el.id="ie-pseudo-archetype-uid-RANDOM_UID",this.el.innerHTML="",this.el.style.cssText="font-family:'FontAwesome-0.0.1', 'FontAwesome';font-weight:normal;font-style:normal;text-decoration:inherit;font-size:36px;color:inherit;",this.insertBefore(this.el));
20
+ }
21
+ .alert.error:before {
22
+ font-family: "FontAwesome-0.0.1", "FontAwesome";
23
+ font-weight: normal;
24
+ font-style: normal;
25
+ text-decoration: inherit;
26
+ speak: none;
27
+ font-size: 36px;
28
+ color: inherit;
29
+ content: "\f057";
30
+ }
31
+ .alert.error:before, .alert.error #ie-pseudo-archetype-uid-RANDOM_UID {
32
+ position: absolute;
33
+ top: 6px;
34
+ left: 11px;
35
+ line-height: 1;
36
+ }
37
+ .alert.error .dismiss {
38
+ color: white;
39
+ background: transparent none;
40
+ padding: 0 1px 0 0;
41
+ border: 0;
42
+ margin: 0;
43
+ cursor: pointer;
44
+ text-decoration: none;
45
+ position: absolute;
46
+ overflow: hidden;
47
+ top: 10px;
48
+ right: 10px;
49
+ width: 11px;
50
+ height: 11px;
51
+ text-indent: 12px;
52
+ *zoom: expression(this.runtimeStyle.zoom="1", this.el=document.createElement("x-archetype-glyph"),this.el.id="ie-pseudo-archetype-uid-RANDOM_UID",this.el.innerHTML="",this.el.style.cssText="font-family:'FontAwesome-0.0.1', 'FontAwesome';font-weight:normal;font-style:normal;text-decoration:inherit;font-size:11px;color:inherit;text-decoration:none;",this.insertBefore(this.el));
53
+ }
54
+ .alert.error .dismiss:before {
55
+ font-family: "FontAwesome-0.0.1", "FontAwesome";
56
+ font-weight: normal;
57
+ font-style: normal;
58
+ text-decoration: inherit;
59
+ speak: none;
60
+ font-size: 11px;
61
+ color: inherit;
62
+ content: "\f00d";
63
+ }
64
+ .alert.error .dismiss.hover, .alert.error .dismiss:hover, .alert.error .dismiss.focus, .alert.error .dismiss:focus {
65
+ text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.35);
66
+ }
67
+ .alert.error .dismiss:before, .alert.error .dismiss #ie-pseudo-archetype-uid-RANDOM_UID {
68
+ vertical-align: top;
69
+ line-height: 1;
70
+ position: absolute;
71
+ top: 0;
72
+ right: 0;
73
+ text-decoration: none;
74
+ cursor: pointer;
75
+ }
76
+
77
+ .alert.success {
78
+ background-color: #5bb75b;
79
+ background-repeat: no-repeat;
80
+ background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #62c462), color-stop(100%, #51a351));
81
+ background: -webkit-linear-gradient(top, #62c462, #51a351);
82
+ background: -moz-linear-gradient(top, #62c462, #51a351);
83
+ background: -o-linear-gradient(top, #62c462, #51a351);
84
+ background: linear-gradient(top, #62c462, #51a351);
85
+ -webkit-box-shadow: 0 0 0 1px #51a351, 0 1px 2px rgba(0, 0, 0, 0.45);
86
+ -moz-box-shadow: 0 0 0 1px #51a351, 0 1px 2px rgba(0, 0, 0, 0.45);
87
+ box-shadow: 0 0 0 1px #51a351, 0 1px 2px rgba(0, 0, 0, 0.45);
88
+ overflow: hidden;
89
+ display: block;
90
+ color: white;
91
+ font-size: 15px;
92
+ line-height: 20px;
93
+ position: relative;
94
+ padding: 10px 20px 10px 50px;
95
+ *zoom: expression(this.runtimeStyle.zoom="1", this.el=document.createElement("x-archetype-glyph"),this.el.id="ie-pseudo-archetype-uid-RANDOM_UID",this.el.innerHTML="",this.el.style.cssText="font-family:'FontAwesome-0.0.1', 'FontAwesome';font-weight:normal;font-style:normal;text-decoration:inherit;font-size:36px;color:inherit;",this.insertBefore(this.el));
96
+ }
97
+ .alert.success:before {
98
+ font-family: "FontAwesome-0.0.1", "FontAwesome";
99
+ font-weight: normal;
100
+ font-style: normal;
101
+ text-decoration: inherit;
102
+ speak: none;
103
+ font-size: 36px;
104
+ color: inherit;
105
+ content: "\f058";
106
+ }
107
+ .alert.success:before, .alert.success #ie-pseudo-archetype-uid-RANDOM_UID {
108
+ position: absolute;
109
+ top: 6px;
110
+ left: 11px;
111
+ line-height: 1;
112
+ }
113
+ .alert.success .dismiss {
114
+ color: white;
115
+ background: transparent none;
116
+ padding: 0 1px 0 0;
117
+ border: 0;
118
+ margin: 0;
119
+ cursor: pointer;
120
+ text-decoration: none;
121
+ position: absolute;
122
+ overflow: hidden;
123
+ top: 10px;
124
+ right: 10px;
125
+ width: 11px;
126
+ height: 11px;
127
+ text-indent: 12px;
128
+ *zoom: expression(this.runtimeStyle.zoom="1", this.el=document.createElement("x-archetype-glyph"),this.el.id="ie-pseudo-archetype-uid-RANDOM_UID",this.el.innerHTML="",this.el.style.cssText="font-family:'FontAwesome-0.0.1', 'FontAwesome';font-weight:normal;font-style:normal;text-decoration:inherit;font-size:11px;color:inherit;text-decoration:none;",this.insertBefore(this.el));
129
+ }
130
+ .alert.success .dismiss:before {
131
+ font-family: "FontAwesome-0.0.1", "FontAwesome";
132
+ font-weight: normal;
133
+ font-style: normal;
134
+ text-decoration: inherit;
135
+ speak: none;
136
+ font-size: 11px;
137
+ color: inherit;
138
+ content: "\f00d";
139
+ }
140
+ .alert.success .dismiss.hover, .alert.success .dismiss:hover, .alert.success .dismiss.focus, .alert.success .dismiss:focus {
141
+ text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.35);
142
+ }
143
+ .alert.success .dismiss:before, .alert.success .dismiss #ie-pseudo-archetype-uid-RANDOM_UID {
144
+ vertical-align: top;
145
+ line-height: 1;
146
+ position: absolute;
147
+ top: 0;
148
+ right: 0;
149
+ text-decoration: none;
150
+ cursor: pointer;
151
+ }
152
+
153
+ .alert.notice {
154
+ background-color: #49afcd;
155
+ background-repeat: no-repeat;
156
+ background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #5bc0de), color-stop(100%, #2f96b4));
157
+ background: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
158
+ background: -moz-linear-gradient(top, #5bc0de, #2f96b4);
159
+ background: -o-linear-gradient(top, #5bc0de, #2f96b4);
160
+ background: linear-gradient(top, #5bc0de, #2f96b4);
161
+ -webkit-box-shadow: 0 0 0 1px #2f96b4, 0 1px 2px rgba(0, 0, 0, 0.45);
162
+ -moz-box-shadow: 0 0 0 1px #2f96b4, 0 1px 2px rgba(0, 0, 0, 0.45);
163
+ box-shadow: 0 0 0 1px #2f96b4, 0 1px 2px rgba(0, 0, 0, 0.45);
164
+ overflow: hidden;
165
+ display: block;
166
+ color: white;
167
+ font-size: 15px;
168
+ line-height: 20px;
169
+ position: relative;
170
+ padding: 10px 20px 10px 50px;
171
+ *zoom: expression(this.runtimeStyle.zoom="1", this.el=document.createElement("x-archetype-glyph"),this.el.id="ie-pseudo-archetype-uid-RANDOM_UID",this.el.innerHTML="",this.el.style.cssText="font-family:'FontAwesome-0.0.1', 'FontAwesome';font-weight:normal;font-style:normal;text-decoration:inherit;font-size:36px;color:inherit;",this.insertBefore(this.el));
172
+ }
173
+ .alert.notice:before {
174
+ font-family: "FontAwesome-0.0.1", "FontAwesome";
175
+ font-weight: normal;
176
+ font-style: normal;
177
+ text-decoration: inherit;
178
+ speak: none;
179
+ font-size: 36px;
180
+ color: inherit;
181
+ content: "\f05a";
182
+ }
183
+ .alert.notice:before, .alert.notice #ie-pseudo-archetype-uid-RANDOM_UID {
184
+ position: absolute;
185
+ top: 6px;
186
+ left: 11px;
187
+ line-height: 1;
188
+ }
189
+ .alert.notice .dismiss {
190
+ color: white;
191
+ background: transparent none;
192
+ padding: 0 1px 0 0;
193
+ border: 0;
194
+ margin: 0;
195
+ cursor: pointer;
196
+ text-decoration: none;
197
+ position: absolute;
198
+ overflow: hidden;
199
+ top: 10px;
200
+ right: 10px;
201
+ width: 11px;
202
+ height: 11px;
203
+ text-indent: 12px;
204
+ *zoom: expression(this.runtimeStyle.zoom="1", this.el=document.createElement("x-archetype-glyph"),this.el.id="ie-pseudo-archetype-uid-RANDOM_UID",this.el.innerHTML="",this.el.style.cssText="font-family:'FontAwesome-0.0.1', 'FontAwesome';font-weight:normal;font-style:normal;text-decoration:inherit;font-size:11px;color:inherit;text-decoration:none;",this.insertBefore(this.el));
205
+ }
206
+ .alert.notice .dismiss:before {
207
+ font-family: "FontAwesome-0.0.1", "FontAwesome";
208
+ font-weight: normal;
209
+ font-style: normal;
210
+ text-decoration: inherit;
211
+ speak: none;
212
+ font-size: 11px;
213
+ color: inherit;
214
+ content: "\f00d";
215
+ }
216
+ .alert.notice .dismiss.hover, .alert.notice .dismiss:hover, .alert.notice .dismiss.focus, .alert.notice .dismiss:focus {
217
+ text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.35);
218
+ }
219
+ .alert.notice .dismiss:before, .alert.notice .dismiss #ie-pseudo-archetype-uid-RANDOM_UID {
220
+ vertical-align: top;
221
+ line-height: 1;
222
+ position: absolute;
223
+ top: 0;
224
+ right: 0;
225
+ text-decoration: none;
226
+ cursor: pointer;
227
+ }
228
+
229
+ .alert.yield {
230
+ background-color: #faa732;
231
+ background-repeat: no-repeat;
232
+ background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbb450), color-stop(100%, #f89406));
233
+ background: -webkit-linear-gradient(top, #fbb450, #f89406);
234
+ background: -moz-linear-gradient(top, #fbb450, #f89406);
235
+ background: -o-linear-gradient(top, #fbb450, #f89406);
236
+ background: linear-gradient(top, #fbb450, #f89406);
237
+ -webkit-box-shadow: 0 0 0 1px #f89406, 0 1px 2px rgba(0, 0, 0, 0.45);
238
+ -moz-box-shadow: 0 0 0 1px #f89406, 0 1px 2px rgba(0, 0, 0, 0.45);
239
+ box-shadow: 0 0 0 1px #f89406, 0 1px 2px rgba(0, 0, 0, 0.45);
240
+ overflow: hidden;
241
+ display: block;
242
+ color: white;
243
+ font-size: 15px;
244
+ line-height: 20px;
245
+ position: relative;
246
+ padding: 10px 20px 10px 50px;
247
+ *zoom: expression(this.runtimeStyle.zoom="1", this.el=document.createElement("x-archetype-glyph"),this.el.id="ie-pseudo-archetype-uid-RANDOM_UID",this.el.innerHTML="",this.el.style.cssText="font-family:'FontAwesome-0.0.1', 'FontAwesome';font-weight:normal;font-style:normal;text-decoration:inherit;font-size:36px;color:inherit;",this.insertBefore(this.el));
248
+ }
249
+ .alert.yield:before {
250
+ font-family: "FontAwesome-0.0.1", "FontAwesome";
251
+ font-weight: normal;
252
+ font-style: normal;
253
+ text-decoration: inherit;
254
+ speak: none;
255
+ font-size: 36px;
256
+ color: inherit;
257
+ content: "\f071";
258
+ }
259
+ .alert.yield:before, .alert.yield #ie-pseudo-archetype-uid-RANDOM_UID {
260
+ position: absolute;
261
+ top: 6px;
262
+ left: 11px;
263
+ line-height: 1;
264
+ }
265
+ .alert.yield .dismiss {
266
+ color: white;
267
+ background: transparent none;
268
+ padding: 0 1px 0 0;
269
+ border: 0;
270
+ margin: 0;
271
+ cursor: pointer;
272
+ text-decoration: none;
273
+ position: absolute;
274
+ overflow: hidden;
275
+ top: 10px;
276
+ right: 10px;
277
+ width: 11px;
278
+ height: 11px;
279
+ text-indent: 12px;
280
+ *zoom: expression(this.runtimeStyle.zoom="1", this.el=document.createElement("x-archetype-glyph"),this.el.id="ie-pseudo-archetype-uid-RANDOM_UID",this.el.innerHTML="",this.el.style.cssText="font-family:'FontAwesome-0.0.1', 'FontAwesome';font-weight:normal;font-style:normal;text-decoration:inherit;font-size:11px;color:inherit;text-decoration:none;",this.insertBefore(this.el));
281
+ }
282
+ .alert.yield .dismiss:before {
283
+ font-family: "FontAwesome-0.0.1", "FontAwesome";
284
+ font-weight: normal;
285
+ font-style: normal;
286
+ text-decoration: inherit;
287
+ speak: none;
288
+ font-size: 11px;
289
+ color: inherit;
290
+ content: "\f00d";
291
+ }
292
+ .alert.yield .dismiss.hover, .alert.yield .dismiss:hover, .alert.yield .dismiss.focus, .alert.yield .dismiss:focus {
293
+ text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.35);
294
+ }
295
+ .alert.yield .dismiss:before, .alert.yield .dismiss #ie-pseudo-archetype-uid-RANDOM_UID {
296
+ vertical-align: top;
297
+ line-height: 1;
298
+ position: absolute;
299
+ top: 0;
300
+ right: 0;
301
+ text-decoration: none;
302
+ cursor: pointer;
303
+ }
304
+
305
+ .alert.error {
306
+ background-color: #da4f49;
307
+ background-repeat: no-repeat;
308
+ background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ee5f5b), color-stop(100%, #bd362f));
309
+ background: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
310
+ background: -moz-linear-gradient(top, #ee5f5b, #bd362f);
311
+ background: -o-linear-gradient(top, #ee5f5b, #bd362f);
312
+ background: linear-gradient(top, #ee5f5b, #bd362f);
313
+ -webkit-box-shadow: 0 0 0 1px #bd362f, 0 1px 2px rgba(0, 0, 0, 0.45);
314
+ -moz-box-shadow: 0 0 0 1px #bd362f, 0 1px 2px rgba(0, 0, 0, 0.45);
315
+ box-shadow: 0 0 0 1px #bd362f, 0 1px 2px rgba(0, 0, 0, 0.45);
316
+ overflow: hidden;
317
+ display: block;
318
+ color: white;
319
+ font-size: 15px;
320
+ line-height: 20px;
321
+ position: relative;
322
+ padding: 10px 20px 10px 50px;
323
+ *zoom: expression(this.runtimeStyle.zoom="1", this.el=document.createElement("x-archetype-glyph"),this.el.id="ie-pseudo-archetype-uid-RANDOM_UID",this.el.innerHTML="",this.insertBefore(this.el));
324
+ }
325
+ .alert.error:before {
326
+ font-family: "FontAwesome-0.0.1", "FontAwesome";
327
+ font-weight: normal;
328
+ font-style: normal;
329
+ text-decoration: inherit;
330
+ speak: none;
331
+ font-size: 36px;
332
+ color: inherit;
333
+ content: "\f057";
334
+ }
335
+ .alert.error #ie-pseudo-archetype-uid-RANDOM_UID {
336
+ font-family: 'FontAwesome-0.0.1', 'FontAwesome';
337
+ font-weight: normal;
338
+ font-style: normal;
339
+ text-decoration: inherit;
340
+ font-size: 36px;
341
+ color: inherit;
342
+ }
343
+ .alert.error:before, .alert.error #ie-pseudo-archetype-uid-RANDOM_UID {
344
+ position: absolute;
345
+ top: 6px;
346
+ left: 11px;
347
+ line-height: 1;
348
+ }
349
+ .alert.error .dismiss {
350
+ color: white;
351
+ background: transparent none;
352
+ padding: 0 1px 0 0;
353
+ border: 0;
354
+ margin: 0;
355
+ cursor: pointer;
356
+ text-decoration: none;
357
+ position: absolute;
358
+ overflow: hidden;
359
+ top: 10px;
360
+ right: 10px;
361
+ width: 11px;
362
+ height: 11px;
363
+ text-indent: 12px;
364
+ *zoom: expression(this.runtimeStyle.zoom="1", this.el=document.createElement("x-archetype-glyph"),this.el.id="ie-pseudo-archetype-uid-RANDOM_UID",this.el.innerHTML="",this.insertBefore(this.el));
365
+ }
366
+ .alert.error .dismiss:before {
367
+ font-family: "FontAwesome-0.0.1", "FontAwesome";
368
+ font-weight: normal;
369
+ font-style: normal;
370
+ text-decoration: inherit;
371
+ speak: none;
372
+ font-size: 11px;
373
+ color: inherit;
374
+ content: "\f00d";
375
+ }
376
+ .alert.error .dismiss #ie-pseudo-archetype-uid-RANDOM_UID {
377
+ font-family: 'FontAwesome-0.0.1', 'FontAwesome';
378
+ font-weight: normal;
379
+ font-style: normal;
380
+ text-decoration: inherit;
381
+ font-size: 11px;
382
+ color: inherit;
383
+ text-decoration: none;
384
+ }
385
+ .alert.error .dismiss.hover, .alert.error .dismiss:hover, .alert.error .dismiss.focus, .alert.error .dismiss:focus {
386
+ text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.35);
387
+ }
388
+ .alert.error .dismiss:before, .alert.error .dismiss #ie-pseudo-archetype-uid-RANDOM_UID {
389
+ vertical-align: top;
390
+ line-height: 1;
391
+ position: absolute;
392
+ top: 0;
393
+ right: 0;
394
+ text-decoration: none;
395
+ cursor: pointer;
396
+ }
397
+
398
+ .alert.success {
399
+ background-color: #5bb75b;
400
+ background-repeat: no-repeat;
401
+ background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #62c462), color-stop(100%, #51a351));
402
+ background: -webkit-linear-gradient(top, #62c462, #51a351);
403
+ background: -moz-linear-gradient(top, #62c462, #51a351);
404
+ background: -o-linear-gradient(top, #62c462, #51a351);
405
+ background: linear-gradient(top, #62c462, #51a351);
406
+ -webkit-box-shadow: 0 0 0 1px #51a351, 0 1px 2px rgba(0, 0, 0, 0.45);
407
+ -moz-box-shadow: 0 0 0 1px #51a351, 0 1px 2px rgba(0, 0, 0, 0.45);
408
+ box-shadow: 0 0 0 1px #51a351, 0 1px 2px rgba(0, 0, 0, 0.45);
409
+ overflow: hidden;
410
+ display: block;
411
+ color: white;
412
+ font-size: 15px;
413
+ line-height: 20px;
414
+ position: relative;
415
+ padding: 10px 20px 10px 50px;
416
+ *zoom: expression(this.runtimeStyle.zoom="1", this.el=document.createElement("x-archetype-glyph"),this.el.id="ie-pseudo-archetype-uid-RANDOM_UID",this.el.innerHTML="",this.insertBefore(this.el));
417
+ }
418
+ .alert.success:before {
419
+ font-family: "FontAwesome-0.0.1", "FontAwesome";
420
+ font-weight: normal;
421
+ font-style: normal;
422
+ text-decoration: inherit;
423
+ speak: none;
424
+ font-size: 36px;
425
+ color: inherit;
426
+ content: "\f058";
427
+ }
428
+ .alert.success #ie-pseudo-archetype-uid-RANDOM_UID {
429
+ font-family: 'FontAwesome-0.0.1', 'FontAwesome';
430
+ font-weight: normal;
431
+ font-style: normal;
432
+ text-decoration: inherit;
433
+ font-size: 36px;
434
+ color: inherit;
435
+ }
436
+ .alert.success:before, .alert.success #ie-pseudo-archetype-uid-RANDOM_UID {
437
+ position: absolute;
438
+ top: 6px;
439
+ left: 11px;
440
+ line-height: 1;
441
+ }
442
+ .alert.success .dismiss {
443
+ color: white;
444
+ background: transparent none;
445
+ padding: 0 1px 0 0;
446
+ border: 0;
447
+ margin: 0;
448
+ cursor: pointer;
449
+ text-decoration: none;
450
+ position: absolute;
451
+ overflow: hidden;
452
+ top: 10px;
453
+ right: 10px;
454
+ width: 11px;
455
+ height: 11px;
456
+ text-indent: 12px;
457
+ *zoom: expression(this.runtimeStyle.zoom="1", this.el=document.createElement("x-archetype-glyph"),this.el.id="ie-pseudo-archetype-uid-RANDOM_UID",this.el.innerHTML="",this.insertBefore(this.el));
458
+ }
459
+ .alert.success .dismiss:before {
460
+ font-family: "FontAwesome-0.0.1", "FontAwesome";
461
+ font-weight: normal;
462
+ font-style: normal;
463
+ text-decoration: inherit;
464
+ speak: none;
465
+ font-size: 11px;
466
+ color: inherit;
467
+ content: "\f00d";
468
+ }
469
+ .alert.success .dismiss #ie-pseudo-archetype-uid-RANDOM_UID {
470
+ font-family: 'FontAwesome-0.0.1', 'FontAwesome';
471
+ font-weight: normal;
472
+ font-style: normal;
473
+ text-decoration: inherit;
474
+ font-size: 11px;
475
+ color: inherit;
476
+ text-decoration: none;
477
+ }
478
+ .alert.success .dismiss.hover, .alert.success .dismiss:hover, .alert.success .dismiss.focus, .alert.success .dismiss:focus {
479
+ text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.35);
480
+ }
481
+ .alert.success .dismiss:before, .alert.success .dismiss #ie-pseudo-archetype-uid-RANDOM_UID {
482
+ vertical-align: top;
483
+ line-height: 1;
484
+ position: absolute;
485
+ top: 0;
486
+ right: 0;
487
+ text-decoration: none;
488
+ cursor: pointer;
489
+ }
490
+
491
+ .alert.notice {
492
+ background-color: #49afcd;
493
+ background-repeat: no-repeat;
494
+ background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #5bc0de), color-stop(100%, #2f96b4));
495
+ background: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
496
+ background: -moz-linear-gradient(top, #5bc0de, #2f96b4);
497
+ background: -o-linear-gradient(top, #5bc0de, #2f96b4);
498
+ background: linear-gradient(top, #5bc0de, #2f96b4);
499
+ -webkit-box-shadow: 0 0 0 1px #2f96b4, 0 1px 2px rgba(0, 0, 0, 0.45);
500
+ -moz-box-shadow: 0 0 0 1px #2f96b4, 0 1px 2px rgba(0, 0, 0, 0.45);
501
+ box-shadow: 0 0 0 1px #2f96b4, 0 1px 2px rgba(0, 0, 0, 0.45);
502
+ overflow: hidden;
503
+ display: block;
504
+ color: white;
505
+ font-size: 15px;
506
+ line-height: 20px;
507
+ position: relative;
508
+ padding: 10px 20px 10px 50px;
509
+ *zoom: expression(this.runtimeStyle.zoom="1", this.el=document.createElement("x-archetype-glyph"),this.el.id="ie-pseudo-archetype-uid-RANDOM_UID",this.el.innerHTML="",this.insertBefore(this.el));
510
+ }
511
+ .alert.notice:before {
512
+ font-family: "FontAwesome-0.0.1", "FontAwesome";
513
+ font-weight: normal;
514
+ font-style: normal;
515
+ text-decoration: inherit;
516
+ speak: none;
517
+ font-size: 36px;
518
+ color: inherit;
519
+ content: "\f05a";
520
+ }
521
+ .alert.notice #ie-pseudo-archetype-uid-RANDOM_UID {
522
+ font-family: 'FontAwesome-0.0.1', 'FontAwesome';
523
+ font-weight: normal;
524
+ font-style: normal;
525
+ text-decoration: inherit;
526
+ font-size: 36px;
527
+ color: inherit;
528
+ }
529
+ .alert.notice:before, .alert.notice #ie-pseudo-archetype-uid-RANDOM_UID {
530
+ position: absolute;
531
+ top: 6px;
532
+ left: 11px;
533
+ line-height: 1;
534
+ }
535
+ .alert.notice .dismiss {
536
+ color: white;
537
+ background: transparent none;
538
+ padding: 0 1px 0 0;
539
+ border: 0;
540
+ margin: 0;
541
+ cursor: pointer;
542
+ text-decoration: none;
543
+ position: absolute;
544
+ overflow: hidden;
545
+ top: 10px;
546
+ right: 10px;
547
+ width: 11px;
548
+ height: 11px;
549
+ text-indent: 12px;
550
+ *zoom: expression(this.runtimeStyle.zoom="1", this.el=document.createElement("x-archetype-glyph"),this.el.id="ie-pseudo-archetype-uid-RANDOM_UID",this.el.innerHTML="",this.insertBefore(this.el));
551
+ }
552
+ .alert.notice .dismiss:before {
553
+ font-family: "FontAwesome-0.0.1", "FontAwesome";
554
+ font-weight: normal;
555
+ font-style: normal;
556
+ text-decoration: inherit;
557
+ speak: none;
558
+ font-size: 11px;
559
+ color: inherit;
560
+ content: "\f00d";
561
+ }
562
+ .alert.notice .dismiss #ie-pseudo-archetype-uid-RANDOM_UID {
563
+ font-family: 'FontAwesome-0.0.1', 'FontAwesome';
564
+ font-weight: normal;
565
+ font-style: normal;
566
+ text-decoration: inherit;
567
+ font-size: 11px;
568
+ color: inherit;
569
+ text-decoration: none;
570
+ }
571
+ .alert.notice .dismiss.hover, .alert.notice .dismiss:hover, .alert.notice .dismiss.focus, .alert.notice .dismiss:focus {
572
+ text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.35);
573
+ }
574
+ .alert.notice .dismiss:before, .alert.notice .dismiss #ie-pseudo-archetype-uid-RANDOM_UID {
575
+ vertical-align: top;
576
+ line-height: 1;
577
+ position: absolute;
578
+ top: 0;
579
+ right: 0;
580
+ text-decoration: none;
581
+ cursor: pointer;
582
+ }
583
+
584
+ .alert.yield {
585
+ background-color: #faa732;
586
+ background-repeat: no-repeat;
587
+ background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbb450), color-stop(100%, #f89406));
588
+ background: -webkit-linear-gradient(top, #fbb450, #f89406);
589
+ background: -moz-linear-gradient(top, #fbb450, #f89406);
590
+ background: -o-linear-gradient(top, #fbb450, #f89406);
591
+ background: linear-gradient(top, #fbb450, #f89406);
592
+ -webkit-box-shadow: 0 0 0 1px #f89406, 0 1px 2px rgba(0, 0, 0, 0.45);
593
+ -moz-box-shadow: 0 0 0 1px #f89406, 0 1px 2px rgba(0, 0, 0, 0.45);
594
+ box-shadow: 0 0 0 1px #f89406, 0 1px 2px rgba(0, 0, 0, 0.45);
595
+ overflow: hidden;
596
+ display: block;
597
+ color: white;
598
+ font-size: 15px;
599
+ line-height: 20px;
600
+ position: relative;
601
+ padding: 10px 20px 10px 50px;
602
+ *zoom: expression(this.runtimeStyle.zoom="1", this.el=document.createElement("x-archetype-glyph"),this.el.id="ie-pseudo-archetype-uid-RANDOM_UID",this.el.innerHTML="",this.insertBefore(this.el));
603
+ }
604
+ .alert.yield:before {
605
+ font-family: "FontAwesome-0.0.1", "FontAwesome";
606
+ font-weight: normal;
607
+ font-style: normal;
608
+ text-decoration: inherit;
609
+ speak: none;
610
+ font-size: 36px;
611
+ color: inherit;
612
+ content: "\f071";
613
+ }
614
+ .alert.yield #ie-pseudo-archetype-uid-RANDOM_UID {
615
+ font-family: 'FontAwesome-0.0.1', 'FontAwesome';
616
+ font-weight: normal;
617
+ font-style: normal;
618
+ text-decoration: inherit;
619
+ font-size: 36px;
620
+ color: inherit;
621
+ }
622
+ .alert.yield:before, .alert.yield #ie-pseudo-archetype-uid-RANDOM_UID {
623
+ position: absolute;
624
+ top: 6px;
625
+ left: 11px;
626
+ line-height: 1;
627
+ }
628
+ .alert.yield .dismiss {
629
+ color: white;
630
+ background: transparent none;
631
+ padding: 0 1px 0 0;
632
+ border: 0;
633
+ margin: 0;
634
+ cursor: pointer;
635
+ text-decoration: none;
636
+ position: absolute;
637
+ overflow: hidden;
638
+ top: 10px;
639
+ right: 10px;
640
+ width: 11px;
641
+ height: 11px;
642
+ text-indent: 12px;
643
+ *zoom: expression(this.runtimeStyle.zoom="1", this.el=document.createElement("x-archetype-glyph"),this.el.id="ie-pseudo-archetype-uid-RANDOM_UID",this.el.innerHTML="",this.insertBefore(this.el));
644
+ }
645
+ .alert.yield .dismiss:before {
646
+ font-family: "FontAwesome-0.0.1", "FontAwesome";
647
+ font-weight: normal;
648
+ font-style: normal;
649
+ text-decoration: inherit;
650
+ speak: none;
651
+ font-size: 11px;
652
+ color: inherit;
653
+ content: "\f00d";
654
+ }
655
+ .alert.yield .dismiss #ie-pseudo-archetype-uid-RANDOM_UID {
656
+ font-family: 'FontAwesome-0.0.1', 'FontAwesome';
657
+ font-weight: normal;
658
+ font-style: normal;
659
+ text-decoration: inherit;
660
+ font-size: 11px;
661
+ color: inherit;
662
+ text-decoration: none;
663
+ }
664
+ .alert.yield .dismiss.hover, .alert.yield .dismiss:hover, .alert.yield .dismiss.focus, .alert.yield .dismiss:focus {
665
+ text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.35);
666
+ }
667
+ .alert.yield .dismiss:before, .alert.yield .dismiss #ie-pseudo-archetype-uid-RANDOM_UID {
668
+ vertical-align: top;
669
+ line-height: 1;
670
+ position: absolute;
671
+ top: 0;
672
+ right: 0;
673
+ text-decoration: none;
674
+ cursor: pointer;
675
+ }