jombo 1.0.1 → 1.0.2

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.
@@ -1,5 +1,5 @@
1
1
  /* ===================================================
2
- * bootstrap-transition.js v2.0.0
2
+ * bootstrap-transition.js v2.0.2
3
3
  * http://twitter.github.com/bootstrap/javascript.html#transitions
4
4
  * ===================================================
5
5
  * Copyright 2012 Twitter, Inc.
@@ -47,5 +47,5 @@
47
47
  })()
48
48
 
49
49
  })
50
-
51
- }( window.jQuery )
50
+
51
+ }( window.jQuery );
@@ -1,5 +1,5 @@
1
1
  /* =============================================================
2
- * bootstrap-typeahead.js v2.0.0
2
+ * bootstrap-typeahead.js v2.0.2
3
3
  * http://twitter.github.com/bootstrap/javascript.html#typeahead
4
4
  * =============================================================
5
5
  * Copyright 2012 Twitter, Inc.
@@ -39,7 +39,9 @@
39
39
 
40
40
  , select: function () {
41
41
  var val = this.$menu.find('.active').attr('data-value')
42
- this.$element.val(val)
42
+ this.$element
43
+ .val(val)
44
+ .change()
43
45
  return this.hide()
44
46
  }
45
47
 
@@ -108,7 +110,8 @@
108
110
  }
109
111
 
110
112
  , highlighter: function (item) {
111
- return item.replace(new RegExp('(' + this.query + ')', 'ig'), function ($1, match) {
113
+ var query = this.query.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, '\\$&')
114
+ return item.replace(new RegExp('(' + query + ')', 'ig'), function ($1, match) {
112
115
  return '<strong>' + match + '</strong>'
113
116
  })
114
117
  }
@@ -165,9 +168,6 @@
165
168
  }
166
169
 
167
170
  , keyup: function (e) {
168
- e.stopPropagation()
169
- e.preventDefault()
170
-
171
171
  switch(e.keyCode) {
172
172
  case 40: // down arrow
173
173
  case 38: // up arrow
@@ -180,6 +180,7 @@
180
180
  break
181
181
 
182
182
  case 27: // escape
183
+ if (!this.shown) return
183
184
  this.hide()
184
185
  break
185
186
 
@@ -187,10 +188,11 @@
187
188
  this.lookup()
188
189
  }
189
190
 
191
+ e.stopPropagation()
192
+ e.preventDefault()
190
193
  }
191
194
 
192
195
  , keypress: function (e) {
193
- e.stopPropagation()
194
196
  if (!this.shown) return
195
197
 
196
198
  switch(e.keyCode) {
@@ -210,12 +212,12 @@
210
212
  this.next()
211
213
  break
212
214
  }
215
+
216
+ e.stopPropagation()
213
217
  }
214
218
 
215
219
  , blur: function (e) {
216
220
  var that = this
217
- e.stopPropagation()
218
- e.preventDefault()
219
221
  setTimeout(function () { that.hide() }, 150)
220
222
  }
221
223
 
@@ -268,4 +270,4 @@
268
270
  })
269
271
  })
270
272
 
271
- }( window.jQuery )
273
+ }( window.jQuery );
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Bootstrap Responsive v2.0.0
2
+ * Bootstrap Responsive v2.0.2
3
3
  *
4
4
  * Copyright 2012 Twitter, Inc
5
5
  * Licensed under the Apache License v2.0
@@ -7,10 +7,87 @@
7
7
  *
8
8
  * Designed and built with all the love in the world @twitter by @mdo and @fat.
9
9
  */
