bootstrapped 1.0.1 → 2.0.3
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/.gitmodules +3 -0
- data/README.rdoc +7 -1
- data/bootstrapped.gemspec +1 -1
- data/lib/bootstrapped/engine.rb +1 -1
- data/lib/bootstrapped/version.rb +2 -1
- data/vendor/assets/javascripts/bootstrap-alert.js +28 -29
- data/vendor/assets/javascripts/bootstrap-button.js +32 -34
- data/vendor/assets/javascripts/bootstrap-carousel.js +34 -19
- data/vendor/assets/javascripts/bootstrap-collapse.js +47 -26
- data/vendor/assets/javascripts/bootstrap-dropdown.js +18 -10
- data/vendor/assets/javascripts/bootstrap-modal.js +26 -18
- data/vendor/assets/javascripts/bootstrap-popover.js +13 -10
- data/vendor/assets/javascripts/bootstrap-scrollspy.js +43 -17
- data/vendor/assets/javascripts/bootstrap-tab.js +12 -7
- data/vendor/assets/javascripts/bootstrap-tooltip.js +40 -35
- data/vendor/assets/javascripts/bootstrap-transition.js +31 -21
- data/vendor/assets/javascripts/bootstrap-typeahead.js +30 -16
- data/vendor/assets/stylesheets/twitter/bootstrap/static/bootstrap-responsive.css +808 -0
- data/vendor/assets/stylesheets/twitter/bootstrap/static/bootstrap.css +2314 -850
- data/vendor/less/twitter/bootstrap/less/accordion.less +5 -0
- data/vendor/less/twitter/bootstrap/less/alerts.less +2 -14
- data/vendor/less/twitter/bootstrap/less/bootstrap.less +2 -2
- data/vendor/less/twitter/bootstrap/less/breadcrumbs.less +3 -1
- data/vendor/less/twitter/bootstrap/less/button-groups.less +78 -34
- data/vendor/less/twitter/bootstrap/less/buttons.less +53 -27
- data/vendor/less/twitter/bootstrap/less/carousel.less +0 -0
- data/vendor/less/twitter/bootstrap/less/close.less +12 -1
- data/vendor/less/twitter/bootstrap/less/code.less +18 -5
- data/vendor/less/twitter/bootstrap/less/component-animations.less +9 -7
- data/vendor/less/twitter/bootstrap/less/dropdowns.less +59 -47
- data/vendor/less/twitter/bootstrap/less/forms.less +167 -98
- data/vendor/less/twitter/bootstrap/less/grid.less +2 -5
- data/vendor/less/twitter/bootstrap/less/hero-unit.less +3 -1
- data/vendor/less/twitter/bootstrap/less/labels-badges.less +55 -0
- data/vendor/less/twitter/bootstrap/less/layouts.less +1 -1
- data/vendor/less/twitter/bootstrap/less/mixins.less +261 -167
- data/vendor/less/twitter/bootstrap/less/modals.less +22 -4
- data/vendor/less/twitter/bootstrap/less/navbar.less +147 -75
- data/vendor/less/twitter/bootstrap/less/navs.less +72 -53
- data/vendor/less/twitter/bootstrap/less/pager.less +6 -0
- data/vendor/less/twitter/bootstrap/less/pagination.less +1 -0
- data/vendor/less/twitter/bootstrap/less/popovers.less +0 -0
- data/vendor/less/twitter/bootstrap/less/progress-bars.less +27 -5
- data/vendor/less/twitter/bootstrap/less/reset.less +4 -4
- data/vendor/less/twitter/bootstrap/less/responsive-1200px-min.less +26 -0
- data/vendor/less/twitter/bootstrap/less/responsive-767px-max.less +149 -0
- data/vendor/less/twitter/bootstrap/less/responsive-768px-979px.less +17 -0
- data/vendor/less/twitter/bootstrap/less/responsive-navbar.less +146 -0
- data/vendor/less/twitter/bootstrap/less/responsive-utilities.less +41 -0
- data/vendor/less/twitter/bootstrap/less/responsive.less +14 -289
- data/vendor/less/twitter/bootstrap/less/scaffolding.less +4 -4
- data/vendor/less/twitter/bootstrap/less/sprites.less +47 -12
- data/vendor/less/twitter/bootstrap/less/tables.less +59 -22
- data/vendor/less/twitter/bootstrap/less/thumbnails.less +15 -3
- data/vendor/less/twitter/bootstrap/less/tooltip.less +0 -0
- data/vendor/less/twitter/bootstrap/less/type.less +30 -12
- data/vendor/less/twitter/bootstrap/less/utilities.less +0 -0
- data/vendor/less/twitter/bootstrap/less/variables.less +119 -13
- data/vendor/less/twitter/bootstrap/less/wells.less +10 -0
- metadata +30 -22
@@ -9,6 +9,7 @@
|
|
9
9
|
|
10
10
|
table {
|
11
11
|
max-width: 100%;
|
12
|
+
background-color: @tableBackground;
|
12
13
|
border-collapse: collapse;
|
13
14
|
border-spacing: 0;
|
14
15
|
}
|
@@ -25,23 +26,28 @@ table {
|
|
25
26
|
padding: 8px;
|
26
27
|
line-height: @baseLineHeight;
|
27
28
|
text-align: left;
|
28
|
-
|
29
|
+
vertical-align: top;
|
30
|
+
border-top: 1px solid @tableBorder;
|
29
31
|
}
|
30
32
|
th {
|
31
33
|
font-weight: bold;
|
32
|
-
vertical-align: bottom;
|
33
34
|
}
|
34
|
-
|
35
|
-
|
35
|
+
// Bottom align for column headings
|
36
|
+
thead th {
|
37
|
+
vertical-align: bottom;
|
36
38
|
}
|
37
39
|
// Remove top border from thead by default
|
38
|
-
thead:first-child
|
39
|
-
thead:first-child
|
40
|
+
caption + thead tr:first-child th,
|
41
|
+
caption + thead tr:first-child td,
|
42
|
+
colgroup + thead tr:first-child th,
|
43
|
+
colgroup + thead tr:first-child td,
|
44
|
+
thead:first-child tr:first-child th,
|
45
|
+
thead:first-child tr:first-child td {
|
40
46
|
border-top: 0;
|
41
47
|
}
|
42
48
|
// Account for multiple tbody instances
|
43
49
|
tbody + tbody {
|
44
|
-
border-top: 2px solid
|
50
|
+
border-top: 2px solid @tableBorder;
|
45
51
|
}
|
46
52
|
}
|
47
53
|
|
@@ -62,17 +68,22 @@ table {
|
|
62
68
|
// ----------------
|
63
69
|
|
64
70
|
.table-bordered {
|
65
|
-
border: 1px solid
|
71
|
+
border: 1px solid @tableBorder;
|
66
72
|
border-collapse: separate; // Done so we can round those corners!
|
67
73
|
*border-collapse: collapsed; // IE7 can't round corners anyway
|
74
|
+
border-left: 0;
|
68
75
|
.border-radius(4px);
|
69
|
-
th
|
70
|
-
td
|
71
|
-
|
72
|
-
td + th {
|
73
|
-
border-left: 1px solid #ddd;
|
76
|
+
th,
|
77
|
+
td {
|
78
|
+
border-left: 1px solid @tableBorder;
|
74
79
|
}
|
75
80
|
// Prevent a double border
|
81
|
+
caption + thead tr:first-child th,
|
82
|
+
caption + tbody tr:first-child th,
|
83
|
+
caption + tbody tr:first-child td,
|
84
|
+
colgroup + thead tr:first-child th,
|
85
|
+
colgroup + tbody tr:first-child th,
|
86
|
+
colgroup + tbody tr:first-child td,
|
76
87
|
thead:first-child tr:first-child th,
|
77
88
|
tbody:first-child tr:first-child th,
|
78
89
|
tbody:first-child tr:first-child td {
|
@@ -81,20 +92,29 @@ table {
|
|
81
92
|
// For first th or td in the first row in the first thead or tbody
|
82
93
|
thead:first-child tr:first-child th:first-child,
|
83
94
|
tbody:first-child tr:first-child td:first-child {
|
84
|
-
|
95
|
+
-webkit-border-top-left-radius: 4px;
|
96
|
+
border-top-left-radius: 4px;
|
97
|
+
-moz-border-radius-topleft: 4px;
|
85
98
|
}
|
86
99
|
thead:first-child tr:first-child th:last-child,
|
87
100
|
tbody:first-child tr:first-child td:last-child {
|
88
|
-
|
101
|
+
-webkit-border-top-right-radius: 4px;
|
102
|
+
border-top-right-radius: 4px;
|
103
|
+
-moz-border-radius-topright: 4px;
|
89
104
|
}
|
90
105
|
// For first th or td in the first row in the first thead or tbody
|
91
106
|
thead:last-child tr:last-child th:first-child,
|
92
107
|
tbody:last-child tr:last-child td:first-child {
|
93
108
|
.border-radius(0 0 0 4px);
|
109
|
+
-webkit-border-bottom-left-radius: 4px;
|
110
|
+
border-bottom-left-radius: 4px;
|
111
|
+
-moz-border-radius-bottomleft: 4px;
|
94
112
|
}
|
95
113
|
thead:last-child tr:last-child th:last-child,
|
96
114
|
tbody:last-child tr:last-child td:last-child {
|
97
|
-
|
115
|
+
-webkit-border-bottom-right-radius: 4px;
|
116
|
+
border-bottom-right-radius: 4px;
|
117
|
+
-moz-border-radius-bottomright: 4px;
|
98
118
|
}
|
99
119
|
}
|
100
120
|
|
@@ -107,22 +127,27 @@ table {
|
|
107
127
|
tbody {
|
108
128
|
tr:nth-child(odd) td,
|
109
129
|
tr:nth-child(odd) th {
|
110
|
-
background-color:
|
130
|
+
background-color: @tableBackgroundAccent;
|
111
131
|
}
|
112
132
|
}
|
113
133
|
}
|
114
134
|
|
115
135
|
|
136
|
+
// HOVER EFFECT
|
137
|
+
// ------------
|
138
|
+
// Placed here since it has to come after the potential zebra striping
|
139
|
+
.table {
|
140
|
+
tbody tr:hover td,
|
141
|
+
tbody tr:hover th {
|
142
|
+
background-color: @tableBackgroundHover;
|
143
|
+
}
|
144
|
+
}
|
145
|
+
|
116
146
|
|
117
147
|
// TABLE CELL SIZING
|
118
148
|
// -----------------
|
119
149
|
|
120
150
|
// Change the columns
|
121
|
-
.tableColumns(@columnSpan: 1) {
|
122
|
-
float: none;
|
123
|
-
width: ((@gridColumnWidth) * @columnSpan) + (@gridGutterWidth * (@columnSpan - 1)) - 16;
|
124
|
-
margin-left: 0;
|
125
|
-
}
|
126
151
|
table {
|
127
152
|
.span1 { .tableColumns(1); }
|
128
153
|
.span2 { .tableColumns(2); }
|
@@ -136,4 +161,16 @@ table {
|
|
136
161
|
.span10 { .tableColumns(10); }
|
137
162
|
.span11 { .tableColumns(11); }
|
138
163
|
.span12 { .tableColumns(12); }
|
164
|
+
.span13 { .tableColumns(13); }
|
165
|
+
.span14 { .tableColumns(14); }
|
166
|
+
.span15 { .tableColumns(15); }
|
167
|
+
.span16 { .tableColumns(16); }
|
168
|
+
.span17 { .tableColumns(17); }
|
169
|
+
.span18 { .tableColumns(18); }
|
170
|
+
.span19 { .tableColumns(19); }
|
171
|
+
.span20 { .tableColumns(20); }
|
172
|
+
.span21 { .tableColumns(21); }
|
173
|
+
.span22 { .tableColumns(22); }
|
174
|
+
.span23 { .tableColumns(23); }
|
175
|
+
.span24 { .tableColumns(24); }
|
139
176
|
}
|
@@ -1,15 +1,26 @@
|
|
1
1
|
// THUMBNAILS
|
2
2
|
// ----------
|
3
|
+
// Note: `.thumbnails` and `.thumbnails > li` are overriden in responsive files
|
3
4
|
|
5
|
+
// Make wrapper ul behave like the grid
|
4
6
|
.thumbnails {
|
5
|
-
margin-left:
|
7
|
+
margin-left: -@gridGutterWidth;
|
6
8
|
list-style: none;
|
7
9
|
.clearfix();
|
8
10
|
}
|
11
|
+
// Fluid rows have no left margin
|
12
|
+
.row-fluid .thumbnails {
|
13
|
+
margin-left: 0;
|
14
|
+
}
|
15
|
+
|
16
|
+
// Float li to make thumbnails appear in a row
|
9
17
|
.thumbnails > li {
|
10
|
-
float: left;
|
11
|
-
margin:
|
18
|
+
float: left; // Explicity set the float since we don't require .span* classes
|
19
|
+
margin-bottom: @baseLineHeight;
|
20
|
+
margin-left: @gridGutterWidth;
|
12
21
|
}
|
22
|
+
|
23
|
+
// The actual thumbnail (can be `a` or `div`)
|
13
24
|
.thumbnail {
|
14
25
|
display: block;
|
15
26
|
padding: 4px;
|
@@ -23,6 +34,7 @@ a.thumbnail:hover {
|
|
23
34
|
border-color: @linkColor;
|
24
35
|
.box-shadow(0 1px 4px rgba(0,105,214,.25));
|
25
36
|
}
|
37
|
+
|
26
38
|
// Images and captions
|
27
39
|
.thumbnail > img {
|
28
40
|
display: block;
|
File without changes
|
@@ -28,8 +28,9 @@ p {
|
|
28
28
|
|
29
29
|
h1, h2, h3, h4, h5, h6 {
|
30
30
|
margin: 0;
|
31
|
-
font-
|
32
|
-
|
31
|
+
font-family: @headingsFontFamily;
|
32
|
+
font-weight: @headingsFontWeight;
|
33
|
+
color: @headingsColor;
|
33
34
|
text-rendering: optimizelegibility; // Fix the character spacing for headings
|
34
35
|
small {
|
35
36
|
font-weight: normal;
|
@@ -51,8 +52,8 @@ h2 {
|
|
51
52
|
}
|
52
53
|
}
|
53
54
|
h3 {
|
54
|
-
line-height: @baseLineHeight * 1.5;
|
55
55
|
font-size: 18px;
|
56
|
+
line-height: @baseLineHeight * 1.5;
|
56
57
|
small {
|
57
58
|
font-size: 14px;
|
58
59
|
}
|
@@ -110,7 +111,8 @@ ol {
|
|
110
111
|
li {
|
111
112
|
line-height: @baseLineHeight;
|
112
113
|
}
|
113
|
-
ul.unstyled
|
114
|
+
ul.unstyled,
|
115
|
+
ol.unstyled {
|
114
116
|
margin-left: 0;
|
115
117
|
list-style: none;
|
116
118
|
}
|
@@ -125,10 +127,24 @@ dd {
|
|
125
127
|
}
|
126
128
|
dt {
|
127
129
|
font-weight: bold;
|
130
|
+
line-height: @baseLineHeight - 1; // fix jank Helvetica Neue font bug
|
128
131
|
}
|
129
132
|
dd {
|
130
133
|
margin-left: @baseLineHeight / 2;
|
131
134
|
}
|
135
|
+
// Horizontal layout (like forms)
|
136
|
+
.dl-horizontal {
|
137
|
+
dt {
|
138
|
+
float: left;
|
139
|
+
width: 120px;
|
140
|
+
clear: left;
|
141
|
+
text-align: right;
|
142
|
+
.text-overflow();
|
143
|
+
}
|
144
|
+
dd {
|
145
|
+
margin-left: 130px;
|
146
|
+
}
|
147
|
+
}
|
132
148
|
|
133
149
|
// MISC
|
134
150
|
// ----
|
@@ -137,7 +153,7 @@ dd {
|
|
137
153
|
hr {
|
138
154
|
margin: @baseLineHeight 0;
|
139
155
|
border: 0;
|
140
|
-
border-top: 1px solid
|
156
|
+
border-top: 1px solid @hrBorder;
|
141
157
|
border-bottom: 1px solid @white;
|
142
158
|
}
|
143
159
|
|
@@ -153,11 +169,13 @@ em {
|
|
153
169
|
}
|
154
170
|
|
155
171
|
// Abbreviations and acronyms
|
156
|
-
abbr {
|
172
|
+
abbr[title] {
|
173
|
+
cursor: help;
|
174
|
+
border-bottom: 1px dotted #ddd;
|
175
|
+
}
|
176
|
+
abbr.initialism {
|
157
177
|
font-size: 90%;
|
158
178
|
text-transform: uppercase;
|
159
|
-
border-bottom: 1px dotted #ddd;
|
160
|
-
cursor: help;
|
161
179
|
}
|
162
180
|
|
163
181
|
// Blockquotes
|
@@ -181,10 +199,10 @@ blockquote {
|
|
181
199
|
// Float right with text-align: right
|
182
200
|
&.pull-right {
|
183
201
|
float: right;
|
184
|
-
padding-left: 0;
|
185
202
|
padding-right: 15px;
|
186
|
-
|
203
|
+
padding-left: 0;
|
187
204
|
border-right: 5px solid @grayLighter;
|
205
|
+
border-left: 0;
|
188
206
|
p,
|
189
207
|
small {
|
190
208
|
text-align: right;
|
@@ -195,7 +213,7 @@ blockquote {
|
|
195
213
|
// Quotes
|
196
214
|
q:before,
|
197
215
|
q:after,
|
198
|
-
blockquote:before,
|
216
|
+
blockquote:before,
|
199
217
|
blockquote:after {
|
200
218
|
content: "";
|
201
219
|
}
|
@@ -204,8 +222,8 @@ blockquote:after {
|
|
204
222
|
address {
|
205
223
|
display: block;
|
206
224
|
margin-bottom: @baseLineHeight;
|
207
|
-
line-height: @baseLineHeight;
|
208
225
|
font-style: normal;
|
226
|
+
line-height: @baseLineHeight;
|
209
227
|
}
|
210
228
|
|
211
229
|
// Misc
|
File without changes
|
@@ -7,11 +7,9 @@
|
|
7
7
|
// GLOBAL VALUES
|
8
8
|
// --------------------------------------------------
|
9
9
|
|
10
|
-
// Links
|
11
|
-
@linkColor: #08c;
|
12
|
-
@linkColorHover: darken(@linkColor, 15%);
|
13
10
|
|
14
11
|
// Grays
|
12
|
+
// -------------------------
|
15
13
|
@black: #000;
|
16
14
|
@grayDarker: #222;
|
17
15
|
@grayDark: #333;
|
@@ -20,7 +18,9 @@
|
|
20
18
|
@grayLighter: #eee;
|
21
19
|
@white: #fff;
|
22
20
|
|
21
|
+
|
23
22
|
// Accent colors
|
23
|
+
// -------------------------
|
24
24
|
@blue: #049cdb;
|
25
25
|
@blueDark: #0064cd;
|
26
26
|
@green: #46a546;
|
@@ -30,14 +30,84 @@
|
|
30
30
|
@pink: #c3325f;
|
31
31
|
@purple: #7a43b6;
|
32
32
|
|
33
|
+
|
34
|
+
// Scaffolding
|
35
|
+
// -------------------------
|
36
|
+
@bodyBackground: @white;
|
37
|
+
@textColor: @grayDark;
|
38
|
+
|
39
|
+
|
40
|
+
// Links
|
41
|
+
// -------------------------
|
42
|
+
@linkColor: #08c;
|
43
|
+
@linkColorHover: darken(@linkColor, 15%);
|
44
|
+
|
45
|
+
|
33
46
|
// Typography
|
47
|
+
// -------------------------
|
48
|
+
@sansFontFamily: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
49
|
+
@serifFontFamily: Georgia, "Times New Roman", Times, serif;
|
50
|
+
@monoFontFamily: Menlo, Monaco, Consolas, "Courier New", monospace;
|
51
|
+
|
34
52
|
@baseFontSize: 13px;
|
35
|
-
@baseFontFamily:
|
53
|
+
@baseFontFamily: @sansFontFamily;
|
36
54
|
@baseLineHeight: 18px;
|
37
|
-
@
|
55
|
+
@altFontFamily: @serifFontFamily;
|
56
|
+
|
57
|
+
@headingsFontFamily: inherit; // empty to use BS default, @baseFontFamily
|
58
|
+
@headingsFontWeight: bold; // instead of browser default, bold
|
59
|
+
@headingsColor: inherit; // empty to use BS default, @textColor
|
60
|
+
|
61
|
+
|
62
|
+
// Tables
|
63
|
+
// -------------------------
|
64
|
+
@tableBackground: transparent; // overall background-color
|
65
|
+
@tableBackgroundAccent: #f9f9f9; // for striping
|
66
|
+
@tableBackgroundHover: #f5f5f5; // for hover
|
67
|
+
@tableBorder: #ddd; // table and cell border
|
68
|
+
|
38
69
|
|
39
70
|
// Buttons
|
40
|
-
|
71
|
+
// -------------------------
|
72
|
+
@btnBackground: @white;
|
73
|
+
@btnBackgroundHighlight: darken(@white, 10%);
|
74
|
+
@btnBorder: #ccc;
|
75
|
+
|
76
|
+
@btnPrimaryBackground: @linkColor;
|
77
|
+
@btnPrimaryBackgroundHighlight: spin(@btnPrimaryBackground, 15%);
|
78
|
+
|
79
|
+
@btnInfoBackground: #5bc0de;
|
80
|
+
@btnInfoBackgroundHighlight: #2f96b4;
|
81
|
+
|
82
|
+
@btnSuccessBackground: #62c462;
|
83
|
+
@btnSuccessBackgroundHighlight: #51a351;
|
84
|
+
|
85
|
+
@btnWarningBackground: lighten(@orange, 15%);
|
86
|
+
@btnWarningBackgroundHighlight: @orange;
|
87
|
+
|
88
|
+
@btnDangerBackground: #ee5f5b;
|
89
|
+
@btnDangerBackgroundHighlight: #bd362f;
|
90
|
+
|
91
|
+
@btnInverseBackground: @gray;
|
92
|
+
@btnInverseBackgroundHighlight: @grayDarker;
|
93
|
+
|
94
|
+
|
95
|
+
// Forms
|
96
|
+
// -------------------------
|
97
|
+
@inputBackground: @white;
|
98
|
+
@inputBorder: #ccc;
|
99
|
+
@inputBorderRadius: 3px;
|
100
|
+
@inputDisabledBackground: @grayLighter;
|
101
|
+
@formActionsBackground: #f5f5f5;
|
102
|
+
|
103
|
+
// Dropdowns
|
104
|
+
// -------------------------
|
105
|
+
@dropdownBackground: @white;
|
106
|
+
@dropdownBorder: rgba(0,0,0,.2);
|
107
|
+
@dropdownLinkColor: @grayDark;
|
108
|
+
@dropdownLinkColorHover: @white;
|
109
|
+
@dropdownLinkBackgroundHover: @linkColor;
|
110
|
+
|
41
111
|
|
42
112
|
|
43
113
|
|
@@ -45,19 +115,35 @@
|
|
45
115
|
// --------------------------------------------------
|
46
116
|
|
47
117
|
// Z-index master list
|
118
|
+
// -------------------------
|
48
119
|
// Used for a bird's eye view of components dependent on the z-axis
|
49
120
|
// Try to avoid customizing these :)
|
50
|
-
@zindexDropdown:
|
51
|
-
@zindexPopover:
|
52
|
-
@zindexTooltip:
|
53
|
-
@zindexFixedNavbar:
|
54
|
-
@zindexModalBackdrop:
|
55
|
-
@zindexModal:
|
121
|
+
@zindexDropdown: 1000;
|
122
|
+
@zindexPopover: 1010;
|
123
|
+
@zindexTooltip: 1020;
|
124
|
+
@zindexFixedNavbar: 1030;
|
125
|
+
@zindexModalBackdrop: 1040;
|
126
|
+
@zindexModal: 1050;
|
127
|
+
|
128
|
+
|
129
|
+
// Sprite icons path
|
130
|
+
// -------------------------
|
131
|
+
@iconSpritePath: "../img/glyphicons-halflings.png";
|
132
|
+
@iconWhiteSpritePath: "../img/glyphicons-halflings-white.png";
|
133
|
+
|
56
134
|
|
57
135
|
// Input placeholder text color
|
58
|
-
|
136
|
+
// -------------------------
|
137
|
+
@placeholderText: @grayLight;
|
138
|
+
|
139
|
+
|
140
|
+
// Hr border color
|
141
|
+
// -------------------------
|
142
|
+
@hrBorder: @grayLighter;
|
143
|
+
|
59
144
|
|
60
145
|
// Navbar
|
146
|
+
// -------------------------
|
61
147
|
@navbarHeight: 40px;
|
62
148
|
@navbarBackground: @grayDarker;
|
63
149
|
@navbarBackgroundHighlight: @grayDark;
|
@@ -65,8 +151,26 @@
|
|
65
151
|
@navbarText: @grayLight;
|
66
152
|
@navbarLinkColor: @grayLight;
|
67
153
|
@navbarLinkColorHover: @white;
|
154
|
+
@navbarLinkColorActive: @navbarLinkColorHover;
|
155
|
+
@navbarLinkBackgroundHover: transparent;
|
156
|
+
@navbarLinkBackgroundActive: @navbarBackground;
|
157
|
+
|
158
|
+
@navbarSearchBackground: lighten(@navbarBackground, 25%);
|
159
|
+
@navbarSearchBackgroundFocus: @white;
|
160
|
+
@navbarSearchBorder: darken(@navbarSearchBackground, 30%);
|
161
|
+
@navbarSearchPlaceholderColor: #ccc;
|
162
|
+
@navbarBrandColor: @navbarLinkColor;
|
163
|
+
|
164
|
+
|
165
|
+
// Hero unit
|
166
|
+
// -------------------------
|
167
|
+
@heroUnitBackground: @grayLighter;
|
168
|
+
@heroUnitHeadingColor: inherit;
|
169
|
+
@heroUnitLeadColor: inherit;
|
170
|
+
|
68
171
|
|
69
172
|
// Form states and alerts
|
173
|
+
// -------------------------
|
70
174
|
@warningText: #c09853;
|
71
175
|
@warningBackground: #fcf8e3;
|
72
176
|
@warningBorder: darken(spin(@warningBackground, -10), 3%);
|
@@ -89,11 +193,13 @@
|
|
89
193
|
// --------------------------------------------------
|
90
194
|
|
91
195
|
// Default 940px grid
|
196
|
+
// -------------------------
|
92
197
|
@gridColumns: 12;
|
93
198
|
@gridColumnWidth: 60px;
|
94
199
|
@gridGutterWidth: 20px;
|
95
200
|
@gridRowWidth: (@gridColumns * @gridColumnWidth) + (@gridGutterWidth * (@gridColumns - 1));
|
96
201
|
|
97
202
|
// Fluid grid
|
203
|
+
// -------------------------
|
98
204
|
@fluidGridColumnWidth: 6.382978723%;
|
99
205
|
@fluidGridGutterWidth: 2.127659574%;
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bootstrapped
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,11 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
12
|
+
date: 2012-05-21 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: railties
|
16
|
-
requirement: &
|
16
|
+
requirement: &70333554274740 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
@@ -21,10 +21,10 @@ dependencies:
|
|
21
21
|
version: '3.1'
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *70333554274740
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: actionpack
|
27
|
-
requirement: &
|
27
|
+
requirement: &70333554273920 !ruby/object:Gem::Requirement
|
28
28
|
none: false
|
29
29
|
requirements:
|
30
30
|
- - ! '>='
|
@@ -32,10 +32,10 @@ dependencies:
|
|
32
32
|
version: '3.1'
|
33
33
|
type: :runtime
|
34
34
|
prerelease: false
|
35
|
-
version_requirements: *
|
35
|
+
version_requirements: *70333554273920
|
36
36
|
- !ruby/object:Gem::Dependency
|
37
37
|
name: less-rails
|
38
|
-
requirement: &
|
38
|
+
requirement: &70333554273080 !ruby/object:Gem::Requirement
|
39
39
|
none: false
|
40
40
|
requirements:
|
41
41
|
- - ~>
|
@@ -43,10 +43,10 @@ dependencies:
|
|
43
43
|
version: 2.1.6
|
44
44
|
type: :runtime
|
45
45
|
prerelease: false
|
46
|
-
version_requirements: *
|
46
|
+
version_requirements: *70333554273080
|
47
47
|
- !ruby/object:Gem::Dependency
|
48
48
|
name: rails
|
49
|
-
requirement: &
|
49
|
+
requirement: &70333554288220 !ruby/object:Gem::Requirement
|
50
50
|
none: false
|
51
51
|
requirements:
|
52
52
|
- - ! '>='
|
@@ -54,10 +54,10 @@ dependencies:
|
|
54
54
|
version: '3.1'
|
55
55
|
type: :development
|
56
56
|
prerelease: false
|
57
|
-
version_requirements: *
|
57
|
+
version_requirements: *70333554288220
|
58
58
|
- !ruby/object:Gem::Dependency
|
59
59
|
name: rspec-rails
|
60
|
-
requirement: &
|
60
|
+
requirement: &70333554287480 !ruby/object:Gem::Requirement
|
61
61
|
none: false
|
62
62
|
requirements:
|
63
63
|
- - ~>
|
@@ -65,10 +65,10 @@ dependencies:
|
|
65
65
|
version: 2.6.1
|
66
66
|
type: :development
|
67
67
|
prerelease: false
|
68
|
-
version_requirements: *
|
68
|
+
version_requirements: *70333554287480
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: mocha
|
71
|
-
requirement: &
|
71
|
+
requirement: &70333554285560 !ruby/object:Gem::Requirement
|
72
72
|
none: false
|
73
73
|
requirements:
|
74
74
|
- - ~>
|
@@ -76,10 +76,10 @@ dependencies:
|
|
76
76
|
version: 0.9.12
|
77
77
|
type: :development
|
78
78
|
prerelease: false
|
79
|
-
version_requirements: *
|
79
|
+
version_requirements: *70333554285560
|
80
80
|
- !ruby/object:Gem::Dependency
|
81
81
|
name: cucumber
|
82
|
-
requirement: &
|
82
|
+
requirement: &70333554284900 !ruby/object:Gem::Requirement
|
83
83
|
none: false
|
84
84
|
requirements:
|
85
85
|
- - ~>
|
@@ -87,10 +87,10 @@ dependencies:
|
|
87
87
|
version: 1.0.6
|
88
88
|
type: :development
|
89
89
|
prerelease: false
|
90
|
-
version_requirements: *
|
90
|
+
version_requirements: *70333554284900
|
91
91
|
- !ruby/object:Gem::Dependency
|
92
92
|
name: bundler
|
93
|
-
requirement: &
|
93
|
+
requirement: &70333554284100 !ruby/object:Gem::Requirement
|
94
94
|
none: false
|
95
95
|
requirements:
|
96
96
|
- - ~>
|
@@ -98,10 +98,10 @@ dependencies:
|
|
98
98
|
version: 1.0.0
|
99
99
|
type: :development
|
100
100
|
prerelease: false
|
101
|
-
version_requirements: *
|
101
|
+
version_requirements: *70333554284100
|
102
102
|
- !ruby/object:Gem::Dependency
|
103
103
|
name: rails
|
104
|
-
requirement: &
|
104
|
+
requirement: &70333554283320 !ruby/object:Gem::Requirement
|
105
105
|
none: false
|
106
106
|
requirements:
|
107
107
|
- - ~>
|
@@ -109,10 +109,10 @@ dependencies:
|
|
109
109
|
version: '3.1'
|
110
110
|
type: :development
|
111
111
|
prerelease: false
|
112
|
-
version_requirements: *
|
112
|
+
version_requirements: *70333554283320
|
113
113
|
- !ruby/object:Gem::Dependency
|
114
114
|
name: sqlite3-ruby
|
115
|
-
requirement: &
|
115
|
+
requirement: &70333554282760 !ruby/object:Gem::Requirement
|
116
116
|
none: false
|
117
117
|
requirements:
|
118
118
|
- - ~>
|
@@ -120,7 +120,7 @@ dependencies:
|
|
120
120
|
version: 1.3.1
|
121
121
|
type: :development
|
122
122
|
prerelease: false
|
123
|
-
version_requirements: *
|
123
|
+
version_requirements: *70333554282760
|
124
124
|
description: Twitters Bootstrap CSS and JS files all in one nice little gem
|
125
125
|
email:
|
126
126
|
- nwwatson@gmail.com
|
@@ -129,6 +129,7 @@ extensions: []
|
|
129
129
|
extra_rdoc_files: []
|
130
130
|
files:
|
131
131
|
- .gitignore
|
132
|
+
- .gitmodules
|
132
133
|
- Gemfile
|
133
134
|
- README.rdoc
|
134
135
|
- Rakefile
|
@@ -214,6 +215,7 @@ files:
|
|
214
215
|
- vendor/assets/javascripts/bootstrap-transition.js
|
215
216
|
- vendor/assets/javascripts/bootstrap-typeahead.js
|
216
217
|
- vendor/assets/javascripts/modernizr.js
|
218
|
+
- vendor/assets/stylesheets/twitter/bootstrap/static/bootstrap-responsive.css
|
217
219
|
- vendor/assets/stylesheets/twitter/bootstrap/static/bootstrap.css
|
218
220
|
- vendor/less/twitter/bootstrap/less/accordion.less
|
219
221
|
- vendor/less/twitter/bootstrap/less/alerts.less
|
@@ -230,6 +232,7 @@ files:
|
|
230
232
|
- vendor/less/twitter/bootstrap/less/forms.less
|
231
233
|
- vendor/less/twitter/bootstrap/less/grid.less
|
232
234
|
- vendor/less/twitter/bootstrap/less/hero-unit.less
|
235
|
+
- vendor/less/twitter/bootstrap/less/labels-badges.less
|
233
236
|
- vendor/less/twitter/bootstrap/less/labels.less
|
234
237
|
- vendor/less/twitter/bootstrap/less/layouts.less
|
235
238
|
- vendor/less/twitter/bootstrap/less/mixins.less
|
@@ -241,6 +244,11 @@ files:
|
|
241
244
|
- vendor/less/twitter/bootstrap/less/popovers.less
|
242
245
|
- vendor/less/twitter/bootstrap/less/progress-bars.less
|
243
246
|
- vendor/less/twitter/bootstrap/less/reset.less
|
247
|
+
- vendor/less/twitter/bootstrap/less/responsive-1200px-min.less
|
248
|
+
- vendor/less/twitter/bootstrap/less/responsive-767px-max.less
|
249
|
+
- vendor/less/twitter/bootstrap/less/responsive-768px-979px.less
|
250
|
+
- vendor/less/twitter/bootstrap/less/responsive-navbar.less
|
251
|
+
- vendor/less/twitter/bootstrap/less/responsive-utilities.less
|
244
252
|
- vendor/less/twitter/bootstrap/less/responsive.less
|
245
253
|
- vendor/less/twitter/bootstrap/less/scaffolding.less
|
246
254
|
- vendor/less/twitter/bootstrap/less/sprites.less
|