jombo 0.0.1.beta24 → 0.0.1.beta25
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/lib/jombo/version.rb
CHANGED
@@ -41,7 +41,7 @@
|
|
41
41
|
$tip.find('.title')[ $.type(title) == 'object' ? 'append' : 'html' ](title)
|
42
42
|
$tip.find('.content > *')[ $.type(content) == 'object' ? 'append' : 'html' ](content)
|
43
43
|
|
44
|
-
$tip
|
44
|
+
$tip.removeClass('fade top bottom left right in')
|
45
45
|
}
|
46
46
|
|
47
47
|
, hasContent: function () {
|
@@ -92,4 +92,4 @@
|
|
92
92
|
, template: '<div class="popover"><div class="arrow"></div><div class="inner"><h3 class="title"></h3><div class="content"><p></p></div></div></div>'
|
93
93
|
})
|
94
94
|
|
95
|
-
}( window.jQuery )
|
95
|
+
}( window.jQuery )
|
@@ -6,95 +6,8 @@
|
|
6
6
|
* http://www.apache.org/licenses/LICENSE-2.0
|
7
7
|
*
|
8
8
|
* Designed and built with all the love in the world @twitter by @mdo and @fat.
|
9
|
-
* Date:
|
9
|
+
* Date: Mon Jan 23 15:15:08 PST 2012
|
10
10
|
*/
|
11
|
-
html, body {
|
12
|
-
margin: 0;
|
13
|
-
padding: 0;
|
14
|
-
}
|
15
|
-
h1,
|
16
|
-
h2,
|
17
|
-
h3,
|
18
|
-
h4,
|
19
|
-
h5,
|
20
|
-
h6,
|
21
|
-
p,
|
22
|
-
blockquote,
|
23
|
-
pre,
|
24
|
-
a,
|
25
|
-
abbr,
|
26
|
-
acronym,
|
27
|
-
address,
|
28
|
-
cite,
|
29
|
-
code,
|
30
|
-
del,
|
31
|
-
dfn,
|
32
|
-
em,
|
33
|
-
img,
|
34
|
-
q,
|
35
|
-
s,
|
36
|
-
samp,
|
37
|
-
small,
|
38
|
-
strike,
|
39
|
-
strong,
|
40
|
-
sub,
|
41
|
-
sup,
|
42
|
-
tt,
|
43
|
-
var,
|
44
|
-
dd,
|
45
|
-
dl,
|
46
|
-
dt,
|
47
|
-
li,
|
48
|
-
ol,
|
49
|
-
ul,
|
50
|
-
fieldset,
|
51
|
-
form,
|
52
|
-
label,
|
53
|
-
legend,
|
54
|
-
button,
|
55
|
-
table,
|
56
|
-
caption,
|
57
|
-
tbody,
|
58
|
-
tfoot,
|
59
|
-
thead,
|
60
|
-
tr,
|
61
|
-
th,
|
62
|
-
td {
|
63
|
-
margin: 0;
|
64
|
-
padding: 0;
|
65
|
-
border: 0;
|
66
|
-
font-weight: normal;
|
67
|
-
font-style: normal;
|
68
|
-
font-size: 100%;
|
69
|
-
line-height: 1;
|
70
|
-
font-family: inherit;
|
71
|
-
}
|
72
|
-
table {
|
73
|
-
max-width: 100%;
|
74
|
-
border-collapse: collapse;
|
75
|
-
border-spacing: 0;
|
76
|
-
}
|
77
|
-
ol, ul {
|
78
|
-
list-style: none;
|
79
|
-
}
|
80
|
-
q:before,
|
81
|
-
q:after,
|
82
|
-
blockquote:before,
|
83
|
-
blockquote:after {
|
84
|
-
content: "";
|
85
|
-
}
|
86
|
-
html {
|
87
|
-
overflow-y: scroll;
|
88
|
-
font-size: 100%;
|
89
|
-
-webkit-text-size-adjust: 100%;
|
90
|
-
-ms-text-size-adjust: 100%;
|
91
|
-
}
|
92
|
-
a:focus {
|
93
|
-
outline: thin dotted;
|
94
|
-
}
|
95
|
-
a:hover, a:active {
|
96
|
-
outline: 0;
|
97
|
-
}
|
98
11
|
article,
|
99
12
|
aside,
|
100
13
|
details,
|
@@ -115,6 +28,17 @@ audio, canvas, video {
|
|
115
28
|
audio:not([controls]) {
|
116
29
|
display: none;
|
117
30
|
}
|
31
|
+
html {
|
32
|
+
font-size: 100%;
|
33
|
+
-webkit-text-size-adjust: 100%;
|
34
|
+
-ms-text-size-adjust: 100%;
|
35
|
+
}
|
36
|
+
a:focus {
|
37
|
+
outline: thin dotted;
|
38
|
+
}
|
39
|
+
a:hover, a:active {
|
40
|
+
outline: 0;
|
41
|
+
}
|
118
42
|
sub, sup {
|
119
43
|
position: relative;
|
120
44
|
font-size: 75%;
|
@@ -228,8 +152,6 @@ body {
|
|
228
152
|
width: 100%;
|
229
153
|
}
|
230
154
|
a {
|
231
|
-
font-weight: inherit;
|
232
|
-
line-height: inherit;
|
233
155
|
color: #0088cc;
|
234
156
|
text-decoration: none;
|
235
157
|
}
|
@@ -322,7 +244,7 @@ a:hover {
|
|
322
244
|
margin-left: 900px;
|
323
245
|
}
|
324
246
|
p {
|
325
|
-
margin
|
247
|
+
margin: 0 0 9px;
|
326
248
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
327
249
|
font-size: 13px;
|
328
250
|
line-height: 18px;
|
@@ -337,6 +259,7 @@ h3,
|
|
337
259
|
h4,
|
338
260
|
h5,
|
339
261
|
h6 {
|
262
|
+
margin: 0;
|
340
263
|
font-weight: bold;
|
341
264
|
color: #333333;
|
342
265
|
text-rendering: optimizelegibility;
|
@@ -347,6 +270,7 @@ h3 small,
|
|
347
270
|
h4 small,
|
348
271
|
h5 small,
|
349
272
|
h6 small {
|
273
|
+
font-weight: normal;
|
350
274
|
color: #999999;
|
351
275
|
}
|
352
276
|
h1 {
|
@@ -388,6 +312,7 @@ h6 {
|
|
388
312
|
text-transform: uppercase;
|
389
313
|
}
|
390
314
|
ul, ol {
|
315
|
+
padding: 0;
|
391
316
|
margin: 0 0 9px 25px;
|
392
317
|
}
|
393
318
|
ul ul,
|
@@ -425,16 +350,13 @@ hr {
|
|
425
350
|
margin: 18px 0;
|
426
351
|
border: 0;
|
427
352
|
border-top: 1px solid #e5e5e5;
|
428
|
-
border-bottom: 1px solid #
|
353
|
+
border-bottom: 1px solid #ffffff;
|
429
354
|
}
|
430
355
|
strong {
|
431
|
-
font-style: inherit;
|
432
356
|
font-weight: bold;
|
433
357
|
}
|
434
358
|
em {
|
435
359
|
font-style: italic;
|
436
|
-
font-weight: inherit;
|
437
|
-
line-height: inherit;
|
438
360
|
}
|
439
361
|
.muted {
|
440
362
|
color: #999999;
|
@@ -446,9 +368,9 @@ abbr {
|
|
446
368
|
cursor: help;
|
447
369
|
}
|
448
370
|
blockquote {
|
449
|
-
padding
|
450
|
-
margin
|
451
|
-
border-left: 5px solid #
|
371
|
+
padding: 0 0 0 15px;
|
372
|
+
margin: 0 0 18px;
|
373
|
+
border-left: 5px solid #eeeeee;
|
452
374
|
}
|
453
375
|
blockquote p {
|
454
376
|
margin-bottom: 0;
|
@@ -469,15 +391,22 @@ blockquote.pull-right {
|
|
469
391
|
padding-left: 0;
|
470
392
|
padding-right: 15px;
|
471
393
|
border-left: 0;
|
472
|
-
border-right: 5px solid #
|
394
|
+
border-right: 5px solid #eeeeee;
|
473
395
|
}
|
474
396
|
blockquote.pull-right p, blockquote.pull-right small {
|
475
397
|
text-align: right;
|
476
398
|
}
|
399
|
+
q:before,
|
400
|
+
q:after,
|
401
|
+
blockquote:before,
|
402
|
+
blockquote:after {
|
403
|
+
content: "";
|
404
|
+
}
|
477
405
|
address {
|
478
406
|
display: block;
|
479
407
|
margin-bottom: 18px;
|
480
408
|
line-height: 18px;
|
409
|
+
font-style: normal;
|
481
410
|
}
|
482
411
|
code, pre {
|
483
412
|
padding: 0 3px 2px;
|
@@ -515,26 +444,40 @@ pre code {
|
|
515
444
|
padding: 0;
|
516
445
|
background-color: transparent;
|
517
446
|
}
|
447
|
+
small {
|
448
|
+
font-size: 100%;
|
449
|
+
}
|
450
|
+
cite {
|
451
|
+
font-style: normal;
|
452
|
+
}
|
518
453
|
form {
|
519
|
-
margin
|
454
|
+
margin: 0 0 18px;
|
455
|
+
}
|
456
|
+
fieldset {
|
457
|
+
padding: 0;
|
458
|
+
margin: 0;
|
459
|
+
border: 0;
|
520
460
|
}
|
521
461
|
legend {
|
522
462
|
display: block;
|
523
463
|
width: 100%;
|
464
|
+
padding: 0;
|
524
465
|
margin-bottom: 27px;
|
525
466
|
font-size: 19.5px;
|
526
467
|
line-height: 36px;
|
527
468
|
color: #333333;
|
469
|
+
border: 0;
|
528
470
|
border-bottom: 1px solid #eee;
|
529
471
|
-webkit-margin-collapse: separate;
|
530
472
|
}
|
531
473
|
label,
|
532
474
|
input,
|
475
|
+
button,
|
533
476
|
select,
|
534
477
|
textarea {
|
535
478
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
536
|
-
font-size:
|
537
|
-
font-weight:
|
479
|
+
font-size: 13px;
|
480
|
+
font-weight: normal;
|
538
481
|
line-height: 18px;
|
539
482
|
}
|
540
483
|
label {
|
@@ -810,11 +753,11 @@ textarea[readonly] {
|
|
810
753
|
background-color: #bcddbc;
|
811
754
|
border-color: #468847;
|
812
755
|
}
|
813
|
-
input:invalid, textarea:invalid, select:invalid {
|
756
|
+
input:focus:required:invalid, textarea:focus:required:invalid, select:focus:required:invalid {
|
814
757
|
color: #b94a48;
|
815
758
|
border-color: #ee5f5b;
|
816
759
|
}
|
817
|
-
input:invalid:focus, textarea:invalid:focus, select:invalid:focus {
|
760
|
+
input:focus:required:invalid:focus, textarea:focus:required:invalid:focus, select:focus:required:invalid:focus {
|
818
761
|
border-color: #e9322d;
|
819
762
|
-webkit-box-shadow: 0 0 6px #f8b9b7;
|
820
763
|
-moz-box-shadow: 0 0 6px #f8b9b7;
|
@@ -953,6 +896,9 @@ input:invalid:focus, textarea:invalid:focus, select:invalid:focus {
|
|
953
896
|
display: inline-block;
|
954
897
|
}
|
955
898
|
.control-group {
|
899
|
+
margin-bottom: 9px;
|
900
|
+
}
|
901
|
+
.form-horizontal .control-group {
|
956
902
|
margin-bottom: 18px;
|
957
903
|
}
|
958
904
|
.form-horizontal .control-group > label {
|
@@ -967,6 +913,11 @@ input:invalid:focus, textarea:invalid:focus, select:invalid:focus {
|
|
967
913
|
.form-horizontal .form-actions {
|
968
914
|
padding-left: 160px;
|
969
915
|
}
|
916
|
+
table {
|
917
|
+
max-width: 100%;
|
918
|
+
border-collapse: collapse;
|
919
|
+
border-spacing: 0;
|
920
|
+
}
|
970
921
|
.table {
|
971
922
|
width: 100%;
|
972
923
|
margin-bottom: 18px;
|
@@ -1101,7 +1052,7 @@ table .header:after {
|
|
1101
1052
|
margin-top: 7px;
|
1102
1053
|
border-width: 0 4px 4px;
|
1103
1054
|
border-style: solid;
|
1104
|
-
border-color: #
|
1055
|
+
border-color: #000000 transparent;
|
1105
1056
|
visibility: hidden;
|
1106
1057
|
}
|
1107
1058
|
table .headerSortUp, table .headerSortDown {
|
@@ -1121,7 +1072,7 @@ table .headerSortUp:after {
|
|
1121
1072
|
border-bottom: none;
|
1122
1073
|
border-left: 4px solid transparent;
|
1123
1074
|
border-right: 4px solid transparent;
|
1124
|
-
border-top: 4px solid #
|
1075
|
+
border-top: 4px solid #000000;
|
1125
1076
|
visibility: visible;
|
1126
1077
|
-webkit-box-shadow: none;
|
1127
1078
|
-moz-box-shadow: none;
|
@@ -1391,7 +1342,7 @@ i {
|
|
1391
1342
|
.arrow-down {
|
1392
1343
|
background-position: -312px -96px;
|
1393
1344
|
}
|
1394
|
-
.share {
|
1345
|
+
.share-alt {
|
1395
1346
|
background-position: -336px -96px;
|
1396
1347
|
}
|
1397
1348
|
.resize-full {
|
@@ -1420,7 +1371,7 @@ i {
|
|
1420
1371
|
vertical-align: top;
|
1421
1372
|
border-left: 4px solid transparent;
|
1422
1373
|
border-right: 4px solid transparent;
|
1423
|
-
border-top: 4px solid #
|
1374
|
+
border-top: 4px solid #000000;
|
1424
1375
|
filter: alpha(opacity=30);
|
1425
1376
|
-moz-opacity: 0.3;
|
1426
1377
|
opacity: 0.3;
|
@@ -1438,7 +1389,7 @@ i {
|
|
1438
1389
|
}
|
1439
1390
|
.dropdown-menu {
|
1440
1391
|
position: absolute;
|
1441
|
-
top:
|
1392
|
+
top: 100%;
|
1442
1393
|
z-index: 1000;
|
1443
1394
|
float: left;
|
1444
1395
|
display: none;
|
@@ -1483,7 +1434,7 @@ i {
|
|
1483
1434
|
white-space: nowrap;
|
1484
1435
|
}
|
1485
1436
|
.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
|
1486
|
-
color: #
|
1437
|
+
color: #ffffff;
|
1487
1438
|
text-decoration: none;
|
1488
1439
|
background-color: #0088cc;
|
1489
1440
|
}
|
@@ -1572,7 +1523,7 @@ i {
|
|
1572
1523
|
}
|
1573
1524
|
.nav > li > a:hover {
|
1574
1525
|
text-decoration: none;
|
1575
|
-
background-color: #
|
1526
|
+
background-color: #eeeeee;
|
1576
1527
|
}
|
1577
1528
|
.nav.list {
|
1578
1529
|
padding-left: 14px;
|
@@ -1638,7 +1589,7 @@ i {
|
|
1638
1589
|
border-radius: 4px 4px 0 0;
|
1639
1590
|
}
|
1640
1591
|
.tabs > li > a:hover {
|
1641
|
-
border-color: #
|
1592
|
+
border-color: #eeeeee #eeeeee #dddddd;
|
1642
1593
|
}
|
1643
1594
|
.tabs > .active > a, .tabs > .active > a:hover {
|
1644
1595
|
color: #555555;
|
@@ -1696,7 +1647,7 @@ i {
|
|
1696
1647
|
margin-bottom: 1px;
|
1697
1648
|
}
|
1698
1649
|
.pills .dropdown-menu, .tabs .dropdown-menu {
|
1699
|
-
top:
|
1650
|
+
margin-top: 1px;
|
1700
1651
|
border-width: 1px;
|
1701
1652
|
}
|
1702
1653
|
.pills .dropdown-menu {
|
@@ -1712,25 +1663,25 @@ i {
|
|
1712
1663
|
border-top-color: #005580;
|
1713
1664
|
}
|
1714
1665
|
.tabs .active .dropdown-toggle .caret, .pills .active .dropdown-toggle .caret {
|
1715
|
-
border-top-color: #
|
1666
|
+
border-top-color: #333333;
|
1716
1667
|
}
|
1717
1668
|
.nav > .dropdown.active > a:hover {
|
1718
|
-
color: #
|
1669
|
+
color: #000000;
|
1719
1670
|
cursor: pointer;
|
1720
1671
|
}
|
1721
1672
|
.tabs .open .dropdown-toggle, .pills .open .dropdown-toggle, .nav > .open.active > a:hover {
|
1722
|
-
color: #
|
1723
|
-
background-color: #
|
1724
|
-
border-color: #
|
1673
|
+
color: #ffffff;
|
1674
|
+
background-color: #999999;
|
1675
|
+
border-color: #999999;
|
1725
1676
|
}
|
1726
1677
|
.nav .open .caret, .nav .open.active .caret, .nav .open a:hover .caret {
|
1727
|
-
border-top-color: #
|
1678
|
+
border-top-color: #ffffff;
|
1728
1679
|
filter: alpha(opacity=100);
|
1729
1680
|
-moz-opacity: 1;
|
1730
1681
|
opacity: 1;
|
1731
1682
|
}
|
1732
1683
|
.tabs.stacked .open > a:hover {
|
1733
|
-
border-color: #
|
1684
|
+
border-color: #999999;
|
1734
1685
|
}
|
1735
1686
|
.tabbable {
|
1736
1687
|
*zoom: 1;
|
@@ -1790,7 +1741,7 @@ i {
|
|
1790
1741
|
border-radius: 4px 0 0 4px;
|
1791
1742
|
}
|
1792
1743
|
.tabs-left .tabs > li > a:hover {
|
1793
|
-
border-color: #
|
1744
|
+
border-color: #eeeeee #dddddd #eeeeee #eeeeee;
|
1794
1745
|
}
|
1795
1746
|
.tabs-left .tabs .active > a, .tabs-left .tabs .active > a:hover {
|
1796
1747
|
border-color: #ddd transparent #ddd #ddd;
|
@@ -1807,7 +1758,7 @@ i {
|
|
1807
1758
|
border-radius: 0 4px 4px 0;
|
1808
1759
|
}
|
1809
1760
|
.tabs-right .tabs > li > a:hover {
|
1810
|
-
border-color: #
|
1761
|
+
border-color: #eeeeee #eeeeee #eeeeee #dddddd;
|
1811
1762
|
}
|
1812
1763
|
.tabs-right .tabs .active > a, .tabs-right .tabs .active > a:hover {
|
1813
1764
|
border-color: #ddd #ddd #ddd transparent;
|
@@ -1961,7 +1912,7 @@ i {
|
|
1961
1912
|
.navbar .nav .active > a {
|
1962
1913
|
color: #ffffff;
|
1963
1914
|
text-decoration: none;
|
1964
|
-
background-color: #
|
1915
|
+
background-color: #222222;
|
1965
1916
|
background-color: rgba(0, 0, 0, 0.5);
|
1966
1917
|
}
|
1967
1918
|
.navbar .vertical-divider {
|
@@ -1969,7 +1920,7 @@ i {
|
|
1969
1920
|
width: 1px;
|
1970
1921
|
margin: 0 5px;
|
1971
1922
|
overflow: hidden;
|
1972
|
-
background-color: #
|
1923
|
+
background-color: #222222;
|
1973
1924
|
border-right: 1px solid #444;
|
1974
1925
|
}
|
1975
1926
|
.navbar .nav.pull-right {
|
@@ -1977,7 +1928,7 @@ i {
|
|
1977
1928
|
margin-right: 0;
|
1978
1929
|
}
|
1979
1930
|
.navbar .dropdown-menu {
|
1980
|
-
top:
|
1931
|
+
margin-top: 1px;
|
1981
1932
|
-webkit-border-radius: 4px;
|
1982
1933
|
-moz-border-radius: 4px;
|
1983
1934
|
border-radius: 4px;
|
@@ -1998,13 +1949,13 @@ i {
|
|
1998
1949
|
display: inline-block;
|
1999
1950
|
border-left: 6px solid transparent;
|
2000
1951
|
border-right: 6px solid transparent;
|
2001
|
-
border-bottom: 6px solid #
|
1952
|
+
border-bottom: 6px solid #ffffff;
|
2002
1953
|
position: absolute;
|
2003
1954
|
top: -6px;
|
2004
1955
|
left: 10px;
|
2005
1956
|
}
|
2006
1957
|
.navbar .nav .dropdown-toggle .caret, .navbar .nav .open.dropdown .caret {
|
2007
|
-
border-top-color: #
|
1958
|
+
border-top-color: #ffffff;
|
2008
1959
|
}
|
2009
1960
|
.navbar .nav .active .caret {
|
2010
1961
|
filter: alpha(opacity=100);
|
@@ -2015,7 +1966,7 @@ i {
|
|
2015
1966
|
background-color: transparent;
|
2016
1967
|
}
|
2017
1968
|
.navbar .nav .active > .dropdown-toggle:hover {
|
2018
|
-
color: #
|
1969
|
+
color: #ffffff;
|
2019
1970
|
}
|
2020
1971
|
.navbar .nav.pull-right .dropdown-menu {
|
2021
1972
|
right: 0;
|
@@ -2299,7 +2250,7 @@ i {
|
|
2299
2250
|
.tooltip-inner {
|
2300
2251
|
max-width: 200px;
|
2301
2252
|
padding: 3px 8px;
|
2302
|
-
color:
|
2253
|
+
color: #ffffff;
|
2303
2254
|
text-align: center;
|
2304
2255
|
text-decoration: none;
|
2305
2256
|
background-color: #000000;
|
@@ -2460,7 +2411,7 @@ i {
|
|
2460
2411
|
padding: 5px 10px 6px;
|
2461
2412
|
font-size: 13px;
|
2462
2413
|
line-height: normal;
|
2463
|
-
color: #
|
2414
|
+
color: #333333;
|
2464
2415
|
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
|
2465
2416
|
background-color: #e6e6e6;
|
2466
2417
|
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
|
@@ -2550,7 +2501,7 @@ i {
|
|
2550
2501
|
padding: 7px 9px 7px;
|
2551
2502
|
font-size: 11px;
|
2552
2503
|
}
|
2553
|
-
:root .
|
2504
|
+
:root .btn {
|
2554
2505
|
border-radius: 0 \0;
|
2555
2506
|
}
|
2556
2507
|
button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
|
@@ -2628,7 +2579,7 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
|
|
2628
2579
|
}
|
2629
2580
|
.btn-group.open .dropdown-menu {
|
2630
2581
|
display: block;
|
2631
|
-
top:
|
2582
|
+
margin-top: 1px;
|
2632
2583
|
-webkit-border-radius: 5px;
|
2633
2584
|
-moz-border-radius: 5px;
|
2634
2585
|
border-radius: 5px;
|
@@ -2650,7 +2601,7 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
|
|
2650
2601
|
.danger .caret,
|
2651
2602
|
.info .caret,
|
2652
2603
|
.success .caret {
|
2653
|
-
border-top-color: #
|
2604
|
+
border-top-color: #ffffff;
|
2654
2605
|
filter: alpha(opacity=75);
|
2655
2606
|
-moz-opacity: 0.75;
|
2656
2607
|
opacity: 0.75;
|
@@ -2723,7 +2674,7 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
|
|
2723
2674
|
}
|
2724
2675
|
.thumbnails > li {
|
2725
2676
|
float: left;
|
2726
|
-
margin: 0 0
|
2677
|
+
margin: 0 0 18px 20px;
|
2727
2678
|
}
|
2728
2679
|
.thumbnail {
|
2729
2680
|
display: block;
|
@@ -2993,7 +2944,7 @@ a.thumbnail:hover {
|
|
2993
2944
|
line-height: 30px;
|
2994
2945
|
color: #ccc;
|
2995
2946
|
text-align: center;
|
2996
|
-
background: #
|
2947
|
+
background: #999999;
|
2997
2948
|
background: rgba(0, 0, 0, 0.5);
|
2998
2949
|
-webkit-border-radius: 20px;
|
2999
2950
|
-moz-border-radius: 20px;
|
@@ -3004,9 +2955,9 @@ a.thumbnail:hover {
|
|
3004
2955
|
right: 15px;
|
3005
2956
|
}
|
3006
2957
|
.carousel-control:hover {
|
3007
|
-
color: #
|
2958
|
+
color: #ffffff;
|
3008
2959
|
text-decoration: none;
|
3009
|
-
background: #
|
2960
|
+
background: #333333;
|
3010
2961
|
background: rgba(0, 0, 0, 0.75);
|
3011
2962
|
}
|
3012
2963
|
.carousel-caption {
|
@@ -3015,11 +2966,11 @@ a.thumbnail:hover {
|
|
3015
2966
|
right: 0;
|
3016
2967
|
bottom: 0;
|
3017
2968
|
padding: 10px 15px 5px;
|
3018
|
-
background: #
|
2969
|
+
background: #333333;
|
3019
2970
|
background: rgba(0, 0, 0, 0.75);
|
3020
2971
|
}
|
3021
2972
|
.carousel-caption h4, .carousel-caption p {
|
3022
|
-
color: #
|
2973
|
+
color: #ffffff;
|
3023
2974
|
}
|
3024
2975
|
.pull-right {
|
3025
2976
|
float: right;
|
@@ -3112,11 +3063,12 @@ a.thumbnail:hover {
|
|
3112
3063
|
padding-left: 0;
|
3113
3064
|
}
|
3114
3065
|
.modal {
|
3115
|
-
position:
|
3066
|
+
position: absolute;
|
3116
3067
|
top: 20px;
|
3117
3068
|
left: 20px;
|
3118
3069
|
right: 20px;
|
3119
3070
|
width: auto;
|
3071
|
+
margin: 0;
|
3120
3072
|
}
|
3121
3073
|
.modal.fade.in {
|
3122
3074
|
top: auto;
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jombo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.1.
|
4
|
+
version: 0.0.1.beta25
|
5
5
|
prerelease: 6
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-01-
|
12
|
+
date: 2012-01-24 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description: Package Bootstrap from Twitter (2.0 work-in-progress branch) assets as
|
15
15
|
a gem.
|