10
+ .clearfix {
11
+ *zoom: 1;
12
+ }
13
+ .clearfix:before,
14
+ .clearfix:after {
15
+ display: table;
16
+ content: "";
17
+ }
18
+ .clearfix:after {
19
+ clear: both;
20
+ }
21
+ .hide-text {
22
+ border: 0;
23
+ font: 0/0 a;
24
+ text-shadow: none;
25
+ color: transparent;
26
+ background-color: transparent;
27
+ }
28
+ .input-block-level {
29
+ display: block;
30
+ width: 100%;
31
+ min-height: 28px;
32
+ /* Make inputs at least the height of their button counterpart */
33
+
34
+ /* Makes inputs behave like true block-level elements */
35
+
36
+ -webkit-box-sizing: border-box;
37
+ -moz-box-sizing: border-box;
38
+ -ms-box-sizing: border-box;
39
+ box-sizing: border-box;
40
+ }
10
41
  .hidden {
11
42
  display: none;
12
43
  visibility: hidden;
13
44
  }
45
+ .visible-phone {
46
+ display: none;
47
+ }
48
+ .visible-tablet {
49
+ display: none;
50
+ }
51
+ .visible-desktop {
52
+ display: block;
53
+ }
54
+ .hidden-phone {
55
+ display: block;
56
+ }
57
+ .hidden-tablet {
58
+ display: block;
59
+ }
60
+ .hidden-desktop {
61
+ display: none;
62
+ }
63
+ @media (max-width: 767px) {
64
+ .visible-phone {
65
+ display: block;
66
+ }
67
+ .hidden-phone {
68
+ display: none;
69
+ }
70
+ .hidden-desktop {
71
+ display: block;
72
+ }
73
+ .visible-desktop {
74
+ display: none;
75
+ }
76
+ }
77
+ @media (min-width: 768px) and (max-width: 979px) {
78
+ .visible-tablet {
79
+ display: block;
80
+ }
81
+ .hidden-tablet {
82
+ display: none;
83
+ }
84
+ .hidden-desktop {
85
+ display: block;
86
+ }
87
+ .visible-desktop {
88
+ display: none;
89
+ }
90
+ }
14
91
  @media (max-width: 480px) {
15
92
  .nav-collapse {
16
93
  -webkit-transform: translate3d(0, 0, 0);
@@ -19,34 +96,8 @@
19
96
  display: block;
20
97
  line-height: 18px;
21
98
  }
22
- input[class*="span"],
23
- select[class*="span"],
24
- textarea[class*="span"],
25
- .uneditable-input {
26
- display: block;
27
- width: 100%;
28
- height: 28px;
29
- /* Make inputs at least the height of their button counterpart */
30
-
31
- /* Makes inputs behave like true block-level elements */
32
-
33
- -webkit-box-sizing: border-box;
34
- /* Older Webkit */
35
-
36
- -moz-box-sizing: border-box;
37
- /* Older FF */
38
-
39
- -ms-box-sizing: border-box;
40
- /* IE8 */
41
-
42
- box-sizing: border-box;
43
- /* CSS3 spec*/
44
-
45
- }
46
- .input-prepend input[class*="span"], .input-append input[class*="span"] {
47
- width: auto;
48
- }
49
- input[type="checkbox"], input[type="radio"] {
99
+ input[type="checkbox"],
100
+ input[type="radio"] {
50
101
  border: 1px solid #ccc;
51
102
  }
52
103
  .form-horizontal .control-group > label {
@@ -84,10 +135,17 @@
84
135
  position: static;
85
136
  }
86
137
  }
87
- @media (max-width: 768px) {
138
+ @media (max-width: 767px) {
139
+ body {
140
+ padding-left: 20px;
141
+ padding-right: 20px;
142
+ }
143
+ .navbar-fixed-top {
144
+ margin-left: -20px;
145
+ margin-right: -20px;
146
+ }
88
147
  .container {
89
148
  width: auto;
90
- padding: 0 20px;
91
149
  }
92
150
  .row-fluid {
93
151
  width: 100%;
@@ -95,19 +153,44 @@
95
153
  .row {
96
154
  margin-left: 0;
97
155
  }
98
- .row > [class*="span"], .row-fluid > [class*="span"] {
156
+ .row > [class*="span"],
157
+ .row-fluid > [class*="span"] {
99
158
  float: none;
100
159
  display: block;
101
160
  width: auto;
102
161
  margin: 0;
103
162
  }
163
+ .thumbnails [class*="span"] {
164
+ width: auto;
165
+ }
166
+ input[class*="span"],
167
+ select[class*="span"],
168
+ textarea[class*="span"],
169
+ .uneditable-input {
170
+ display: block;
171
+ width: 100%;
172
+ min-height: 28px;
173
+ /* Make inputs at least the height of their button counterpart */
174
+
175
+ /* Makes inputs behave like true block-level elements */
176
+
177
+ -webkit-box-sizing: border-box;
178
+ -moz-box-sizing: border-box;
179
+ -ms-box-sizing: border-box;
180
+ box-sizing: border-box;
181
+ }
182
+ .input-prepend input[class*="span"],
183
+ .input-append input[class*="span"] {
184
+ width: auto;
185
+ }
104
186
  }
105
- @media (min-width: 768px) and (max-width: 980px) {
187
+ @media (min-width: 768px) and (max-width: 979px) {
106
188
  .row {
107
189
  margin-left: -20px;
108
190
  *zoom: 1;
109
191
  }
110
- .row:before, .row:after {
192
+ .row:before,
193
+ .row:after {
111
194
  display: table;
112
195
  content: "";
113
196
  }
@@ -118,80 +201,89 @@
118
201
  float: left;
119
202
  margin-left: 20px;
120
203
  }
121
- .span1 {
122
- width: 42px;
204
+ .container,
205
+ .navbar-fixed-top .container,
206
+ .navbar-fixed-bottom .container {
207
+ width: 724px;
123
208
  }
124
- .span2 {
125
- width: 104px;
209
+ .span12 {
210
+ width: 724px;
126
211
  }
127
- .span3 {
128
- width: 166px;
212
+ .span11 {
213
+ width: 662px;
129
214
  }
130
- .span4 {
131
- width: 228px;
215
+ .span10 {
216
+ width: 600px;
132
217
  }
133
- .span5 {
134
- width: 290px;
218
+ .span9 {
219
+ width: 538px;
135
220
  }
136
- .span6 {
137
- width: 352px;
221
+ .span8 {
222
+ width: 476px;
138
223
  }
139
224
  .span7 {
140
225
  width: 414px;
141
226
  }
142
- .span8 {
143
- width: 476px;
227
+ .span6 {
228
+ width: 352px;
144
229
  }
145
- .span9 {
146
- width: 538px;
230
+ .span5 {
231
+ width: 290px;
147
232
  }
148
- .span10 {
149
- width: 600px;
233
+ .span4 {
234
+ width: 228px;
150
235
  }
151
- .span11 {
152
- width: 662px;
236
+ .span3 {
237
+ width: 166px;
153
238
  }
154
- .span12, .container {
155
- width: 724px;
239
+ .span2 {
240
+ width: 104px;
156
241
  }
157
- .offset1 {
158
- margin-left: 82px;
242
+ .span1 {
243
+ width: 42px;
159
244
  }
160
- .offset2 {
161
- margin-left: 144px;
245
+ .offset12 {
246
+ margin-left: 764px;
162
247
  }
163
- .offset3 {
164
- margin-left: 206px;
248
+ .offset11 {
249
+ margin-left: 702px;
165
250
  }
166
- .offset4 {
167
- margin-left: 268px;
251
+ .offset10 {
252
+ margin-left: 640px;
168
253
  }
169
- .offset5 {
170
- margin-left: 330px;
254
+ .offset9 {
255
+ margin-left: 578px;
171
256
  }
172
- .offset6 {
173
- margin-left: 392px;
257
+ .offset8 {
258
+ margin-left: 516px;
174
259
  }
175
260
  .offset7 {
176
261
  margin-left: 454px;
177
262
  }
178
- .offset8 {
179
- margin-left: 516px;
263
+ .offset6 {
264
+ margin-left: 392px;
180
265
  }
181
- .offset9 {
182
- margin-left: 578px;
266
+ .offset5 {
267
+ margin-left: 330px;
183
268
  }
184
- .offset10 {
185
- margin-left: 640px;
269
+ .offset4 {
270
+ margin-left: 268px;
186
271
  }
187
- .offset11 {
188
- margin-left: 702px;
272
+ .offset3 {
273
+ margin-left: 206px;
274
+ }
275
+ .offset2 {
276
+ margin-left: 144px;
277
+ }
278
+ .offset1 {
279
+ margin-left: 82px;
189
280
  }
190
281
  .row-fluid {
191
282
  width: 100%;
192
283
  *zoom: 1;
193
284
  }
194
- .row-fluid:before, .row-fluid:after {
285
+ .row-fluid:before,
286
+ .row-fluid:after {
195
287
  display: table;
196
288
  content: "";
197
289
  }
@@ -205,80 +297,85 @@
205
297
  .row-fluid > [class*="span"]:first-child {
206
298
  margin-left: 0;
207
299
  }
208
- .row-fluid .span1 {
209
- width: 5.801104972%;
210
- }
211
- .row-fluid .span2 {
212
- width: 14.364640883%;
300
+ .row-fluid > .span12 {
301
+ width: 99.999999993%;
213
302
  }
214
- .row-fluid .span3 {
215
- width: 22.928176794%;
303
+ .row-fluid > .span11 {
304
+ width: 91.436464082%;
216
305
  }
217
- .row-fluid .span4 {
218
- width: 31.491712705%;
306
+ .row-fluid > .span10 {
307
+ width: 82.87292817100001%;
219
308
  }
220
- .row-fluid .span5 {
221
- width: 40.055248616%;
309
+ .row-fluid > .span9 {
310
+ width: 74.30939226%;
222
311
  }
223
- .row-fluid .span6 {
224
- width: 48.618784527%;
312
+ .row-fluid > .span8 {
313
+ width: 65.74585634900001%;
225
314
  }
226
- .row-fluid .span7 {
315
+ .row-fluid > .span7 {
227
316
  width: 57.182320438000005%;
228
317
  }
229
- .row-fluid .span8 {
230
- width: 65.74585634900001%;
318
+ .row-fluid > .span6 {
319
+ width: 48.618784527%;
231
320
  }
232
- .row-fluid .span9 {
233
- width: 74.30939226%;
321
+ .row-fluid > .span5 {
322
+ width: 40.055248616%;
234
323
  }
235
- .row-fluid .span10 {
236
- width: 82.87292817100001%;
324
+ .row-fluid > .span4 {
325
+ width: 31.491712705%;
237
326
  }
238
- .row-fluid .span11 {
239
- width: 91.436464082%;
327
+ .row-fluid > .span3 {
328
+ width: 22.928176794%;
240
329
  }
241
- .row-fluid .span12 {
242
- width: 99.999999993%;
330
+ .row-fluid > .span2 {
331
+ width: 14.364640883%;
243
332
  }
244
- input.span1, textarea.span1, .uneditable-input.span1 {
245
- width: 32px;
333
+ .row-fluid > .span1 {
334
+ width: 5.801104972%;
246
335
  }
247
- input.span2, textarea.span2, .uneditable-input.span2 {
248
- width: 94px;
336
+ input,
337
+ textarea,
338
+ .uneditable-input {
339
+ margin-left: 0;
249
340
  }
250
- input.span3, textarea.span3, .uneditable-input.span3 {
251
- width: 156px;
341
+ input.span12, textarea.span12, .uneditable-input.span12 {
342
+ width: 714px;
252
343
  }
253
- input.span4, textarea.span4, .uneditable-input.span4 {
254
- width: 218px;
344
+ input.span11, textarea.span11, .uneditable-input.span11 {
345
+ width: 652px;
255
346
  }
256
- input.span5, textarea.span5, .uneditable-input.span5 {
257
- width: 280px;
347
+ input.span10, textarea.span10, .uneditable-input.span10 {
348
+ width: 590px;
258
349
  }
259
- input.span6, textarea.span6, .uneditable-input.span6 {
260
- width: 342px;
350
+ input.span9, textarea.span9, .uneditable-input.span9 {
351
+ width: 528px;
352
+ }
353
+ input.span8, textarea.span8, .uneditable-input.span8 {
354
+ width: 466px;
261
355
  }
262
356
  input.span7, textarea.span7, .uneditable-input.span7 {
263
357
  width: 404px;
264
358
  }
265
- input.span8, textarea.span8, .uneditable-input.span8 {
266
- width: 466px;
359
+ input.span6, textarea.span6, .uneditable-input.span6 {
360
+ width: 342px;
267
361
  }
268
- input.span9, textarea.span9, .uneditable-input.span9 {
269
- width: 528px;
362
+ input.span5, textarea.span5, .uneditable-input.span5 {
363
+ width: 280px;
270
364
  }
271
- input.span10, textarea.span10, .uneditable-input.span10 {
272
- width: 590px;
365
+ input.span4, textarea.span4, .uneditable-input.span4 {
366
+ width: 218px;
273
367
  }
274
- input.span11, textarea.span11, .uneditable-input.span11 {
275
- width: 652px;
368
+ input.span3, textarea.span3, .uneditable-input.span3 {
369
+ width: 156px;
276
370
  }
277
- input.span12, textarea.span12, .uneditable-input.span12 {
278
- width: 714px;
371
+ input.span2, textarea.span2, .uneditable-input.span2 {
372
+ width: 94px;
373
+ }
374
+ input.span1, textarea.span1, .uneditable-input.span1 {
375
+ width: 32px;
279
376
  }
280
377
  }
281
- @media (max-width: 980px) {
378
+ @media (max-width: 979px) {
282
379
  body {
283
380
  padding-top: 0;
284
381
  }
@@ -314,7 +411,12 @@
314
411
  .navbar .nav > .divider-vertical {
315
412
  display: none;
316
413
  }
317
- .navbar .nav > li > a, .navbar .dropdown-menu a {
414
+ .navbar .nav .nav-header {
415
+ color: #999999;
416
+ text-shadow: none;
417
+ }
418
+ .navbar .nav > li > a,
419
+ .navbar .dropdown-menu a {
318
420
  padding: 6px 15px;
319
421
  font-weight: bold;
320
422
  color: #999999;
@@ -325,7 +427,8 @@
325
427
  .navbar .dropdown-menu li + li a {
326
428
  margin-bottom: 2px;
327
429
  }
328
- .navbar .nav > li > a:hover, .navbar .dropdown-menu a:hover {
430
+ .navbar .nav > li > a:hover,
431
+ .navbar .dropdown-menu a:hover {
329
432
  background-color: #222222;
330
433
  }
331
434
  .navbar .dropdown-menu {
@@ -346,13 +449,15 @@
346
449
  -moz-box-shadow: none;
347
450
  box-shadow: none;
348
451
  }
349
- .navbar .dropdown-menu:before, .navbar .dropdown-menu:after {
452
+ .navbar .dropdown-menu:before,
453
+ .navbar .dropdown-menu:after {
350
454
  display: none;
351
455
  }
352
456
  .navbar .dropdown-menu .divider {
353
457
  display: none;
354
458
  }
355
- .navbar-form, .navbar-search {
459
+ .navbar-form,
460
+ .navbar-search {
356
461
  float: none;
357
462
  padding: 9px 15px;
358
463
  margin: 9px 0;
@@ -381,6 +486,7 @@
381
486
  @media (min-width: 980px) {
382
487
  .nav-collapse.collapse {
383
488
  height: auto !important;
489
+ overflow: visible !important;
384
490
  }
385
491
  }
386
492
  @media (min-width: 1200px) {
@@ -388,7 +494,8 @@
388
494
  margin-left: -30px;
389
495
  *zoom: 1;
390
496
  }
391
- .row:before, .row:after {
497
+ .row:before,
498
+ .row:after {
392
499
  display: table;
393
500
  content: "";
394
501
  }
@@ -399,80 +506,89 @@
399
506
  float: left;
400
507
  margin-left: 30px;
401
508
  }
402
- .span1 {
403
- width: 70px;
509
+ .container,
510
+ .navbar-fixed-top .container,
511
+ .navbar-fixed-bottom .container {
512
+ width: 1170px;
404
513
  }
405
- .span2 {
406
- width: 170px;
514
+ .span12 {
515
+ width: 1170px;
407
516
  }
408
- .span3 {
409
- width: 270px;
517
+ .span11 {
518
+ width: 1070px;
410
519
  }
411
- .span4 {
412
- width: 370px;
520
+ .span10 {
521
+ width: 970px;
413
522
  }
414
- .span5 {
415
- width: 470px;
523
+ .span9 {
524
+ width: 870px;
416
525
  }
417
- .span6 {
418
- width: 570px;
526
+ .span8 {
527
+ width: 770px;
419
528
  }
420
529
  .span7 {
421
530
  width: 670px;
422
531
  }
423
- .span8 {
424
- width: 770px;
532
+ .span6 {
533
+ width: 570px;
425
534
  }
426
- .span9 {
427
- width: 870px;
535
+ .span5 {
536
+ width: 470px;
428
537
  }
429
- .span10 {
430
- width: 970px;
538
+ .span4 {
539
+ width: 370px;
431
540
  }
432
- .span11 {
433
- width: 1070px;
541
+ .span3 {
542
+ width: 270px;
434
543
  }
435
- .span12, .container {
436
- width: 1170px;
544
+ .span2 {
545
+ width: 170px;
437
546
  }
438
- .offset1 {
439
- margin-left: 130px;
547
+ .span1 {
548
+ width: 70px;
440
549
  }
441
- .offset2 {
442
- margin-left: 230px;
550
+ .offset12 {
551
+ margin-left: 1230px;
443
552
  }
444
- .offset3 {
445
- margin-left: 330px;
553
+ .offset11 {
554
+ margin-left: 1130px;
446
555
  }
447
- .offset4 {
448
- margin-left: 430px;
556
+ .offset10 {
557
+ margin-left: 1030px;
449
558
  }
450
- .offset5 {
451
- margin-left: 530px;
559
+ .offset9 {
560
+ margin-left: 930px;
452
561
  }
453
- .offset6 {
454
- margin-left: 630px;
562
+ .offset8 {
563
+ margin-left: 830px;
455
564
  }
456
565
  .offset7 {
457
566
  margin-left: 730px;
458
567
  }
459
- .offset8 {
460
- margin-left: 830px;
568
+ .offset6 {
569
+ margin-left: 630px;
461
570
  }
462
- .offset9 {
463
- margin-left: 930px;
571
+ .offset5 {
572
+ margin-left: 530px;
464
573
  }
465
- .offset10 {
466
- margin-left: 1030px;
574
+ .offset4 {
575
+ margin-left: 430px;
467
576
  }
468
- .offset11 {
469
- margin-left: 1130px;
577
+ .offset3 {
578
+ margin-left: 330px;
579
+ }
580
+ .offset2 {
581
+ margin-left: 230px;
582
+ }
583
+ .offset1 {
584
+ margin-left: 130px;
470
585
  }
471
586
  .row-fluid {
472
587
  width: 100%;
473
588
  *zoom: 1;
474
589
  }
475
- .row-fluid:before, .row-fluid:after {
590
+ .row-fluid:before,
591
+ .row-fluid:after {
476
592
  display: table;
477
593
  content: "";
478
594
  }
@@ -486,77 +602,82 @@
486
602
  .row-fluid > [class*="span"]:first-child {
487
603
  margin-left: 0;
488
604
  }
489
- .row-fluid .span1 {
490
- width: 5.982905983%;
491
- }
492
- .row-fluid .span2 {
493
- width: 14.529914530000001%;
605
+ .row-fluid > .span12 {
606
+ width: 100%;
494
607
  }
495
- .row-fluid .span3 {
496
- width: 23.076923077%;
608
+ .row-fluid > .span11 {
609
+ width: 91.45299145300001%;
497
610
  }
498
- .row-fluid .span4 {
499
- width: 31.623931624%;
611
+ .row-fluid > .span10 {
612
+ width: 82.905982906%;
500
613
  }
501
- .row-fluid .span5 {
502
- width: 40.170940171000005%;
614
+ .row-fluid > .span9 {
615
+ width: 74.358974359%;
503
616
  }
504
- .row-fluid .span6 {
505
- width: 48.717948718%;
617
+ .row-fluid > .span8 {
618
+ width: 65.81196581200001%;
506
619
  }
507
- .row-fluid .span7 {
620
+ .row-fluid > .span7 {
508
621
  width: 57.264957265%;
509
622
  }
510
- .row-fluid .span8 {
511
- width: 65.81196581200001%;
623
+ .row-fluid > .span6 {
624
+ width: 48.717948718%;
512
625
  }
513
- .row-fluid .span9 {
514
- width: 74.358974359%;
626
+ .row-fluid > .span5 {
627
+ width: 40.170940171000005%;
515
628
  }
516
- .row-fluid .span10 {
517
- width: 82.905982906%;
629
+ .row-fluid > .span4 {
630
+ width: 31.623931624%;
518
631
  }
519
- .row-fluid .span11 {
520
- width: 91.45299145300001%;
632
+ .row-fluid > .span3 {
633
+ width: 23.076923077%;
521
634
  }
522
- .row-fluid .span12 {
523
- width: 100%;
635
+ .row-fluid > .span2 {
636
+ width: 14.529914530000001%;
524
637
  }
525
- input.span1, textarea.span1, .uneditable-input.span1 {
526
- width: 60px;
638
+ .row-fluid > .span1 {
639
+ width: 5.982905983%;
527
640
  }
528
- input.span2, textarea.span2, .uneditable-input.span2 {
529
- width: 160px;
641
+ input,
642
+ textarea,
643
+ .uneditable-input {
644
+ margin-left: 0;
530
645
  }
531
- input.span3, textarea.span3, .uneditable-input.span3 {
532
- width: 260px;
646
+ input.span12, textarea.span12, .uneditable-input.span12 {
647
+ width: 1160px;
533
648
  }
534
- input.span4, textarea.span4, .uneditable-input.span4 {
535
- width: 360px;
649
+ input.span11, textarea.span11, .uneditable-input.span11 {
650
+ width: 1060px;
536
651
  }
537
- input.span5, textarea.span5, .uneditable-input.span5 {
538
- width: 460px;
652
+ input.span10, textarea.span10, .uneditable-input.span10 {
653
+ width: 960px;
539
654
  }
540
- input.span6, textarea.span6, .uneditable-input.span6 {
541
- width: 560px;
655
+ input.span9, textarea.span9, .uneditable-input.span9 {
656
+ width: 860px;
657
+ }
658
+ input.span8, textarea.span8, .uneditable-input.span8 {
659
+ width: 760px;
542
660
  }
543
661
  input.span7, textarea.span7, .uneditable-input.span7 {
544
662
  width: 660px;
545
663
  }
546
- input.span8, textarea.span8, .uneditable-input.span8 {
547
- width: 760px;
664
+ input.span6, textarea.span6, .uneditable-input.span6 {
665
+ width: 560px;
548
666
  }
549
- input.span9, textarea.span9, .uneditable-input.span9 {
550
- width: 860px;
667
+ input.span5, textarea.span5, .uneditable-input.span5 {
668
+ width: 460px;
551
669
  }
552
- input.span10, textarea.span10, .uneditable-input.span10 {
553
- width: 960px;
670
+ input.span4, textarea.span4, .uneditable-input.span4 {
671
+ width: 360px;
554
672
  }
555
- input.span11, textarea.span11, .uneditable-input.span11 {
556
- width: 1060px;
673
+ input.span3, textarea.span3, .uneditable-input.span3 {
674
+ width: 260px;
557
675
  }
558
- input.span12, textarea.span12, .uneditable-input.span12 {
559
- width: 1160px;
676
+ input.span2, textarea.span2, .uneditable-input.span2 {
677
+ width: 160px;
678
+ }
679
+ input.span1, textarea.span1, .uneditable-input.span1 {
680
+ width: 60px;
560
681
  }
561
682
  .thumbnails {
562
683
  margin-left: -30px;