railstrap 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (143) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +3 -0
  3. data/Rakefile +40 -0
  4. data/app/helpers/railstrap/application_helper.rb +260 -0
  5. data/config/routes.rb +2 -0
  6. data/lib/generators/railstrap/crud/USAGE +8 -0
  7. data/lib/generators/railstrap/crud/crud_generator.rb +160 -0
  8. data/lib/generators/railstrap/crud/templates/controller.rb +109 -0
  9. data/lib/generators/railstrap/crud/templates/view_edit.html.erb +12 -0
  10. data/lib/generators/railstrap/crud/templates/view_form.html.erb +18 -0
  11. data/lib/generators/railstrap/crud/templates/view_index.html.erb +11 -0
  12. data/lib/generators/railstrap/crud/templates/view_new.html.erb +12 -0
  13. data/lib/generators/railstrap/crud/templates/view_print.html.erb +13 -0
  14. data/lib/generators/railstrap/crud/templates/view_show.html.erb +14 -0
  15. data/lib/generators/railstrap/crud/templates/view_sidebar.html.erb +13 -0
  16. data/lib/generators/railstrap/crud/templates/view_signin.html.erb +36 -0
  17. data/lib/generators/railstrap/crud/templates/view_signup.html.erb +52 -0
  18. data/lib/generators/railstrap/crud/templates/view_text.html.erb +18 -0
  19. data/lib/generators/railstrap/install/install_generator.rb +74 -0
  20. data/lib/generators/railstrap/kaminari/templates/_first_page.html.erb +14 -0
  21. data/lib/generators/railstrap/kaminari/templates/_gap.html.erb +8 -0
  22. data/lib/generators/railstrap/kaminari/templates/_last_page.html.erb +14 -0
  23. data/lib/generators/railstrap/kaminari/templates/_next_page.html.erb +13 -0
  24. data/lib/generators/railstrap/kaminari/templates/_page.html.erb +12 -0
  25. data/lib/generators/railstrap/kaminari/templates/_paginator.html.erb +25 -0
  26. data/lib/generators/railstrap/kaminari/templates/_prev_page.html.erb +13 -0
  27. data/lib/generators/railstrap/layout/layout_generator.rb +30 -0
  28. data/lib/generators/railstrap/layout/templates/layout_railstrap.html.erb +134 -0
  29. data/lib/generators/railstrap/layout/templates/railstrap_painel.css.scss.erb +284 -0
  30. data/lib/generators/railstrap/layout/templates/railstrap_painel.js.erb +35 -0
  31. data/lib/railstrap.rb +9 -0
  32. data/lib/railstrap/action_controller.rb +29 -0
  33. data/lib/railstrap/active_record.rb +8 -0
  34. data/lib/railstrap/active_record/search.rb +52 -0
  35. data/lib/railstrap/engine.rb +29 -0
  36. data/lib/railstrap/version.rb +3 -0
  37. data/lib/tasks/railstrap_tasks.rake +4 -0
  38. data/test/dummy/README.rdoc +261 -0
  39. data/test/dummy/Rakefile +7 -0
  40. data/test/dummy/app/assets/javascripts/application.js +15 -0
  41. data/test/dummy/app/assets/javascripts/railstrap_painel.js +35 -0
  42. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  43. data/test/dummy/app/assets/stylesheets/railstrap_painel.css.scss +284 -0
  44. data/test/dummy/app/controllers/application_controller.rb +7 -0
  45. data/test/dummy/app/controllers/painel/authors_controller.rb +84 -0
  46. data/test/dummy/app/helpers/application_helper.rb +2 -0
  47. data/test/dummy/app/models/article.rb +3 -0
  48. data/test/dummy/app/models/author.rb +3 -0
  49. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  50. data/test/dummy/app/views/layouts/painel.html.erb +135 -0
  51. data/test/dummy/app/views/painel/authors/_form.html.erb +20 -0
  52. data/test/dummy/app/views/painel/authors/edit.html.erb +12 -0
  53. data/test/dummy/app/views/painel/authors/index.html.erb +12 -0
  54. data/test/dummy/app/views/painel/authors/new.html.erb +12 -0
  55. data/test/dummy/app/views/painel/authors/show.html.erb +14 -0
  56. data/test/dummy/config.ru +4 -0
  57. data/test/dummy/config/application.rb +56 -0
  58. data/test/dummy/config/boot.rb +10 -0
  59. data/test/dummy/config/database.yml +25 -0
  60. data/test/dummy/config/environment.rb +5 -0
  61. data/test/dummy/config/environments/development.rb +37 -0
  62. data/test/dummy/config/environments/production.rb +67 -0
  63. data/test/dummy/config/environments/test.rb +37 -0
  64. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  65. data/test/dummy/config/initializers/inflections.rb +15 -0
  66. data/test/dummy/config/initializers/mime_types.rb +5 -0
  67. data/test/dummy/config/initializers/secret_token.rb +7 -0
  68. data/test/dummy/config/initializers/session_store.rb +8 -0
  69. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  70. data/test/dummy/config/locales/en.yml +5 -0
  71. data/test/dummy/config/routes.rb +65 -0
  72. data/test/dummy/db/development.sqlite3 +0 -0
  73. data/test/dummy/db/migrate/20120604170000_create_articles.rb +12 -0
  74. data/test/dummy/db/migrate/20120604170057_create_authors.rb +10 -0
  75. data/test/dummy/db/schema.rb +31 -0
  76. data/test/dummy/log/development.log +3278 -0
  77. data/test/dummy/public/404.html +26 -0
  78. data/test/dummy/public/422.html +26 -0
  79. data/test/dummy/public/500.html +25 -0
  80. data/test/dummy/public/favicon.ico +0 -0
  81. data/test/dummy/script/rails +6 -0
  82. data/test/dummy/test/fixtures/articles.yml +13 -0
  83. data/test/dummy/test/fixtures/authors.yml +9 -0
  84. data/test/dummy/test/unit/article_test.rb +7 -0
  85. data/test/dummy/test/unit/author_test.rb +7 -0
  86. data/test/dummy/tmp/cache/assets/C86/B70/sprockets%2Fcd9a89973c62604382628d4b42365c1a +0 -0
  87. data/test/dummy/tmp/cache/assets/CB3/120/sprockets%2F0725460776a8a901aa58b85f4cce5456 +0 -0
  88. data/test/dummy/tmp/cache/assets/CDD/EE0/sprockets%2F7ab399ca754638905a70e366e1c1ab33 +0 -0
  89. data/test/dummy/tmp/cache/assets/CE2/EE0/sprockets%2Fd78ec4726951f44cb085d0db080960e3 +0 -0
  90. data/test/dummy/tmp/cache/assets/D09/2B0/sprockets%2F045947e6b2bba2ff33c67b51b63734a6 +0 -0
  91. data/test/dummy/tmp/cache/assets/D0B/A40/sprockets%2F241cecf5326c934ab0440a7c76ad7597 +0 -0
  92. data/test/dummy/tmp/cache/assets/D1D/870/sprockets%2Fa9e5ee43f30c1886f8d66c413395bd63 +0 -0
  93. data/test/dummy/tmp/cache/assets/D2B/DD0/sprockets%2Fddc372002f3306cc0d74fea616ed1138 +0 -0
  94. data/test/dummy/tmp/cache/assets/D46/920/sprockets%2F8f3c0c4bf52b27a6646e49751e4e8f0c +0 -0
  95. data/test/dummy/tmp/cache/assets/D72/0B0/sprockets%2F56e9ec06e41d1cf9d692d674b5ddb210 +0 -0
  96. data/test/dummy/tmp/cache/assets/D7C/A80/sprockets%2Fd2d9ec09fb9bc7f8a0758392420e5c7d +0 -0
  97. data/test/dummy/tmp/cache/assets/D7D/9D0/sprockets%2F28fea8457f4a95a2c2d34a6e77df509e +0 -0
  98. data/test/dummy/tmp/cache/assets/D98/3C0/sprockets%2F36f548ab10ebcf8badf47d2719bb8500 +0 -0
  99. data/test/dummy/tmp/cache/assets/DB6/7B0/sprockets%2F120aa322daea3a2aa3667ffd6931eb9b +0 -0
  100. data/test/dummy/tmp/cache/assets/DCB/E50/sprockets%2F89f6b8aeb7d09c0bad5151bab92e5f42 +0 -0
  101. data/test/dummy/tmp/cache/assets/DCF/B50/sprockets%2F5ef130bc93784a52897bbab7bbd4c8ea +0 -0
  102. data/test/dummy/tmp/cache/assets/DD4/B00/sprockets%2F518e3d3f425eccc9558a03f6ddd36ced +0 -0
  103. data/test/dummy/tmp/cache/assets/E53/040/sprockets%2Fb7edacfada15c14fe43ea3b5fc8e2463 +0 -0
  104. data/test/dummy/tmp/cache/sass/0c9acd3b93b1d41708045c7041c76bbf41b2e963/_bootstrap-responsive.scssc +997 -0
  105. data/test/dummy/tmp/cache/sass/0c9acd3b93b1d41708045c7041c76bbf41b2e963/_bootstrap.scssc +0 -0
  106. data/test/dummy/tmp/cache/sass/1ea5acef392f2f8c40312d480463a71d2049b360/railstrap_painel.css.scssc +0 -0
  107. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_accordion.scssc +0 -0
  108. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_alerts.scssc +0 -0
  109. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_breadcrumbs.scssc +0 -0
  110. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_button-groups.scssc +0 -0
  111. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_buttons.scssc +0 -0
  112. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_carousel.scssc +0 -0
  113. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_close.scssc +0 -0
  114. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_code.scssc +0 -0
  115. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_component-animations.scssc +0 -0
  116. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_dropdowns.scssc +0 -0
  117. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_forms.scssc +1494 -0
  118. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_grid.scssc +0 -0
  119. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_hero-unit.scssc +0 -0
  120. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_labels-badges.scssc +0 -0
  121. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_layouts.scssc +0 -0
  122. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_mixins.scssc +2620 -0
  123. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_modals.scssc +0 -0
  124. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_navbar.scssc +1209 -0
  125. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_navs.scssc +0 -0
  126. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_pager.scssc +0 -0
  127. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_pagination.scssc +0 -0
  128. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_popovers.scssc +0 -0
  129. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_progress-bars.scssc +0 -0
  130. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_reset.scssc +0 -0
  131. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_scaffolding.scssc +0 -0
  132. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_sprites.scssc +1064 -0
  133. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_tables.scssc +0 -0
  134. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_thumbnails.scssc +0 -0
  135. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_tooltip.scssc +0 -0
  136. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_type.scssc +0 -0
  137. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_utilities.scssc +0 -0
  138. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_variables.scssc +684 -0
  139. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_wells.scssc +0 -0
  140. data/test/integration/navigation_test.rb +10 -0
  141. data/test/railstrap_test.rb +7 -0
  142. data/test/test_helper.rb +15 -0
  143. metadata +420 -0
