kickstrap_rails 0.9.0RC

Sign up to get free protection for your applications and to get access to all the features.
Files changed (112) hide show
  1. data/.gitignore +17 -0
  2. data/Gemfile +4 -0
  3. data/LICENSE.txt +165 -0
  4. data/README.md +23 -0
  5. data/Rakefile +2 -0
  6. data/kickstrap_rails.gemspec +20 -0
  7. data/lib/kickstrap_rails/version.rb +3 -0
  8. data/lib/kickstrap_rails.rb +6 -0
  9. data/vendor/assets/fonts/fontawesome/fontawesome-webfont.eot +0 -0
  10. data/vendor/assets/fonts/fontawesome/fontawesome-webfont.svg +175 -0
  11. data/vendor/assets/fonts/fontawesome/fontawesome-webfont.svgz +0 -0
  12. data/vendor/assets/fonts/fontawesome/fontawesome-webfont.ttf +0 -0
  13. data/vendor/assets/fonts/fontawesome/fontawesome-webfont.woff +0 -0
  14. data/vendor/assets/fonts/icomoon/full-webfont.eot +0 -0
  15. data/vendor/assets/fonts/icomoon/full-webfont.svg +157 -0
  16. data/vendor/assets/fonts/icomoon/full-webfont.ttf +0 -0
  17. data/vendor/assets/fonts/icomoon/full-webfont.woff +0 -0
  18. data/vendor/assets/images/chosen/chosen-sprite.png +0 -0
  19. data/vendor/assets/javascripts/bootstrap/bootstrap-alert.js +94 -0
  20. data/vendor/assets/javascripts/bootstrap/bootstrap-button.js +100 -0
  21. data/vendor/assets/javascripts/bootstrap/bootstrap-carousel.js +161 -0
  22. data/vendor/assets/javascripts/bootstrap/bootstrap-collapse.js +138 -0
  23. data/vendor/assets/javascripts/bootstrap/bootstrap-dropdown.js +92 -0
  24. data/vendor/assets/javascripts/bootstrap/bootstrap-modal.js +210 -0
  25. data/vendor/assets/javascripts/bootstrap/bootstrap-popover.js +95 -0
  26. data/vendor/assets/javascripts/bootstrap/bootstrap-scrollspy.js +125 -0
  27. data/vendor/assets/javascripts/bootstrap/bootstrap-tab.js +130 -0
  28. data/vendor/assets/javascripts/bootstrap/bootstrap-tooltip.js +270 -0
  29. data/vendor/assets/javascripts/bootstrap/bootstrap-transition.js +51 -0
  30. data/vendor/assets/javascripts/bootstrap/bootstrap-typeahead.js +271 -0
  31. data/vendor/assets/javascripts/bootstrap.js +12 -0
  32. data/vendor/assets/javascripts/kickstrap/chosen/chosen.jquery.js +952 -0
  33. data/vendor/assets/javascripts/kickstrap/jgrowl/jquery.jgrowl.js +330 -0
  34. data/vendor/assets/javascripts/kickstrap.js +3 -0
  35. data/vendor/assets/stylesheets/bootstrap/accordion.less +28 -0
  36. data/vendor/assets/stylesheets/bootstrap/alerts.less +70 -0
  37. data/vendor/assets/stylesheets/bootstrap/bootstrap.less +65 -0
  38. data/vendor/assets/stylesheets/bootstrap/breadcrumbs.less +22 -0
  39. data/vendor/assets/stylesheets/bootstrap/button-groups.less +148 -0
  40. data/vendor/assets/stylesheets/bootstrap/buttons.less +183 -0
  41. data/vendor/assets/stylesheets/bootstrap/carousel.less +121 -0
  42. data/vendor/assets/stylesheets/bootstrap/close.less +18 -0
  43. data/vendor/assets/stylesheets/bootstrap/code.less +57 -0
  44. data/vendor/assets/stylesheets/bootstrap/component-animations.less +18 -0
  45. data/vendor/assets/stylesheets/bootstrap/dropdowns.less +130 -0
  46. data/vendor/assets/stylesheets/bootstrap/forms.less +522 -0
  47. data/vendor/assets/stylesheets/bootstrap/grid.less +8 -0
  48. data/vendor/assets/stylesheets/bootstrap/hero-unit.less +20 -0
  49. data/vendor/assets/stylesheets/bootstrap/labels.less +32 -0
  50. data/vendor/assets/stylesheets/bootstrap/layouts.less +17 -0
  51. data/vendor/assets/stylesheets/bootstrap/mixins.less +590 -0
  52. data/vendor/assets/stylesheets/bootstrap/modals.less +83 -0
  53. data/vendor/assets/stylesheets/bootstrap/navbar.less +299 -0
  54. data/vendor/assets/stylesheets/bootstrap/navs.less +353 -0
  55. data/vendor/assets/stylesheets/bootstrap/pager.less +30 -0
  56. data/vendor/assets/stylesheets/bootstrap/pagination.less +55 -0
  57. data/vendor/assets/stylesheets/bootstrap/popovers.less +49 -0
  58. data/vendor/assets/stylesheets/bootstrap/progress-bars.less +95 -0
  59. data/vendor/assets/stylesheets/bootstrap/reset.less +126 -0
  60. data/vendor/assets/stylesheets/bootstrap/scaffolding.less +29 -0
  61. data/vendor/assets/stylesheets/bootstrap/sprites.less +158 -0
  62. data/vendor/assets/stylesheets/bootstrap/tables.less +150 -0
  63. data/vendor/assets/stylesheets/bootstrap/thumbnails.less +35 -0
  64. data/vendor/assets/stylesheets/bootstrap/tooltip.less +35 -0
  65. data/vendor/assets/stylesheets/bootstrap/type.less +218 -0
  66. data/vendor/assets/stylesheets/bootstrap/utilities.less +23 -0
  67. data/vendor/assets/stylesheets/bootstrap/variables.less +107 -0
  68. data/vendor/assets/stylesheets/bootstrap/wells.less +17 -0
  69. data/vendor/assets/stylesheets/kickstrap/animate/animate.css +3813 -0
  70. data/vendor/assets/stylesheets/kickstrap/chosen/chosen.less +392 -0
  71. data/vendor/assets/stylesheets/kickstrap/fontawesome/font-awesome.less +218 -0
  72. data/vendor/assets/stylesheets/kickstrap/icomoon/icomoon.less +123 -0
  73. data/vendor/assets/stylesheets/kickstrap/jgrowl/jquery.jgrowl.less +105 -0
  74. data/vendor/assets/stylesheets/kickstrap/overrides.less +271 -0
  75. data/vendor/assets/stylesheets/kickstrap/themes/amelia/amelia.less +647 -0
  76. data/vendor/assets/stylesheets/kickstrap/themes/amelia/variables.less +112 -0
  77. data/vendor/assets/stylesheets/kickstrap/themes/amelia.css.less +2 -0
  78. data/vendor/assets/stylesheets/kickstrap/themes/cerulean/cerulean.less +122 -0
  79. data/vendor/assets/stylesheets/kickstrap/themes/cerulean/variables.less +108 -0
  80. data/vendor/assets/stylesheets/kickstrap/themes/cerulean.css.less +2 -0
  81. data/vendor/assets/stylesheets/kickstrap/themes/cyborg/cyborg.less +511 -0
  82. data/vendor/assets/stylesheets/kickstrap/themes/cyborg/variables.less +110 -0
  83. data/vendor/assets/stylesheets/kickstrap/themes/cyborg.css.less +2 -0
  84. data/vendor/assets/stylesheets/kickstrap/themes/journal/journal.less +139 -0
  85. data/vendor/assets/stylesheets/kickstrap/themes/journal/variables.less +114 -0
  86. data/vendor/assets/stylesheets/kickstrap/themes/journal.css.less +2 -0
  87. data/vendor/assets/stylesheets/kickstrap/themes/readable/readable.less +454 -0
  88. data/vendor/assets/stylesheets/kickstrap/themes/readable/variables.less +108 -0
  89. data/vendor/assets/stylesheets/kickstrap/themes/readable.css.less +2 -0
  90. data/vendor/assets/stylesheets/kickstrap/themes/sandra/sandra.less +115 -0
  91. data/vendor/assets/stylesheets/kickstrap/themes/sandra/variables.less +110 -0
  92. data/vendor/assets/stylesheets/kickstrap/themes/sandra.css.less +2 -0
  93. data/vendor/assets/stylesheets/kickstrap/themes/simplex/simplex.less +107 -0
  94. data/vendor/assets/stylesheets/kickstrap/themes/simplex/variables.less +108 -0
  95. data/vendor/assets/stylesheets/kickstrap/themes/simplex.css.less +2 -0
  96. data/vendor/assets/stylesheets/kickstrap/themes/slate/slate.less +417 -0
  97. data/vendor/assets/stylesheets/kickstrap/themes/slate/variables.less +203 -0
  98. data/vendor/assets/stylesheets/kickstrap/themes/slate.css.less +2 -0
  99. data/vendor/assets/stylesheets/kickstrap/themes/spacelab/spacelab.less +174 -0
  100. data/vendor/assets/stylesheets/kickstrap/themes/spacelab/variables.less +107 -0
  101. data/vendor/assets/stylesheets/kickstrap/themes/spacelab.css.less +2 -0
  102. data/vendor/assets/stylesheets/kickstrap/themes/spruce/spruce.less +474 -0
  103. data/vendor/assets/stylesheets/kickstrap/themes/spruce/variables.less +108 -0
  104. data/vendor/assets/stylesheets/kickstrap/themes/spruce.css.less +2 -0
  105. data/vendor/assets/stylesheets/kickstrap/themes/superhero/superhero.less +634 -0
  106. data/vendor/assets/stylesheets/kickstrap/themes/superhero/variables.less +108 -0
  107. data/vendor/assets/stylesheets/kickstrap/themes/superhero.css.less +2 -0
  108. data/vendor/assets/stylesheets/kickstrap/themes/united/united.less +101 -0
  109. data/vendor/assets/stylesheets/kickstrap/themes/united/variables.less +110 -0
  110. data/vendor/assets/stylesheets/kickstrap/themes/united.css.less +2 -0
  111. data/vendor/assets/stylesheets/kickstrap.css.less +1 -0
  112. metadata +189 -0
