anjlab-bootstrap-rails 3.0.0.0.alpha1 → 3.0.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +14 -27
- data/Rakefile +11 -35
- data/{vendor → app}/assets/javascripts/twitter/bootstrap.js +6 -6
- data/{vendor → app}/assets/javascripts/twitter/bootstrap/affix.js +9 -3
- data/{vendor → app}/assets/javascripts/twitter/bootstrap/alert.js +4 -2
- data/{vendor → app}/assets/javascripts/twitter/bootstrap/button.js +6 -4
- data/{vendor → app}/assets/javascripts/twitter/bootstrap/carousel.js +22 -12
- data/{vendor → app}/assets/javascripts/twitter/bootstrap/collapse.js +69 -43
- data/{vendor → app}/assets/javascripts/twitter/bootstrap/dropdown.js +22 -13
- data/{vendor → app}/assets/javascripts/twitter/bootstrap/modal.js +37 -38
- data/{vendor → app}/assets/javascripts/twitter/bootstrap/popover.js +11 -5
- data/{vendor → app}/assets/javascripts/twitter/bootstrap/scrollspy.js +6 -4
- data/{vendor → app}/assets/javascripts/twitter/bootstrap/tab.js +4 -2
- data/{vendor → app}/assets/javascripts/twitter/bootstrap/tooltip.js +49 -38
- data/{vendor → app}/assets/javascripts/twitter/bootstrap/transition.js +10 -1
- data/{vendor → app}/assets/stylesheets/twitter/bootstrap.scss +0 -0
- data/{vendor → app}/assets/stylesheets/twitter/bootstrap/_accordion.scss +7 -10
- data/{vendor → app}/assets/stylesheets/twitter/bootstrap/_alerts.scss +11 -34
- data/{vendor → app}/assets/stylesheets/twitter/bootstrap/_badges.scss +8 -15
- data/{vendor → app}/assets/stylesheets/twitter/bootstrap/_bootstrap.scss +0 -1
- data/app/assets/stylesheets/twitter/bootstrap/_breadcrumbs.scss +23 -0
- data/{vendor → app}/assets/stylesheets/twitter/bootstrap/_button-groups.scss +23 -22
- data/{vendor → app}/assets/stylesheets/twitter/bootstrap/_buttons.scss +21 -24
- data/{vendor → app}/assets/stylesheets/twitter/bootstrap/_carousel.scss +46 -32
- data/{vendor → app}/assets/stylesheets/twitter/bootstrap/_close.scss +3 -3
- data/{vendor → app}/assets/stylesheets/twitter/bootstrap/_code.scss +6 -12
- data/{vendor → app}/assets/stylesheets/twitter/bootstrap/_component-animations.scss +10 -4
- data/{vendor → app}/assets/stylesheets/twitter/bootstrap/_dropdowns.scss +46 -101
- data/{vendor → app}/assets/stylesheets/twitter/bootstrap/_forms.scss +139 -179
- data/app/assets/stylesheets/twitter/bootstrap/_grid.scss +155 -0
- data/{vendor → app}/assets/stylesheets/twitter/bootstrap/_jumbotron.scss +1 -4
- data/{vendor → app}/assets/stylesheets/twitter/bootstrap/_labels.scss +7 -31
- data/app/assets/stylesheets/twitter/bootstrap/_list-group.scss +89 -0
- data/{vendor → app}/assets/stylesheets/twitter/bootstrap/_media.scss +8 -6
- data/{vendor → app}/assets/stylesheets/twitter/bootstrap/_mixins.scss +152 -131
- data/{vendor → app}/assets/stylesheets/twitter/bootstrap/_modals.scss +11 -12
- data/{vendor → app}/assets/stylesheets/twitter/bootstrap/_navbar.scss +90 -66
- data/{vendor → app}/assets/stylesheets/twitter/bootstrap/_navs.scss +56 -68
- data/{vendor → app}/assets/stylesheets/twitter/bootstrap/_normalize.scss +0 -0
- data/{vendor → app}/assets/stylesheets/twitter/bootstrap/_pager.scss +4 -3
- data/app/assets/stylesheets/twitter/bootstrap/_pagination.scss +108 -0
- data/{vendor → app}/assets/stylesheets/twitter/bootstrap/_panels.scss +8 -2
- data/{vendor → app}/assets/stylesheets/twitter/bootstrap/_popovers.scss +22 -20
- data/{vendor → app}/assets/stylesheets/twitter/bootstrap/_print.scss +26 -0
- data/{vendor → app}/assets/stylesheets/twitter/bootstrap/_progress-bars.scss +5 -18
- data/{vendor → app}/assets/stylesheets/twitter/bootstrap/_responsive-utilities.scss +25 -25
- data/{vendor → app}/assets/stylesheets/twitter/bootstrap/_scaffolding.scss +24 -8
- data/app/assets/stylesheets/twitter/bootstrap/_tables.scss +211 -0
- data/{vendor → app}/assets/stylesheets/twitter/bootstrap/_thumbnails.scss +2 -3
- data/{vendor → app}/assets/stylesheets/twitter/bootstrap/_tooltip.scss +26 -2
- data/{vendor → app}/assets/stylesheets/twitter/bootstrap/_type.scss +31 -49
- data/{vendor → app}/assets/stylesheets/twitter/bootstrap/_utilities.scss +0 -0
- data/{vendor → app}/assets/stylesheets/twitter/bootstrap/_variables.scss +201 -54
- data/{vendor → app}/assets/stylesheets/twitter/bootstrap/_wells.scss +0 -0
- data/bootstrap-rails.gemspec +0 -1
- data/lib/bootstrap-rails/version.rb +1 -1
- metadata +54 -60
- data/vendor/assets/fonts/twitter/glyphiconshalflings-regular.eot +0 -0
- data/vendor/assets/fonts/twitter/glyphiconshalflings-regular.otf +0 -0
- data/vendor/assets/fonts/twitter/glyphiconshalflings-regular.svg +0 -175
- data/vendor/assets/fonts/twitter/glyphiconshalflings-regular.ttf +0 -0
- data/vendor/assets/fonts/twitter/glyphiconshalflings-regular.woff +0 -0
- data/vendor/assets/stylesheets/twitter/bootstrap/_breadcrumbs.scss +0 -28
- data/vendor/assets/stylesheets/twitter/bootstrap/_glyphicons.scss +0 -200
- data/vendor/assets/stylesheets/twitter/bootstrap/_grid.scss +0 -65
- data/vendor/assets/stylesheets/twitter/bootstrap/_list-group.scss +0 -96
- data/vendor/assets/stylesheets/twitter/bootstrap/_pagination.scss +0 -87
- data/vendor/assets/stylesheets/twitter/bootstrap/_tables.scss +0 -242
File without changes
|
@@ -2,10 +2,52 @@
|
|
2
2
|
// Variables
|
3
3
|
// --------------------------------------------------
|
4
4
|
|
5
|
+
// Media queries breakpoints
|
6
|
+
// --------------------------------------------------
|
7
|
+
|
8
|
+
// Tiny screen / phone
|
9
|
+
$screen-tiny: 480px !default;
|
10
|
+
$screen-phone: $screen-tiny !default;
|
11
|
+
|
12
|
+
// Small screen / tablet
|
13
|
+
$screen-small: 768px !default;
|
14
|
+
$screen-tablet: $screen-small !default;
|
15
|
+
|
16
|
+
// Medium screen / desktop
|
17
|
+
$screen-medium: 992px !default;
|
18
|
+
$screen-desktop: $screen-medium !default;
|
19
|
+
|
20
|
+
// So media queries don't overlap when required, provide a maximum
|
21
|
+
$screen-small-max: ($screen-medium - 1) !default;
|
22
|
+
$screen-tablet-max: $screen-small-max !default;
|
23
|
+
|
24
|
+
// Large screen / wide desktop
|
25
|
+
$screen-large: 1200px !default;
|
26
|
+
$screen-large-desktop: $screen-large !default;
|
27
|
+
|
28
|
+
|
29
|
+
// Container sizes
|
30
|
+
// --------------------------------------------------
|
31
|
+
|
32
|
+
// Small screen / tablet
|
33
|
+
$container-tablet: 728px !default;
|
34
|
+
|
35
|
+
// Medium screen / desktop
|
36
|
+
$container-desktop: 940px !default;
|
37
|
+
|
38
|
+
// Large screen / wide desktop
|
39
|
+
$container-large-desktop: 1170px !default;
|
40
|
+
|
5
41
|
|
6
|
-
//
|
42
|
+
// Grid system
|
7
43
|
// --------------------------------------------------
|
8
44
|
|
45
|
+
// Number of columns in the grid system
|
46
|
+
$grid-columns: 12 !default;
|
47
|
+
// Padding, to be divided by two and applied to the left and right of all columns
|
48
|
+
$grid-gutter-width: 30px !default;
|
49
|
+
// Point at which the navbar stops collapsing
|
50
|
+
$grid-float-breakpoint: $screen-tablet !default;
|
9
51
|
|
10
52
|
// Grays
|
11
53
|
// -------------------------
|
@@ -48,11 +90,11 @@ $font-family-base: $font-family-sans-serif !default;
|
|
48
90
|
$font-size-base: 14px !default;
|
49
91
|
$font-size-large: ceil($font-size-base * 1.25) !default; // ~18px
|
50
92
|
$font-size-small: ceil($font-size-base * 0.85) !default; // ~12px
|
51
|
-
$font-size-mini: ceil($font-size-base * 0.75) !default; // ~11px
|
52
93
|
|
53
94
|
$line-height-base: 1.428571429 !default; // 20/14
|
54
95
|
$line-height-computed: floor($font-size-base * $line-height-base) !default; // ~20px
|
55
96
|
|
97
|
+
$headings-font-family: $font-family-base !default;
|
56
98
|
$headings-font-weight: 500 !default;
|
57
99
|
$headings-line-height: 1.1 !default;
|
58
100
|
|
@@ -80,9 +122,13 @@ $component-active-bg: $brand-primary !default;
|
|
80
122
|
// Tables
|
81
123
|
// -------------------------
|
82
124
|
|
125
|
+
$table-cell-padding: 8px !default;
|
126
|
+
$table-condensed-cell-padding: 5px !default;
|
127
|
+
|
83
128
|
$table-bg: transparent !default; // overall background-color
|
84
129
|
$table-bg-accent: #f9f9f9 !default; // for striping
|
85
|
-
$table-bg-hover: #f5f5f5 !default;
|
130
|
+
$table-bg-hover: #f5f5f5 !default;
|
131
|
+
$table-bg-active: $table-bg-hover !default;
|
86
132
|
|
87
133
|
$table-border-color: #ddd !default; // table and cell border
|
88
134
|
|
@@ -91,7 +137,7 @@ $table-border-color: #ddd !default; // table and cell border
|
|
91
137
|
// -------------------------
|
92
138
|
|
93
139
|
$btn-default-color: #fff !default;
|
94
|
-
$btn-default-bg: #
|
140
|
+
$btn-default-bg: #474949 !default;
|
95
141
|
$btn-default-border: $btn-default-bg !default;
|
96
142
|
|
97
143
|
$btn-primary-color: $btn-default-color !default;
|
@@ -114,6 +160,7 @@ $btn-info-color: $btn-default-color !default;
|
|
114
160
|
$btn-info-bg: $brand-info !default;
|
115
161
|
$btn-info-border: $btn-info-bg !default;
|
116
162
|
|
163
|
+
$btn-hover-color: $btn-default-color !default;
|
117
164
|
|
118
165
|
|
119
166
|
// Forms
|
@@ -127,11 +174,13 @@ $input-border-radius: $border-radius-base !default;
|
|
127
174
|
|
128
175
|
$input-color-placeholder: $gray-light !default;
|
129
176
|
|
130
|
-
$input-height-base: ($line-height-computed + ($padding-base-vertical * 2))
|
131
|
-
$input-height-large: ($line-height-
|
132
|
-
$input-height-small: ($line-height-
|
177
|
+
$input-height-base: ($line-height-computed + ($padding-base-vertical * 2) + 2);
|
178
|
+
$input-height-large: (ceil($font-size-large * $line-height-base) + ($padding-large-vertical * 2) + 2);
|
179
|
+
$input-height-small: (ceil($font-size-small * $line-height-base) + ($padding-small-vertical * 2) + 2);
|
133
180
|
|
134
|
-
$
|
181
|
+
$legend-border-color: #e5e5e5 !default;
|
182
|
+
|
183
|
+
$input-group-addon-border-color: $input-border !default;
|
135
184
|
|
136
185
|
|
137
186
|
// Dropdowns
|
@@ -139,8 +188,8 @@ $form-actions-bg: #f5f5f5 !default;
|
|
139
188
|
|
140
189
|
$dropdown-bg: #fff !default;
|
141
190
|
$dropdown-border: rgba(0,0,0,.15) !default;
|
142
|
-
$dropdown-
|
143
|
-
$dropdown-divider-
|
191
|
+
$dropdown-fallback-border: #ccc !default;
|
192
|
+
$dropdown-divider-bg: #e5e5e5 !default;
|
144
193
|
|
145
194
|
$dropdown-link-active-color: #fff !default;
|
146
195
|
$dropdown-link-active-bg: $component-active-bg !default;
|
@@ -149,6 +198,8 @@ $dropdown-link-color: $gray-dark !default;
|
|
149
198
|
$dropdown-link-hover-color: #fff !default;
|
150
199
|
$dropdown-link-hover-bg: $dropdown-link-active-bg !default;
|
151
200
|
|
201
|
+
$dropdown-caret-color: #000 !default;
|
202
|
+
|
152
203
|
|
153
204
|
// COMPONENT VARIABLES
|
154
205
|
// --------------------------------------------------
|
@@ -167,10 +218,6 @@ $zindex-modal-background: 1040 !default;
|
|
167
218
|
$zindex-modal: 1050 !default;
|
168
219
|
|
169
220
|
|
170
|
-
// Glyphicons font path
|
171
|
-
// -------------------------
|
172
|
-
$glyphicons-font-path: "twitter" !default;
|
173
|
-
|
174
221
|
|
175
222
|
// Navbar
|
176
223
|
// -------------------------
|
@@ -179,6 +226,8 @@ $glyphicons-font-path: "twitter" !default;
|
|
179
226
|
$navbar-height: 50px !default;
|
180
227
|
$navbar-color: #777 !default;
|
181
228
|
$navbar-bg: #eee !default;
|
229
|
+
$navbar-padding-horizontal: floor($grid-gutter-width / 2) !default; // ~15px
|
230
|
+
$navbar-padding-vertical: (($navbar-height - $line-height-computed) / 2) !default;
|
182
231
|
|
183
232
|
// Navbar links
|
184
233
|
$navbar-link-color: #777 !default;
|
@@ -194,8 +243,15 @@ $navbar-brand-color: $navbar-link-color !default;
|
|
194
243
|
$navbar-brand-hover-color: darken($navbar-link-color, 10%) !default;
|
195
244
|
$navbar-brand-hover-bg: transparent !default;
|
196
245
|
|
197
|
-
//
|
198
|
-
$navbar-
|
246
|
+
// Navbar toggle
|
247
|
+
$navbar-toggle-hover-bg: #ddd !default;
|
248
|
+
$navbar-toggle-icon-bar-bg: #ccc !default;
|
249
|
+
$navbar-toggle-border-color: #ddd !default;
|
250
|
+
|
251
|
+
|
252
|
+
//
|
253
|
+
// Reset inverted navbar basics
|
254
|
+
$navbar-inverse-color: $gray-light !default;
|
199
255
|
$navbar-inverse-bg: #222 !default;
|
200
256
|
|
201
257
|
// Inverted navbar links
|
@@ -219,6 +275,39 @@ $navbar-inverse-search-bg-focus: #fff !default;
|
|
219
275
|
$navbar-inverse-search-border: $navbar-inverse-bg !default;
|
220
276
|
$navbar-inverse-search-placeholder-color: #ccc !default;
|
221
277
|
|
278
|
+
// Inverted navbar toggle
|
279
|
+
$navbar-inverse-toggle-hover-bg: #333 !default;
|
280
|
+
$navbar-inverse-toggle-icon-bar-bg: #fff !default;
|
281
|
+
$navbar-inverse-toggle-border-color: #333 !default;
|
282
|
+
|
283
|
+
|
284
|
+
// Navs
|
285
|
+
// -------------------------
|
286
|
+
|
287
|
+
$nav-link-hover-bg: $gray-lighter !default;
|
288
|
+
|
289
|
+
$nav-disabled-link-color: $gray-light !default;
|
290
|
+
$nav-disabled-link-hover-color: $gray-light !default;
|
291
|
+
|
292
|
+
$nav-open-link-hover-color: #fff !default;
|
293
|
+
$nav-open-caret-border-color: #fff !default;
|
294
|
+
|
295
|
+
// Tabs
|
296
|
+
$nav-tabs-border-color: #ddd !default;
|
297
|
+
|
298
|
+
$nav-tabs-link-hover-border-color: $gray-lighter !default;
|
299
|
+
|
300
|
+
$nav-tabs-active-link-hover-bg: $body-bg !default;
|
301
|
+
$nav-tabs-active-link-hover-color: $gray !default;
|
302
|
+
$nav-tabs-active-link-hover-border-color: #ddd !default;
|
303
|
+
|
304
|
+
$nav-tabs-justified-link-border-color: #ddd !default;
|
305
|
+
$nav-tabs-justified-active-link-border-color: $body-bg !default;
|
306
|
+
|
307
|
+
// Pills
|
308
|
+
$nav-pills-active-link-hover-bg: $component-active-bg !default;
|
309
|
+
$nav-pills-active-link-hover-color: #fff !default;
|
310
|
+
|
222
311
|
|
223
312
|
// Pagination
|
224
313
|
// -------------------------
|
@@ -226,6 +315,14 @@ $navbar-inverse-search-placeholder-color: #ccc !default;
|
|
226
315
|
$pagination-bg: #fff !default;
|
227
316
|
$pagination-border: #ddd !default;
|
228
317
|
$pagination-active-bg: #f5f5f5 !default;
|
318
|
+
$pagination-active-color: $gray-light !default;
|
319
|
+
$pagination-disabled-color: $gray-light !default;
|
320
|
+
|
321
|
+
// Pager
|
322
|
+
// -------------------------
|
323
|
+
|
324
|
+
$pager-border-radius: 15px !default;
|
325
|
+
$pager-disabled-color: $gray-light !default;
|
229
326
|
|
230
327
|
|
231
328
|
// Jumbotron
|
@@ -256,21 +353,31 @@ $state-info-bg: #d9edf7 !default;
|
|
256
353
|
$state-info-border: darken(adjust-hue($state-info-bg, -10%), 7%) !default;
|
257
354
|
|
258
355
|
|
259
|
-
// Tooltips
|
356
|
+
// Tooltips
|
260
357
|
// -------------------------
|
358
|
+
$tooltip-max-width: 200px !default;
|
261
359
|
$tooltip-color: #fff !default;
|
262
360
|
$tooltip-bg: rgba(0,0,0,.9) !default;
|
361
|
+
|
263
362
|
$tooltip-arrow-width: 5px !default;
|
264
363
|
$tooltip-arrow-color: $tooltip-bg !default;
|
265
364
|
|
266
|
-
$popover-bg: #fff !default;
|
267
|
-
$popover-arrow-width: 10px !default;
|
268
|
-
$popover-arrow-color: #fff !default;
|
269
|
-
$popover-title-bg: darken($popover-bg, 3%) !default;
|
270
365
|
|
271
|
-
//
|
272
|
-
|
273
|
-
$popover-
|
366
|
+
// Popovers
|
367
|
+
// -------------------------
|
368
|
+
$popover-bg: #fff !default;
|
369
|
+
$popover-max-width: 276px !default;
|
370
|
+
$popover-border-color: rgba(0,0,0,.2) !default;
|
371
|
+
$popover-fallback-border-color: #ccc !default;
|
372
|
+
|
373
|
+
$popover-title-bg: darken($popover-bg, 3%) !default;
|
374
|
+
|
375
|
+
$popover-arrow-width: 10px !default;
|
376
|
+
$popover-arrow-color: #fff !default;
|
377
|
+
|
378
|
+
$popover-arrow-outer-width: ($popover-arrow-width + 1) !default;
|
379
|
+
$popover-arrow-outer-color: rgba(0,0,0,.25) !default;
|
380
|
+
$popover-arrow-outer-fallback-color: #999 !default;
|
274
381
|
|
275
382
|
|
276
383
|
// Labels
|
@@ -280,6 +387,9 @@ $label-info-bg: $brand-info !default;
|
|
280
387
|
$label-warning-bg: $brand-warning !default;
|
281
388
|
$label-danger-bg: $brand-danger !default;
|
282
389
|
|
390
|
+
$label-color: #fff !default;
|
391
|
+
$label-link-hover-color: #fff !default;
|
392
|
+
|
283
393
|
|
284
394
|
// Modals
|
285
395
|
// -------------------------
|
@@ -288,6 +398,15 @@ $modal-inner-padding: 20px !default;
|
|
288
398
|
$modal-title-padding: 15px !default;
|
289
399
|
$modal-title-line-height: $line-height-base !default;
|
290
400
|
|
401
|
+
$modal-content-bg: #fff !default;
|
402
|
+
$modal-content-border-color: rgba(0,0,0,.2) !default;
|
403
|
+
$modal-content-fallback-border-color: #999 !default;
|
404
|
+
|
405
|
+
$modal-backdrop-bg: #000 !default;
|
406
|
+
$modal-header-border-color: #e5e5e5 !default;
|
407
|
+
$modal-footer-border-color: $modal-header-border-color !default;
|
408
|
+
|
409
|
+
|
291
410
|
// Alerts
|
292
411
|
// -------------------------
|
293
412
|
$alert-bg: $state-warning-bg !default;
|
@@ -311,6 +430,8 @@ $alert-info-border: $state-info-border !default;
|
|
311
430
|
// Progress bars
|
312
431
|
// -------------------------
|
313
432
|
$progress-bg: #f5f5f5 !default;
|
433
|
+
$progress-bar-color: #fff !default;
|
434
|
+
|
314
435
|
$progress-bar-bg: $brand-primary !default;
|
315
436
|
$progress-bar-success-bg: $brand-success !default;
|
316
437
|
$progress-bar-warning-bg: $brand-warning !default;
|
@@ -329,6 +450,10 @@ $list-group-active-color: #fff !default;
|
|
329
450
|
$list-group-active-bg: $component-active-bg !default;
|
330
451
|
$list-group-active-border: $list-group-active-bg !default;
|
331
452
|
|
453
|
+
$list-group-link-color: #555 !default;
|
454
|
+
$list-group-link-heading-color: #333 !default;
|
455
|
+
|
456
|
+
|
332
457
|
// Panels
|
333
458
|
// -------------------------
|
334
459
|
$panel-bg: #fff !default;
|
@@ -371,46 +496,68 @@ $thumbnail-border-radius: $border-radius-base !default;
|
|
371
496
|
$well-bg: #f5f5f5 !default;
|
372
497
|
|
373
498
|
|
374
|
-
//
|
499
|
+
// Accordion
|
375
500
|
// -------------------------
|
501
|
+
$accordion-border-color: #e5e5e5 !default;
|
376
502
|
|
377
|
-
// Hr border color
|
378
|
-
$hr-border: $gray-lighter !default;
|
379
503
|
|
380
|
-
//
|
381
|
-
|
504
|
+
// Badges
|
505
|
+
// -------------------------
|
506
|
+
$badge-color: #fff !default;
|
507
|
+
$badge-link-hover-color: #fff !default;
|
382
508
|
|
509
|
+
$badge-bg: $gray-light !default;
|
510
|
+
$badge-active-color: $link-color !default;
|
511
|
+
$badge-active-bg: #fff !default;
|
383
512
|
|
384
|
-
// Media queries breakpoints
|
385
|
-
// --------------------------------------------------
|
386
513
|
|
387
|
-
//
|
388
|
-
|
389
|
-
$
|
514
|
+
// Breadcrumbs
|
515
|
+
// -------------------------
|
516
|
+
$breadcrumb-bg: #f5f5f5 !default;
|
517
|
+
$breadcrumb-color: #ccc !default;
|
518
|
+
$breadcrumb-active-color: $gray-light !default;
|
390
519
|
|
391
|
-
// Small screen / tablet
|
392
|
-
$screen-small: 768px !default;
|
393
|
-
$screen-tablet: $screen-small !default;
|
394
520
|
|
395
|
-
//
|
396
|
-
|
397
|
-
$
|
521
|
+
// Carousel
|
522
|
+
// ------------------------
|
523
|
+
$carousel-text-shadow: 0 1px 2px rgba(0,0,0,.6) !default;
|
398
524
|
|
399
|
-
|
400
|
-
$screen-small-max: ($screen-medium - 1) !default;
|
401
|
-
$screen-tablet-max: $screen-small-max !default;
|
525
|
+
$carousel-control-color: #fff !default;
|
402
526
|
|
403
|
-
|
404
|
-
$
|
405
|
-
$screen-large-desktop: $screen-large !default;
|
527
|
+
$carousel-indicator-border-color: #fff !default;
|
528
|
+
$carousel-indicator-active-bg: #fff !default;
|
406
529
|
|
530
|
+
$carousel-caption-color: #fff !default;
|
407
531
|
|
408
|
-
// Grid system
|
409
|
-
// --------------------------------------------------
|
410
532
|
|
411
|
-
//
|
412
|
-
|
413
|
-
|
414
|
-
$
|
415
|
-
|
416
|
-
|
533
|
+
// Close
|
534
|
+
// ------------------------
|
535
|
+
$close-color: #000 !default;
|
536
|
+
$close-text-shadow: 0 1px 0 #fff !default;
|
537
|
+
|
538
|
+
|
539
|
+
// Code
|
540
|
+
// ------------------------
|
541
|
+
$code-color: #c7254e !default;
|
542
|
+
$code-bg: #f9f2f4 !default;
|
543
|
+
|
544
|
+
$pre-bg: #f5f5f5 !default;
|
545
|
+
$pre-border-color: #ccc !default;
|
546
|
+
|
547
|
+
// Type
|
548
|
+
// ------------------------
|
549
|
+
$text-muted: $gray-light !default;
|
550
|
+
$abbr-border-color: $gray-light !default;
|
551
|
+
$headings-small-color: $gray-light !default;
|
552
|
+
$blockquote-small-color: $gray-light !default;
|
553
|
+
$blockquote-border-color: $gray-lighter !default;
|
554
|
+
$page-header-border-color: $gray-lighter !default;
|
555
|
+
|
556
|
+
// Miscellaneous
|
557
|
+
// -------------------------
|
558
|
+
|
559
|
+
// Hr border color
|
560
|
+
$hr-border: $gray-lighter !default;
|
561
|
+
|
562
|
+
// Horizontal forms & lists
|
563
|
+
$component-offset-horizontal: 180px !default;
|
File without changes
|
data/bootstrap-rails.gemspec
CHANGED
@@ -10,7 +10,6 @@ Gem::Specification.new do |gem|
|
|
10
10
|
|
11
11
|
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
12
12
|
gem.files = `git ls-files`.split("\n")
|
13
|
-
gem.files.reject! { |fn| fn.include? "vendor/twitter" }
|
14
13
|
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
15
14
|
gem.name = "anjlab-bootstrap-rails"
|
16
15
|
gem.require_paths = ["lib"]
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: anjlab-bootstrap-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.0.
|
4
|
+
version: 3.0.0.rc1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yury Korolev
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-
|
11
|
+
date: 2013-07-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: railties
|
@@ -79,70 +79,64 @@ files:
|
|
79
79
|
- Gemfile
|
80
80
|
- README.md
|
81
81
|
- Rakefile
|
82
|
+
- app/assets/javascripts/twitter/bootstrap.js
|
83
|
+
- app/assets/javascripts/twitter/bootstrap/affix.js
|
84
|
+
- app/assets/javascripts/twitter/bootstrap/alert.js
|
85
|
+
- app/assets/javascripts/twitter/bootstrap/button.js
|
86
|
+
- app/assets/javascripts/twitter/bootstrap/carousel.js
|
87
|
+
- app/assets/javascripts/twitter/bootstrap/collapse.js
|
88
|
+
- app/assets/javascripts/twitter/bootstrap/dropdown.js
|
89
|
+
- app/assets/javascripts/twitter/bootstrap/modal.js
|
90
|
+
- app/assets/javascripts/twitter/bootstrap/popover.js
|
91
|
+
- app/assets/javascripts/twitter/bootstrap/scrollspy.js
|
92
|
+
- app/assets/javascripts/twitter/bootstrap/tab.js
|
93
|
+
- app/assets/javascripts/twitter/bootstrap/tooltip.js
|
94
|
+
- app/assets/javascripts/twitter/bootstrap/transition.js
|
95
|
+
- app/assets/stylesheets/twitter/bootstrap.scss
|
96
|
+
- app/assets/stylesheets/twitter/bootstrap/_accordion.scss
|
97
|
+
- app/assets/stylesheets/twitter/bootstrap/_alerts.scss
|
98
|
+
- app/assets/stylesheets/twitter/bootstrap/_badges.scss
|
99
|
+
- app/assets/stylesheets/twitter/bootstrap/_bootstrap.scss
|
100
|
+
- app/assets/stylesheets/twitter/bootstrap/_breadcrumbs.scss
|
101
|
+
- app/assets/stylesheets/twitter/bootstrap/_button-groups.scss
|
102
|
+
- app/assets/stylesheets/twitter/bootstrap/_buttons.scss
|
103
|
+
- app/assets/stylesheets/twitter/bootstrap/_carousel.scss
|
104
|
+
- app/assets/stylesheets/twitter/bootstrap/_close.scss
|
105
|
+
- app/assets/stylesheets/twitter/bootstrap/_code.scss
|
106
|
+
- app/assets/stylesheets/twitter/bootstrap/_component-animations.scss
|
107
|
+
- app/assets/stylesheets/twitter/bootstrap/_dropdowns.scss
|
108
|
+
- app/assets/stylesheets/twitter/bootstrap/_forms.scss
|
109
|
+
- app/assets/stylesheets/twitter/bootstrap/_grid.scss
|
110
|
+
- app/assets/stylesheets/twitter/bootstrap/_jumbotron.scss
|
111
|
+
- app/assets/stylesheets/twitter/bootstrap/_labels.scss
|
112
|
+
- app/assets/stylesheets/twitter/bootstrap/_list-group.scss
|
113
|
+
- app/assets/stylesheets/twitter/bootstrap/_media.scss
|
114
|
+
- app/assets/stylesheets/twitter/bootstrap/_mixins.scss
|
115
|
+
- app/assets/stylesheets/twitter/bootstrap/_modals.scss
|
116
|
+
- app/assets/stylesheets/twitter/bootstrap/_navbar.scss
|
117
|
+
- app/assets/stylesheets/twitter/bootstrap/_navs.scss
|
118
|
+
- app/assets/stylesheets/twitter/bootstrap/_normalize.scss
|
119
|
+
- app/assets/stylesheets/twitter/bootstrap/_pager.scss
|
120
|
+
- app/assets/stylesheets/twitter/bootstrap/_pagination.scss
|
121
|
+
- app/assets/stylesheets/twitter/bootstrap/_panels.scss
|
122
|
+
- app/assets/stylesheets/twitter/bootstrap/_popovers.scss
|
123
|
+
- app/assets/stylesheets/twitter/bootstrap/_print.scss
|
124
|
+
- app/assets/stylesheets/twitter/bootstrap/_progress-bars.scss
|
125
|
+
- app/assets/stylesheets/twitter/bootstrap/_responsive-utilities.scss
|
126
|
+
- app/assets/stylesheets/twitter/bootstrap/_scaffolding.scss
|
127
|
+
- app/assets/stylesheets/twitter/bootstrap/_tables.scss
|
128
|
+
- app/assets/stylesheets/twitter/bootstrap/_thumbnails.scss
|
129
|
+
- app/assets/stylesheets/twitter/bootstrap/_tooltip.scss
|
130
|
+
- app/assets/stylesheets/twitter/bootstrap/_type.scss
|
131
|
+
- app/assets/stylesheets/twitter/bootstrap/_utilities.scss
|
132
|
+
- app/assets/stylesheets/twitter/bootstrap/_variables.scss
|
133
|
+
- app/assets/stylesheets/twitter/bootstrap/_wells.scss
|
82
134
|
- bootstrap-rails.gemspec
|
83
135
|
- lib/bootstrap-rails.rb
|
84
136
|
- lib/bootstrap-rails/engine.rb
|
85
137
|
- lib/bootstrap-rails/railtie.rb
|
86
138
|
- lib/bootstrap-rails/version.rb
|
87
139
|
- test/test_helper.rb
|
88
|
-
- vendor/assets/fonts/twitter/glyphiconshalflings-regular.eot
|
89
|
-
- vendor/assets/fonts/twitter/glyphiconshalflings-regular.otf
|
90
|
-
- vendor/assets/fonts/twitter/glyphiconshalflings-regular.svg
|
91
|
-
- vendor/assets/fonts/twitter/glyphiconshalflings-regular.ttf
|
92
|
-
- vendor/assets/fonts/twitter/glyphiconshalflings-regular.woff
|
93
|
-
- vendor/assets/javascripts/twitter/bootstrap.js
|
94
|
-
- vendor/assets/javascripts/twitter/bootstrap/affix.js
|
95
|
-
- vendor/assets/javascripts/twitter/bootstrap/alert.js
|
96
|
-
- vendor/assets/javascripts/twitter/bootstrap/button.js
|
97
|
-
- vendor/assets/javascripts/twitter/bootstrap/carousel.js
|
98
|
-
- vendor/assets/javascripts/twitter/bootstrap/collapse.js
|
99
|
-
- vendor/assets/javascripts/twitter/bootstrap/dropdown.js
|
100
|
-
- vendor/assets/javascripts/twitter/bootstrap/modal.js
|
101
|
-
- vendor/assets/javascripts/twitter/bootstrap/popover.js
|
102
|
-
- vendor/assets/javascripts/twitter/bootstrap/scrollspy.js
|
103
|
-
- vendor/assets/javascripts/twitter/bootstrap/tab.js
|
104
|
-
- vendor/assets/javascripts/twitter/bootstrap/tooltip.js
|
105
|
-
- vendor/assets/javascripts/twitter/bootstrap/transition.js
|
106
|
-
- vendor/assets/stylesheets/twitter/bootstrap.scss
|
107
|
-
- vendor/assets/stylesheets/twitter/bootstrap/_accordion.scss
|
108
|
-
- vendor/assets/stylesheets/twitter/bootstrap/_alerts.scss
|
109
|
-
- vendor/assets/stylesheets/twitter/bootstrap/_badges.scss
|
110
|
-
- vendor/assets/stylesheets/twitter/bootstrap/_bootstrap.scss
|
111
|
-
- vendor/assets/stylesheets/twitter/bootstrap/_breadcrumbs.scss
|
112
|
-
- vendor/assets/stylesheets/twitter/bootstrap/_button-groups.scss
|
113
|
-
- vendor/assets/stylesheets/twitter/bootstrap/_buttons.scss
|
114
|
-
- vendor/assets/stylesheets/twitter/bootstrap/_carousel.scss
|
115
|
-
- vendor/assets/stylesheets/twitter/bootstrap/_close.scss
|
116
|
-
- vendor/assets/stylesheets/twitter/bootstrap/_code.scss
|
117
|
-
- vendor/assets/stylesheets/twitter/bootstrap/_component-animations.scss
|
118
|
-
- vendor/assets/stylesheets/twitter/bootstrap/_dropdowns.scss
|
119
|
-
- vendor/assets/stylesheets/twitter/bootstrap/_forms.scss
|
120
|
-
- vendor/assets/stylesheets/twitter/bootstrap/_glyphicons.scss
|
121
|
-
- vendor/assets/stylesheets/twitter/bootstrap/_grid.scss
|
122
|
-
- vendor/assets/stylesheets/twitter/bootstrap/_jumbotron.scss
|
123
|
-
- vendor/assets/stylesheets/twitter/bootstrap/_labels.scss
|
124
|
-
- vendor/assets/stylesheets/twitter/bootstrap/_list-group.scss
|
125
|
-
- vendor/assets/stylesheets/twitter/bootstrap/_media.scss
|
126
|
-
- vendor/assets/stylesheets/twitter/bootstrap/_mixins.scss
|
127
|
-
- vendor/assets/stylesheets/twitter/bootstrap/_modals.scss
|
128
|
-
- vendor/assets/stylesheets/twitter/bootstrap/_navbar.scss
|
129
|
-
- vendor/assets/stylesheets/twitter/bootstrap/_navs.scss
|
130
|
-
- vendor/assets/stylesheets/twitter/bootstrap/_normalize.scss
|
131
|
-
- vendor/assets/stylesheets/twitter/bootstrap/_pager.scss
|
132
|
-
- vendor/assets/stylesheets/twitter/bootstrap/_pagination.scss
|
133
|
-
- vendor/assets/stylesheets/twitter/bootstrap/_panels.scss
|
134
|
-
- vendor/assets/stylesheets/twitter/bootstrap/_popovers.scss
|
135
|
-
- vendor/assets/stylesheets/twitter/bootstrap/_print.scss
|
136
|
-
- vendor/assets/stylesheets/twitter/bootstrap/_progress-bars.scss
|
137
|
-
- vendor/assets/stylesheets/twitter/bootstrap/_responsive-utilities.scss
|
138
|
-
- vendor/assets/stylesheets/twitter/bootstrap/_scaffolding.scss
|
139
|
-
- vendor/assets/stylesheets/twitter/bootstrap/_tables.scss
|
140
|
-
- vendor/assets/stylesheets/twitter/bootstrap/_thumbnails.scss
|
141
|
-
- vendor/assets/stylesheets/twitter/bootstrap/_tooltip.scss
|
142
|
-
- vendor/assets/stylesheets/twitter/bootstrap/_type.scss
|
143
|
-
- vendor/assets/stylesheets/twitter/bootstrap/_utilities.scss
|
144
|
-
- vendor/assets/stylesheets/twitter/bootstrap/_variables.scss
|
145
|
-
- vendor/assets/stylesheets/twitter/bootstrap/_wells.scss
|
146
140
|
homepage: https://github.com/anjlab/bootstrap-rails
|
147
141
|
licenses: []
|
148
142
|
metadata: {}
|