rollout_ui 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (103) hide show
  1. data/README.markdown +70 -0
  2. data/Rakefile +12 -0
  3. data/lib/rollout_ui.rb +25 -0
  4. data/lib/rollout_ui/engine/Rakefile +12 -0
  5. data/lib/rollout_ui/engine/app/assets/images/rollout_ui/dark_brick_wall.png +0 -0
  6. data/lib/rollout_ui/engine/app/assets/images/rollout_ui/rollout.png +0 -0
  7. data/lib/rollout_ui/engine/app/assets/javascripts/rollout_ui/application.js +9 -0
  8. data/lib/rollout_ui/engine/app/assets/stylesheets/rollout_ui/application.css +9 -0
  9. data/lib/rollout_ui/engine/app/assets/stylesheets/rollout_ui/layout.css +108 -0
  10. data/lib/rollout_ui/engine/app/controllers/rollout_ui/application_controller.rb +4 -0
  11. data/lib/rollout_ui/engine/app/controllers/rollout_ui/features_controller.rb +25 -0
  12. data/lib/rollout_ui/engine/app/helpers/rollout_ui/application_helper.rb +4 -0
  13. data/lib/rollout_ui/engine/app/views/layouts/rollout_ui/application.html.erb +29 -0
  14. data/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb +34 -0
  15. data/lib/rollout_ui/engine/app/views/rollout_ui/features/index.html.erb +14 -0
  16. data/lib/rollout_ui/engine/config/routes.rb +5 -0
  17. data/lib/rollout_ui/engine/lib/rollout_ui/engine.rb +5 -0
  18. data/lib/rollout_ui/engine/lib/tasks/rollout_ui_tasks.rake +4 -0
  19. data/lib/rollout_ui/engine/script/rails +6 -0
  20. data/lib/rollout_ui/engine/vendor/assets/images/rollout_ui/chosen-sprite.png +0 -0
  21. data/lib/rollout_ui/engine/vendor/assets/javascripts/chosen.jquery.js +1011 -0
  22. data/lib/rollout_ui/engine/vendor/assets/javascripts/jquery-ujs.js +367 -0
  23. data/lib/rollout_ui/engine/vendor/assets/stylesheets/chosen.css +369 -0
  24. data/lib/rollout_ui/engine/vendor/assets/stylesheets/normalize.css +431 -0
  25. data/lib/rollout_ui/feature.rb +50 -0
  26. data/lib/rollout_ui/monkey_patch.rb +8 -0
  27. data/lib/rollout_ui/server.rb +71 -0
  28. data/lib/rollout_ui/server/public/rollout_ui/application.css +916 -0
  29. data/lib/rollout_ui/server/public/rollout_ui/application.js +45 -0
  30. data/lib/rollout_ui/server/public/rollout_ui/chosen-sprite.png +0 -0
  31. data/lib/rollout_ui/server/public/rollout_ui/dark_brick_wall.png +0 -0
  32. data/lib/rollout_ui/server/public/rollout_ui/rollout.png +0 -0
  33. data/lib/rollout_ui/server/views/feature.erb +34 -0
  34. data/lib/rollout_ui/server/views/index.erb +5 -0
  35. data/lib/rollout_ui/server/views/layout.erb +32 -0
  36. data/lib/rollout_ui/version.rb +3 -0
  37. data/lib/rollout_ui/wrapper.rb +28 -0
  38. data/spec/dummy/Rakefile +7 -0
  39. data/spec/dummy/app/assets/javascripts/application.js +7 -0
  40. data/spec/dummy/app/assets/stylesheets/application.css +7 -0
  41. data/spec/dummy/app/controllers/application_controller.rb +3 -0
  42. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  43. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  44. data/spec/dummy/config.ru +12 -0
  45. data/spec/dummy/config/application.rb +45 -0
  46. data/spec/dummy/config/boot.rb +10 -0
  47. data/spec/dummy/config/database.yml +14 -0
  48. data/spec/dummy/config/environment.rb +5 -0
  49. data/spec/dummy/config/environments/development.rb +30 -0
  50. data/spec/dummy/config/environments/production.rb +60 -0
  51. data/spec/dummy/config/environments/test.rb +39 -0
  52. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  53. data/spec/dummy/config/initializers/inflections.rb +10 -0
  54. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  55. data/spec/dummy/config/initializers/rollout.rb +6 -0
  56. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  57. data/spec/dummy/config/initializers/session_store.rb +8 -0
  58. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  59. data/spec/dummy/config/locales/en.yml +5 -0
  60. data/spec/dummy/config/routes.rb +5 -0
  61. data/spec/dummy/log/development.log +15639 -0
  62. data/spec/dummy/log/production.log +19 -0
  63. data/spec/dummy/log/stdout.log +3186 -0
  64. data/spec/dummy/log/test.log +11115 -0
  65. data/spec/dummy/public/404.html +26 -0
  66. data/spec/dummy/public/422.html +26 -0
  67. data/spec/dummy/public/500.html +26 -0
  68. data/spec/dummy/public/favicon.ico +0 -0
  69. data/spec/dummy/script/rails +6 -0
  70. data/spec/dummy/tmp/cache/assets/C44/C60/sprockets%2F32619064c16276c9031bc469f111b6f1 +369 -0
  71. data/spec/dummy/tmp/cache/assets/CA9/290/sprockets%2Ffde33cd38c83e40045112ef236908326 +1012 -0
  72. data/spec/dummy/tmp/cache/assets/CB1/0F0/sprockets%2F097929f05538ada1621d2b34d0748fb8 +0 -0
  73. data/spec/dummy/tmp/cache/assets/D0C/460/sprockets%2Fbf6917215d0871b152f3d3ec4ece0486 +0 -0
  74. data/spec/dummy/tmp/cache/assets/D1E/9E0/sprockets%2Fb92e466db7d4e78f107d8386ea19560a +0 -0
  75. data/spec/dummy/tmp/cache/assets/D22/D60/sprockets%2F6c1d9d3c966b8286c00d8dd46bd54598 +371 -0
  76. data/spec/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  77. data/spec/dummy/tmp/cache/assets/D3E/870/sprockets%2F82e617ed3b33c78bb8340cdbd603d189 +1015 -0
  78. data/spec/dummy/tmp/cache/assets/D45/1B0/sprockets%2F89743b2dcefe650c86e16c60dc248a26 +0 -0
  79. data/spec/dummy/tmp/cache/assets/D54/ED0/sprockets%2F71c9fa01091d432b131da3bb73faf3d4 +0 -0
  80. data/spec/dummy/tmp/cache/assets/D62/900/sprockets%2F4d745068b58dab09efc05fd3bd030c05 +1387 -0
  81. data/spec/dummy/tmp/cache/assets/D71/220/sprockets%2Fd07f8aed535b53034c9a4489bd6cb45d +374 -0
  82. data/spec/dummy/tmp/cache/assets/D74/0C0/sprockets%2F28c2d3c4b8de13fe5b746c94d96042dd +0 -0
  83. data/spec/dummy/tmp/cache/assets/D7D/C20/sprockets%2Ff5f71be7464ea98757bc8e41df514a4b +433 -0
  84. data/spec/dummy/tmp/cache/assets/D84/210/sprockets%2Fabd0103ccec2b428ac62c94e4c40b384 +0 -0
  85. data/spec/dummy/tmp/cache/assets/D93/100/sprockets%2Ffd9e48a89d83e7b764e2de324ee888b6 +917 -0
  86. data/spec/dummy/tmp/cache/assets/DC2/770/sprockets%2F7f10ac108ce75bbb0e9877b50bcb22fe +0 -0
  87. data/spec/dummy/tmp/cache/assets/E00/850/sprockets%2Fd5e1f4415f71da50c8365f7ecdeca2ff +436 -0
  88. data/spec/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  89. data/spec/dummy/tmp/cache/assets/E3E/230/sprockets%2F8156dcfebf95ff75b117c7e5bffb71dc +372 -0
  90. data/spec/dummy/tmp/cache/assets/E7A/F10/sprockets%2Ff3d71fbeaa5fdddf600a0ac52af1d8e2 +0 -0
  91. data/spec/dummy/tmp/capybara/capybara-201110152250496494273346.html +141 -0
  92. data/spec/dummy/tmp/capybara/capybara-201110152251237384633452.html +141 -0
  93. data/spec/dummy/tmp/capybara/capybara-201110152253073784924369.html +141 -0
  94. data/spec/dummy/tmp/capybara/capybara-201110152255118447806623.html +141 -0
  95. data/spec/dummy/tmp/capybara/capybara-201110152257286050916603.html +141 -0
  96. data/spec/dummy/tmp/capybara/capybara-201110152258202877532249.html +139 -0
  97. data/spec/dummy/tmp/capybara/capybara-201110152259224345897143.html +139 -0
  98. data/spec/dummy/tmp/pids/server.pid +1 -0
  99. data/spec/lib/rollout_ui/feature_spec.rb +52 -0
  100. data/spec/lib/rollout_ui/wrapper_spec.rb +63 -0
  101. data/spec/requests/engine/engine_spec.rb +95 -0
  102. data/spec/spec_helper.rb +22 -0
  103. metadata +388 -0
