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.
- data/.rvmrc +1 -1
- data/README.md +1 -1
- data/lib/jombo/version.rb +1 -1
- data/vendor/assets/images/glyphicons-halflings-white.png +0 -0
- data/vendor/assets/images/glyphicons-halflings.png +0 -0
- data/vendor/assets/javascripts/bootstrap/bootstrap-alert.js +8 -5
- data/vendor/assets/javascripts/bootstrap/bootstrap-button.js +5 -3
- data/vendor/assets/javascripts/bootstrap/bootstrap-carousel.js +21 -13
- data/vendor/assets/javascripts/bootstrap/bootstrap-collapse.js +21 -8
- data/vendor/assets/javascripts/bootstrap/bootstrap-dropdown.js +5 -3
- data/vendor/assets/javascripts/bootstrap/bootstrap-modal.js +6 -5
- data/vendor/assets/javascripts/bootstrap/bootstrap-popover.js +4 -6
- data/vendor/assets/javascripts/bootstrap/bootstrap-scrollspy.js +28 -9
- data/vendor/assets/javascripts/bootstrap/bootstrap-tab.js +2 -2
- data/vendor/assets/javascripts/bootstrap/bootstrap-tooltip.js +6 -6
- data/vendor/assets/javascripts/bootstrap/bootstrap-transition.js +3 -3
- data/vendor/assets/javascripts/bootstrap/bootstrap-typeahead.js +12 -10
- data/vendor/assets/stylesheets/bootstrap/bootstrap-responsive.css +339 -218
- data/vendor/assets/stylesheets/bootstrap/bootstrap.css +1027 -398
- metadata +5 -3
@@ -1,5 +1,5 @@
|
|
1
1
|
/* ===================================================
|
2
|
-
* bootstrap-transition.js v2.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.
|
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
|
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
|
-
|
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.
|
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[
|
23
|
-
|
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:
|
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"],
|
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:
|
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,
|
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
|
-
.
|
122
|
-
|
204
|
+
.container,
|
205
|
+
.navbar-fixed-top .container,
|
206
|
+
.navbar-fixed-bottom .container {
|
207
|
+
width: 724px;
|
123
208
|
}
|
124
|
-
.
|
125
|
-
width:
|
209
|
+
.span12 {
|
210
|
+
width: 724px;
|
126
211
|
}
|
127
|
-
.
|
128
|
-
width:
|
212
|
+
.span11 {
|
213
|
+
width: 662px;
|
129
214
|
}
|
130
|
-
.
|
131
|
-
width:
|
215
|
+
.span10 {
|
216
|
+
width: 600px;
|
132
217
|
}
|
133
|
-
.
|
134
|
-
width:
|
218
|
+
.span9 {
|
219
|
+
width: 538px;
|
135
220
|
}
|
136
|
-
.
|
137
|
-
width:
|
221
|
+
.span8 {
|
222
|
+
width: 476px;
|
138
223
|
}
|
139
224
|
.span7 {
|
140
225
|
width: 414px;
|
141
226
|
}
|
142
|
-
.
|
143
|
-
width:
|
227
|
+
.span6 {
|
228
|
+
width: 352px;
|
144
229
|
}
|
145
|
-
.
|
146
|
-
width:
|
230
|
+
.span5 {
|
231
|
+
width: 290px;
|
147
232
|
}
|
148
|
-
.
|
149
|
-
width:
|
233
|
+
.span4 {
|
234
|
+
width: 228px;
|
150
235
|
}
|
151
|
-
.
|
152
|
-
width:
|
236
|
+
.span3 {
|
237
|
+
width: 166px;
|
153
238
|
}
|
154
|
-
.
|
155
|
-
width:
|
239
|
+
.span2 {
|
240
|
+
width: 104px;
|
156
241
|
}
|
157
|
-
.
|
158
|
-
|
242
|
+
.span1 {
|
243
|
+
width: 42px;
|
159
244
|
}
|
160
|
-
.
|
161
|
-
margin-left:
|
245
|
+
.offset12 {
|
246
|
+
margin-left: 764px;
|
162
247
|
}
|
163
|
-
.
|
164
|
-
margin-left:
|
248
|
+
.offset11 {
|
249
|
+
margin-left: 702px;
|
165
250
|
}
|
166
|
-
.
|
167
|
-
margin-left:
|
251
|
+
.offset10 {
|
252
|
+
margin-left: 640px;
|
168
253
|
}
|
169
|
-
.
|
170
|
-
margin-left:
|
254
|
+
.offset9 {
|
255
|
+
margin-left: 578px;
|
171
256
|
}
|
172
|
-
.
|
173
|
-
margin-left:
|
257
|
+
.offset8 {
|
258
|
+
margin-left: 516px;
|
174
259
|
}
|
175
260
|
.offset7 {
|
176
261
|
margin-left: 454px;
|
177
262
|
}
|
178
|
-
.
|
179
|
-
margin-left:
|
263
|
+
.offset6 {
|
264
|
+
margin-left: 392px;
|
180
265
|
}
|
181
|
-
.
|
182
|
-
margin-left:
|
266
|
+
.offset5 {
|
267
|
+
margin-left: 330px;
|
183
268
|
}
|
184
|
-
.
|
185
|
-
margin-left:
|
269
|
+
.offset4 {
|
270
|
+
margin-left: 268px;
|
186
271
|
}
|
187
|
-
.
|
188
|
-
margin-left:
|
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,
|
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 .
|
209
|
-
width:
|
210
|
-
}
|
211
|
-
.row-fluid .span2 {
|
212
|
-
width: 14.364640883%;
|
300
|
+
.row-fluid > .span12 {
|
301
|
+
width: 99.999999993%;
|
213
302
|
}
|
214
|
-
.row-fluid .
|
215
|
-
width:
|
303
|
+
.row-fluid > .span11 {
|
304
|
+
width: 91.436464082%;
|
216
305
|
}
|
217
|
-
.row-fluid .
|
218
|
-
width:
|
306
|
+
.row-fluid > .span10 {
|
307
|
+
width: 82.87292817100001%;
|
219
308
|
}
|
220
|
-
.row-fluid .
|
221
|
-
width:
|
309
|
+
.row-fluid > .span9 {
|
310
|
+
width: 74.30939226%;
|
222
311
|
}
|
223
|
-
.row-fluid .
|
224
|
-
width:
|
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 .
|
230
|
-
width:
|
318
|
+
.row-fluid > .span6 {
|
319
|
+
width: 48.618784527%;
|
231
320
|
}
|
232
|
-
.row-fluid .
|
233
|
-
width:
|
321
|
+
.row-fluid > .span5 {
|
322
|
+
width: 40.055248616%;
|
234
323
|
}
|
235
|
-
.row-fluid .
|
236
|
-
width:
|
324
|
+
.row-fluid > .span4 {
|
325
|
+
width: 31.491712705%;
|
237
326
|
}
|
238
|
-
.row-fluid .
|
239
|
-
width:
|
327
|
+
.row-fluid > .span3 {
|
328
|
+
width: 22.928176794%;
|
240
329
|
}
|
241
|
-
.row-fluid .
|
242
|
-
width:
|
330
|
+
.row-fluid > .span2 {
|
331
|
+
width: 14.364640883%;
|
243
332
|
}
|
244
|
-
|
245
|
-
width:
|
333
|
+
.row-fluid > .span1 {
|
334
|
+
width: 5.801104972%;
|
246
335
|
}
|
247
|
-
input
|
248
|
-
|
336
|
+
input,
|
337
|
+
textarea,
|
338
|
+
.uneditable-input {
|
339
|
+
margin-left: 0;
|
249
340
|
}
|
250
|
-
input.
|
251
|
-
width:
|
341
|
+
input.span12, textarea.span12, .uneditable-input.span12 {
|
342
|
+
width: 714px;
|
252
343
|
}
|
253
|
-
input.
|
254
|
-
width:
|
344
|
+
input.span11, textarea.span11, .uneditable-input.span11 {
|
345
|
+
width: 652px;
|
255
346
|
}
|
256
|
-
input.
|
257
|
-
width:
|
347
|
+
input.span10, textarea.span10, .uneditable-input.span10 {
|
348
|
+
width: 590px;
|
258
349
|
}
|
259
|
-
input.
|
260
|
-
width:
|
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.
|
266
|
-
width:
|
359
|
+
input.span6, textarea.span6, .uneditable-input.span6 {
|
360
|
+
width: 342px;
|
267
361
|
}
|
268
|
-
input.
|
269
|
-
width:
|
362
|
+
input.span5, textarea.span5, .uneditable-input.span5 {
|
363
|
+
width: 280px;
|
270
364
|
}
|
271
|
-
input.
|
272
|
-
width:
|
365
|
+
input.span4, textarea.span4, .uneditable-input.span4 {
|
366
|
+
width: 218px;
|
273
367
|
}
|
274
|
-
input.
|
275
|
-
width:
|
368
|
+
input.span3, textarea.span3, .uneditable-input.span3 {
|
369
|
+
width: 156px;
|
276
370
|
}
|
277
|
-
input.
|
278
|
-
width:
|
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:
|
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
|
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,
|
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,
|
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,
|
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,
|
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
|
-
.
|
403
|
-
|
509
|
+
.container,
|
510
|
+
.navbar-fixed-top .container,
|
511
|
+
.navbar-fixed-bottom .container {
|
512
|
+
width: 1170px;
|
404
513
|
}
|
405
|
-
.
|
406
|
-
width:
|
514
|
+
.span12 {
|
515
|
+
width: 1170px;
|
407
516
|
}
|
408
|
-
.
|
409
|
-
width:
|
517
|
+
.span11 {
|
518
|
+
width: 1070px;
|
410
519
|
}
|
411
|
-
.
|
412
|
-
width:
|
520
|
+
.span10 {
|
521
|
+
width: 970px;
|
413
522
|
}
|
414
|
-
.
|
415
|
-
width:
|
523
|
+
.span9 {
|
524
|
+
width: 870px;
|
416
525
|
}
|
417
|
-
.
|
418
|
-
width:
|
526
|
+
.span8 {
|
527
|
+
width: 770px;
|
419
528
|
}
|
420
529
|
.span7 {
|
421
530
|
width: 670px;
|
422
531
|
}
|
423
|
-
.
|
424
|
-
width:
|
532
|
+
.span6 {
|
533
|
+
width: 570px;
|
425
534
|
}
|
426
|
-
.
|
427
|
-
width:
|
535
|
+
.span5 {
|
536
|
+
width: 470px;
|
428
537
|
}
|
429
|
-
.
|
430
|
-
width:
|
538
|
+
.span4 {
|
539
|
+
width: 370px;
|
431
540
|
}
|
432
|
-
.
|
433
|
-
width:
|
541
|
+
.span3 {
|
542
|
+
width: 270px;
|
434
543
|
}
|
435
|
-
.
|
436
|
-
width:
|
544
|
+
.span2 {
|
545
|
+
width: 170px;
|
437
546
|
}
|
438
|
-
.
|
439
|
-
|
547
|
+
.span1 {
|
548
|
+
width: 70px;
|
440
549
|
}
|
441
|
-
.
|
442
|
-
margin-left:
|
550
|
+
.offset12 {
|
551
|
+
margin-left: 1230px;
|
443
552
|
}
|
444
|
-
.
|
445
|
-
margin-left:
|
553
|
+
.offset11 {
|
554
|
+
margin-left: 1130px;
|
446
555
|
}
|
447
|
-
.
|
448
|
-
margin-left:
|
556
|
+
.offset10 {
|
557
|
+
margin-left: 1030px;
|
449
558
|
}
|
450
|
-
.
|
451
|
-
margin-left:
|
559
|
+
.offset9 {
|
560
|
+
margin-left: 930px;
|
452
561
|
}
|
453
|
-
.
|
454
|
-
margin-left:
|
562
|
+
.offset8 {
|
563
|
+
margin-left: 830px;
|
455
564
|
}
|
456
565
|
.offset7 {
|
457
566
|
margin-left: 730px;
|
458
567
|
}
|
459
|
-
.
|
460
|
-
margin-left:
|
568
|
+
.offset6 {
|
569
|
+
margin-left: 630px;
|
461
570
|
}
|
462
|
-
.
|
463
|
-
margin-left:
|
571
|
+
.offset5 {
|
572
|
+
margin-left: 530px;
|
464
573
|
}
|
465
|
-
.
|
466
|
-
margin-left:
|
574
|
+
.offset4 {
|
575
|
+
margin-left: 430px;
|
467
576
|
}
|
468
|
-
.
|
469
|
-
margin-left:
|
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,
|
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 .
|
490
|
-
width:
|
491
|
-
}
|
492
|
-
.row-fluid .span2 {
|
493
|
-
width: 14.529914530000001%;
|
605
|
+
.row-fluid > .span12 {
|
606
|
+
width: 100%;
|
494
607
|
}
|
495
|
-
.row-fluid .
|
496
|
-
width:
|
608
|
+
.row-fluid > .span11 {
|
609
|
+
width: 91.45299145300001%;
|
497
610
|
}
|
498
|
-
.row-fluid .
|
499
|
-
width:
|
611
|
+
.row-fluid > .span10 {
|
612
|
+
width: 82.905982906%;
|
500
613
|
}
|
501
|
-
.row-fluid .
|
502
|
-
width:
|
614
|
+
.row-fluid > .span9 {
|
615
|
+
width: 74.358974359%;
|
503
616
|
}
|
504
|
-
.row-fluid .
|
505
|
-
width:
|
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 .
|
511
|
-
width:
|
623
|
+
.row-fluid > .span6 {
|
624
|
+
width: 48.717948718%;
|
512
625
|
}
|
513
|
-
.row-fluid .
|
514
|
-
width:
|
626
|
+
.row-fluid > .span5 {
|
627
|
+
width: 40.170940171000005%;
|
515
628
|
}
|
516
|
-
.row-fluid .
|
517
|
-
width:
|
629
|
+
.row-fluid > .span4 {
|
630
|
+
width: 31.623931624%;
|
518
631
|
}
|
519
|
-
.row-fluid .
|
520
|
-
width:
|
632
|
+
.row-fluid > .span3 {
|
633
|
+
width: 23.076923077%;
|
521
634
|
}
|
522
|
-
.row-fluid .
|
523
|
-
width:
|
635
|
+
.row-fluid > .span2 {
|
636
|
+
width: 14.529914530000001%;
|
524
637
|
}
|
525
|
-
|
526
|
-
width:
|
638
|
+
.row-fluid > .span1 {
|
639
|
+
width: 5.982905983%;
|
527
640
|
}
|
528
|
-
input
|
529
|
-
|
641
|
+
input,
|
642
|
+
textarea,
|
643
|
+
.uneditable-input {
|
644
|
+
margin-left: 0;
|
530
645
|
}
|
531
|
-
input.
|
532
|
-
width:
|
646
|
+
input.span12, textarea.span12, .uneditable-input.span12 {
|
647
|
+
width: 1160px;
|
533
648
|
}
|
534
|
-
input.
|
535
|
-
width:
|
649
|
+
input.span11, textarea.span11, .uneditable-input.span11 {
|
650
|
+
width: 1060px;
|
536
651
|
}
|
537
|
-
input.
|
538
|
-
width:
|
652
|
+
input.span10, textarea.span10, .uneditable-input.span10 {
|
653
|
+
width: 960px;
|
539
654
|
}
|
540
|
-
input.
|
541
|
-
width:
|
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.
|
547
|
-
width:
|
664
|
+
input.span6, textarea.span6, .uneditable-input.span6 {
|
665
|
+
width: 560px;
|
548
666
|
}
|
549
|
-
input.
|
550
|
-
width:
|
667
|
+
input.span5, textarea.span5, .uneditable-input.span5 {
|
668
|
+
width: 460px;
|
551
669
|
}
|
552
|
-
input.
|
553
|
-
width:
|
670
|
+
input.span4, textarea.span4, .uneditable-input.span4 {
|
671
|
+
width: 360px;
|
554
672
|
}
|
555
|
-
input.
|
556
|
-
width:
|
673
|
+
input.span3, textarea.span3, .uneditable-input.span3 {
|
674
|
+
width: 260px;
|
557
675
|
}
|
558
|
-
input.
|
559
|
-
width:
|
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;
|