jombo 0.0.1.beta8 → 0.0.1.beta9
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 +1 -1
- data/vendor/assets/stylesheets/bootstrap/bootstrap.css +89 -37
- metadata +2 -2
data/lib/jombo/version.rb
CHANGED
@@ -6,7 +6,7 @@
|
|
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: Sun Dec 11 02:07:42 PST 2011
|
10
10
|
*/
|
11
11
|
html, body {
|
12
12
|
margin: 0;
|
@@ -70,6 +70,7 @@ td {
|
|
70
70
|
font-family: inherit;
|
71
71
|
}
|
72
72
|
table {
|
73
|
+
max-width: 100%;
|
73
74
|
border-collapse: collapse;
|
74
75
|
border-spacing: 0;
|
75
76
|
}
|
@@ -127,6 +128,8 @@ sub {
|
|
127
128
|
bottom: -0.25em;
|
128
129
|
}
|
129
130
|
img {
|
131
|
+
max-width: 100%;
|
132
|
+
height: auto;
|
130
133
|
border: 0;
|
131
134
|
-ms-interpolation-mode: bicubic;
|
132
135
|
}
|
@@ -433,9 +436,10 @@ dl dd {
|
|
433
436
|
margin-left: 9px;
|
434
437
|
}
|
435
438
|
hr {
|
436
|
-
margin:
|
439
|
+
margin: 27px 0;
|
437
440
|
border: 0;
|
438
|
-
border-
|
441
|
+
border-top: 1px solid #e5e5e5;
|
442
|
+
border-bottom: 1px solid #fff;
|
439
443
|
}
|
440
444
|
strong {
|
441
445
|
font-style: inherit;
|
@@ -563,8 +567,7 @@ select,
|
|
563
567
|
-moz-border-radius: 3px;
|
564
568
|
border-radius: 3px;
|
565
569
|
}
|
566
|
-
|
567
|
-
input[type=checkbox], input[type=radio] {
|
570
|
+
input[type=image], input[type=checkbox], input[type=radio] {
|
568
571
|
width: auto;
|
569
572
|
height: auto;
|
570
573
|
padding: 0;
|
@@ -601,6 +604,11 @@ select[multiple] {
|
|
601
604
|
height: inherit;
|
602
605
|
background-color: #ffffff;
|
603
606
|
}
|
607
|
+
input[type=image] {
|
608
|
+
-webkit-box-shadow: none;
|
609
|
+
-moz-box-shadow: none;
|
610
|
+
box-shadow: none;
|
611
|
+
}
|
604
612
|
textarea {
|
605
613
|
height: auto;
|
606
614
|
}
|
@@ -1175,7 +1183,6 @@ table {
|
|
1175
1183
|
}
|
1176
1184
|
}*/
|
1177
1185
|
.navbar {
|
1178
|
-
height: 40px;
|
1179
1186
|
overflow: visible;
|
1180
1187
|
}
|
1181
1188
|
.navbar-inner {
|
@@ -1313,6 +1320,14 @@ table {
|
|
1313
1320
|
background-color: #222;
|
1314
1321
|
background-color: rgba(0, 0, 0, 0.5);
|
1315
1322
|
}
|
1323
|
+
.nav .divider {
|
1324
|
+
height: 40px;
|
1325
|
+
width: 1px;
|
1326
|
+
margin: 0 5px;
|
1327
|
+
overflow: hidden;
|
1328
|
+
background-color: #222;
|
1329
|
+
border-right: 1px solid #444;
|
1330
|
+
}
|
1316
1331
|
.nav.secondary-nav {
|
1317
1332
|
float: right;
|
1318
1333
|
margin-left: 10px;
|
@@ -2059,7 +2074,7 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
|
|
2059
2074
|
.tabs li.open a.menu:after, .tabs .dropdown.open .dropdown-toggle:after {
|
2060
2075
|
border-top-color: #555;
|
2061
2076
|
}
|
2062
|
-
.pills a {
|
2077
|
+
.pills > li > a {
|
2063
2078
|
padding: 0 15px;
|
2064
2079
|
margin: 5px 3px 5px 0;
|
2065
2080
|
line-height: 30px;
|
@@ -2068,13 +2083,13 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
|
|
2068
2083
|
-moz-border-radius: 15px;
|
2069
2084
|
border-radius: 15px;
|
2070
2085
|
}
|
2071
|
-
.pills a:hover {
|
2086
|
+
.pills > li > a:hover {
|
2072
2087
|
color: #ffffff;
|
2073
2088
|
text-decoration: none;
|
2074
2089
|
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
|
2075
2090
|
background-color: #00438a;
|
2076
2091
|
}
|
2077
|
-
.pills .active a {
|
2092
|
+
.pills .active > a {
|
2078
2093
|
color: #ffffff;
|
2079
2094
|
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
|
2080
2095
|
background-color: #0069d6;
|
@@ -2131,7 +2146,6 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
|
|
2131
2146
|
background-color: #404040;
|
2132
2147
|
}
|
2133
2148
|
.subnav {
|
2134
|
-
position: relative;
|
2135
2149
|
background-color: #eeeeee;
|
2136
2150
|
background-image: -khtml-gradient(linear, left top, left bottom, from(#f5f5f5), to(#eeeeee));
|
2137
2151
|
background-image: -moz-linear-gradient(top, #f5f5f5, #eeeeee);
|
@@ -2142,12 +2156,13 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
|
|
2142
2156
|
background-image: linear-gradient(top, #f5f5f5, #eeeeee);
|
2143
2157
|
background-repeat: repeat-x;
|
2144
2158
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#eeeeee', GradientType=0);
|
2145
|
-
-webkit-
|
2146
|
-
-moz-
|
2147
|
-
|
2159
|
+
-webkit-box-shadow: inset 0 1px 0 #ffffff, 0 0 5px rgba(0, 0, 0, 0.5);
|
2160
|
+
-moz-box-shadow: inset 0 1px 0 #ffffff, 0 0 5px rgba(0, 0, 0, 0.5);
|
2161
|
+
box-shadow: inset 0 1px 0 #ffffff, 0 0 5px rgba(0, 0, 0, 0.5);
|
2148
2162
|
}
|
2149
2163
|
.subnav a {
|
2150
|
-
padding: 10px
|
2164
|
+
padding: 8px 10px;
|
2165
|
+
font-size: 12px;
|
2151
2166
|
color: #0069d6;
|
2152
2167
|
text-shadow: 0 1px 0 #fff;
|
2153
2168
|
border-left: 1px solid #f9f9f9;
|
@@ -2515,44 +2530,35 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
|
|
2515
2530
|
-moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
|
2516
2531
|
box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
|
2517
2532
|
}
|
2533
|
+
.hidden {
|
2534
|
+
display: none;
|
2535
|
+
visibility: hidden;
|
2536
|
+
}
|
2518
2537
|
@media (max-width: 480px) {
|
2519
|
-
.container {
|
2520
|
-
width: auto;
|
2521
|
-
padding: 0 15px;
|
2522
|
-
}
|
2523
|
-
.row {
|
2524
|
-
margin-left: 0;
|
2525
|
-
}
|
2526
|
-
[class*="span"] {
|
2527
|
-
float: none;
|
2528
|
-
display: block;
|
2529
|
-
width: auto;
|
2530
|
-
margin: 0;
|
2531
|
-
}
|
2532
2538
|
.modal {
|
2533
2539
|
width: auto;
|
2534
2540
|
margin: 0;
|
2535
2541
|
}
|
2536
|
-
.form
|
2542
|
+
.horizontal-form .control-group > label {
|
2537
2543
|
float: none;
|
2538
2544
|
width: auto;
|
2539
2545
|
padding-top: 0;
|
2540
2546
|
text-align: left;
|
2541
2547
|
}
|
2542
|
-
.form
|
2548
|
+
.horizontal-form .controls {
|
2543
2549
|
margin-left: 0;
|
2544
2550
|
}
|
2545
|
-
.form
|
2551
|
+
.horizontal-form .control-list {
|
2546
2552
|
padding-top: 0;
|
2547
2553
|
}
|
2548
|
-
.form
|
2554
|
+
.horizontal-form .form-actions {
|
2549
2555
|
padding-left: 0;
|
2550
2556
|
}
|
2551
2557
|
}
|
2552
|
-
@media (
|
2558
|
+
@media (max-width: 768px) {
|
2553
2559
|
.container {
|
2554
2560
|
width: auto;
|
2555
|
-
padding: 0
|
2561
|
+
padding: 0 20px;
|
2556
2562
|
}
|
2557
2563
|
.row {
|
2558
2564
|
margin-left: 0;
|
@@ -2563,6 +2569,55 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
|
|
2563
2569
|
width: auto;
|
2564
2570
|
margin: 0;
|
2565
2571
|
}
|
2572
|
+
.nav {
|
2573
|
+
position: absolute;
|
2574
|
+
top: 0;
|
2575
|
+
left: 0;
|
2576
|
+
width: 180px;
|
2577
|
+
padding-top: 40px;
|
2578
|
+
list-style: none;
|
2579
|
+
}
|
2580
|
+
.nav, .nav > li:last-child a {
|
2581
|
+
-webkit-border-radius: 0 0 4px 0;
|
2582
|
+
-moz-border-radius: 0 0 4px 0;
|
2583
|
+
border-radius: 0 0 4px 0;
|
2584
|
+
}
|
2585
|
+
.nav > li {
|
2586
|
+
float: none;
|
2587
|
+
display: none;
|
2588
|
+
}
|
2589
|
+
.nav > li > a {
|
2590
|
+
float: none;
|
2591
|
+
background-color: #222;
|
2592
|
+
}
|
2593
|
+
.nav > .active {
|
2594
|
+
display: block;
|
2595
|
+
position: absolute;
|
2596
|
+
top: 0;
|
2597
|
+
left: 0;
|
2598
|
+
}
|
2599
|
+
.navbar ul .active > a {
|
2600
|
+
background-color: transparent;
|
2601
|
+
}
|
2602
|
+
.nav > .active a:after {
|
2603
|
+
display: inline-block;
|
2604
|
+
width: 0;
|
2605
|
+
height: 0;
|
2606
|
+
margin-top: 8px;
|
2607
|
+
margin-left: 6px;
|
2608
|
+
text-indent: -99999px;
|
2609
|
+
vertical-align: top;
|
2610
|
+
border-left: 4px solid transparent;
|
2611
|
+
border-right: 4px solid transparent;
|
2612
|
+
border-top: 4px solid #ffffff;
|
2613
|
+
filter: alpha(opacity=100);
|
2614
|
+
-moz-opacity: 1;
|
2615
|
+
opacity: 1;
|
2616
|
+
content: "↓";
|
2617
|
+
}
|
2618
|
+
.nav > .active a:hover {
|
2619
|
+
background-color: rgba(255, 255, 255, 0.05);
|
2620
|
+
}
|
2566
2621
|
}
|
2567
2622
|
@media (min-width: 768px) and (max-width: 940px) {
|
2568
2623
|
.container {
|
@@ -2642,9 +2697,6 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
|
|
2642
2697
|
}
|
2643
2698
|
}
|
2644
2699
|
/*
|
2645
|
-
// LARGE DESKTOP & UP
|
2646
|
-
// ------------------
|
2647
|
-
|
2648
2700
|
@media (min-width: 1210px) {
|
2649
2701
|
|
2650
2702
|
// Reset grid variables
|
@@ -2697,4 +2749,4 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
|
|
2697
2749
|
.offset12 { .offset(12); }
|
2698
2750
|
|
2699
2751
|
}
|
2700
|
-
*/
|
2752
|
+
*/
|
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.beta9
|
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: 2011-12-
|
12
|
+
date: 2011-12-12 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.
|