@@ -0,0 +1,392 @@
1
+ /* @group Base */
2
+ .chzn-container {
3
+ font-size: 13px;
4
+ position: relative;
5
+ display: inline-block;
6
+ zoom: 1;
7
+ *display: inline;
8
+ }
9
+ .chzn-container .chzn-drop {
10
+ background: #fff;
11
+ border: 1px solid #aaa;
12
+ border-top: 0;
13
+ position: absolute;
14
+ top: 29px;
15
+ left: 0;
16
+ -webkit-box-shadow: 0 4px 5px rgba(0,0,0,.15);
17
+ -moz-box-shadow : 0 4px 5px rgba(0,0,0,.15);
18
+ -o-box-shadow : 0 4px 5px rgba(0,0,0,.15);
19
+ box-shadow : 0 4px 5px rgba(0,0,0,.15);
20
+ z-index: 999;
21
+ }
22
+ /* @end */
23
+
24
+ /* @group Single Chosen */
25
+ .chzn-container-single .chzn-single {
26
+ background-color: #ffffff;
27
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0 );
28
+ background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #ffffff), color-stop(50%, #f6f6f6), color-stop(52%, #eeeeee), color-stop(100%, #f4f4f4));
29
+ background-image: -webkit-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
30
+ background-image: -moz-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
31
+ background-image: -o-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
32
+ background-image: -ms-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
33
+ background-image: linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
34
+ -webkit-border-radius: 5px;
35
+ -moz-border-radius : 5px;
36
+ border-radius : 5px;
37
+ -moz-background-clip : padding;
38
+ -webkit-background-clip: padding-box;
39
+ background-clip : padding-box;
40
+ border: 1px solid #aaaaaa;
41
+ -webkit-box-shadow: 0 0 3px #ffffff inset, 0 1px 1px rgba(0,0,0,0.1);
42
+ -moz-box-shadow : 0 0 3px #ffffff inset, 0 1px 1px rgba(0,0,0,0.1);
43
+ box-shadow : 0 0 3px #ffffff inset, 0 1px 1px rgba(0,0,0,0.1);
44
+ display: block;
45
+ overflow: hidden;
46
+ white-space: nowrap;
47
+ position: relative;
48
+ height: 23px;
49
+ line-height: 24px;
50
+ padding: 0 0 0 8px;
51
+ color: #444444;
52
+ text-decoration: none;
53
+ }
54
+ .chzn-container-single .chzn-default {
55
+ color: #999;
56
+ }
57
+ .chzn-container-single .chzn-single span {
58
+ margin-right: 26px;
59
+ display: block;
60
+ overflow: hidden;
61
+ white-space: nowrap;
62
+ -o-text-overflow: ellipsis;
63
+ -ms-text-overflow: ellipsis;
64
+ text-overflow: ellipsis;
65
+ }
66
+ .chzn-container-single .chzn-single abbr {
67
+ display: block;
68
+ position: absolute;
69
+ right: 26px;
70
+ top: 6px;
71
+ width: 12px;
72
+ height: 13px;
73
+ font-size: 1px;
74
+ background: image-url('chosen/chosen-sprite.png') right top no-repeat;
75
+ }
76
+ .chzn-container-single .chzn-single abbr:hover {
77
+ background-position: right -11px;
78
+ }
79
+ .chzn-container-single .chzn-single div {
80
+ position: absolute;
81
+ right: 0;
82
+ top: 0;
83
+ display: block;
84
+ height: 100%;
85
+ width: 18px;
86
+ }
87
+ .chzn-container-single .chzn-single div b {
88
+ background: image-url('chosen/chosen-sprite.png') no-repeat 0 0;
89
+ display: block;
90
+ width: 100%;
91
+ height: 100%;
92
+ }
93
+ .chzn-container-single .chzn-search {
94
+ padding: 3px 4px;
95
+ position: relative;
96
+ margin: 0;
97
+ white-space: nowrap;
98
+ z-index: 1010;
99
+ }
100
+ .chzn-container-single .chzn-search input {
101
+ background: #fff image-url('chosen/chosen-sprite.png') no-repeat 100% -22px;
102
+ background: image-url('chosen/chosen-sprite.png') no-repeat 100% -22px, -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));
103
+ background: image-url('chosen/chosen-sprite.png') no-repeat 100% -22px, -webkit-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
104
+ background: image-url('chosen/chosen-sprite.png') no-repeat 100% -22px, -moz-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
105
+ background: image-url('chosen/chosen-sprite.png') no-repeat 100% -22px, -o-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
106
+ background: image-url('chosen/chosen-sprite.png') no-repeat 100% -22px, -ms-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
107
+ background: image-url('chosen/chosen-sprite.png') no-repeat 100% -22px, linear-gradient(top, #eeeeee 1%, #ffffff 15%);
108
+ margin: 1px 0;
109
+ padding: 4px 20px 4px 5px;
110
+ outline: 0;
111
+ border: 1px solid #aaa;
112
+ font-family: sans-serif;
113
+ font-size: 1em;
114
+ }
115
+ .chzn-container-single .chzn-drop {
116
+ -webkit-border-radius: 0 0 4px 4px;
117
+ -moz-border-radius : 0 0 4px 4px;
118
+ border-radius : 0 0 4px 4px;
119
+ -moz-background-clip : padding;
120
+ -webkit-background-clip: padding-box;
121
+ background-clip : padding-box;
122
+ }
123
+ /* @end */
124
+
125
+ .chzn-container-single-nosearch .chzn-search input {
126
+ position: absolute;
127
+ left: -9000px;
128
+ }
129
+
130
+ /* @group Multi Chosen */
131
+ .chzn-container-multi .chzn-choices {
132
+ background-color: #fff;
133
+ background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));
134
+ background-image: -webkit-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
135
+ background-image: -moz-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
136
+ background-image: -o-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
137
+ background-image: -ms-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
138
+ background-image: linear-gradient(top, #eeeeee 1%, #ffffff 15%);
139
+ border: 1px solid #aaa;
140
+ margin: 0;
141
+ padding: 0;
142
+ cursor: text;
143
+ overflow: hidden;
144
+ height: auto !important;
145
+ height: 1%;
146
+ position: relative;
147
+ }
148
+ .chzn-container-multi .chzn-choices li {
149
+ float: left;
150
+ list-style: none;
151
+ }
152
+ .chzn-container-multi .chzn-choices .search-field {
153
+ white-space: nowrap;
154
+ margin: 0;
155
+ padding: 0;
156
+ }
157
+ .chzn-container-multi .chzn-choices .search-field input {
158
+ color: #666;
159
+ background: transparent !important;
160
+ border: 0 !important;
161
+ font-family: sans-serif;
162
+ font-size: 100%;
163
+ height: 15px;
164
+ padding: 5px;
165
+ margin: 1px 0;
166
+ outline: 0;
167
+ -webkit-box-shadow: none;
168
+ -moz-box-shadow : none;
169
+ -o-box-shadow : none;
170
+ box-shadow : none;
171
+ }
172
+ .chzn-container-multi .chzn-choices .search-field .default {
173
+ color: #999;
174
+ }
175
+ .chzn-container-multi .chzn-choices .search-choice {
176
+ -webkit-border-radius: 3px;
177
+ -moz-border-radius : 3px;
178
+ border-radius : 3px;
179
+ -moz-background-clip : padding;
180
+ -webkit-background-clip: padding-box;
181
+ background-clip : padding-box;
182
+ background-color: #e4e4e4;
183
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4f4f4', endColorstr='#eeeeee', GradientType=0 );
184
+ background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
185
+ background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
186
+ background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
187
+ background-image: -o-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
188
+ background-image: -ms-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
189
+ background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
190
+ -webkit-box-shadow: 0 0 2px #ffffff inset, 0 1px 0 rgba(0,0,0,0.05);
191
+ -moz-box-shadow : 0 0 2px #ffffff inset, 0 1px 0 rgba(0,0,0,0.05);
192
+ box-shadow : 0 0 2px #ffffff inset, 0 1px 0 rgba(0,0,0,0.05);
193
+ color: #333;
194
+ border: 1px solid #aaaaaa;
195
+ line-height: 13px;
196
+ padding: 3px 20px 3px 5px;
197
+ margin: 3px 0 3px 5px;
198
+ position: relative;
199
+ cursor: default;
200
+ }
201
+ .chzn-container-multi .chzn-choices .search-choice-focus {
202
+ background: #d4d4d4;
203
+ }
204
+ .chzn-container-multi .chzn-choices .search-choice .search-choice-close {
205
+ display: block;
206
+ position: absolute;
207
+ right: 3px;
208
+ top: 4px;
209
+ width: 12px;
210
+ height: 13px;
211
+ font-size: 1px;
212
+ background: image-url('chosen/chosen-sprite.png') right top no-repeat;
213
+ }
214
+ .chzn-container-multi .chzn-choices .search-choice .search-choice-close:hover {
215
+ background-position: right -11px;
216
+ }
217
+ .chzn-container-multi .chzn-choices .search-choice-focus .search-choice-close {
218
+ background-position: right -11px;
219
+ }
220
+ /* @end */
221
+
222
+ /* @group Results */
223
+ .chzn-container .chzn-results {
224
+ margin: 0 4px 4px 0;
225
+ max-height: 240px;
226
+ padding: 0 0 0 4px;
227
+ position: relative;
228
+ overflow-x: hidden;
229
+ overflow-y: auto;
230
+ }
231
+ .chzn-container-multi .chzn-results {
232
+ margin: -1px 0 0;
233
+ padding: 0;
234
+ }
235
+ .chzn-container .chzn-results li {
236
+ display: none;
237
+ line-height: 15px;
238
+ padding: 5px 6px;
239
+ margin: 0;
240
+ list-style: none;
241
+ }
242
+ .chzn-container .chzn-results .active-result {
243
+ cursor: pointer;
244
+ display: list-item;
245
+ }
246
+ .chzn-container .chzn-results .highlighted {
247
+ background-color: #3875d7;
248
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3875d7', endColorstr='#2a62bc', GradientType=0 );
249
+ background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));
250
+ background-image: -webkit-linear-gradient(top, #3875d7 20%, #2a62bc 90%);
251
+ background-image: -moz-linear-gradient(top, #3875d7 20%, #2a62bc 90%);
252
+ background-image: -o-linear-gradient(top, #3875d7 20%, #2a62bc 90%);
253
+ background-image: -ms-linear-gradient(top, #3875d7 20%, #2a62bc 90%);
254
+ background-image: linear-gradient(top, #3875d7 20%, #2a62bc 90%);
255
+ color: #fff;
256
+ }
257
+ .chzn-container .chzn-results li em {
258
+ background: #feffde;
259
+ font-style: normal;
260
+ }
261
+ .chzn-container .chzn-results .highlighted em {
262
+ background: transparent;
263
+ }
264
+ .chzn-container .chzn-results .no-results {
265
+ background: #f4f4f4;
266
+ display: list-item;
267
+ }
268
+ .chzn-container .chzn-results .group-result {
269
+ cursor: default;
270
+ color: #999;
271
+ font-weight: bold;
272
+ }
273
+ .chzn-container .chzn-results .group-option {
274
+ padding-left: 15px;
275
+ }
276
+ .chzn-container-multi .chzn-drop .result-selected {
277
+ display: none;
278
+ }
279
+ .chzn-container .chzn-results-scroll {
280
+ background: white;
281
+ margin: 0 4px;
282
+ position: absolute;
283
+ text-align: center;
284
+ width: 321px; /* This should by dynamic with js */
285
+ z-index: 1;
286
+ }
287
+ .chzn-container .chzn-results-scroll span {
288
+ display: inline-block;
289
+ height: 17px;
290
+ text-indent: -5000px;
291
+ width: 9px;
292
+ }
293
+ .chzn-container .chzn-results-scroll-down {
294
+ bottom: 0;
295
+ }
296
+ .chzn-container .chzn-results-scroll-down span {
297
+ background: image-url('chosen/chosen-sprite.png') no-repeat -4px -3px;
298
+ }
299
+ .chzn-container .chzn-results-scroll-up span {
300
+ background: image-url('chosen/chosen-sprite.png') no-repeat -22px -3px;
301
+ }
302
+ /* @end */
303
+
304
+ /* @group Active */
305
+ .chzn-container-active .chzn-single {
306
+ -webkit-box-shadow: 0 0 5px rgba(0,0,0,.3);
307
+ -moz-box-shadow : 0 0 5px rgba(0,0,0,.3);
308
+ -o-box-shadow : 0 0 5px rgba(0,0,0,.3);
309
+ box-shadow : 0 0 5px rgba(0,0,0,.3);
310
+ border: 1px solid #5897fb;
311
+ }
312
+ .chzn-container-active .chzn-single-with-drop {
313
+ border: 1px solid #aaa;
314
+ -webkit-box-shadow: 0 1px 0 #fff inset;
315
+ -moz-box-shadow : 0 1px 0 #fff inset;
316
+ -o-box-shadow : 0 1px 0 #fff inset;
317
+ box-shadow : 0 1px 0 #fff inset;
318
+ background-color: #eee;
319
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0 );
320
+ background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #eeeeee), color-stop(80%, #ffffff));
321
+ background-image: -webkit-linear-gradient(top, #eeeeee 20%, #ffffff 80%);
322
+ background-image: -moz-linear-gradient(top, #eeeeee 20%, #ffffff 80%);
323
+ background-image: -o-linear-gradient(top, #eeeeee 20%, #ffffff 80%);
324
+ background-image: -ms-linear-gradient(top, #eeeeee 20%, #ffffff 80%);
325
+ background-image: linear-gradient(top, #eeeeee 20%, #ffffff 80%);
326
+ -webkit-border-bottom-left-radius : 0;
327
+ -webkit-border-bottom-right-radius: 0;
328
+ -moz-border-radius-bottomleft : 0;
329
+ -moz-border-radius-bottomright: 0;
330
+ border-bottom-left-radius : 0;
331
+ border-bottom-right-radius: 0;
332
+ }
333
+ .chzn-container-active .chzn-single-with-drop div {
334
+ background: transparent;
335
+ border-left: none;
336
+ }
337
+ .chzn-container-active .chzn-single-with-drop div b {
338
+ background-position: -18px 1px;
339
+ }
340
+ .chzn-container-active .chzn-choices {
341
+ -webkit-box-shadow: 0 0 5px rgba(0,0,0,.3);
342
+ -moz-box-shadow : 0 0 5px rgba(0,0,0,.3);
343
+ -o-box-shadow : 0 0 5px rgba(0,0,0,.3);
344
+ box-shadow : 0 0 5px rgba(0,0,0,.3);
345
+ border: 1px solid #5897fb;
346
+ }
347
+ .chzn-container-active .chzn-choices .search-field input {
348
+ color: #111 !important;
349
+ }
350
+ /* @end */
351
+
352
+ /* @group Disabled Support */
353
+ .chzn-disabled {
354
+ cursor: default;
355
+ opacity:0.5 !important;
356
+ }
357
+ .chzn-disabled .chzn-single {
358
+ cursor: default;
359
+ }
360
+ .chzn-disabled .chzn-choices .search-choice .search-choice-close {
361
+ cursor: default;
362
+ }
363
+
364
+ /* @group Right to Left */
365
+ .chzn-rtl { text-align: right; }
366
+ .chzn-rtl .chzn-single { padding: 0 8px 0 0; overflow: visible; }
367
+ .chzn-rtl .chzn-single span { margin-left: 26px; margin-right: 0; direction: rtl; }
368
+
369
+ .chzn-rtl .chzn-single div { left: 3px; right: auto; }
370
+ .chzn-rtl .chzn-single abbr {
371
+ left: 26px;
372
+ right: auto;
373
+ }
374
+ .chzn-rtl .chzn-choices .search-field input { direction: rtl; }
375
+ .chzn-rtl .chzn-choices li { float: right; }
376
+ .chzn-rtl .chzn-choices .search-choice { padding: 3px 5px 3px 19px; margin: 3px 5px 3px 0; }
377
+ .chzn-rtl .chzn-choices .search-choice .search-choice-close { left: 4px; right: auto; background-position: right top;}
378
+ .chzn-rtl.chzn-container-single .chzn-results { margin: 0 0 4px 4px; padding: 0 4px 0 0; }
379
+ .chzn-rtl .chzn-results .group-option { padding-left: 0; padding-right: 15px; }
380
+ .chzn-rtl.chzn-container-active .chzn-single-with-drop div { border-right: none; }
381
+ .chzn-rtl .chzn-search input {
382
+ background: #fff image-url('chosen/chosen-sprite.png') no-repeat -38px -22px;
383
+ background: image-url('chosen/chosen-sprite.png') no-repeat -38px -22px, -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));
384
+ background: image-url('chosen/chosen-sprite.png') no-repeat -38px -22px, -webkit-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
385
+ background: image-url('chosen/chosen-sprite.png') no-repeat -38px -22px, -moz-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
386
+ background: image-url('chosen/chosen-sprite.png') no-repeat -38px -22px, -o-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
387
+ background: image-url('chosen/chosen-sprite.png') no-repeat -38px -22px, -ms-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
388
+ background: image-url('chosen/chosen-sprite.png') no-repeat -38px -22px, linear-gradient(top, #eeeeee 1%, #ffffff 15%);
389
+ padding: 4px 5px 4px 20px;
390
+ direction: rtl;
391
+ }
392
+ /* @end */
@@ -0,0 +1,218 @@
1
+ @font-face {
2
+ font-family: 'FontAwesome';
3
+ src: font-url('fontawesome/fontawesome-webfont.eot');
4
+ src: font-url('fontawesome/fontawesome-webfont.eot?#iefix') format('embedded-opentype'),
5
+ font-url('fontawesome/fontawesome-webfont.woff') format('woff'),
6
+ font-url('fontawesome/fontawesome-webfont.ttf') format('truetype'),
7
+ font-url('fontawesome/fontawesome-webfont.svgz#FontAwesomeRegular') format('svg'),
8
+ font-url('fontawesome/fontawesome-webfont.svg#FontAwesomeRegular') format('svg');
9
+ font-weight: normal;
10
+ font-style: normal;
11
+ }
12
+
13
+ // ICONS
14
+ // Glyphs and icons for buttons, nav, and more
15
+ // -------------------------------------------
16
+ // Font Awesome courtesy of Dave Gandy at fortaweso.me/font-awesome
17
+
18
+ [class^="icon-"]:before,
19
+ [class*=" icon-"]:before {
20
+ font-family: FontAwesome;
21
+ font-weight: normal;
22
+ font-style: normal;
23
+ display: inline-block;
24
+ }
25
+
26
+ // makes the font 33% larger relative to the icon container
27
+ .icon-large:before {
28
+ // display: inline-block;
29
+ font-size: 4/3em;
30
+ }
31
+
32
+ .btn {
33
+ [class^="icon-"],
34
+ [class*=" icon-"] {
35
+ line-height: .9em; // keeps button heights with and without icons the same
36
+ vertical-align: baseline;
37
+ }
38
+ }
39
+
40
+ li {
41
+ [class^="icon-"],
42
+ [class*=" icon-"] {
43
+ display: inline-block;
44
+ width: 1.25em;
45
+ text-align: center;
46
+ }
47
+ .icon-large[class^="icon-"],
48
+ .icon-large[class*=" icon-"] {
49
+ width: 1.5*1.25em; // 1.5 increased font size for icon-large * 1.25 width
50
+ }
51
+ }
52
+
53
+ li[class^="icon-"],
54
+ li[class*=" icon-"] {
55
+ margin-left: 0;
56
+ list-style-type: none;
57
+
58
+ &:before {
59
+ text-indent: -2em;
60
+ text-align: center;
61
+ }
62
+ &.icon-large:before {
63
+ text-indent: -4/3em;
64
+ }
65
+ }
66
+
67
+ // Uses Unicode Private Use Area (PUA) to ensure screen readers do not read off
68
+ // random characters that represent icons
69
+ .icon-glass:before { content: "\f000"; }
70
+ .icon-music:before { content: "\f001"; }
71
+ .icon-search:before { content: "\f002"; }
72
+ .icon-envelope:before { content: "\f003"; }
73
+ .icon-heart:before { content: "\f004"; }
74
+ .icon-star:before { content: "\f005"; }
75
+ .icon-star-empty:before { content: "\f006"; }
76
+ .icon-user:before { content: "\f007"; }
77
+ .icon-film:before { content: "\f008"; }
78
+ .icon-th-large:before { content: "\f009"; }
79
+ .icon-th:before { content: "\f00a"; }
80
+ .icon-th-list:before { content: "\f00b"; }
81
+ .icon-ok:before { content: "\f00c"; }
82
+ .icon-remove:before { content: "\f00d"; }
83
+ .icon-zoom-in:before { content: "\f00e"; }
84
+
85
+ .icon-zoom-out:before { content: "\f010"; }
86
+ .icon-off:before { content: "\f011"; }
87
+ .icon-signal:before { content: "\f012"; }
88
+ .icon-cog:before { content: "\f013"; }
89
+ .icon-trash:before { content: "\f014"; }
90
+ .icon-home:before { content: "\f015"; }
91
+ .icon-file:before { content: "\f016"; }
92
+ .icon-time:before { content: "\f017"; }
93
+ .icon-road:before { content: "\f018"; }
94
+ .icon-download-alt:before { content: "\f019"; }
95
+ .icon-download:before { content: "\f01a"; }
96
+ .icon-upload:before { content: "\f01b"; }
97
+ .icon-inbox:before { content: "\f01c"; }
98
+ .icon-play-circle:before { content: "\f01d"; }
99
+ .icon-repeat:before { content: "\f01e"; }
100
+
101
+ // \f020 is not a valid unicode character. all shifted one down
102
+ .icon-refresh:before { content: "\f021"; }
103
+ .icon-list-alt:before { content: "\f022"; }
104
+ .icon-lock:before { content: "\f023"; }
105
+ .icon-flag:before { content: "\f024"; }
106
+ .icon-headphones:before { content: "\f025"; }
107
+ .icon-volume-off:before { content: "\f026"; }
108
+ .icon-volume-down:before { content: "\f027"; }
109
+ .icon-volume-up:before { content: "\f028"; }
110
+ .icon-qrcode:before { content: "\f029"; }
111
+ .icon-barcode:before { content: "\f02a"; }
112
+ .icon-tag:before { content: "\f02b"; }
113
+ .icon-tags:before { content: "\f02c"; }
114
+ .icon-book:before { content: "\f02d"; }
115
+ .icon-bookmark:before { content: "\f02e"; }
116
+ .icon-print:before { content: "\f02f"; }
117
+
118
+ .icon-camera:before { content: "\f030"; }
119
+ .icon-font:before { content: "\f031"; }
120
+ .icon-bold:before { content: "\f032"; }
121
+ .icon-italic:before { content: "\f033"; }
122
+ .icon-text-height:before { content: "\f034"; }
123
+ .icon-text-width:before { content: "\f035"; }
124
+ .icon-align-left:before { content: "\f036"; }
125
+ .icon-align-center:before { content: "\f037"; }
126
+ .icon-align-right:before { content: "\f038"; }
127
+ .icon-align-justify:before { content: "\f039"; }
128
+ .icon-list:before { content: "\f03a"; }
129
+ .icon-indent-left:before { content: "\f03b"; }
130
+ .icon-indent-right:before { content: "\f03c"; }
131
+ .icon-facetime-video:before { content: "\f03d"; }
132
+ .icon-picture:before { content: "\f03e"; }
133
+
134
+ .icon-pencil:before { content: "\f040"; }
135
+ .icon-map-marker:before { content: "\f041"; }
136
+ .icon-adjust:before { content: "\f042"; }
137
+ .icon-tint:before { content: "\f043"; }
138
+ .icon-edit:before { content: "\f044"; }
139
+ .icon-share:before { content: "\f045"; }
140
+ .icon-check:before { content: "\f046"; }
141
+ .icon-move:before { content: "\f047"; }
142
+ .icon-step-backward:before { content: "\f048"; }
143
+ .icon-fast-backward:before { content: "\f049"; }
144
+ .icon-backward:before { content: "\f04a"; }
145
+ .icon-play:before { content: "\f04b"; }
146
+ .icon-pause:before { content: "\f04c"; }
147
+ .icon-stop:before { content: "\f04d"; }
148
+ .icon-forward:before { content: "\f04e"; }
149
+
150
+ .icon-fast-forward:before { content: "\f050"; }
151
+ .icon-step-forward:before { content: "\f051"; }
152
+ .icon-eject:before { content: "\f052"; }
153
+ .icon-chevron-left:before { content: "\f053"; }
154
+ .icon-chevron-right:before { content: "\f054"; }
155
+ .icon-plus-sign:before { content: "\f055"; }
156
+ .icon-minus-sign:before { content: "\f056"; }
157
+ .icon-remove-sign:before { content: "\f057"; }
158
+ .icon-ok-sign:before { content: "\f058"; }
159
+ .icon-question-sign:before { content: "\f059"; }
160
+ .icon-info-sign:before { content: "\f05a"; }
161
+ .icon-screenshot:before { content: "\f05b"; }
162
+ .icon-remove-circle:before { content: "\f05c"; }
163
+ .icon-ok-circle:before { content: "\f05d"; }
164
+ .icon-ban-circle:before { content: "\f05e"; }
165
+
166
+ .icon-arrow-left:before { content: "\f060"; }
167
+ .icon-arrow-right:before { content: "\f061"; }
168
+ .icon-arrow-up:before { content: "\f062"; }
169
+ .icon-arrow-down:before { content: "\f063"; }
170
+ .icon-share-alt:before { content: "\f064"; }
171
+ .icon-resize-full:before { content: "\f065"; }
172
+ .icon-resize-small:before { content: "\f066"; }
173
+ .icon-plus:before { content: "\f067"; }
174
+ .icon-minus:before { content: "\f068"; }
175
+ .icon-asterisk:before { content: "\f069"; }
176
+ .icon-exclamation-sign:before { content: "\f06a"; }
177
+ .icon-gift:before { content: "\f06b"; }
178
+ .icon-leaf:before { content: "\f06c"; }
179
+ .icon-fire:before { content: "\f06d"; }
180
+ .icon-eye-open:before { content: "\f06e"; }
181
+
182
+ .icon-eye-close:before { content: "\f070"; }
183
+ .icon-warning-sign:before { content: "\f071"; }
184
+ .icon-plane:before { content: "\f072"; }
185
+ .icon-calendar:before { content: "\f073"; }
186
+ .icon-random:before { content: "\f074"; }
187
+ .icon-comment:before { content: "\f075"; }
188
+ .icon-magnet:before { content: "\f076"; }
189
+ .icon-chevron-up:before { content: "\f077"; }
190
+ .icon-chevron-down:before { content: "\f078"; }
191
+ .icon-retweet:before { content: "\f079"; }
192
+ .icon-shopping-cart:before { content: "\f07a"; }
193
+ .icon-folder-close:before { content: "\f07b"; }
194
+ .icon-folder-open:before { content: "\f07c"; }
195
+ .icon-resize-vertical:before { content: "\f07d"; }
196
+ .icon-resize-horizontal:before { content: "\f07e"; }
197
+
198
+ .icon-bar-chart:before { content: "\f080"; }
199
+ .icon-twitter-sign:before { content: "\f081"; }
200
+ .icon-facebook-sign:before { content: "\f082"; }
201
+ .icon-camera-retro:before { content: "\f083"; }
202
+ .icon-key:before { content: "\f084"; }
203
+ .icon-cogs:before { content: "\f085"; }
204
+ .icon-comments:before { content: "\f086"; }
205
+ .icon-thumbs-up:before { content: "\f087"; }
206
+ .icon-thumbs-down:before { content: "\f088"; }
207
+ .icon-star-half:before { content: "\f089"; }
208
+ .icon-heart-empty:before { content: "\f08a"; }
209
+ .icon-signout:before { content: "\f08b"; }
210
+ .icon-linkedin-sign:before { content: "\f08c"; }
211
+ .icon-pushpin:before { content: "\f08d"; }
212
+ .icon-external-link:before { content: "\f08e"; }
213
+
214
+ .icon-signin:before { content: "\f090"; }
215
+ .icon-trophy:before { content: "\f091"; }
216
+ .icon-github-sign:before { content: "\f092"; }
217
+ .icon-upload-alt:before { content: "\f093"; }
218
+ .icon-lemon:before { content: "\f094"; }