@@ -0,0 +1,374 @@
1
+ o: ActiveSupport::Cache::Entry :@expires_in0: @value{"asset_paths["O/web/rollout_ui/lib/rollout_ui/engine/vendor/assets/stylesheets/chosen.css" body"5/* @group Base */
2
+
3
+ .chzn-container {
4
+ font-size: 13px;
5
+ position: relative;
6
+ display: inline-block;
7
+ zoom: 1;
8
+ *display: inline;
9
+ }
10
+ .chzn-container .chzn-drop {
11
+ background: #fff;
12
+ border: 1px solid #aaa;
13
+ border-top: 0;
14
+ position: absolute;
15
+ top: 29px;
16
+ left: 0;
17
+ -webkit-box-shadow: 0 4px 5px rgba(0,0,0,.15);
18
+ -moz-box-shadow : 0 4px 5px rgba(0,0,0,.15);
19
+ -o-box-shadow : 0 4px 5px rgba(0,0,0,.15);
20
+ box-shadow : 0 4px 5px rgba(0,0,0,.15);
21
+ z-index: 999;
22
+ }
23
+ /* @end */
24
+
25
+ /* @group Single Chosen */
26
+ .chzn-container-single .chzn-single {
27
+ background-color: #fff;
28
+ background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eeeeee), color-stop(0.5, white));
29
+ background-image: -webkit-linear-gradient(center bottom, #eeeeee 0%, white 50%);
30
+ background-image: -moz-linear-gradient(center bottom, #eeeeee 0%, white 50%);
31
+ background-image: -o-linear-gradient(top, #eeeeee 0%,#ffffff 50%);
32
+ background-image: -ms-linear-gradient(top, #eeeeee 0%,#ffffff 50%);
33
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#ffffff',GradientType=0 );
34
+ background-image: linear-gradient(top, #eeeeee 0%,#ffffff 50%);
35
+ -webkit-border-radius: 4px;
36
+ -moz-border-radius : 4px;
37
+ border-radius : 4px;
38
+ -moz-background-clip : padding;
39
+ -webkit-background-clip: padding-box;
40
+ background-clip : padding-box;
41
+ border: 1px solid #aaa;
42
+ display: block;
43
+ overflow: hidden;
44
+ white-space: nowrap;
45
+ position: relative;
46
+ height: 26px;
47
+ line-height: 26px;
48
+ padding: 0 0 0 8px;
49
+ color: #444;
50
+ text-decoration: none;
51
+ }
52
+ .chzn-container-single .chzn-single span {
53
+ margin-right: 26px;
54
+ display: block;
55
+ overflow: hidden;
56
+ white-space: nowrap;
57
+ -o-text-overflow: ellipsis;
58
+ -ms-text-overflow: ellipsis;
59
+ text-overflow: ellipsis;
60
+ }
61
+ .chzn-container-single .chzn-single abbr {
62
+ display: block;
63
+ position: absolute;
64
+ right: 26px;
65
+ top: 8px;
66
+ width: 12px;
67
+ height: 13px;
68
+ font-size: 1px;
69
+ background: url(/assets/rollout_ui/chosen-sprite.png) right top no-repeat;
70
+ }
71
+ .chzn-container-single .chzn-single abbr:hover {
72
+ background-position: right -11px;
73
+ }
74
+ .chzn-container-single .chzn-single div {
75
+ -webkit-border-radius: 0 4px 4px 0;
76
+ -moz-border-radius : 0 4px 4px 0;
77
+ border-radius : 0 4px 4px 0;
78
+ -moz-background-clip : padding;
79
+ -webkit-background-clip: padding-box;
80
+ background-clip : padding-box;
81
+ background: #ccc;
82
+ background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ccc), color-stop(0.6, #eee));
83
+ background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #eee 60%);
84
+ background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%);
85
+ background-image: -o-linear-gradient(bottom, #ccc 0%, #eee 60%);
86
+ background-image: -ms-linear-gradient(top, #cccccc 0%,#eeeeee 60%);
87
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cccccc', endColorstr='#eeeeee',GradientType=0 );
88
+ background-image: linear-gradient(top, #cccccc 0%,#eeeeee 60%);
89
+ border-left: 1px solid #aaa;
90
+ position: absolute;
91
+ right: 0;
92
+ top: 0;
93
+ display: block;
94
+ height: 100%;
95
+ width: 18px;
96
+ }
97
+ .chzn-container-single .chzn-single div b {
98
+ background: url('/assets/rollout_ui/chosen-sprite.png') no-repeat 0 1px;
99
+ display: block;
100
+ width: 100%;
101
+ height: 100%;
102
+ }
103
+ .chzn-container-single .chzn-search {
104
+ padding: 3px 4px;
105
+ position: relative;
106
+ margin: 0;
107
+ white-space: nowrap;
108
+ z-index: 1010;
109
+ }
110
+ .chzn-container-single .chzn-search input {
111
+ background: #fff url('/assets/rollout_ui/chosen-sprite.png') no-repeat 100% -22px;
112
+ background: url('/assets/rollout_ui/chosen-sprite.png') no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, white), color-stop(0.99, #eeeeee));
113
+ background: url('/assets/rollout_ui/chosen-sprite.png') no-repeat 100% -22px, -webkit-linear-gradient(center bottom, white 85%, #eeeeee 99%);
114
+ background: url('/assets/rollout_ui/chosen-sprite.png') no-repeat 100% -22px, -moz-linear-gradient(center bottom, white 85%, #eeeeee 99%);
115
+ background: url('/assets/rollout_ui/chosen-sprite.png') no-repeat 100% -22px, -o-linear-gradient(bottom, white 85%, #eeeeee 99%);
116
+ background: url('/assets/rollout_ui/chosen-sprite.png') no-repeat 100% -22px, -ms-linear-gradient(top, #ffffff 85%,#eeeeee 99%);
117
+ background: url('/assets/rollout_ui/chosen-sprite.png') no-repeat 100% -22px, -ms-linear-gradient(top, #ffffff 85%,#eeeeee 99%);
118
+ background: url('/assets/rollout_ui/chosen-sprite.png') no-repeat 100% -22px, linear-gradient(top, #ffffff 85%,#eeeeee 99%);
119
+ margin: 1px 0;
120
+ padding: 4px 20px 4px 5px;
121
+ outline: 0;
122
+ border: 1px solid #aaa;
123
+ font-family: sans-serif;
124
+ font-size: 1em;
125
+ }
126
+ .chzn-container-single .chzn-drop {
127
+ -webkit-border-radius: 0 0 4px 4px;
128
+ -moz-border-radius : 0 0 4px 4px;
129
+ border-radius : 0 0 4px 4px;
130
+ -moz-background-clip : padding;
131
+ -webkit-background-clip: padding-box;
132
+ background-clip : padding-box;
133
+ }
134
+ /* @end */
135
+
136
+ .chzn-container-single-nosearch .chzn-search input {
137
+ position: absolute;
138
+ left: -9000px;
139
+ }
140
+
141
+ /* @group Multi Chosen */
142
+ .chzn-container-multi .chzn-choices {
143
+ background-color: #fff;
144
+ background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.85, white), color-stop(0.99, #eeeeee));
145
+ background-image: -webkit-linear-gradient(center bottom, white 85%, #eeeeee 99%);
146
+ background-image: -moz-linear-gradient(center bottom, white 85%, #eeeeee 99%);
147
+ background-image: -o-linear-gradient(bottom, white 85%, #eeeeee 99%);
148
+ background-image: -ms-linear-gradient(top, #ffffff 85%,#eeeeee 99%);
149
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eeeeee',GradientType=0 );
150
+ background-image: linear-gradient(top, #ffffff 85%,#eeeeee 99%);
151
+ border: 1px solid #aaa;
152
+ margin: 0;
153
+ padding: 0;
154
+ cursor: text;
155
+ overflow: hidden;
156
+ height: auto !important;
157
+ height: 1%;
158
+ position: relative;
159
+ }
160
+ .chzn-container-multi .chzn-choices li {
161
+ float: left;
162
+ list-style: none;
163
+ }
164
+ .chzn-container-multi .chzn-choices .search-field {
165
+ white-space: nowrap;
166
+ margin: 0;
167
+ padding: 0;
168
+ }
169
+ .chzn-container-multi .chzn-choices .search-field input {
170
+ color: #666;
171
+ background: transparent !important;
172
+ border: 0 !important;
173
+ padding: 5px;
174
+ margin: 1px 0;
175
+ outline: 0;
176
+ -webkit-box-shadow: none;
177
+ -moz-box-shadow : none;
178
+ -o-box-shadow : none;
179
+ box-shadow : none;
180
+ }
181
+ .chzn-container-multi .chzn-choices .search-field .default {
182
+ color: #999;
183
+ }
184
+ .chzn-container-multi .chzn-choices .search-choice {
185
+ -webkit-border-radius: 3px;
186
+ -moz-border-radius : 3px;
187
+ border-radius : 3px;
188
+ -moz-background-clip : padding;
189
+ -webkit-background-clip: padding-box;
190
+ background-clip : padding-box;
191
+ background-color: #e4e4e4;
192
+ background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #e4e4e4), color-stop(0.7, #eeeeee));
193
+ background-image: -webkit-linear-gradient(center bottom, #e4e4e4 0%, #eeeeee 70%);
194
+ background-image: -moz-linear-gradient(center bottom, #e4e4e4 0%, #eeeeee 70%);
195
+ background-image: -o-linear-gradient(bottom, #e4e4e4 0%, #eeeeee 70%);
196
+ background-image: -ms-linear-gradient(top, #e4e4e4 0%,#eeeeee 70%);
197
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e4e4e4', endColorstr='#eeeeee',GradientType=0 );
198
+ background-image: linear-gradient(top, #e4e4e4 0%,#eeeeee 70%);
199
+ color: #333;
200
+ border: 1px solid #b4b4b4;
201
+ line-height: 13px;
202
+ padding: 3px 19px 3px 6px;
203
+ margin: 3px 0 3px 5px;
204
+ position: relative;
205
+ }
206
+ .chzn-container-multi .chzn-choices .search-choice span {
207
+ cursor: default;
208
+ }
209
+ .chzn-container-multi .chzn-choices .search-choice-focus {
210
+ background: #d4d4d4;
211
+ }
212
+ .chzn-container-multi .chzn-choices .search-choice .search-choice-close {
213
+ display: block;
214
+ position: absolute;
215
+ right: 3px;
216
+ top: 4px;
217
+ width: 12px;
218
+ height: 13px;
219
+ font-size: 1px;
220
+ background: url(/assets/rollout_ui/chosen-sprite.png) right top no-repeat;
221
+ }
222
+ .chzn-container-multi .chzn-choices .search-choice .search-choice-close:hover {
223
+ background-position: right -11px;
224
+ }
225
+ .chzn-container-multi .chzn-choices .search-choice-focus .search-choice-close {
226
+ background-position: right -11px;
227
+ }
228
+ /* @end */
229
+
230
+ /* @group Results */
231
+ .chzn-container .chzn-results {
232
+ margin: 0 4px 4px 0;
233
+ max-height: 190px;
234
+ padding: 0 0 0 4px;
235
+ position: relative;
236
+ overflow-x: hidden;
237
+ overflow-y: auto;
238
+ }
239
+ .chzn-container-multi .chzn-results {
240
+ margin: -1px 0 0;
241
+ padding: 0;
242
+ }
243
+ .chzn-container .chzn-results li {
244
+ display: none;
245
+ line-height: 80%;
246
+ padding: 7px 7px 8px;
247
+ margin: 0;
248
+ list-style: none;
249
+ }
250
+ .chzn-container .chzn-results .active-result {
251
+ cursor: pointer;
252
+ display: list-item;
253
+ }
254
+ .chzn-container .chzn-results .highlighted {
255
+ background: #3875d7;
256
+ color: #fff;
257
+ }
258
+ .chzn-container .chzn-results li em {
259
+ background: #feffde;
260
+ font-style: normal;
261
+ }
262
+ .chzn-container .chzn-results .highlighted em {
263
+ background: transparent;
264
+ }
265
+ .chzn-container .chzn-results .no-results {
266
+ background: #f4f4f4;
267
+ display: list-item;
268
+ }
269
+ .chzn-container .chzn-results .group-result {
270
+ cursor: default;
271
+ color: #999;
272
+ font-weight: bold;
273
+ }
274
+ .chzn-container .chzn-results .group-option {
275
+ padding-left: 20px;
276
+ }
277
+ .chzn-container-multi .chzn-drop .result-selected {
278
+ display: none;
279
+ }
280
+ /* @end */
281
+
282
+ /* @group Active */
283
+ .chzn-container-active .chzn-single {
284
+ -webkit-box-shadow: 0 0 5px rgba(0,0,0,.3);
285
+ -moz-box-shadow : 0 0 5px rgba(0,0,0,.3);
286
+ -o-box-shadow : 0 0 5px rgba(0,0,0,.3);
287
+ box-shadow : 0 0 5px rgba(0,0,0,.3);
288
+ border: 1px solid #5897fb;
289
+ }
290
+ .chzn-container-active .chzn-single-with-drop {
291
+ border: 1px solid #aaa;
292
+ -webkit-box-shadow: 0 1px 0 #fff inset;
293
+ -moz-box-shadow : 0 1px 0 #fff inset;
294
+ -o-box-shadow : 0 1px 0 #fff inset;
295
+ box-shadow : 0 1px 0 #fff inset;
296
+ background-color: #eee;
297
+ background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, white), color-stop(0.5, #eeeeee));
298
+ background-image: -webkit-linear-gradient(center bottom, white 0%, #eeeeee 50%);
299
+ background-image: -moz-linear-gradient(center bottom, white 0%, #eeeeee 50%);
300
+ background-image: -o-linear-gradient(bottom, white 0%, #eeeeee 50%);
301
+ background-image: -ms-linear-gradient(top, #ffffff 0%,#eeeeee 50%);
302
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eeeeee',GradientType=0 );
303
+ background-image: linear-gradient(top, #ffffff 0%,#eeeeee 50%);
304
+ -webkit-border-bottom-left-radius : 0;
305
+ -webkit-border-bottom-right-radius: 0;
306
+ -moz-border-radius-bottomleft : 0;
307
+ -moz-border-radius-bottomright: 0;
308
+ border-bottom-left-radius : 0;
309
+ border-bottom-right-radius: 0;
310
+ }
311
+ .chzn-container-active .chzn-single-with-drop div {
312
+ background: transparent;
313
+ border-left: none;
314
+ }
315
+ .chzn-container-active .chzn-single-with-drop div b {
316
+ background-position: -18px 1px;
317
+ }
318
+ .chzn-container-active .chzn-choices {
319
+ -webkit-box-shadow: 0 0 5px rgba(0,0,0,.3);
320
+ -moz-box-shadow : 0 0 5px rgba(0,0,0,.3);
321
+ -o-box-shadow : 0 0 5px rgba(0,0,0,.3);
322
+ box-shadow : 0 0 5px rgba(0,0,0,.3);
323
+ border: 1px solid #5897fb;
324
+ }
325
+ .chzn-container-active .chzn-choices .search-field input {
326
+ color: #111 !important;
327
+ }
328
+ /* @end */
329
+
330
+ /* @group Disabled Support */
331
+ .chzn-disabled {
332
+ cursor: default;
333
+ opacity:0.5 !important;
334
+ }
335
+ .chzn-disabled .chzn-single {
336
+ cursor: default;
337
+ }
338
+ .chzn-disabled .chzn-choices .search-choice .search-choice-close {
339
+ cursor: default;
340
+ }
341
+
342
+ /* @group Right to Left */
343
+ .chzn-rtl { direction:rtl;text-align: right; }
344
+ .chzn-rtl .chzn-single { padding-left: 0; padding-right: 8px; }
345
+ .chzn-rtl .chzn-single span { margin-left: 26px; margin-right: 0; }
346
+ .chzn-rtl .chzn-single div {
347
+ left: 0; right: auto;
348
+ border-left: none; border-right: 1px solid #aaaaaa;
349
+ -webkit-border-radius: 4px 0 0 4px;
350
+ -moz-border-radius : 4px 0 0 4px;
351
+ border-radius : 4px 0 0 4px;
352
+ }
353
+ .chzn-rtl .chzn-choices li { float: right; }
354
+ .chzn-rtl .chzn-choices .search-choice { padding: 3px 6px 3px 19px; margin: 3px 5px 3px 0; }
355
+ .chzn-rtl .chzn-choices .search-choice .search-choice-close { left: 5px; right: auto; background-position: right top;}
356
+ .chzn-rtl.chzn-container-single .chzn-results { margin-left: 4px; margin-right: 0; padding-left: 0; padding-right: 4px; }
357
+ .chzn-rtl .chzn-results .group-option { padding-left: 0; padding-right: 20px; }
358
+ .chzn-rtl.chzn-container-active .chzn-single-with-drop div { border-right: none; }
359
+ .chzn-rtl .chzn-search input {
360
+ background: url('/assets/rollout_ui/chosen-sprite.png') no-repeat -38px -22px, #ffffff;
361
+ background: url('/assets/rollout_ui/chosen-sprite.png') no-repeat -38px -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, white), color-stop(0.99, #eeeeee));
362
+ background: url('/assets/rollout_ui/chosen-sprite.png') no-repeat -38px -22px, -webkit-linear-gradient(center bottom, white 85%, #eeeeee 99%);
363
+ background: url('/assets/rollout_ui/chosen-sprite.png') no-repeat -38px -22px, -moz-linear-gradient(center bottom, white 85%, #eeeeee 99%);
364
+ background: url('/assets/rollout_ui/chosen-sprite.png') no-repeat -38px -22px, -o-linear-gradient(bottom, white 85%, #eeeeee 99%);
365
+ background: url('/assets/rollout_ui/chosen-sprite.png') no-repeat -38px -22px, -ms-linear-gradient(top, #ffffff 85%,#eeeeee 99%);
366
+ background: url('/assets/rollout_ui/chosen-sprite.png') no-repeat -38px -22px, -ms-linear-gradient(top, #ffffff 85%,#eeeeee 99%);
367
+ background: url('/assets/rollout_ui/chosen-sprite.png') no-repeat -38px -22px, linear-gradient(top, #ffffff 85%,#eeeeee 99%);
368
+ padding: 4px 5px 4px 20px;
369
+ }
370
+ /* @end */
371
+ "content_type"
372
+ class"BundledAsset"
373
+ mtime"2011-10-16T17:58:05-04:00"
374
+ mtimeu: Time
@@ -0,0 +1,433 @@
1
+ o: ActiveSupport::Cache::Entry :@expires_in0: @value{ "
2
+
3
+ /* =============================================================================
4
+ HTML5 display definitions
5
+ ========================================================================== */
6
+
7
+ /*
8
+ * Corrects block display not defined in IE6/7/8/9 & FF3
9
+ */
10
+
11
+
12
+ article,
13
+ aside,
14
+ details,
15
+ figcaption,
16
+ figure,
17
+ footer,
18
+ header,
19
+ hgroup,
20
+ nav,
21
+ section {
22
+ display: block;
23
+ }
24
+
25
+ /*
26
+ * Corrects inline-block display not defined in IE6/7/8/9 & FF3
27
+ */
28
+
29
+ audio,
30
+ canvas,
31
+ video {
32
+ display: inline-block;
33
+ *display: inline;
34
+ *zoom: 1;
35
+ }
36
+
37
+ /*
38
+ * Prevents modern browsers from displaying 'audio' without controls
39
+ */
40
+
41
+ audio:not([controls]) {
42
+ display: none;
43
+ }
44
+
45
+ /*
46
+ * Addresses styling for 'hidden' attribute not present in IE7/8/9, FF3, S4
47
+ * Known issue: no IE6 support
48
+ */
49
+
50
+ [hidden] {
51
+ display: none;
52
+ }
53
+
54
+
55
+ /* =============================================================================
56
+ Base
57
+ ========================================================================== */
58
+
59
+ /*
60
+ * 1. Corrects text resizing oddly in IE6/7 when body font-size is set using em units
61
+ * http://clagnut.com/blog/348/#c790
62
+ * 2. Keeps page centred in all browsers regardless of content height
63
+ * 3. Prevents iOS text size adjust after orientation change, without disabling user zoom
64
+ * www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
65
+ */
66
+
67
+ html {
68
+ font-size: 100%; /* 1 */
69
+ overflow-y: scroll; /* 2 */
70
+ -webkit-text-size-adjust: 100%; /* 3 */
71
+ -ms-text-size-adjust: 100%; /* 3 */
72
+ }
73
+
74
+ /*
75
+ * Addresses margins handled incorrectly in IE6/7
76
+ */
77
+
78
+ body {
79
+ margin: 0;
80
+ }
81
+
82
+ /*
83
+ * Addresses font-family inconsistency between 'textarea' and other form elements.
84
+ */
85
+
86
+ body,
87
+ button,
88
+ input,
89
+ select,
90
+ textarea {
91
+ font-family: sans-serif;
92
+ }
93
+
94
+
95
+ /* =============================================================================
96
+ Links
97
+ ========================================================================== */
98
+
99
+ a {
100
+ color: #00e;
101
+ }
102
+
103
+ a:visited {
104
+ color: #551a8b;
105
+ }
106
+
107
+ /*
108
+ * Addresses outline displayed oddly in Chrome
109
+ */
110
+
111
+ a:focus {
112
+ outline: thin dotted;
113
+ }
114
+
115
+ /*
116
+ * Improves readability when focused and also mouse hovered in all browsers
117
+ * people.opera.com/patrickl/experiments/keyboard/test
118
+ */
119
+
120
+ a:hover,
121
+ a:active {
122
+ outline: 0;
123
+ }
124
+
125
+
126
+ /* =============================================================================
127
+ Typography
128
+ ========================================================================== */
129
+
130
+ /*
131
+ * Addresses styling not present in IE7/8/9, S5, Chrome
132
+ */
133
+
134
+ abbr[title] {
135
+ border-bottom: 1px dotted;
136
+ }
137
+
138
+ /*
139
+ * Addresses style set to 'bolder' in FF3/4, S4/5, Chrome
140
+ */
141
+
142
+ b,
143
+ strong {
144
+ font-weight: bold;
145
+ }
146
+
147
+ blockquote {
148
+ margin: 1em 40px;
149
+ }
150
+
151
+ /*
152
+ * Addresses styling not present in S5, Chrome
153
+ */
154
+
155
+ dfn {
156
+ font-style: italic;
157
+ }
158
+
159
+ /*
160
+ * Addresses styling not present in IE6/7/8/9
161
+ */
162
+
163
+ mark {
164
+ background: #ff0;
165
+ color: #000;
166
+ }
167
+
168
+ /*
169
+ * Corrects font family set oddly in IE6, S4/5, Chrome
170
+ * en.wikipedia.org/wiki/User:Davidgothberg/Test59
171
+ */
172
+
173
+ pre,
174
+ code,
175
+ kbd,
176
+ samp {
177
+ font-family: monospace, serif;
178
+ _font-family: 'courier new', monospace;
179
+ font-size: 1em;
180
+ }
181
+
182
+ /*
183
+ * Improves readability of pre-formatted text in all browsers
184
+ */
185
+
186
+ pre {
187
+ white-space: pre;
188
+ white-space: pre-wrap;
189
+ word-wrap: break-word;
190
+ }
191
+
192
+ /*
193
+ * 1. Addresses CSS quotes not supported in IE6/7
194
+ * 2. Addresses quote property not supported in S4
195
+ */
196
+
197
+ /* 1 */
198
+
199
+ q {
200
+ quotes: none;
201
+ }
202
+
203
+ /* 2 */
204
+
205
+ q:before,
206
+ q:after {
207
+ content: '';
208
+ content: none;
209
+ }
210
+
211
+ small {
212
+ font-size: 75%;
213
+ }
214
+
215
+ /*
216
+ * Prevents sub and sup affecting line-height in all browsers
217
+ * gist.github.com/413930
218
+ */
219
+
220
+ sub,
221
+ sup {
222
+ font-size: 75%;
223
+ line-height: 0;
224
+ position: relative;
225
+ vertical-align: baseline;
226
+ }
227
+
228
+ sup {
229
+ top: -0.5em;
230
+ }
231
+
232
+ sub {
233
+ bottom: -0.25em;
234
+ }
235
+
236
+
237
+ /* =============================================================================
238
+ Lists
239
+ ========================================================================== */
240
+
241
+ ul,
242
+ ol {
243
+ margin: 1em 0;
244
+ padding: 0 0 0 40px;
245
+ }
246
+
247
+ dd {
248
+ margin: 0 0 0 40px;
249
+ }
250
+
251
+ nav ul,
252
+ nav ol {
253
+ list-style: none;
254
+ list-style-image: none;
255
+ }
256
+
257
+
258
+ /* =============================================================================
259
+ Embedded content
260
+ ========================================================================== */
261
+
262
+ /*
263
+ * 1. Removes border when inside 'a' element in IE6/7/8/9, FF3
264
+ * 2. Improves image quality when scaled in IE7
265
+ * code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
266
+ */
267
+
268
+ img {
269
+ border: 0; /* 1 */
270
+ -ms-interpolation-mode: bicubic; /* 2 */
271
+ }
272
+
273
+ /*
274
+ * Corrects overflow displayed oddly in IE9
275
+ */
276
+
277
+ svg:not(:root) {
278
+ overflow: hidden;
279
+ }
280
+
281
+
282
+ /* =============================================================================
283
+ Figures
284
+ ========================================================================== */
285
+
286
+ /*
287
+ * Addresses margin not present in IE6/7/8/9, S5, O11
288
+ */
289
+
290
+ figure {
291
+ margin: 0;
292
+ }
293
+
294
+
295
+ /* =============================================================================
296
+ Forms
297
+ ========================================================================== */
298
+
299
+ /*
300
+ * Corrects margin displayed oddly in IE6/7
301
+ */
302
+
303
+ form {
304
+ margin: 0;
305
+ }
306
+
307
+ /*
308
+ * Define consistent border, margin, and padding
309
+ */
310
+
311
+ fieldset {
312
+ border: 1px solid #c0c0c0;
313
+ margin: 0 2px;
314
+ padding: 0.35em 0.625em 0.75em;
315
+ }
316
+
317
+ /*
318
+ * 1. Corrects color not being inherited in IE6/7/8/9
319
+ * 2. Corrects alignment displayed oddly in IE6/7
320
+ */
321
+
322
+ legend {
323
+ border: 0; /* 1 */
324
+ *margin-left: -7px; /* 2 */
325
+ }
326
+
327
+ /*
328
+ * 1. Corrects font size not being inherited in all browsers
329
+ * 2. Addresses margins set differently in IE6/7, FF3/4, S5, Chrome
330
+ * 3. Improves appearance and consistency in all browsers
331
+ */
332
+
333
+ button,
334
+ input,
335
+ select,
336
+ textarea {
337
+ font-size: 100%; /* 1 */
338
+ margin: 0; /* 2 */
339
+ vertical-align: baseline; /* 3 */
340
+ *vertical-align: middle; /* 3 */
341
+ }
342
+
343
+ /*
344
+ * Addresses FF3/4 setting line-height on 'input' using !important in the UA stylesheet
345
+ */
346
+
347
+ button,
348
+ input {
349
+ line-height: normal; /* 1 */
350
+ }
351
+
352
+ /*
353
+ * 1. Improves usability and consistency of cursor style between image-type 'input' and others
354
+ * 2. Corrects inability to style clickable 'input' types in iOS
355
+ * 3. Corrects inner spacing displayed oddly in IE7 without effecting normal text inputs
356
+ * Known issue: inner spacing remains in IE6
357
+ */
358
+
359
+ button,
360
+ input[type="button"],
361
+ input[type="reset"],
362
+ input[type="submit"] {
363
+ cursor: pointer; /* 1 */
364
+ -webkit-appearance: button; /* 2 */
365
+ *overflow: visible; /* 3 */
366
+ }
367
+
368
+ /*
369
+ * 1. Addresses box sizing set to content-box in IE8/9
370
+ * 2. Addresses excess padding in IE8/9
371
+ */
372
+
373
+ input[type="checkbox"],
374
+ input[type="radio"] {
375
+ box-sizing: border-box; /* 1 */
376
+ padding: 0; /* 2 */
377
+ }
378
+
379
+ /*
380
+ * 1. Addresses appearance set to searchfield in S5, Chrome
381
+ * 2. Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof)
382
+ */
383
+
384
+ input[type="search"] {
385
+ -webkit-appearance: textfield; /* 1 */
386
+ -moz-box-sizing: content-box;
387
+ -webkit-box-sizing: content-box; /* 2 */
388
+ box-sizing: content-box;
389
+ }
390
+
391
+ /*
392
+ * Corrects inner padding displayed oddly in S5, Chrome on OSX
393
+ */
394
+
395
+ input[type="search"]::-webkit-search-decoration {
396
+ -webkit-appearance: none;
397
+ }
398
+
399
+ /*
400
+ * Corrects inner padding and border displayed oddly in FF3/4
401
+ * www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/
402
+ */
403
+
404
+ button::-moz-focus-inner,
405
+ input::-moz-focus-inner {
406
+ border: 0;
407
+ padding: 0;
408
+ }
409
+
410
+ /*
411
+ * 1. Removes default vertical scrollbar in IE6/7/8/9
412
+ * 2. Improves readability and alignment in all browsers
413
+ */
414
+
415
+ textarea {
416
+ overflow: auto; /* 1 */
417
+ vertical-align: top; /* 2 */
418
+ }
419
+
420
+
421
+ /* =============================================================================
422
+ Tables
423
+ ========================================================================== */
424
+
425
+ /*
426
+ * Remove most spacing between table cells
427
+ */
428
+
429
+ table {
430
+ border-collapse: collapse;
431
+ border-spacing: 0;
432
+ }
433
+ :@compressedF:@created_atf1318830254.755264V?