@@ -0,0 +1,1494 @@
1
+ 3.1.18 (Brainy Betty)
2
+ b42c7513f6b16c513664ba91522c257caac5d787
3
+ o:Sass::Tree::RootNode
4
+ :
5
+ @linei:@template"�1// Forms.less
6
+ // Base styles for various input types, form layouts, and states
7
+ // -------------------------------------------------------------
8
+
9
+
10
+ // GENERAL STYLES
11
+ // --------------
12
+
13
+ // Make all forms have space below them
14
+ form {
15
+ margin: 0 0 $baseLineHeight;
16
+ }
17
+
18
+ fieldset {
19
+ padding: 0;
20
+ margin: 0;
21
+ border: 0;
22
+ }
23
+
24
+ // Groups of fields with labels on top (legends)
25
+ legend {
26
+ display: block;
27
+ width: 100%;
28
+ padding: 0;
29
+ margin-bottom: $baseLineHeight * 1.5;
30
+ font-size: $baseFontSize * 1.5;
31
+ line-height: $baseLineHeight * 2;
32
+ color: $grayDark;
33
+ border: 0;
34
+ border-bottom: 1px solid #eee;
35
+
36
+ // Small
37
+ small {
38
+ font-size: $baseLineHeight * .75;
39
+ color: $grayLight;
40
+ }
41
+ }
42
+
43
+ // Set font for forms
44
+ label, input, button, select, textarea {
45
+ @include font-shorthand($baseFontSize, normal, $baseLineHeight); // Set size, weight, line-height here
46
+ }
47
+ input, button, select, textarea {
48
+ font-family: $baseFontFamily; // And only set font-family here for those that need it (note the missing label element)
49
+ }
50
+
51
+ // Identify controls by their labels
52
+ label {
53
+ display: block;
54
+ margin-bottom: 5px;
55
+ color: $grayDark;
56
+ }
57
+
58
+ // Inputs, Textareas, Selects
59
+ input, textarea, select, .uneditable-input {
60
+ display: inline-block;
61
+ width: 210px;
62
+ height: $baseLineHeight;
63
+ padding: 4px;
64
+ margin-bottom: 9px;
65
+ font-size: $baseFontSize;
66
+ line-height: $baseLineHeight;
67
+ color: $gray;
68
+ background-color: $inputBackground;
69
+ border: 1px solid $inputBorder;
70
+ @include border-radius($inputBorderRadius);
71
+ }
72
+ .uneditable-textarea {
73
+ width: auto;
74
+ height: auto;
75
+ }
76
+
77
+ // Inputs within a label
78
+ label input, label textarea, label select {
79
+ display: block;
80
+ }
81
+
82
+ // Mini reset for unique input types
83
+ input[type="image"], input[type="checkbox"], input[type="radio"] {
84
+ width: auto;
85
+ height: auto;
86
+ padding: 0;
87
+ margin: 3px 0;
88
+ *margin-top: 0; /* IE7 */
89
+ line-height: normal;
90
+ cursor: pointer;
91
+ background-color: transparent;
92
+ border: 0 \9; /* IE9 and down */
93
+ @include border-radius(0);
94
+ }
95
+ input[type="image"] {
96
+ border: 0;
97
+ }
98
+
99
+ // Reset the file input to browser defaults
100
+ input[type="file"] {
101
+ width: auto;
102
+ padding: initial;
103
+ line-height: initial;
104
+ background-color: $inputBackground;
105
+ background-color: initial;
106
+ border: initial;
107
+ @include box-shadow(none);
108
+ }
109
+
110
+ // Help out input buttons
111
+ input[type="button"], input[type="reset"], input[type="submit"] {
112
+ width: auto;
113
+ height: auto;
114
+ }
115
+
116
+ // Set the height of select and file controls to match text inputs
117
+ select, input[type="file"] {
118
+ height: 28px; /* In IE7, the height of the select element cannot be changed by height, only font-size */
119
+ *margin-top: 4px; /* For IE7, add top margin to align select with labels */
120
+ line-height: 28px;
121
+ }
122
+
123
+ // Reset line-height for IE
124
+ input[type="file"] {
125
+ line-height: 18px \9;
126
+ }
127
+
128
+ // Chrome on Linux and Mobile Safari need background-color
129
+ select {
130
+ width: 220px; // default input width + 10px of padding that doesn't get applied
131
+ background-color: $inputBackground;
132
+ }
133
+
134
+ // Make multiple select elements height not fixed
135
+ select[multiple], select[size] {
136
+ height: auto;
137
+ }
138
+
139
+ // Remove shadow from image inputs
140
+ input[type="image"] {
141
+ @include box-shadow(none);
142
+ }
143
+
144
+ // Make textarea height behave
145
+ textarea {
146
+ height: auto;
147
+ }
148
+
149
+ // Hidden inputs
150
+ input[type="hidden"] {
151
+ display: none;
152
+ }
153
+
154
+
155
+
156
+ // CHECKBOXES & RADIOS
157
+ // -------------------
158
+
159
+ // Indent the labels to position radios/checkboxes as hanging
160
+ .radio, .checkbox {
161
+ min-height: 18px; // clear the floating input if there is no label text
162
+ padding-left: 18px;
163
+ }
164
+ .radio input[type="radio"], .checkbox input[type="checkbox"] {
165
+ float: left;
166
+ margin-left: -18px;
167
+ }
168
+
169
+ // Move the options list down to align with labels
170
+ .controls > .radio:first-child, .controls > .checkbox:first-child {
171
+ padding-top: 5px; // has to be padding because margin collaspes
172
+ }
173
+
174
+ // Radios and checkboxes on same line
175
+ // TODO v3: Convert .inline to .control-inline
176
+ .radio.inline, .checkbox.inline {
177
+ display: inline-block;
178
+ padding-top: 5px;
179
+ margin-bottom: 0;
180
+ vertical-align: middle;
181
+ }
182
+ .radio.inline + .radio.inline, .checkbox.inline + .checkbox.inline {
183
+ margin-left: 10px; // space out consecutive inline controls
184
+ }
185
+
186
+
187
+
188
+ // FOCUS STATE
189
+ // -----------
190
+
191
+ input, textarea {
192
+ @include box-shadow(inset 0 1px 1px rgba(0,0,0,.075));
193
+ @include transition(#{border linear .2s, box-shadow linear .2s});
194
+ }
195
+ input:focus, textarea:focus {
196
+ border-color: rgba(82,168,236,.8);
197
+ outline: 0;
198
+ outline: thin dotted \9; /* IE6-9 */
199
+ @include box-shadow(#{inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6)});
200
+ }
201
+ input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus, select:focus {
202
+ @include tab-focus();
203
+ @include box-shadow(none); // override for file inputs
204
+ }
205
+
206
+
207
+
208
+ // INPUT SIZES
209
+ // -----------
210
+
211
+ // General classes for quick sizes
212
+ .input-mini { width: 60px; }
213
+ .input-small { width: 90px; }
214
+ .input-medium { width: 150px; }
215
+ .input-large { width: 210px; }
216
+ .input-xlarge { width: 270px; }
217
+ .input-xxlarge { width: 530px; }
218
+
219
+ // Grid style input sizes
220
+ input[class*="span"], select[class*="span"], textarea[class*="span"], .uneditable-input[class*="span"],
221
+ // Redeclare since the fluid row class is more specific
222
+ .row-fluid input[class*="span"], .row-fluid select[class*="span"], .row-fluid textarea[class*="span"], .row-fluid .uneditable-input[class*="span"] {
223
+ float: none;
224
+ margin-left: 0;
225
+ }
226
+
227
+
228
+
229
+ // GRID SIZING FOR INPUTS
230
+ // ----------------------
231
+
232
+ @include gridInput($gridColumnWidth, $gridGutterWidth);
233
+
234
+
235
+
236
+
237
+ // DISABLED STATE
238
+ // --------------
239
+
240
+ // Disabled and read-only inputs
241
+ input[disabled], select[disabled], textarea[disabled], input[readonly], select[readonly], textarea[readonly] {
242
+ cursor: not-allowed;
243
+ background-color: $inputDisabledBackground;
244
+ border-color: #ddd;
245
+ }
246
+ // Explicitly reset the colors here
247
+ input[type="radio"][disabled], input[type="checkbox"][disabled], input[type="radio"][readonly], input[type="checkbox"][readonly] {
248
+ background-color: transparent;
249
+ }
250
+
251
+
252
+
253
+
254
+ // FORM FIELD FEEDBACK STATES
255
+ // --------------------------
256
+
257
+ // Warning
258
+ .control-group.warning {
259
+ @include formFieldState($warningText, $warningText, $warningBackground);
260
+ }
261
+ // Error
262
+ .control-group.error {
263
+ @include formFieldState($errorText, $errorText, $errorBackground);
264
+ }
265
+ // Success
266
+ .control-group.success {
267
+ @include formFieldState($successText, $successText, $successBackground);
268
+ }
269
+
270
+ // HTML5 invalid states
271
+ // Shares styles with the .control-group.error above
272
+ input:focus:required:invalid, textarea:focus:required:invalid, select:focus:required:invalid {
273
+ color: #b94a48;
274
+ border-color: #ee5f5b;
275
+ &:focus {
276
+ border-color: darken(#ee5f5b, 10%);
277
+ @include box-shadow(0 0 6px lighten(#ee5f5b, 20%));
278
+ }
279
+ }
280
+
281
+
282
+
283
+ // FORM ACTIONS
284
+ // ------------
285
+
286
+ .form-actions {
287
+ padding: ($baseLineHeight - 1) 20px $baseLineHeight;
288
+ margin-top: $baseLineHeight;
289
+ margin-bottom: $baseLineHeight;
290
+ background-color: $formActionsBackground;
291
+ border-top: 1px solid #ddd;
292
+ @include clearfix(); // Adding clearfix to allow for .pull-right button containers
293
+ }
294
+
295
+ // For text that needs to appear as an input but should not be an input
296
+ .uneditable-input {
297
+ overflow: hidden; // prevent text from wrapping, but still cut it off like an input does
298
+ white-space: nowrap;
299
+ cursor: not-allowed;
300
+ background-color: $inputBackground;
301
+ border-color: #eee;
302
+ @include box-shadow(inset 0 1px 2px rgba(0,0,0,.025));
303
+ }
304
+
305
+ // Placeholder text gets special styles; can't be bundled together though for some reason
306
+ @include placeholder($grayLight);
307
+
308
+
309
+
310
+ // HELP TEXT
311
+ // ---------
312
+
313
+ .help-block, .help-inline {
314
+ color: $gray; // lighten the text some for contrast
315
+ }
316
+
317
+ .help-block {
318
+ display: block; // account for any element using help-block
319
+ margin-bottom: $baseLineHeight / 2;
320
+ }
321
+
322
+ .help-inline {
323
+ display: inline-block;
324
+ @include ie7-inline-block();
325
+ vertical-align: middle;
326
+ padding-left: 5px;
327
+ }
328
+
329
+
330
+
331
+ // INPUT GROUPS
332
+ // ------------
333
+
334
+ // Allow us to put symbols and text within the input field for a cleaner look
335
+ .input-prepend, .input-append {
336
+ margin-bottom: 5px;
337
+ input, select, .uneditable-input {
338
+ position: relative; // placed here by default so that on :focus we can place the input above the .add-on for full border and box-shadow goodness
339
+ margin-bottom: 0; // prevent bottom margin from screwing up alignment in stacked forms
340
+ *margin-left: 0;
341
+ vertical-align: middle;
342
+ @include border-radius(0 $inputBorderRadius $inputBorderRadius 0);
343
+ // Make input on top when focused so blue border and shadow always show
344
+ &:focus {
345
+ z-index: 2;
346
+ }
347
+ }
348
+ .uneditable-input {
349
+ border-left-color: #ccc;
350
+ }
351
+ .add-on {
352
+ display: inline-block;
353
+ width: auto;
354
+ height: $baseLineHeight;
355
+ min-width: 16px;
356
+ padding: 4px 5px;
357
+ font-weight: normal;
358
+ line-height: $baseLineHeight;
359
+ text-align: center;
360
+ text-shadow: 0 1px 0 $white;
361
+ vertical-align: middle;
362
+ background-color: $grayLighter;
363
+ border: 1px solid #ccc;
364
+ }
365
+ .add-on, .btn {
366
+ margin-left: -1px;
367
+ @include border-radius(0);
368
+ }
369
+ .active {
370
+ background-color: lighten($green, 30);
371
+ border-color: $green;
372
+ }
373
+ }
374
+ .input-prepend {
375
+ .add-on, .btn {
376
+ margin-right: -1px;
377
+ }
378
+ .add-on:first-child, .btn:first-child {
379
+ @include border-radius($inputBorderRadius 0 0 $inputBorderRadius);
380
+ }
381
+ }
382
+ .input-append {
383
+ input, select, .uneditable-input {
384
+ @include border-radius($inputBorderRadius 0 0 $inputBorderRadius);
385
+ }
386
+ .uneditable-input {
387
+ border-right-color: #ccc;
388
+ border-left-color: #eee;
389
+ }
390
+ .add-on:last-child, .btn:last-child {
391
+ @include border-radius(0 $inputBorderRadius $inputBorderRadius 0);
392
+ }
393
+ }
394
+ // Remove all border-radius for inputs with both prepend and append
395
+ .input-prepend.input-append {
396
+ input, select, .uneditable-input {
397
+ @include border-radius(0);
398
+ }
399
+ .add-on:first-child, .btn:first-child {
400
+ margin-right: -1px;
401
+ @include border-radius($inputBorderRadius 0 0 $inputBorderRadius);
402
+ }
403
+ .add-on:last-child, .btn:last-child {
404
+ margin-left: -1px;
405
+ @include border-radius(0 $inputBorderRadius $inputBorderRadius 0);
406
+ }
407
+ }
408
+
409
+
410
+
411
+ // SEARCH FORM
412
+ // -----------
413
+
414
+ .search-query {
415
+ padding-right: 14px;
416
+ padding-right: 4px \9;
417
+ padding-left: 14px;
418
+ padding-left: 4px \9; /* IE7-8 doesn't have border-radius, so don't indent the padding */
419
+ margin-bottom: 0; // remove the default margin on all inputs
420
+ @include border-radius(14px);
421
+ }
422
+
423
+
424
+
425
+ // HORIZONTAL & VERTICAL FORMS
426
+ // ---------------------------
427
+
428
+ // Common properties
429
+ // -----------------
430
+
431
+ .form-search, .form-inline, .form-horizontal {
432
+ input, textarea, select, .help-inline, .uneditable-input, .input-prepend, .input-append {
433
+ display: inline-block;
434
+ @include ie7-inline-block();
435
+ margin-bottom: 0;
436
+ }
437
+ // Re-hide hidden elements due to specifity
438
+ .hide {
439
+ display: none;
440
+ }
441
+ }
442
+ .form-search label, .form-inline label {
443
+ display: inline-block;
444
+ }
445
+ // Remove margin for input-prepend/-append
446
+ .form-search .input-append, .form-inline .input-append, .form-search .input-prepend, .form-inline .input-prepend {
447
+ margin-bottom: 0;
448
+ }
449
+ // Inline checkbox/radio labels (remove padding on left)
450
+ .form-search .radio, .form-search .checkbox, .form-inline .radio, .form-inline .checkbox {
451
+ padding-left: 0;
452
+ margin-bottom: 0;
453
+ vertical-align: middle;
454
+ }
455
+ // Remove float and margin, set to inline-block
456
+ .form-search .radio input[type="radio"], .form-search .checkbox input[type="checkbox"], .form-inline .radio input[type="radio"], .form-inline .checkbox input[type="checkbox"] {
457
+ float: left;
458
+ margin-right: 3px;
459
+ margin-left: 0;
460
+ }
461
+
462
+
463
+ // Margin to space out fieldsets
464
+ .control-group {
465
+ margin-bottom: $baseLineHeight / 2;
466
+ }
467
+
468
+ // Legend collapses margin, so next element is responsible for spacing
469
+ legend + .control-group {
470
+ margin-top: $baseLineHeight;
471
+ -webkit-margin-top-collapse: separate;
472
+ }
473
+
474
+ // Horizontal-specific styles
475
+ // --------------------------
476
+
477
+ .form-horizontal {
478
+ // Increase spacing between groups
479
+ .control-group {
480
+ margin-bottom: $baseLineHeight;
481
+ @include clearfix();
482
+ }
483
+ // Float the labels left
484
+ .control-label {
485
+ float: left;
486
+ width: 140px;
487
+ padding-top: 5px;
488
+ text-align: right;
489
+ }
490
+ // Move over all input controls and content
491
+ .controls {
492
+ // Super jank IE7 fix to ensure the inputs in .input-append and input-prepend
493
+ // don't inherit the margin of the parent, in this case .controls
494
+ *display: inline-block;
495
+ *padding-left: 20px;
496
+ margin-left: 160px;
497
+ *margin-left: 0;
498
+ &:first-child {
499
+ *padding-left: 160px;
500
+ }
501
+ }
502
+ // Remove bottom margin on block level help text since that's accounted for on .control-group
503
+ .help-block {
504
+ margin-top: $baseLineHeight / 2;
505
+ margin-bottom: 0;
506
+ }
507
+ // Move over buttons in .form-actions to align with .controls
508
+ .form-actions {
509
+ padding-left: 160px;
510
+ }
511
+ }:@children[uo:Sass::Tree::CommentNode ;i: @silenti;[:
512
+ @loud0: @value["�/* Forms.less
513
+ * Base styles for various input types, form layouts, and states
514
+ * ------------------------------------------------------------- */o; ;i ;
515
+ i;[; @
516
+ ; 0;
517
+ * -------------- */o; ;i;
518
+ i;[; @
519
+ ; 0;
520
+ @rule[" form;[o:Sass::Tree::PropNode ;i;[:@prop_syntax:new:
521
+ @name[" margin; @
522
+ :
523
+ @tabsi;
524
+ space; @
525
+ ;
526
+ :@numerator_units[;
527
+ ;[;
528
+ :@parsed_ruleso:"Sass::Selector::CommaSequence;i:@filename":
529
+ :@has_childrenT;io; ;i;["
530
+ ;i;
531
+ :
532
+ @type:identifier;
533
+ ;i;
534
+ ;(;);
535
+ ;i;
536
+ ;(;);
537
+ ;&T;io; ;i;
538
+ i;[; @
539
+ ; 0;
540
+ ;i;
541
+ ;(;);
542
+ blocko; ;i;[;;;["
543
+ width; @
544
+ ;i;
545
+ ;(;);
546
+ ;i;
547
+ ;(;);
548
+ ;i;
549
+ ;i:@operator:
550
+ times:@operand2o; ;i;"1.5;@!; @
551
+ ;[;
552
+ :@operand1o; ;i;"baseLineHeight;"baseLineHeight; @
553
+ o; ;i;[;;;["font-size; @
554
+ ;i;
555
+ ;i;+;,;-o; ;i;"1.5;@!; @
556
+ ;[;
557
+ ;.o; ;i;"baseFontSize;"baseFontSize; @
558
+ o; ;i ;[;;;["line-height; @
559
+ ;i;
560
+ ;i ;+;,;-o; ;i ;"2;@!; @
561
+ ;[;
562
+ ;.o; ;i ;"baseLineHeight;"baseLineHeight; @
563
+ o; ;i!;[;;;["
564
+ color; @
565
+ ;i;
566
+ o; ;i";[;;;[" border; @
567
+ ;i;
568
+ ;(;);
569
+ ;i;
570
+ ;(;);
571
+ i;[; @
572
+ ; 0;
573
+ small;[o; ;i';[;;;["font-size; @
574
+ ;i;
575
+ ;i';+;,;-o; ;i';" 0.75;@!; @
576
+ ;[;
577
+ ;.o; ;i';"baseLineHeight;"baseLineHeight; @
578
+ o; ;i(;[;;;["
579
+ color; @
580
+ ;i;
581
+ ;o;;i&; ";![o;";![o;#;i&; @�;![o;$ ;i&;%0;["
582
+ small; @�; @
583
+ ;&T;i;o;;i; ";![o;";![o;#;i; @�;![o;$ ;i;%0;[" legend; @�; @
584
+ ;&T;io; ;i,;
585
+ i;[; @
586
+ ; 0;
587
+ :
588
+ @args[o; ;i.;"baseFontSize;"baseFontSize; @
589
+ o;' ;i.; @
590
+ ;(;);
591
+ o; ;i.;
592
+ i;[; @
593
+ ; 0;
594
+ o;";![o;#;i-; @�;![o;$ ;i-;%0;["
595
+ label; @�o;";![o;#;i-; @�;![o;$ ;i-;%0;["
596
+ input; @�o;";![o;#;i-; @�;![o;$ ;i-;%0;[" button; @�o;";![o;#;i-; @�;![o;$ ;i-;%0;[" select; @�o;";![o;#;i-; @�;![o;$ ;i-;%0;["
597
+ ;&T;io; ;i0;["$input, button, select, textarea;[o; ;i1;[;;;["font-family; @
598
+ ;i;
599
+ o; ;i1;
600
+ i;[; @
601
+ ; 0;
602
+ input; @o;";![o;#;i0; @;![o;$ ;i0;%0;[" button; @o;";![o;#;i0; @;![o;$ ;i0;%0;[" select; @o;";![o;#;i0; @;![o;$ ;i0;%0;["
603
+ ;&T;io; ;i4;
604
+ i;[; @
605
+ ; 0;
606
+ label;[o; ;i6;[;;;[" display; @
607
+ ;i;
608
+ ;(;);
609
+ blocko; ;i7;[;;;["margin-bottom; @
610
+ ;i;
611
+ ;(;);
612
+ color; @
613
+ ;i;
614
+ ;o;;i5; ";![o;";![o;#;i5; @V;![o;$ ;i5;%0;["
615
+ label; @V; @
616
+ ;&T;io; ;i;;
617
+ i;[; @
618
+ ; 0;
619
+ ;i;
620
+ ;(;);
621
+ width; @
622
+ ;i;
623
+ ;(;);
624
+ 210pxo; ;i?;[;;;[" height; @
625
+ ;i;
626
+ o; ;i@;[;;;[" padding; @
627
+ ;i;
628
+ ;(;);
629
+ ;i;
630
+ ;(;);
631
+ ;i;
632
+ o; ;iC;[;;;["line-height; @
633
+ ;i;
634
+ o; ;iD;[;;;["
635
+ color; @
636
+ ;i;
637
+ o; ;iE;[;;;["background-color; @
638
+ ;i;
639
+ o; ;iF;[;;;[" border; @
640
+ ;i;
641
+ ;
642
+ ;["px;
643
+ ;(;);
644
+ solido; ;iF;"inputBorder;"inputBorder; @
645
+ o;/ ;iG;[;0{;"border-radius; @
646
+ ;1[o; ;iG;"inputBorderRadius;"inputBorderRadius; @
647
+ ;o;;i<; ";![ o;";![o;#;i<; @�;![o;$ ;i<;%0;["
648
+ input; @�o;";![o;#;i<; @�;![o;$ ;i<;%0;["
649
+ ;&T;io; ;iI;[".uneditable-textarea;[o; ;iJ;[;;;["
650
+ width; @
651
+ ;i;
652
+ ;(;);
653
+ ;i;
654
+ ;(;);
655
+ ;&T;io; ;iN;
656
+ i;[; @
657
+ ; 0;
658
+ ;i;
659
+ ;(;);
660
+ block;o;;iO; ";![o;";![o;#;iO; @;![o;$ ;iO;%0;["
661
+ label; @o;#;iO; @;![o;$ ;iO;%0;["
662
+ input; @o;";![o;#;iO; @;![o;$ ;iO;%0;["
663
+ label; @o;#;iO; @;![o;$ ;iO;%0;["
664
+ label; @o;#;iO; @;![o;$ ;iO;%0;[" select; @; @
665
+ ;&T;io; ;iS;
666
+ i;[; @
667
+ ; 0;
668
+ width; @
669
+ ;i;
670
+ ;(;);
671
+ ;i;
672
+ ;(;);
673
+ ;i;
674
+ ;(;);
675
+ ;i;
676
+ ;(;);
677
+ 3px 0o; ;iY;[;;;["*margin-top; @
678
+ ;i;
679
+ ;(;);
680
+ 0;[; @
681
+ ; 0;
682
+ ;i;
683
+ ;(;);
684
+ ;i;
685
+ ;(;);
686
+ ;i;
687
+ ;(;);
688
+ ;i;
689
+ ;(;);
690
+ 0;[; @
691
+ ; 0;
692
+ ;1[o; ;i^;"0;@!; @
693
+ ;[;
694
+ input; @wo:Sass::Selector::Attribute ;iT;%0;+"=;[" type;
695
+ input; @wo;3 ;iT;%0;+"=;[" type;
696
+ input; @wo;3 ;iT;%0;+"=;[" type;
697
+ ;&T;io; ;i`;["input[type="image"];[o; ;ia;[;;;[" border; @
698
+ ;i;
699
+ ;(;);
700
+ input; @�o;3 ;i`;%0;+"=;[" type;
701
+ ;&T;io; ;id;
702
+ i;[; @
703
+ ; 0;
704
+ width; @
705
+ ;i;
706
+ ;(;);
707
+ ;i;
708
+ ;(;);
709
+ ;i;
710
+ ;(;);
711
+ ;i;
712
+ o; ;ij;[;;;["background-color; @
713
+ ;i;
714
+ ;(;);
715
+ ;i;
716
+ ;(;);
717
+ ;1[o;' ;il; @
718
+ ;(;);
719
+ input; @�o;3 ;ie;%0;+"=;[" type;
720
+ ;&T;io; ;io;
721
+ i;[; @
722
+ ; 0;
723
+ width; @
724
+ ;i;
725
+ ;(;);
726
+ ;i;
727
+ ;(;);
728
+ input; @o;3 ;ip;%0;+"=;[" type;
729
+ input; @o;3 ;ip;%0;+"=;[" type;
730
+ input; @o;3 ;ip;%0;+"=;[" type;
731
+ ;&T;io; ;iu;
732
+ i;[; @
733
+ ; 0;
734
+ o; ;iw;[;;;[" height; @
735
+ ;i;
736
+ ;(;);
737
+ 0;[; @
738
+ ; 0;
739
+ ;i;
740
+ ;(;);
741
+ 0;[; @
742
+ ; 0;
743
+ ;i;
744
+ ;(;);
745
+ input; @_o;3 ;iv;%0;+"=;[" type;
746
+ ;&T;io; ;i|;
747
+ i;[; @
748
+ ; 0;
749
+ ;i;
750
+ ;(;);
751
+ input; @�o;3 ;i};%0;+"=;[" type;
752
+ ;&T;io; ;i|;
753
+ i;[; @
754
+ ; 0;
755
+ width; @
756
+ ;i;
757
+ ;(;);
758
+ 220pxo; ;i~;
759
+ i;[; @
760
+ ; 0;
761
+ ;i;
762
+ ;o;;i}; ";![o;";![o;#;i}; @�;![o;$ ;i};%0;[" select; @�; @
763
+ ;&T;io; ;i�;
764
+ i;[; @
765
+ ; 0;
766
+ ;i;
767
+ ;(;);
768
+ ;&T;io; ;i�;
769
+ i;[; @
770
+ ; 0;
771
+ ;1[o;' ;i�; @
772
+ ;(;);
773
+ input; @�o;3 ;i�;%0;+"=;[" type;
774
+ ;&T;io; ;i�;
775
+ i;[; @
776
+ ; 0;
777
+ ;i;
778
+ ;(;);
779
+ ;&T;io; ;i�;
780
+ i;[; @
781
+ ; 0;
782
+ ;i;
783
+ ;(;);
784
+ input; @!o;3 ;i�;%0;+"=;[" type;
785
+ ;&T;io; ;i�;
786
+ i;[; @
787
+ ; 0;
788
+ * ------------------- */o; ;i�;
789
+ i;[; @
790
+ ; 0;
791
+ ;i;
792
+ ;(;);
793
+ i;[; @
794
+ ; 0;
795
+ ;i;
796
+ ;(;);
797
+ radio; @Mo;";![o;#;i�; @M;![o;2;i�;["
798
+ ;&T;io; ;i�;["A.radio input[type="radio"], .checkbox input[type="checkbox"];[o; ;i�;[;;;["
799
+ float; @
800
+ ;i;
801
+ ;(;);
802
+ ;i;
803
+ -18px;[; @
804
+ ;["px;
805
+ radio; @qo;#;i�; @q;![o;$ ;i�;%0;["
806
+ input; @qo;3 ;i�;%0;+"=;[" type;
807
+ input; @qo;3 ;i�;%0;+"=;[" type;
808
+ ;&T;io; ;i�;
809
+ i;[; @
810
+ ; 0;
811
+ ;i;
812
+ ;(;);
813
+ i;[; @
814
+ ; 0;
815
+ radio; @�o:Sass::Selector::Pseudo
816
+ ;i�: @arg0;["first-child;(:
817
+ class; @�o;";![o;#;i�; @�;![o;2;i�;["
818
+ ;i�;50;["first-child;(;6; @�; @
819
+ ;&T;io; ;i�;
820
+ i;[; @
821
+ ; 0;
822
+ * TODO v3: Convert .inline to .control-inline */o; ;i�;["$.radio.inline, .checkbox.inline;[ o; ;i�;[;;;[" display; @
823
+ ;i;
824
+ ;(;);
825
+ ;i;
826
+ ;(;);
827
+ ;i;
828
+ ;(;);
829
+ ;i;
830
+ ;(;);
831
+ radio; @�o;2;i�;[" inline; @�o;";![o;#;i�; @�;![o;2;i�;["
832
+ ;&T;io; ;i�;["G.radio.inline + .radio.inline, .checkbox.inline + .checkbox.inline;[o; ;i�;[;;;["margin-left; @
833
+ ;i;
834
+ ;(;);
835
+ i;[; @
836
+ ; 0;
837
+ radio; @o;2;i�;[" inline; @"+o;#;i�; @;![o;2;i�;["
838
+ radio; @o;2;i�;[" inline; @o;";![o;#;i�; @;![o;2;i�;["
839
+ ;&T;io; ;i�;
840
+ i;[; @
841
+ ; 0;
842
+ * ----------- */o; ;i�;["input, textarea;[o;/ ;i�;[;0{;"box-shadow; @
843
+ ;1[o; ;i�;;; @
844
+ ;
845
+ o;' ;i�; @
846
+ ;(;);
847
+ inseto; ;i�;"0;@!; @
848
+ ;[;
849
+ ;["px;
850
+ ;["px;
851
+ ;i�;0{;" rgba; @
852
+ ;1[ o; ;i�;"0;@!; @
853
+ ;[;
854
+ ;[;
855
+ ;[;
856
+ 0.075;@!; @
857
+ ;[;
858
+ ;1[o: Sass::Script::Interpolation
859
+ comma; @
860
+ ;
861
+ ;
862
+ ;(;);
863
+ ;(;);
864
+ ;["s;
865
+ ;
866
+ ;(;);
867
+ ;(;);
868
+ ;["s;
869
+ :@whitespace_after0: @before0;o;;i�; ";![o;";![o;#;i�; @�;![o;$ ;i�;%0;["
870
+ input; @�o;";![o;#;i�; @�;![o;$ ;i�;%0;["
871
+ ;&T;io; ;i�;[" input:focus, textarea:focus;[
872
+ o; ;i�;[;;;["border-color; @
873
+ ;i;
874
+ ;i�;0{;" rgba; @
875
+ ;1[ o; ;i�;"82;@!; @
876
+ ;[;
877
+ ;[;
878
+ ;[;
879
+ ;[;
880
+ ;i;
881
+ ;(;);
882
+ ;i;
883
+ ;(;);
884
+ 0;[; @
885
+ ; 0;
886
+ ;1[o;8
887
+ ;
888
+ ;
889
+ o;' ;i�; @
890
+ ;(;);
891
+ inseto; ;i�;"0;@!; @
892
+ ;[;
893
+ ;["px;
894
+ ;["px;
895
+ ;i�;0{;" rgba; @
896
+ ;1[ o; ;i�;"0;@!; @
897
+ ;[;
898
+ ;[;
899
+ ;[;
900
+ 0.075;@!; @
901
+ ;[;
902
+ ;
903
+ ;[;
904
+ ;[;
905
+ ;["px;
906
+ ;i�;0{;" rgba; @
907
+ ;1[ o; ;i�;"82;@!; @
908
+ ;[;
909
+ ;[;
910
+ ;[;
911
+ ;[;
912
+ ;>0;?0;o;;i�; ";![o;";![o;#;i�; @ ;![o;$ ;i�;%0;["
913
+ input; @ o;4
914
+ ;i�;50;["
915
+ focus;(;6; @ o;";![o;#;i�; @ ;![o;$ ;i�;%0;["
916
+ ;i�;50;["
917
+ focus;(;6; @ ; @
918
+ ;&T;io; ;i�;["dinput[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus, select:focus;[o;/ ;i�;[;0{;"tab-focus; @
919
+ ;1[o;/ ;i�;[;0{;"box-shadow; @
920
+ ;1[o;' ;i�; @
921
+ ;(;);
922
+ i;[; @
923
+ ; 0;
924
+ input; @7o;3 ;i�;%0;+"=;[" type;
925
+ ;i�;50;["
926
+ focus;(;6; @7o;";![o;#;i�; @7;![o;$ ;i�;%0;["
927
+ input; @7o;3 ;i�;%0;+"=;[" type;
928
+ ;i�;50;["
929
+ focus;(;6; @7o;";![o;#;i�; @7;![o;$ ;i�;%0;["
930
+ input; @7o;3 ;i�;%0;+"=;[" type;
931
+ ;i�;50;["
932
+ focus;(;6; @7o;";![o;#;i�; @7;![o;$ ;i�;%0;[" select; @7o;4
933
+ ;i�;50;["
934
+ focus;(;6; @7; @
935
+ ;&T;io; ;i�;
936
+ i;[; @
937
+ ; 0;
938
+ * ----------- */o; ;i�;
939
+ i;[; @
940
+ ; 0;
941
+ width; @
942
+ ;i;
943
+ ;(;);
944
+ ;&T;io; ;i�;[".input-small;[o; ;i�;[;;;["
945
+ width; @
946
+ ;i;
947
+ ;(;);
948
+ ;&T;io; ;i�;[".input-medium;[o; ;i�;[;;;["
949
+ width; @
950
+ ;i;
951
+ ;(;);
952
+ 150px;o;;i�; ";![o;";![o;#;i�; @�;![o;2;i�;["input-medium; @�; @
953
+ ;&T;io; ;i�;[".input-large;[o; ;i�;[;;;["
954
+ width; @
955
+ ;i;
956
+ ;(;);
957
+ 210px;o;;i�; ";![o;";![o;#;i�; @�;![o;2;i�;["input-large; @�; @
958
+ ;&T;io; ;i�;[".input-xlarge;[o; ;i�;[;;;["
959
+ width; @
960
+ ;i;
961
+ ;(;);
962
+ 270px;o;;i�; ";![o;";![o;#;i�; @�;![o;2;i�;["input-xlarge; @�; @
963
+ ;&T;io; ;i�;[".input-xxlarge;[o; ;i�;[;;;["
964
+ width; @
965
+ ;i;
966
+ ;(;);
967
+ 530px;o;;i�; ";![o;";![o;#;i�; @�;![o;2;i�;["input-xxlarge; @�; @
968
+ ;&T;io; ;i�;
969
+ i;[; @
970
+ ; 0;
971
+
972
+ .row-fluid input[class*="span"], .row-fluid select[class*="span"], .row-fluid textarea[class*="span"], .row-fluid .uneditable-input[class*="span"];[o; ;i�;[;;;["
973
+ float; @
974
+ ;i;
975
+ ;(;);
976
+ ;i;
977
+ ;(;);
978
+ input; @o;3 ;i�;%0;+"*=;["
979
+ class;
980
+ class;
981
+ class;
982
+ class;
983
+ o;#;i�; @;![o;2;i�;["row-fluid; @o;#;i�; @;![o;$ ;i�;%0;["
984
+ input; @o;3 ;i�;%0;+"*=;["
985
+ class;
986
+ class;
987
+ class;
988
+ class;
989
+ ;&T;io; ;i�;
990
+ i;[; @
991
+ ; 0;
992
+ * ---------------------- */o;/ ;i�;[;0{;"gridInput; @
993
+ ;1[o; ;i�;"gridColumnWidth;"gridColumnWidth; @
994
+ o; ;i�;"gridGutterWidth;"gridGutterWidth; @
995
+ o; ;i�;
996
+ i;[; @
997
+ ; 0;
998
+ * -------------- */o; ;i�;
999
+ i;[; @
1000
+ ; 0;
1001
+ ;i;
1002
+ ;(;);
1003
+ ;i;
1004
+ o; ;i�;[;;;["border-color; @
1005
+ ;i;
1006
+ ;(;);
1007
+ input; @�o;3 ;i�;%0;+0;["
1008
+ input; @�o;3 ;i�;%0;+0;["
1009
+ ;&T;io; ;i�;
1010
+ i;[; @
1011
+ ; 0;
1012
+ ;i;
1013
+ ;(;);
1014
+ input; @o;3 ;i�;%0;+"=;[" type;
1015
+ input; @o;3 ;i�;%0;+"=;[" type;
1016
+ input; @o;3 ;i�;%0;+"=;[" type;
1017
+ input; @o;3 ;i�;%0;+"=;[" type;
1018
+ ;&T;io; ;i�;
1019
+ i;[; @
1020
+ ; 0;
1021
+ * -------------------------- */o; ;i�;
1022
+ i;[; @
1023
+ ; 0;
1024
+ ;1[o; ;i�;"warningText;"warningText; @
1025
+ o; ;i�;"warningText;"warningText; @
1026
+ o; ;i�;"warningBackground;"warningBackground; @
1027
+ ;o;;i�; ";![o;";![o;#;i�; @`;![o;2;i�;["control-group; @`o;2;i�;[" warning; @`; @
1028
+ ;&T;io; ;i;
1029
+ i;[; @
1030
+ ; 0;
1031
+ ;1[o; ;i;"errorText;"errorText; @
1032
+ o; ;i;"errorText;"errorText; @
1033
+ o; ;i;"errorBackground;"errorBackground; @
1034
+ ;o;;i; ";![o;";![o;#;i; @�;![o;2;i;["control-group; @�o;2;i;["
1035
+ error; @�; @
1036
+ ;&T;io; ;i;
1037
+ i;[; @
1038
+ ; 0;
1039
+ ;1[o; ;i;"successText;"successText; @
1040
+ o; ;i;"successText;"successText; @
1041
+ o; ;i;"successBackground;"successBackground; @
1042
+ ;o;;i; ";![o;";![o;#;i; @�;![o;2;i;["control-group; @�o;2;i;[" success; @�; @
1043
+ ;&T;io; ;i
1044
+ ;
1045
+ i;[; @
1046
+ ; 0;
1047
+ * Shares styles with the .control-group.error above */o; ;i ;["ainput:focus:required:invalid, textarea:focus:required:invalid, select:focus:required:invalid;[o; ;i
1048
+ color; @
1049
+ ;i;
1050
+ ;(;);
1051
+ ;i;
1052
+ ;(;);
1053
+ ;i;
1054
+ ;i;0{;" darken; @
1055
+ ;1[o:Sass::Script::Color ;i: @attrs{ :redi�:
1056
+ greenid:
1057
+ alphai: bluei`; @
1058
+ ;
1059
+ ;["%;
1060
+ ;1[o; ;i;;; @
1061
+ ;
1062
+ ;[;
1063
+ ;[;
1064
+ ;["px;
1065
+ ;i;0{;" lighten; @
1066
+ ;1[o;@ ;i;A{ ;Bi�;Cid;Di;Ei`; @
1067
+ ;
1068
+ ;["%;
1069
+ ;i;50;["
1070
+ focus;(;6; @�; @
1071
+ ;&T;i;o;;i ; ";![o;";![o;#;i ; @ ;![ o;$ ;i ;%0;["
1072
+ input; @ o;4
1073
+ ;i ;50;["
1074
+ focus;(;6; @ o;4
1075
+ ;i ;50;["
1076
+ ;i ;50;[" invalid;(;6; @ o;";![o;#;i ; @ ;![ o;$ ;i ;%0;["
1077
+ ;i ;50;["
1078
+ focus;(;6; @ o;4
1079
+ ;i ;50;["
1080
+ ;i ;50;[" invalid;(;6; @ o;";![o;#;i ; @ ;![ o;$ ;i ;%0;[" select; @ o;4
1081
+ ;i ;50;["
1082
+ focus;(;6; @ o;4
1083
+ ;i ;50;["
1084
+ ;i ;50;[" invalid;(;6; @ ; @
1085
+ ;&T;io; ;i;
1086
+ i;[; @
1087
+ ; 0;
1088
+ * ------------ */o; ;i;[".form-actions;[ o; ;i;[;;;[" padding; @
1089
+ ;i;
1090
+ ;
1091
+ ;i;+:
1092
+ minus;-o; ;i;"1;@!; @
1093
+ ;[;
1094
+ ;.o; ;i;"baseLineHeight;"baseLineHeight; @
1095
+ o; ;i;" 20px;[; @
1096
+ ;["px;
1097
+ o; ;i;[;;;["margin-top; @
1098
+ ;i;
1099
+ o; ;i;[;;;["margin-bottom; @
1100
+ ;i;
1101
+ o; ;i;[;;;["background-color; @
1102
+ ;i;
1103
+ o; ;i;[;;;["border-top; @
1104
+ ;i;
1105
+ ;(;);
1106
+ ;1[o; ;i ;
1107
+ i;[; @
1108
+ ; 0;
1109
+ ;&T;io; ;i#;
1110
+ i;[; @
1111
+ ; 0;
1112
+ ;i;
1113
+ ;(;);
1114
+ i;[; @
1115
+ ; 0;
1116
+ ;i;
1117
+ ;(;);
1118
+ ;i;
1119
+ ;(;);
1120
+ ;i;
1121
+ o; ;i);[;;;["border-color; @
1122
+ ;i;
1123
+ ;(;);
1124
+ ;1[o; ;i*;;; @
1125
+ ;
1126
+ o;' ;i*; @
1127
+ ;(;);
1128
+ inseto; ;i*;"0;@!; @
1129
+ ;[;
1130
+ ;["px;
1131
+ ;["px;
1132
+ ;i*;0{;" rgba; @
1133
+ ;1[ o; ;i*;"0;@!; @
1134
+ ;[;
1135
+ ;[;
1136
+ ;[;
1137
+ 0.025;@!; @
1138
+ ;[;
1139
+ ;&T;io; ;i-;
1140
+ i;[; @
1141
+ ; 0;
1142
+ ;1[o; ;i.;"grayLight;"grayLight; @
1143
+ o; ;i2;
1144
+ i;[; @
1145
+ ; 0;
1146
+ * --------- */o; ;i5;[".help-block, .help-inline;[o; ;i6;[;;;["
1147
+ color; @
1148
+ ;i;
1149
+ o; ;i6;
1150
+ i;[; @
1151
+ ; 0;
1152
+ ;&T;io; ;i9;[".help-block;[o; ;i:;[;;;[" display; @
1153
+ ;i;
1154
+ ;(;);
1155
+ blocko; ;i:;
1156
+ i;[; @
1157
+ ; 0;
1158
+ ;i;
1159
+ ;i;;+:div;-o; ;i;;"2;@!; @
1160
+ ;[;
1161
+ ;.o; ;i;;"baseLineHeight;"baseLineHeight; @
1162
+ ;o;;i9; ";![o;";![o;#;i9; @%
1163
+ ;![o;2;i9;["help-block; @%
1164
+ ; @
1165
+ ;&T;io; ;i>;[".help-inline;[ o; ;i?;[;;;[" display; @
1166
+ ;i;
1167
+ ;(;);
1168
+ ;1[o; ;iA;[;;;["vertical-align; @
1169
+ ;i;
1170
+ ;(;);
1171
+ ;i;
1172
+ ;(;);
1173
+ ;![o;2;i>;["help-inline; @J
1174
+ ; @
1175
+ ;&T;io; ;iG;
1176
+ i;[; @
1177
+ ; 0;
1178
+ * ------------ */o; ;iJ;
1179
+ i;[; @
1180
+ ; 0;
1181
+ ;i;
1182
+ ;(;);
1183
+ ;i;
1184
+ ;(;);
1185
+ i;[; @
1186
+ ; 0;
1187
+ ;i;
1188
+ ;(;);
1189
+ i;[; @
1190
+ ; 0;
1191
+ ;i;
1192
+ ;(;);
1193
+ ;i;
1194
+ ;(;);
1195
+ ;1[o; ;iR;;; @
1196
+ ;
1197
+ ;[;
1198
+ o; ;iR;"inputBorderRadius;"inputBorderRadius; @
1199
+ o; ;iR;"0;@!; @
1200
+ ;[;
1201
+ i;[; @
1202
+ ; 0;
1203
+ ;i;
1204
+ ;(;);
1205
+ ;![o;F;iT; @�
1206
+ o;4
1207
+ ;iT;50;["
1208
+ focus;(;6; @�
1209
+ ; @
1210
+ ;&T;i;o;;iM; ";![o;";![o;#;iM; @�
1211
+ ;![o;$ ;iM;%0;["
1212
+ input; @�
1213
+ o;";![o;#;iM; @�
1214
+ ;![o;$ ;iM;%0;[" select; @�
1215
+ o;";![o;#;iM; @�
1216
+ ;![o;2;iM;["uneditable-input; @�
1217
+ ; @
1218
+ ;&T;io; ;iX;[".uneditable-input;[o; ;iY;[;;;["border-left-color; @
1219
+ ;i;
1220
+ ;(;);
1221
+ ;![o;2;iX;["uneditable-input; @�
1222
+ ; @
1223
+ ;&T;io; ;i[;[" .add-on;[o; ;i\;[;;;[" display; @
1224
+ ;i;
1225
+ ;(;);
1226
+ width; @
1227
+ ;i;
1228
+ ;(;);
1229
+ ;i;
1230
+ o; ;i_;[;;;["min-width; @
1231
+ ;i;
1232
+ ;(;);
1233
+ ;i;
1234
+ ;(;);
1235
+ ;i;
1236
+ ;(;);
1237
+ ;i;
1238
+ o; ;ic;[;;;["text-align; @
1239
+ ;i;
1240
+ ;(;);
1241
+ ;i;
1242
+ ;
1243
+ ;[;
1244
+ ;["px;
1245
+ ;[;
1246
+ white;"
1247
+ white; @
1248
+ o; ;ie;[;;;["vertical-align; @
1249
+ ;i;
1250
+ ;(;);
1251
+ ;i;
1252
+ o; ;ig;[;;;[" border; @
1253
+ ;i;
1254
+ ;(;);
1255
+ ;&T;io; ;ii;[".add-on, .btn;[o; ;ij;[;;;["margin-left; @
1256
+ ;i;
1257
+ ;["px;
1258
+ ;1[o; ;ik;"0;@!; @
1259
+ ;[;
1260
+ ;&T;io; ;im;[" .active;[o; ;in;[;;;["background-color; @
1261
+ ;i;
1262
+ ;in;0{;" lighten; @
1263
+ ;1[o; ;in;"
1264
+ green;"
1265
+ green; @
1266
+ o; ;in;"30;@!; @
1267
+ ;[;
1268
+ ;i;
1269
+ green;"
1270
+ green; @
1271
+ ;o;;im; ";![o;";![o;#;im; @� ;![o;2;im;[" active; @� ; @
1272
+ ;&T;i;o;;iK; ";![o;";![o;#;iK; @� ;![o;2;iK;["input-prepend; @� o;";![o;#;iK; @� ;![o;2;iK;["input-append; @� ; @
1273
+ ;&T;io; ;ir;[".input-prepend;[o; ;is;[".add-on, .btn;[o; ;it;[;;;["margin-right; @
1274
+ ;i;
1275
+ ;["px;
1276
+ ;&T;io; ;iv;["*.add-on:first-child, .btn:first-child;[o;/ ;iw;[;0{;"border-radius; @
1277
+ ;1[o; ;iw;;; @
1278
+ ;
1279
+ o; ;iw;"0;@!; @
1280
+ ;[;
1281
+ ;[;
1282
+ ;o;;iv; ";![o;";![o;#;iv; @� ;![o;2;iv;[" add-on; @� o;4
1283
+ ;iv;50;["first-child;(;6; @� o;";![o;#;iv; @� ;![o;2;iv;["btn; @� o;4
1284
+ ;iv;50;["first-child;(;6; @� ; @
1285
+ ;&T;i;o;;ir; ";![o;";![o;#;ir; @� ;![o;2;ir;["input-prepend; @� ; @
1286
+ ;&T;io; ;iz;[".input-append;[o; ;i{;["%input, select, .uneditable-input;[o;/ ;i|;[;0{;"border-radius; @
1287
+ ;1[o; ;i|;;; @
1288
+ ;
1289
+ o; ;i|;"0;@!; @
1290
+ ;[;
1291
+ ;[;
1292
+ ;o;;i{; ";![o;";![o;#;i{; @ ;![o;$ ;i{;%0;["
1293
+ input; @ o;";![o;#;i{; @ ;![o;$ ;i{;%0;[" select; @ o;";![o;#;i{; @ ;![o;2;i{;["uneditable-input; @ ; @
1294
+ ;&T;io; ;i~;[".uneditable-input;[o; ;i;[;;;["border-right-color; @
1295
+ ;i;
1296
+ ;(;);
1297
+ ;i;
1298
+ ;(;);
1299
+ ;&T;io; ;i�;["(.add-on:last-child, .btn:last-child;[o;/ ;i�;[;0{;"border-radius; @
1300
+ ;1[o; ;i�;;; @
1301
+ ;
1302
+ ;[;
1303
+ o; ;i�;"inputBorderRadius;"inputBorderRadius; @
1304
+ o; ;i�;"0;@!; @
1305
+ ;[;
1306
+ ;i�;50;["last-child;(;6; @a o;";![o;#;i�; @a ;![o;2;i�;["btn; @a o;4
1307
+ ;i�;50;["last-child;(;6; @a ; @
1308
+ ;&T;i;o;;iz; ";![o;";![o;#;iz; @x ;![o;2;iz;["input-append; @x ; @
1309
+ ;&T;io; ;i�;
1310
+ i;[; @
1311
+ ; 0;
1312
+ ;1[o; ;i�;"0;@!; @
1313
+ ;[;
1314
+ input; @� o;";![o;#;i�; @� ;![o;$ ;i�;%0;[" select; @� o;";![o;#;i�; @� ;![o;2;i�;["uneditable-input; @� ; @
1315
+ ;&T;io; ;i�;["*.add-on:first-child, .btn:first-child;[o; ;i�;[;;;["margin-right; @
1316
+ ;i;
1317
+ ;["px;
1318
+ ;1[o; ;i�;;; @
1319
+ ;
1320
+ o; ;i�;"0;@!; @
1321
+ ;[;
1322
+ ;[;
1323
+ ;o;;i�; ";![o;";![o;#;i�; @� ;![o;2;i�;[" add-on; @� o;4
1324
+ ;i�;50;["first-child;(;6; @� o;";![o;#;i�; @� ;![o;2;i�;["btn; @� o;4
1325
+ ;i�;50;["first-child;(;6; @� ; @
1326
+ ;&T;io; ;i�;["(.add-on:last-child, .btn:last-child;[o; ;i�;[;;;["margin-left; @
1327
+ ;i;
1328
+ ;["px;
1329
+ ;1[o; ;i�;;; @
1330
+ ;
1331
+ ;[;
1332
+ o; ;i�;"inputBorderRadius;"inputBorderRadius; @
1333
+ o; ;i�;"0;@!; @
1334
+ ;[;
1335
+ ;i�;50;["last-child;(;6; @
1336
+ ;i�;50;["last-child;(;6; @
1337
+ ;&T;i;o;;i�; ";![o;";![o;#;i�; @
1338
+ ;&T;io; ;i�;
1339
+ i;[; @
1340
+ ; 0;
1341
+ * ----------- */o; ;i�;[".search-query;[
1342
+ ;i;
1343
+ ;(;);
1344
+ ;i;
1345
+ ;(;);
1346
+ ;i;
1347
+ ;(;);
1348
+ ;i;
1349
+ ;(;);
1350
+ 0;[; @
1351
+ ; 0;
1352
+ ;i;
1353
+ ;(;);
1354
+ i;[; @
1355
+ ; 0;
1356
+ ;1[o; ;i�;" 14px;[; @
1357
+ ;["px;
1358
+ ;&T;io; ;i�;
1359
+ i;[; @
1360
+ ; 0;
1361
+ * --------------------------- */o; ;i�;
1362
+ i;[; @
1363
+ ; 0;
1364
+ * ----------------- */o; ;i�;["1.form-search, .form-inline, .form-horizontal;[o; ;i�;["\input, textarea, select, .help-inline, .uneditable-input, .input-prepend, .input-append;[o; ;i�;[;;;[" display; @
1365
+ ;i;
1366
+ ;(;);
1367
+ ;1[o; ;i�;[;;;["margin-bottom; @
1368
+ ;i;
1369
+ ;(;);
1370
+ input; @�
1371
+ ;&T;io; ;i�;
1372
+ i;[; @
1373
+ ; 0;
1374
+ .hide;[o; ;i�;[;;;[" display; @
1375
+ ;i;
1376
+ ;(;);
1377
+ ;&T;i;o;;i�; ";![o;";![o;#;i�; @�
1378
+ ;&T;io; ;i�;["+.form-search label, .form-inline label;[o; ;i�;[;;;[" display; @
1379
+ ;i;
1380
+ ;(;);
1381
+ label; @�
1382
+ label; @�
1383
+ ;&T;io; ;i�;
1384
+ i;[; @
1385
+ ; 0;
1386
+ ;i;
1387
+ ;(;);
1388
+ ;&T;io; ;i�;
1389
+ i;[; @
1390
+ ; 0;
1391
+ ;i;
1392
+ ;(;);
1393
+ ;i;
1394
+ ;(;);
1395
+ ;i;
1396
+ ;(;);
1397
+ radio; @po;";![o;#;i�; @p;![o;2;i�;["form-search; @po;#;i�; @p;![o;2;i�;["
1398
+ radio; @po;";![o;#;i�; @p;![o;2;i�;["form-inline; @po;#;i�; @p;![o;2;i�;["
1399
+ ;&T;io; ;i�;
1400
+ i;[; @
1401
+ ; 0;
1402
+ float; @
1403
+ ;i;
1404
+ ;(;);
1405
+ ;i;
1406
+ ;(;);
1407
+ ;i;
1408
+ ;(;);
1409
+ radio; @�o;#;i�; @�;![o;$ ;i�;%0;["
1410
+ input; @�o;3 ;i�;%0;+"=;[" type;
1411
+ input; @�o;3 ;i�;%0;+"=;[" type;
1412
+ radio; @�o;#;i�; @�;![o;$ ;i�;%0;["
1413
+ input; @�o;3 ;i�;%0;+"=;[" type;
1414
+ input; @�o;3 ;i�;%0;+"=;[" type;
1415
+ ;&T;io; ;i�;
1416
+ i;[; @
1417
+ ; 0;
1418
+ ;i;
1419
+ ;i�;+;H;-o; ;i�;"2;@!; @
1420
+ ;[;
1421
+ ;.o; ;i�;"baseLineHeight;"baseLineHeight; @
1422
+ ;o;;i�; ";![o;";![o;#;i�; @/;![o;2;i�;["control-group; @/; @
1423
+ ;&T;io; ;i�;
1424
+ i;[; @
1425
+ ; 0;
1426
+ ;i;
1427
+ o; ;i�;[;;;[" -webkit-margin-top-collapse; @
1428
+ ;i;
1429
+ ;(;);
1430
+ ;&T;io; ;i�;
1431
+ i;[; @
1432
+ ; 0;
1433
+ * -------------------------- */o; ;i�;[".form-horizontal;[o; ;i�;
1434
+ i;[; @
1435
+ ; 0;
1436
+ ;i;
1437
+ o;/ ;i�;[;0{;"
1438
+ ;1[;o;;i�; ";![o;";![o;#;i�; @z;![o;2;i�;["control-group; @z; @
1439
+ ;&T;io; ;i�;
1440
+ i;[; @
1441
+ ; 0;
1442
+ float; @
1443
+ ;i;
1444
+ ;(;);
1445
+ width; @
1446
+ ;i;
1447
+ ;(;);
1448
+ 140pxo; ;i�;[;;;["padding-top; @
1449
+ ;i;
1450
+ ;(;);
1451
+ ;i;
1452
+ ;(;);
1453
+ right;o;;i�; ";![o;";![o;#;i�; @�;![o;2;i�;["control-label; @�; @
1454
+ ;&T;io; ;i�;
1455
+ i;[; @
1456
+ ; 0;
1457
+ i;[; @
1458
+ ; 0;
1459
+ * don't inherit the margin of the parent, in this case .controls */o; ;i�;[;;;["
1460
+ ;i;
1461
+ ;(;);
1462
+ ;i;
1463
+ ;(;);
1464
+ ;i;
1465
+ ;(;);
1466
+ 160pxo; ;i�;[;;;["*margin-left; @
1467
+ ;i;
1468
+ ;(;);
1469
+ ;i;
1470
+ ;(;);
1471
+ 160px;o;;i�; ";![o;";![o;#;i�; @�;![o;F;i�; @�o;4
1472
+ ;i�;50;["first-child;(;6; @�; @
1473
+ ;&T;i;o;;i�; ";![o;";![o;#;i�; @�;![o;2;i�;["
1474
+ ;&T;io; ;i�;
1475
+ i;[; @
1476
+ ; 0;
1477
+ ;i;
1478
+ ;i�;+;H;-o; ;i�;"2;@!; @
1479
+ ;[;
1480
+ ;.o; ;i�;"baseLineHeight;"baseLineHeight; @
1481
+ o; ;i�;[;;;["margin-bottom; @
1482
+ ;i;
1483
+ ;(;);
1484
+ ;![o;2;i�;["help-block; @
1485
+ ; @
1486
+ ;&T;io; ;i�;
1487
+ i;[; @
1488
+ ; 0;
1489
+ ;i;
1490
+ ;(;);
1491
+ 160px;o;;i�; ";![o;";![o;#;i�; @";![o;2;i�;["form-actions; @"; @
1492
+ ;&T;i;o;;i�; ";![o;";![o;#;i�; @,;![o;2;i�;["form-horizontal; @,; @
1493
+ ;&T;i; @
1494
+ ;&T