bootstrap_builder 0.2.6 → 0.3.0
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/README.md +1 -1
- data/VERSION +1 -1
- data/app/assets/images/glyphicons-halflings-white.png +0 -0
- data/app/assets/images/glyphicons-halflings.png +0 -0
- data/app/assets/javascripts/bootstrap.js +336 -237
- data/app/assets/stylesheets/bootstrap-responsive.css +346 -217
- data/app/assets/stylesheets/bootstrap.css +1722 -729
- data/bootstrap_builder.gemspec +2 -2
- metadata +2 -2
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap Responsive v2.0.
|
2
|
+
* Bootstrap Responsive v2.0.4
|
3
3
|
*
|
4
4
|
* Copyright 2012 Twitter, Inc
|
5
5
|
* Licensed under the Apache License v2.0
|
@@ -7,85 +7,86 @@
|
|
7
7
|
*
|
8
8
|
* Designed and built with all the love in the world @twitter by @mdo and @fat.
|
9
9
|
*/
|
10
|
+
|
10
11
|
.clearfix {
|
11
12
|
*zoom: 1;
|
12
13
|
}
|
14
|
+
|
13
15
|
.clearfix:before,
|
14
16
|
.clearfix:after {
|
15
17
|
display: table;
|
16
18
|
content: "";
|
17
19
|
}
|
20
|
+
|
18
21
|
.clearfix:after {
|
19
22
|
clear: both;
|
20
23
|
}
|
24
|
+
|
21
25
|
.hide-text {
|
22
|
-
|
23
|
-
|
24
|
-
|
26
|
+
font: 0/0 a;
|
27
|
+
color: transparent;
|
28
|
+
text-shadow: none;
|
29
|
+
background-color: transparent;
|
30
|
+
border: 0;
|
25
31
|
}
|
32
|
+
|
26
33
|
.input-block-level {
|
27
34
|
display: block;
|
28
35
|
width: 100%;
|
29
36
|
min-height: 28px;
|
30
|
-
/* Make inputs at least the height of their button counterpart */
|
31
|
-
|
32
|
-
/* Makes inputs behave like true block-level elements */
|
33
|
-
|
34
37
|
-webkit-box-sizing: border-box;
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
+
-moz-box-sizing: border-box;
|
39
|
+
-ms-box-sizing: border-box;
|
40
|
+
box-sizing: border-box;
|
38
41
|
}
|
42
|
+
|
39
43
|
.hidden {
|
40
44
|
display: none;
|
41
45
|
visibility: hidden;
|
42
46
|
}
|
47
|
+
|
43
48
|
.visible-phone {
|
44
|
-
display: none;
|
49
|
+
display: none !important;
|
45
50
|
}
|
51
|
+
|
46
52
|
.visible-tablet {
|
47
|
-
display: none;
|
48
|
-
}
|
49
|
-
.visible-desktop {
|
50
|
-
display: block;
|
51
|
-
}
|
52
|
-
.hidden-phone {
|
53
|
-
display: block;
|
54
|
-
}
|
55
|
-
.hidden-tablet {
|
56
|
-
display: block;
|
53
|
+
display: none !important;
|
57
54
|
}
|
55
|
+
|
58
56
|
.hidden-desktop {
|
59
|
-
display: none;
|
57
|
+
display: none !important;
|
60
58
|
}
|
59
|
+
|
61
60
|
@media (max-width: 767px) {
|
62
61
|
.visible-phone {
|
63
|
-
display:
|
62
|
+
display: inherit !important;
|
64
63
|
}
|
65
64
|
.hidden-phone {
|
66
|
-
display: none;
|
65
|
+
display: none !important;
|
67
66
|
}
|
68
67
|
.hidden-desktop {
|
69
|
-
display:
|
68
|
+
display: inherit !important;
|
70
69
|
}
|
71
70
|
.visible-desktop {
|
72
|
-
display: none;
|
71
|
+
display: none !important;
|
73
72
|
}
|
74
73
|
}
|
74
|
+
|
75
75
|
@media (min-width: 768px) and (max-width: 979px) {
|
76
76
|
.visible-tablet {
|
77
|
-
display:
|
77
|
+
display: inherit !important;
|
78
78
|
}
|
79
79
|
.hidden-tablet {
|
80
|
-
display: none;
|
80
|
+
display: none !important;
|
81
81
|
}
|
82
82
|
.hidden-desktop {
|
83
|
-
display:
|
83
|
+
display: inherit !important;
|
84
84
|
}
|
85
85
|
.visible-desktop {
|
86
|
-
display: none;
|
86
|
+
display: none !important ;
|
87
87
|
}
|
88
88
|
}
|
89
|
+
|
89
90
|
@media (max-width: 480px) {
|
90
91
|
.nav-collapse {
|
91
92
|
-webkit-transform: translate3d(0, 0, 0);
|
@@ -111,14 +112,14 @@
|
|
111
112
|
padding-top: 0;
|
112
113
|
}
|
113
114
|
.form-horizontal .form-actions {
|
114
|
-
padding-left: 10px;
|
115
115
|
padding-right: 10px;
|
116
|
+
padding-left: 10px;
|
116
117
|
}
|
117
118
|
.modal {
|
118
119
|
position: absolute;
|
119
120
|
top: 10px;
|
120
|
-
left: 10px;
|
121
121
|
right: 10px;
|
122
|
+
left: 10px;
|
122
123
|
width: auto;
|
123
124
|
margin: 0;
|
124
125
|
}
|
@@ -133,14 +134,28 @@
|
|
133
134
|
position: static;
|
134
135
|
}
|
135
136
|
}
|
137
|
+
|
136
138
|
@media (max-width: 767px) {
|
137
139
|
body {
|
138
|
-
padding-left: 20px;
|
139
140
|
padding-right: 20px;
|
141
|
+
padding-left: 20px;
|
140
142
|
}
|
141
|
-
.navbar-fixed-top
|
142
|
-
|
143
|
+
.navbar-fixed-top,
|
144
|
+
.navbar-fixed-bottom {
|
143
145
|
margin-right: -20px;
|
146
|
+
margin-left: -20px;
|
147
|
+
}
|
148
|
+
.container-fluid {
|
149
|
+
padding: 0;
|
150
|
+
}
|
151
|
+
.dl-horizontal dt {
|
152
|
+
float: none;
|
153
|
+
width: auto;
|
154
|
+
clear: none;
|
155
|
+
text-align: left;
|
156
|
+
}
|
157
|
+
.dl-horizontal dd {
|
158
|
+
margin-left: 0;
|
144
159
|
}
|
145
160
|
.container {
|
146
161
|
width: auto;
|
@@ -148,19 +163,20 @@
|
|
148
163
|
.row-fluid {
|
149
164
|
width: 100%;
|
150
165
|
}
|
151
|
-
.row
|
166
|
+
.row,
|
167
|
+
.thumbnails {
|
152
168
|
margin-left: 0;
|
153
169
|
}
|
154
|
-
|
155
|
-
.row-fluid
|
156
|
-
float: none;
|
170
|
+
[class*="span"],
|
171
|
+
.row-fluid [class*="span"] {
|
157
172
|
display: block;
|
173
|
+
float: none;
|
158
174
|
width: auto;
|
159
|
-
margin: 0;
|
160
|
-
}
|
161
|
-
.thumbnails [class*="span"] {
|
162
|
-
width: auto;
|
175
|
+
margin-left: 0;
|
163
176
|
}
|
177
|
+
.input-large,
|
178
|
+
.input-xlarge,
|
179
|
+
.input-xxlarge,
|
164
180
|
input[class*="span"],
|
165
181
|
select[class*="span"],
|
166
182
|
textarea[class*="span"],
|
@@ -168,20 +184,20 @@
|
|
168
184
|
display: block;
|
169
185
|
width: 100%;
|
170
186
|
min-height: 28px;
|
171
|
-
/* Make inputs at least the height of their button counterpart */
|
172
|
-
|
173
|
-
/* Makes inputs behave like true block-level elements */
|
174
|
-
|
175
187
|
-webkit-box-sizing: border-box;
|
176
|
-
|
177
|
-
|
178
|
-
|
188
|
+
-moz-box-sizing: border-box;
|
189
|
+
-ms-box-sizing: border-box;
|
190
|
+
box-sizing: border-box;
|
179
191
|
}
|
192
|
+
.input-prepend input,
|
193
|
+
.input-append input,
|
180
194
|
.input-prepend input[class*="span"],
|
181
195
|
.input-append input[class*="span"] {
|
196
|
+
display: inline-block;
|
182
197
|
width: auto;
|
183
198
|
}
|
184
199
|
}
|
200
|
+
|
185
201
|
@media (min-width: 768px) and (max-width: 979px) {
|
186
202
|
.row {
|
187
203
|
margin-left: -20px;
|
@@ -288,205 +304,136 @@
|
|
288
304
|
.row-fluid:after {
|
289
305
|
clear: both;
|
290
306
|
}
|
291
|
-
.row-fluid
|
307
|
+
.row-fluid [class*="span"] {
|
308
|
+
display: block;
|
292
309
|
float: left;
|
310
|
+
width: 100%;
|
311
|
+
min-height: 28px;
|
293
312
|
margin-left: 2.762430939%;
|
313
|
+
*margin-left: 2.709239449638298%;
|
314
|
+
-webkit-box-sizing: border-box;
|
315
|
+
-moz-box-sizing: border-box;
|
316
|
+
-ms-box-sizing: border-box;
|
317
|
+
box-sizing: border-box;
|
294
318
|
}
|
295
|
-
.row-fluid
|
319
|
+
.row-fluid [class*="span"]:first-child {
|
296
320
|
margin-left: 0;
|
297
321
|
}
|
298
|
-
.row-fluid
|
322
|
+
.row-fluid .span12 {
|
299
323
|
width: 99.999999993%;
|
324
|
+
*width: 99.9468085036383%;
|
300
325
|
}
|
301
|
-
.row-fluid
|
326
|
+
.row-fluid .span11 {
|
302
327
|
width: 91.436464082%;
|
328
|
+
*width: 91.38327259263829%;
|
303
329
|
}
|
304
|
-
.row-fluid
|
330
|
+
.row-fluid .span10 {
|
305
331
|
width: 82.87292817100001%;
|
332
|
+
*width: 82.8197366816383%;
|
306
333
|
}
|
307
|
-
.row-fluid
|
334
|
+
.row-fluid .span9 {
|
308
335
|
width: 74.30939226%;
|
336
|
+
*width: 74.25620077063829%;
|
309
337
|
}
|
310
|
-
.row-fluid
|
338
|
+
.row-fluid .span8 {
|
311
339
|
width: 65.74585634900001%;
|
340
|
+
*width: 65.6926648596383%;
|
312
341
|
}
|
313
|
-
.row-fluid
|
342
|
+
.row-fluid .span7 {
|
314
343
|
width: 57.182320438000005%;
|
344
|
+
*width: 57.129128948638304%;
|
315
345
|
}
|
316
|
-
.row-fluid
|
346
|
+
.row-fluid .span6 {
|
317
347
|
width: 48.618784527%;
|
348
|
+
*width: 48.5655930376383%;
|
318
349
|
}
|
319
|
-
.row-fluid
|
350
|
+
.row-fluid .span5 {
|
320
351
|
width: 40.055248616%;
|
352
|
+
*width: 40.0020571266383%;
|
321
353
|
}
|
322
|
-
.row-fluid
|
354
|
+
.row-fluid .span4 {
|
323
355
|
width: 31.491712705%;
|
356
|
+
*width: 31.4385212156383%;
|
324
357
|
}
|
325
|
-
.row-fluid
|
358
|
+
.row-fluid .span3 {
|
326
359
|
width: 22.928176794%;
|
360
|
+
*width: 22.874985304638297%;
|
327
361
|
}
|
328
|
-
.row-fluid
|
362
|
+
.row-fluid .span2 {
|
329
363
|
width: 14.364640883%;
|
364
|
+
*width: 14.311449393638298%;
|
330
365
|
}
|
331
|
-
.row-fluid
|
366
|
+
.row-fluid .span1 {
|
332
367
|
width: 5.801104972%;
|
368
|
+
*width: 5.747913482638298%;
|
333
369
|
}
|
334
370
|
input,
|
335
371
|
textarea,
|
336
372
|
.uneditable-input {
|
337
373
|
margin-left: 0;
|
338
374
|
}
|
339
|
-
input.span12,
|
375
|
+
input.span12,
|
376
|
+
textarea.span12,
|
377
|
+
.uneditable-input.span12 {
|
340
378
|
width: 714px;
|
341
379
|
}
|
342
|
-
input.span11,
|
380
|
+
input.span11,
|
381
|
+
textarea.span11,
|
382
|
+
.uneditable-input.span11 {
|
343
383
|
width: 652px;
|
344
384
|
}
|
345
|
-
input.span10,
|
385
|
+
input.span10,
|
386
|
+
textarea.span10,
|
387
|
+
.uneditable-input.span10 {
|
346
388
|
width: 590px;
|
347
389
|
}
|
348
|
-
input.span9,
|
390
|
+
input.span9,
|
391
|
+
textarea.span9,
|
392
|
+
.uneditable-input.span9 {
|
349
393
|
width: 528px;
|
350
394
|
}
|
351
|
-
input.span8,
|
395
|
+
input.span8,
|
396
|
+
textarea.span8,
|
397
|
+
.uneditable-input.span8 {
|
352
398
|
width: 466px;
|
353
399
|
}
|
354
|
-
input.span7,
|
400
|
+
input.span7,
|
401
|
+
textarea.span7,
|
402
|
+
.uneditable-input.span7 {
|
355
403
|
width: 404px;
|
356
404
|
}
|
357
|
-
input.span6,
|
405
|
+
input.span6,
|
406
|
+
textarea.span6,
|
407
|
+
.uneditable-input.span6 {
|
358
408
|
width: 342px;
|
359
409
|
}
|
360
|
-
input.span5,
|
410
|
+
input.span5,
|
411
|
+
textarea.span5,
|
412
|
+
.uneditable-input.span5 {
|
361
413
|
width: 280px;
|
362
414
|
}
|
363
|
-
input.span4,
|
415
|
+
input.span4,
|
416
|
+
textarea.span4,
|
417
|
+
.uneditable-input.span4 {
|
364
418
|
width: 218px;
|
365
419
|
}
|
366
|
-
input.span3,
|
420
|
+
input.span3,
|
421
|
+
textarea.span3,
|
422
|
+
.uneditable-input.span3 {
|
367
423
|
width: 156px;
|
368
424
|
}
|
369
|
-
input.span2,
|
425
|
+
input.span2,
|
426
|
+
textarea.span2,
|
427
|
+
.uneditable-input.span2 {
|
370
428
|
width: 94px;
|
371
429
|
}
|
372
|
-
input.span1,
|
430
|
+
input.span1,
|
431
|
+
textarea.span1,
|
432
|
+
.uneditable-input.span1 {
|
373
433
|
width: 32px;
|
374
434
|
}
|
375
435
|
}
|
376
|
-
|
377
|
-
body {
|
378
|
-
padding-top: 0;
|
379
|
-
}
|
380
|
-
.navbar-fixed-top {
|
381
|
-
position: static;
|
382
|
-
margin-bottom: 18px;
|
383
|
-
}
|
384
|
-
.navbar-fixed-top .navbar-inner {
|
385
|
-
padding: 5px;
|
386
|
-
}
|
387
|
-
.navbar .container {
|
388
|
-
width: auto;
|
389
|
-
padding: 0;
|
390
|
-
}
|
391
|
-
.navbar .brand {
|
392
|
-
padding-left: 10px;
|
393
|
-
padding-right: 10px;
|
394
|
-
margin: 0 0 0 -5px;
|
395
|
-
}
|
396
|
-
.navbar .nav-collapse {
|
397
|
-
clear: left;
|
398
|
-
}
|
399
|
-
.navbar .nav {
|
400
|
-
float: none;
|
401
|
-
margin: 0 0 9px;
|
402
|
-
}
|
403
|
-
.navbar .nav > li {
|
404
|
-
float: none;
|
405
|
-
}
|
406
|
-
.navbar .nav > li > a {
|
407
|
-
margin-bottom: 2px;
|
408
|
-
}
|
409
|
-
.navbar .nav > .divider-vertical {
|
410
|
-
display: none;
|
411
|
-
}
|
412
|
-
.navbar .nav .nav-header {
|
413
|
-
color: #999999;
|
414
|
-
text-shadow: none;
|
415
|
-
}
|
416
|
-
.navbar .nav > li > a,
|
417
|
-
.navbar .dropdown-menu a {
|
418
|
-
padding: 6px 15px;
|
419
|
-
font-weight: bold;
|
420
|
-
color: #999999;
|
421
|
-
-webkit-border-radius: 3px;
|
422
|
-
-moz-border-radius: 3px;
|
423
|
-
border-radius: 3px;
|
424
|
-
}
|
425
|
-
.navbar .dropdown-menu li + li a {
|
426
|
-
margin-bottom: 2px;
|
427
|
-
}
|
428
|
-
.navbar .nav > li > a:hover,
|
429
|
-
.navbar .dropdown-menu a:hover {
|
430
|
-
background-color: #222222;
|
431
|
-
}
|
432
|
-
.navbar .dropdown-menu {
|
433
|
-
position: static;
|
434
|
-
top: auto;
|
435
|
-
left: auto;
|
436
|
-
float: none;
|
437
|
-
display: block;
|
438
|
-
max-width: none;
|
439
|
-
margin: 0 15px;
|
440
|
-
padding: 0;
|
441
|
-
background-color: transparent;
|
442
|
-
border: none;
|
443
|
-
-webkit-border-radius: 0;
|
444
|
-
-moz-border-radius: 0;
|
445
|
-
border-radius: 0;
|
446
|
-
-webkit-box-shadow: none;
|
447
|
-
-moz-box-shadow: none;
|
448
|
-
box-shadow: none;
|
449
|
-
}
|
450
|
-
.navbar .dropdown-menu:before,
|
451
|
-
.navbar .dropdown-menu:after {
|
452
|
-
display: none;
|
453
|
-
}
|
454
|
-
.navbar .dropdown-menu .divider {
|
455
|
-
display: none;
|
456
|
-
}
|
457
|
-
.navbar-form,
|
458
|
-
.navbar-search {
|
459
|
-
float: none;
|
460
|
-
padding: 9px 15px;
|
461
|
-
margin: 9px 0;
|
462
|
-
border-top: 1px solid #222222;
|
463
|
-
border-bottom: 1px solid #222222;
|
464
|
-
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
|
465
|
-
-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
|
466
|
-
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
|
467
|
-
}
|
468
|
-
.navbar .nav.pull-right {
|
469
|
-
float: none;
|
470
|
-
margin-left: 0;
|
471
|
-
}
|
472
|
-
.navbar-static .navbar-inner {
|
473
|
-
padding-left: 10px;
|
474
|
-
padding-right: 10px;
|
475
|
-
}
|
476
|
-
.btn-navbar {
|
477
|
-
display: block;
|
478
|
-
}
|
479
|
-
.nav-collapse {
|
480
|
-
overflow: hidden;
|
481
|
-
height: 0;
|
482
|
-
}
|
483
|
-
}
|
484
|
-
@media (min-width: 980px) {
|
485
|
-
.nav-collapse.collapse {
|
486
|
-
height: auto !important;
|
487
|
-
overflow: visible !important;
|
488
|
-
}
|
489
|
-
}
|
436
|
+
|
490
437
|
@media (min-width: 1200px) {
|
491
438
|
.row {
|
492
439
|
margin-left: -30px;
|
@@ -593,88 +540,132 @@
|
|
593
540
|
.row-fluid:after {
|
594
541
|
clear: both;
|
595
542
|
}
|
596
|
-
.row-fluid
|
543
|
+
.row-fluid [class*="span"] {
|
544
|
+
display: block;
|
597
545
|
float: left;
|
546
|
+
width: 100%;
|
547
|
+
min-height: 28px;
|
598
548
|
margin-left: 2.564102564%;
|
549
|
+
*margin-left: 2.510911074638298%;
|
550
|
+
-webkit-box-sizing: border-box;
|
551
|
+
-moz-box-sizing: border-box;
|
552
|
+
-ms-box-sizing: border-box;
|
553
|
+
box-sizing: border-box;
|
599
554
|
}
|
600
|
-
.row-fluid
|
555
|
+
.row-fluid [class*="span"]:first-child {
|
601
556
|
margin-left: 0;
|
602
557
|
}
|
603
|
-
.row-fluid
|
558
|
+
.row-fluid .span12 {
|
604
559
|
width: 100%;
|
560
|
+
*width: 99.94680851063829%;
|
605
561
|
}
|
606
|
-
.row-fluid
|
562
|
+
.row-fluid .span11 {
|
607
563
|
width: 91.45299145300001%;
|
564
|
+
*width: 91.3997999636383%;
|
608
565
|
}
|
609
|
-
.row-fluid
|
566
|
+
.row-fluid .span10 {
|
610
567
|
width: 82.905982906%;
|
568
|
+
*width: 82.8527914166383%;
|
611
569
|
}
|
612
|
-
.row-fluid
|
570
|
+
.row-fluid .span9 {
|
613
571
|
width: 74.358974359%;
|
572
|
+
*width: 74.30578286963829%;
|
614
573
|
}
|
615
|
-
.row-fluid
|
574
|
+
.row-fluid .span8 {
|
616
575
|
width: 65.81196581200001%;
|
576
|
+
*width: 65.7587743226383%;
|
617
577
|
}
|
618
|
-
.row-fluid
|
578
|
+
.row-fluid .span7 {
|
619
579
|
width: 57.264957265%;
|
580
|
+
*width: 57.2117657756383%;
|
620
581
|
}
|
621
|
-
.row-fluid
|
582
|
+
.row-fluid .span6 {
|
622
583
|
width: 48.717948718%;
|
584
|
+
*width: 48.6647572286383%;
|
623
585
|
}
|
624
|
-
.row-fluid
|
586
|
+
.row-fluid .span5 {
|
625
587
|
width: 40.170940171000005%;
|
588
|
+
*width: 40.117748681638304%;
|
626
589
|
}
|
627
|
-
.row-fluid
|
590
|
+
.row-fluid .span4 {
|
628
591
|
width: 31.623931624%;
|
592
|
+
*width: 31.5707401346383%;
|
629
593
|
}
|
630
|
-
.row-fluid
|
594
|
+
.row-fluid .span3 {
|
631
595
|
width: 23.076923077%;
|
596
|
+
*width: 23.0237315876383%;
|
632
597
|
}
|
633
|
-
.row-fluid
|
598
|
+
.row-fluid .span2 {
|
634
599
|
width: 14.529914530000001%;
|
600
|
+
*width: 14.4767230406383%;
|
635
601
|
}
|
636
|
-
.row-fluid
|
602
|
+
.row-fluid .span1 {
|
637
603
|
width: 5.982905983%;
|
604
|
+
*width: 5.929714493638298%;
|
638
605
|
}
|
639
606
|
input,
|
640
607
|
textarea,
|
641
608
|
.uneditable-input {
|
642
609
|
margin-left: 0;
|
643
610
|
}
|
644
|
-
input.span12,
|
611
|
+
input.span12,
|
612
|
+
textarea.span12,
|
613
|
+
.uneditable-input.span12 {
|
645
614
|
width: 1160px;
|
646
615
|
}
|
647
|
-
input.span11,
|
616
|
+
input.span11,
|
617
|
+
textarea.span11,
|
618
|
+
.uneditable-input.span11 {
|
648
619
|
width: 1060px;
|
649
620
|
}
|
650
|
-
input.span10,
|
621
|
+
input.span10,
|
622
|
+
textarea.span10,
|
623
|
+
.uneditable-input.span10 {
|
651
624
|
width: 960px;
|
652
625
|
}
|
653
|
-
input.span9,
|
626
|
+
input.span9,
|
627
|
+
textarea.span9,
|
628
|
+
.uneditable-input.span9 {
|
654
629
|
width: 860px;
|
655
630
|
}
|
656
|
-
input.span8,
|
631
|
+
input.span8,
|
632
|
+
textarea.span8,
|
633
|
+
.uneditable-input.span8 {
|
657
634
|
width: 760px;
|
658
635
|
}
|
659
|
-
input.span7,
|
636
|
+
input.span7,
|
637
|
+
textarea.span7,
|
638
|
+
.uneditable-input.span7 {
|
660
639
|
width: 660px;
|
661
640
|
}
|
662
|
-
input.span6,
|
641
|
+
input.span6,
|
642
|
+
textarea.span6,
|
643
|
+
.uneditable-input.span6 {
|
663
644
|
width: 560px;
|
664
645
|
}
|
665
|
-
input.span5,
|
646
|
+
input.span5,
|
647
|
+
textarea.span5,
|
648
|
+
.uneditable-input.span5 {
|
666
649
|
width: 460px;
|
667
650
|
}
|
668
|
-
input.span4,
|
651
|
+
input.span4,
|
652
|
+
textarea.span4,
|
653
|
+
.uneditable-input.span4 {
|
669
654
|
width: 360px;
|
670
655
|
}
|
671
|
-
input.span3,
|
656
|
+
input.span3,
|
657
|
+
textarea.span3,
|
658
|
+
.uneditable-input.span3 {
|
672
659
|
width: 260px;
|
673
660
|
}
|
674
|
-
input.span2,
|
661
|
+
input.span2,
|
662
|
+
textarea.span2,
|
663
|
+
.uneditable-input.span2 {
|
675
664
|
width: 160px;
|
676
665
|
}
|
677
|
-
input.span1,
|
666
|
+
input.span1,
|
667
|
+
textarea.span1,
|
668
|
+
.uneditable-input.span1 {
|
678
669
|
width: 60px;
|
679
670
|
}
|
680
671
|
.thumbnails {
|
@@ -683,4 +674,142 @@
|
|
683
674
|
.thumbnails > li {
|
684
675
|
margin-left: 30px;
|
685
676
|
}
|
677
|
+
.row-fluid .thumbnails {
|
678
|
+
margin-left: 0;
|
679
|
+
}
|
680
|
+
}
|
681
|
+
|
682
|
+
@media (max-width: 979px) {
|
683
|
+
body {
|
684
|
+
padding-top: 0;
|
685
|
+
}
|
686
|
+
.navbar-fixed-top,
|
687
|
+
.navbar-fixed-bottom {
|
688
|
+
position: static;
|
689
|
+
}
|
690
|
+
.navbar-fixed-top {
|
691
|
+
margin-bottom: 18px;
|
692
|
+
}
|
693
|
+
.navbar-fixed-bottom {
|
694
|
+
margin-top: 18px;
|
695
|
+
}
|
696
|
+
.navbar-fixed-top .navbar-inner,
|
697
|
+
.navbar-fixed-bottom .navbar-inner {
|
698
|
+
padding: 5px;
|
699
|
+
}
|
700
|
+
.navbar .container {
|
701
|
+
width: auto;
|
702
|
+
padding: 0;
|
703
|
+
}
|
704
|
+
.navbar .brand {
|
705
|
+
padding-right: 10px;
|
706
|
+
padding-left: 10px;
|
707
|
+
margin: 0 0 0 -5px;
|
708
|
+
}
|
709
|
+
.nav-collapse {
|
710
|
+
clear: both;
|
711
|
+
}
|
712
|
+
.nav-collapse .nav {
|
713
|
+
float: none;
|
714
|
+
margin: 0 0 9px;
|
715
|
+
}
|
716
|
+
.nav-collapse .nav > li {
|
717
|
+
float: none;
|
718
|
+
}
|
719
|
+
.nav-collapse .nav > li > a {
|
720
|
+
margin-bottom: 2px;
|
721
|
+
}
|
722
|
+
.nav-collapse .nav > .divider-vertical {
|
723
|
+
display: none;
|
724
|
+
}
|
725
|
+
.nav-collapse .nav .nav-header {
|
726
|
+
color: #999999;
|
727
|
+
text-shadow: none;
|
728
|
+
}
|
729
|
+
.nav-collapse .nav > li > a,
|
730
|
+
.nav-collapse .dropdown-menu a {
|
731
|
+
padding: 6px 15px;
|
732
|
+
font-weight: bold;
|
733
|
+
color: #999999;
|
734
|
+
-webkit-border-radius: 3px;
|
735
|
+
-moz-border-radius: 3px;
|
736
|
+
border-radius: 3px;
|
737
|
+
}
|
738
|
+
.nav-collapse .btn {
|
739
|
+
padding: 4px 10px 4px;
|
740
|
+
font-weight: normal;
|
741
|
+
-webkit-border-radius: 4px;
|
742
|
+
-moz-border-radius: 4px;
|
743
|
+
border-radius: 4px;
|
744
|
+
}
|
745
|
+
.nav-collapse .dropdown-menu li + li a {
|
746
|
+
margin-bottom: 2px;
|
747
|
+
}
|
748
|
+
.nav-collapse .nav > li > a:hover,
|
749
|
+
.nav-collapse .dropdown-menu a:hover {
|
750
|
+
background-color: #222222;
|
751
|
+
}
|
752
|
+
.nav-collapse.in .btn-group {
|
753
|
+
padding: 0;
|
754
|
+
margin-top: 5px;
|
755
|
+
}
|
756
|
+
.nav-collapse .dropdown-menu {
|
757
|
+
position: static;
|
758
|
+
top: auto;
|
759
|
+
left: auto;
|
760
|
+
display: block;
|
761
|
+
float: none;
|
762
|
+
max-width: none;
|
763
|
+
padding: 0;
|
764
|
+
margin: 0 15px;
|
765
|
+
background-color: transparent;
|
766
|
+
border: none;
|
767
|
+
-webkit-border-radius: 0;
|
768
|
+
-moz-border-radius: 0;
|
769
|
+
border-radius: 0;
|
770
|
+
-webkit-box-shadow: none;
|
771
|
+
-moz-box-shadow: none;
|
772
|
+
box-shadow: none;
|
773
|
+
}
|
774
|
+
.nav-collapse .dropdown-menu:before,
|
775
|
+
.nav-collapse .dropdown-menu:after {
|
776
|
+
display: none;
|
777
|
+
}
|
778
|
+
.nav-collapse .dropdown-menu .divider {
|
779
|
+
display: none;
|
780
|
+
}
|
781
|
+
.nav-collapse .navbar-form,
|
782
|
+
.nav-collapse .navbar-search {
|
783
|
+
float: none;
|
784
|
+
padding: 9px 15px;
|
785
|
+
margin: 9px 0;
|
786
|
+
border-top: 1px solid #222222;
|
787
|
+
border-bottom: 1px solid #222222;
|
788
|
+
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
|
789
|
+
-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
|
790
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
|
791
|
+
}
|
792
|
+
.navbar .nav-collapse .nav.pull-right {
|
793
|
+
float: none;
|
794
|
+
margin-left: 0;
|
795
|
+
}
|
796
|
+
.nav-collapse,
|
797
|
+
.nav-collapse.collapse {
|
798
|
+
height: 0;
|
799
|
+
overflow: hidden;
|
800
|
+
}
|
801
|
+
.navbar .btn-navbar {
|
802
|
+
display: block;
|
803
|
+
}
|
804
|
+
.navbar-static .navbar-inner {
|
805
|
+
padding-right: 10px;
|
806
|
+
padding-left: 10px;
|
807
|
+
}
|
808
|
+
}
|
809
|
+
|
810
|
+
@media (min-width: 980px) {
|
811
|
+
.nav-collapse.collapse {
|
812
|
+
height: auto !important;
|
813
|
+
overflow: visible !important;
|
814
|
+
}
|
686
815
|
}
|