twitter-bootswatch-rails 3.1.1.1 → 3.2.0.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.
- checksums.yaml +4 -4
- data/app/assets/javascripts/twitter/bootstrap/affix.js +19 -14
- data/app/assets/javascripts/twitter/bootstrap/alert.js +10 -6
- data/app/assets/javascripts/twitter/bootstrap/button.js +11 -8
- data/app/assets/javascripts/twitter/bootstrap/carousel.js +49 -31
- data/app/assets/javascripts/twitter/bootstrap/collapse.js +22 -22
- data/app/assets/javascripts/twitter/bootstrap/dropdown.js +17 -13
- data/app/assets/javascripts/twitter/bootstrap/modal.js +66 -29
- data/app/assets/javascripts/twitter/bootstrap/popover.js +10 -7
- data/app/assets/javascripts/twitter/bootstrap/scrollspy.js +40 -23
- data/app/assets/javascripts/twitter/bootstrap/tab.js +11 -8
- data/app/assets/javascripts/twitter/bootstrap/tooltip.js +115 -57
- data/app/assets/javascripts/twitter/bootstrap/transition.js +18 -7
- data/lib/generators/bootswatch/install/install_generator.rb +16 -5
- data/lib/generators/bootswatch/install/templates/bootstrap.less +3 -2
- data/lib/generators/bootswatch/install/templates/mixins.less.tt +35 -925
- data/lib/generators/bootswatch/install/templates/variables.less.tt +40 -23
- data/lib/twitter/bootswatch/rails/version.rb +1 -1
- data/vendor/toolkit/twitter/bootstrap/alerts.less +4 -3
- data/vendor/toolkit/twitter/bootstrap/badges.less +18 -18
- data/vendor/toolkit/twitter/bootstrap/bootstrap.less +3 -2
- data/vendor/toolkit/twitter/bootstrap/button-groups.less +16 -2
- data/vendor/toolkit/twitter/bootstrap/buttons.less +0 -2
- data/vendor/toolkit/twitter/bootstrap/carousel.less +15 -4
- data/vendor/toolkit/twitter/bootstrap/code.less +6 -1
- data/vendor/toolkit/twitter/bootstrap/component-animations.less +6 -4
- data/vendor/toolkit/twitter/bootstrap/dropdowns.less +2 -0
- data/vendor/toolkit/twitter/bootstrap/forms.less +144 -42
- data/vendor/toolkit/twitter/bootstrap/input-groups.less +6 -2
- data/vendor/toolkit/twitter/bootstrap/jumbotron.less +4 -0
- data/vendor/toolkit/twitter/bootstrap/labels.less +1 -1
- data/vendor/toolkit/twitter/bootstrap/list-group.less +22 -1
- data/vendor/toolkit/twitter/bootstrap/mixins.less +35 -925
- data/vendor/toolkit/twitter/bootstrap/mixins/alerts.less +14 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/background-variant.less +8 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/border-radius.less +18 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/buttons.less +50 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/center-block.less +7 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/clearfix.less +22 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/forms.less +81 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/gradients.less +59 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/grid-framework.less +91 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/grid.less +122 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/hide-text.less +21 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/image.less +34 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/labels.less +12 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/list-group.less +29 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/nav-divider.less +10 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/nav-vertical-align.less +9 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/opacity.less +8 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/pagination.less +23 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/panels.less +24 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/progress-bar.less +10 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/reset-filter.less +8 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/resize.less +6 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/responsive-visibility.less +15 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/size.less +10 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/tab-focus.less +9 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/table-row.less +28 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/text-emphasis.less +8 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/text-overflow.less +8 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/vendor-prefixes.less +224 -0
- data/vendor/toolkit/twitter/bootstrap/modals.less +18 -7
- data/vendor/toolkit/twitter/bootstrap/navbar.less +41 -2
- data/vendor/toolkit/twitter/bootstrap/navs.less +1 -1
- data/vendor/toolkit/twitter/bootstrap/normalize.less +21 -19
- data/vendor/toolkit/twitter/bootstrap/panels.less +8 -6
- data/vendor/toolkit/twitter/bootstrap/popovers.less +1 -1
- data/vendor/toolkit/twitter/bootstrap/progress-bars.less +27 -2
- data/vendor/toolkit/twitter/bootstrap/responsive-embed.less +34 -0
- data/vendor/toolkit/twitter/bootstrap/responsive-utilities.less +103 -1
- data/vendor/toolkit/twitter/bootstrap/scaffolding.less +17 -1
- data/vendor/toolkit/twitter/bootstrap/tables.less +4 -4
- data/vendor/toolkit/twitter/bootstrap/theme.less +11 -0
- data/vendor/toolkit/twitter/bootstrap/type.less +32 -12
- data/vendor/toolkit/twitter/bootstrap/utilities.less +1 -0
- data/vendor/toolkit/twitter/bootstrap/variables.less +40 -23
- metadata +35 -5
@@ -20,7 +20,7 @@
|
|
20
20
|
// Body reset
|
21
21
|
|
22
22
|
html {
|
23
|
-
font-size:
|
23
|
+
font-size: 10px;
|
24
24
|
-webkit-tap-highlight-color: rgba(0,0,0,0);
|
25
25
|
}
|
26
26
|
|
@@ -132,3 +132,19 @@ hr {
|
|
132
132
|
clip: rect(0,0,0,0);
|
133
133
|
border: 0;
|
134
134
|
}
|
135
|
+
|
136
|
+
// Use in conjunction with .sr-only to only display content when it's focused.
|
137
|
+
// Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
|
138
|
+
// Credit: HTML5 Boilerplate
|
139
|
+
|
140
|
+
.sr-only-focusable {
|
141
|
+
&:active,
|
142
|
+
&:focus {
|
143
|
+
position: static;
|
144
|
+
width: auto;
|
145
|
+
height: auto;
|
146
|
+
margin: 0;
|
147
|
+
overflow: visible;
|
148
|
+
clip: auto;
|
149
|
+
}
|
150
|
+
}
|
@@ -4,7 +4,6 @@
|
|
4
4
|
|
5
5
|
|
6
6
|
table {
|
7
|
-
max-width: 100%;
|
8
7
|
background-color: @table-bg;
|
9
8
|
}
|
10
9
|
th {
|
@@ -16,6 +15,7 @@ th {
|
|
16
15
|
|
17
16
|
.table {
|
18
17
|
width: 100%;
|
18
|
+
max-width: 100%;
|
19
19
|
margin-bottom: @line-height-computed;
|
20
20
|
// Cells
|
21
21
|
> thead,
|
@@ -168,12 +168,12 @@ table {
|
|
168
168
|
// by enabling horizontal scrolling. Only applies <768px. Everything above that
|
169
169
|
// will display normally.
|
170
170
|
|
171
|
-
|
172
|
-
|
171
|
+
.table-responsive {
|
172
|
+
@media screen and (max-width: @screen-xs-max) {
|
173
173
|
width: 100%;
|
174
174
|
margin-bottom: (@line-height-computed * 0.75);
|
175
175
|
overflow-y: hidden;
|
176
|
-
overflow-x:
|
176
|
+
overflow-x: auto;
|
177
177
|
-ms-overflow-style: -ms-autohiding-scrollbar;
|
178
178
|
border: 1px solid @table-border-color;
|
179
179
|
-webkit-overflow-scrolling: touch;
|
@@ -48,6 +48,12 @@
|
|
48
48
|
background-color: darken(@btn-color, 12%);
|
49
49
|
border-color: darken(@btn-color, 14%);
|
50
50
|
}
|
51
|
+
|
52
|
+
&:disabled,
|
53
|
+
&[disabled] {
|
54
|
+
background-color: darken(@btn-color, 12%);
|
55
|
+
background-image: none;
|
56
|
+
}
|
51
57
|
}
|
52
58
|
|
53
59
|
// Common styles
|
@@ -191,6 +197,11 @@
|
|
191
197
|
.progress-bar-warning { .progress-bar-styles(@progress-bar-warning-bg); }
|
192
198
|
.progress-bar-danger { .progress-bar-styles(@progress-bar-danger-bg); }
|
193
199
|
|
200
|
+
// Reset the striped class because our mixins don't do multiple gradients and
|
201
|
+
// the above custom styles override the new `.progress-bar-striped` in v3.2.0.
|
202
|
+
.progress-bar-striped {
|
203
|
+
#gradient > .striped();
|
204
|
+
}
|
194
205
|
|
195
206
|
|
196
207
|
//
|
@@ -62,7 +62,7 @@ p {
|
|
62
62
|
.lead {
|
63
63
|
margin-bottom: @line-height-computed;
|
64
64
|
font-size: floor((@font-size-base * 1.15));
|
65
|
-
font-weight:
|
65
|
+
font-weight: 300;
|
66
66
|
line-height: 1.4;
|
67
67
|
|
68
68
|
@media (min-width: @screen-sm-min) {
|
@@ -74,18 +74,34 @@ p {
|
|
74
74
|
// Emphasis & misc
|
75
75
|
// -------------------------
|
76
76
|
|
77
|
-
// Ex: 14px base font *
|
77
|
+
// Ex: (12px small font / 14px base font) * 100% = about 85%
|
78
78
|
small,
|
79
|
-
.small
|
79
|
+
.small {
|
80
|
+
font-size: floor((100% * @font-size-small / @font-size-base));
|
81
|
+
}
|
80
82
|
|
81
83
|
// Undo browser default styling
|
82
|
-
cite
|
84
|
+
cite {
|
85
|
+
font-style: normal;
|
86
|
+
}
|
87
|
+
|
88
|
+
mark,
|
89
|
+
.mark {
|
90
|
+
background-color: @state-warning-bg;
|
91
|
+
padding: .2em;
|
92
|
+
}
|
83
93
|
|
84
94
|
// Alignment
|
85
95
|
.text-left { text-align: left; }
|
86
96
|
.text-right { text-align: right; }
|
87
97
|
.text-center { text-align: center; }
|
88
98
|
.text-justify { text-align: justify; }
|
99
|
+
.text-nowrap { white-space: nowrap; }
|
100
|
+
|
101
|
+
// Transformation
|
102
|
+
.text-lowercase { text-transform: lowercase; }
|
103
|
+
.text-uppercase { text-transform: uppercase; }
|
104
|
+
.text-capitalize { text-transform: capitalize; }
|
89
105
|
|
90
106
|
// Contextual colors
|
91
107
|
.text-muted {
|
@@ -141,7 +157,7 @@ cite { font-style: normal; }
|
|
141
157
|
|
142
158
|
|
143
159
|
// Lists
|
144
|
-
//
|
160
|
+
// -------------------------
|
145
161
|
|
146
162
|
// Unordered and Ordered lists
|
147
163
|
ul,
|
@@ -195,24 +211,28 @@ dd {
|
|
195
211
|
// Defaults to being stacked without any of the below styles applied, until the
|
196
212
|
// grid breakpoint is reached (default of ~768px).
|
197
213
|
|
198
|
-
|
199
|
-
|
214
|
+
.dl-horizontal {
|
215
|
+
dd {
|
216
|
+
&:extend(.clearfix all); // Clear the floated `dt` if an empty `dd` is present
|
217
|
+
}
|
218
|
+
|
219
|
+
@media (min-width: @grid-float-breakpoint) {
|
200
220
|
dt {
|
201
221
|
float: left;
|
202
|
-
width: (@
|
222
|
+
width: (@dl-horizontal-offset - 20);
|
203
223
|
clear: left;
|
204
224
|
text-align: right;
|
205
225
|
.text-overflow();
|
206
226
|
}
|
207
227
|
dd {
|
208
|
-
margin-left: @
|
209
|
-
&:extend(.clearfix all); // Clear the floated `dt` if an empty `dd` is present
|
228
|
+
margin-left: @dl-horizontal-offset;
|
210
229
|
}
|
211
230
|
}
|
212
231
|
}
|
213
232
|
|
214
|
-
|
215
|
-
//
|
233
|
+
|
234
|
+
// Misc
|
235
|
+
// -------------------------
|
216
236
|
|
217
237
|
// Abbreviations and acronyms
|
218
238
|
abbr[title],
|
@@ -10,7 +10,7 @@
|
|
10
10
|
@gray-darker: lighten(#000, 13.5%); // #222
|
11
11
|
@gray-dark: lighten(#000, 20%); // #333
|
12
12
|
@gray: lighten(#000, 33.5%); // #555
|
13
|
-
@gray-light: lighten(#000,
|
13
|
+
@gray-light: lighten(#000, 46.7%); // #777
|
14
14
|
@gray-lighter: lighten(#000, 93.5%); // #eee
|
15
15
|
|
16
16
|
@brand-primary: #428bca;
|
@@ -22,7 +22,7 @@
|
|
22
22
|
|
23
23
|
//== Scaffolding
|
24
24
|
//
|
25
|
-
|
25
|
+
//## Settings for some of the most global styles.
|
26
26
|
|
27
27
|
//** Background color for `<body>`.
|
28
28
|
@body-bg: #fff;
|
@@ -68,14 +68,18 @@
|
|
68
68
|
@headings-color: inherit;
|
69
69
|
|
70
70
|
|
71
|
-
|
71
|
+
//== Iconography
|
72
72
|
//
|
73
|
-
//## Specify custom
|
73
|
+
//## Specify custom location and filename of the included Glyphicons icon font. Useful for those including Bootstrap via Bower.
|
74
74
|
|
75
|
+
//** Load fonts from this directory.
|
75
76
|
@icon-font-path: "twitter/bootstrap/";
|
77
|
+
//** File name for all font files.
|
76
78
|
@icon-font-name: "glyphicons-halflings-regular";
|
79
|
+
//** Element ID within SVG icon file.
|
77
80
|
@icon-font-svg-id: "glyphicons_halflingsregular";
|
78
81
|
|
82
|
+
|
79
83
|
//== Components
|
80
84
|
//
|
81
85
|
//## Define common padding and border radius sizes and more. Values based on 14px text and 1.428 line-height (~20px to start).
|
@@ -232,7 +236,7 @@
|
|
232
236
|
//** Text color for headers within dropdown menus.
|
233
237
|
@dropdown-header-color: @gray-light;
|
234
238
|
|
235
|
-
|
239
|
+
//** Deprecated `@dropdown-caret-color` as of v3.1.0
|
236
240
|
@dropdown-caret-color: #000;
|
237
241
|
|
238
242
|
|
@@ -245,8 +249,8 @@
|
|
245
249
|
|
246
250
|
@zindex-navbar: 1000;
|
247
251
|
@zindex-dropdown: 1000;
|
248
|
-
@zindex-popover:
|
249
|
-
@zindex-tooltip:
|
252
|
+
@zindex-popover: 1060;
|
253
|
+
@zindex-tooltip: 1070;
|
250
254
|
@zindex-navbar-fixed: 1030;
|
251
255
|
@zindex-modal-background: 1040;
|
252
256
|
@zindex-modal: 1050;
|
@@ -257,27 +261,32 @@
|
|
257
261
|
//## Define the breakpoints at which your layout will change, adapting to different screen sizes.
|
258
262
|
|
259
263
|
// Extra small screen / phone
|
260
|
-
|
264
|
+
//** Deprecated `@screen-xs` as of v3.0.1
|
261
265
|
@screen-xs: 480px;
|
266
|
+
//** Deprecated `@screen-xs-min` as of v3.2.0
|
262
267
|
@screen-xs-min: @screen-xs;
|
268
|
+
//** Deprecated `@screen-phone` as of v3.0.1
|
263
269
|
@screen-phone: @screen-xs-min;
|
264
270
|
|
265
271
|
// Small screen / tablet
|
266
|
-
|
272
|
+
//** Deprecated `@screen-sm` as of v3.0.1
|
267
273
|
@screen-sm: 768px;
|
268
274
|
@screen-sm-min: @screen-sm;
|
275
|
+
//** Deprecated `@screen-tablet` as of v3.0.1
|
269
276
|
@screen-tablet: @screen-sm-min;
|
270
277
|
|
271
278
|
// Medium screen / desktop
|
272
|
-
|
279
|
+
//** Deprecated `@screen-md` as of v3.0.1
|
273
280
|
@screen-md: 992px;
|
274
281
|
@screen-md-min: @screen-md;
|
282
|
+
//** Deprecated `@screen-desktop` as of v3.0.1
|
275
283
|
@screen-desktop: @screen-md-min;
|
276
284
|
|
277
285
|
// Large screen / wide desktop
|
278
|
-
|
286
|
+
//** Deprecated `@screen-lg` as of v3.0.1
|
279
287
|
@screen-lg: 1200px;
|
280
288
|
@screen-lg-min: @screen-lg;
|
289
|
+
//** Deprecated `@screen-lg-desktop` as of v3.0.1
|
281
290
|
@screen-lg-desktop: @screen-lg-min;
|
282
291
|
|
283
292
|
// So media queries don't overlap when required, provide a maximum
|
@@ -558,7 +567,7 @@
|
|
558
567
|
//##
|
559
568
|
|
560
569
|
//** Padding applied to the modal body
|
561
|
-
@modal-inner-padding:
|
570
|
+
@modal-inner-padding: 15px;
|
562
571
|
|
563
572
|
//** Padding applied to the modal title
|
564
573
|
@modal-title-padding: 15px;
|
@@ -643,17 +652,26 @@
|
|
643
652
|
//** List group border radius
|
644
653
|
@list-group-border-radius: @border-radius-base;
|
645
654
|
|
646
|
-
//** Background color of single list
|
655
|
+
//** Background color of single list items on hover
|
647
656
|
@list-group-hover-bg: #f5f5f5;
|
648
|
-
//** Text color of active list
|
657
|
+
//** Text color of active list items
|
649
658
|
@list-group-active-color: @component-active-color;
|
650
|
-
//** Background color of active list
|
659
|
+
//** Background color of active list items
|
651
660
|
@list-group-active-bg: @component-active-bg;
|
652
661
|
//** Border color of active list elements
|
653
662
|
@list-group-active-border: @list-group-active-bg;
|
663
|
+
//** Text color for content within active list items
|
654
664
|
@list-group-active-text-color: lighten(@list-group-active-bg, 40%);
|
655
665
|
|
666
|
+
//** Text color of disabled list items
|
667
|
+
@list-group-disabled-color: @gray-light;
|
668
|
+
//** Background color of disabled list items
|
669
|
+
@list-group-disabled-bg: @gray-lighter;
|
670
|
+
//** Text color for content within disabled list items
|
671
|
+
@list-group-disabled-text-color: @list-group-disabled-color;
|
672
|
+
|
656
673
|
@list-group-link-color: #555;
|
674
|
+
@list-group-link-hover-color: @list-group-link-color;
|
657
675
|
@list-group-link-heading-color: #333;
|
658
676
|
|
659
677
|
|
@@ -663,6 +681,8 @@
|
|
663
681
|
|
664
682
|
@panel-bg: #fff;
|
665
683
|
@panel-body-padding: 15px;
|
684
|
+
@panel-heading-padding: 10px 15px;
|
685
|
+
@panel-footer-padding: @panel-heading-padding;
|
666
686
|
@panel-border-radius: @border-radius-base;
|
667
687
|
|
668
688
|
//** Border color for elements within panels
|
@@ -802,6 +822,8 @@
|
|
802
822
|
//
|
803
823
|
//##
|
804
824
|
|
825
|
+
//** Horizontal offset for forms and lists.
|
826
|
+
@component-offset-horizontal: 180px;
|
805
827
|
//** Text muted color
|
806
828
|
@text-muted: @gray-light;
|
807
829
|
//** Abbreviations and acronyms border color
|
@@ -816,14 +838,9 @@
|
|
816
838
|
@blockquote-border-color: @gray-lighter;
|
817
839
|
//** Page header border color
|
818
840
|
@page-header-border-color: @gray-lighter;
|
819
|
-
|
820
|
-
|
821
|
-
//== Miscellaneous
|
822
|
-
//
|
823
|
-
//##
|
824
|
-
|
841
|
+
//** Width of horizontal description list titles
|
842
|
+
@dl-horizontal-offset: @component-offset-horizontal;
|
825
843
|
//** Horizontal line color.
|
826
844
|
@hr-border: @gray-lighter;
|
827
845
|
|
828
|
-
|
829
|
-
@component-offset-horizontal: 180px;
|
846
|
+
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: twitter-bootswatch-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.2.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Scott V. Rosenthal
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-06-
|
11
|
+
date: 2014-06-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: railties
|
@@ -80,8 +80,8 @@ dependencies:
|
|
80
80
|
- - ">="
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: 0.11.1
|
83
|
-
description: twitter-bootswatch-rails gem integrates Bootstrap for Rails Asset
|
84
|
-
with less-rails
|
83
|
+
description: twitter-bootswatch-rails gem integrates TWBS Bootstrap for Rails Asset
|
84
|
+
Pipeline with less-rails
|
85
85
|
email:
|
86
86
|
- sr7575@gmail.com
|
87
87
|
executables: []
|
@@ -162,6 +162,35 @@ files:
|
|
162
162
|
- vendor/toolkit/twitter/bootstrap/list-group.less
|
163
163
|
- vendor/toolkit/twitter/bootstrap/media.less
|
164
164
|
- vendor/toolkit/twitter/bootstrap/mixins.less
|
165
|
+
- vendor/toolkit/twitter/bootstrap/mixins/alerts.less
|
166
|
+
- vendor/toolkit/twitter/bootstrap/mixins/background-variant.less
|
167
|
+
- vendor/toolkit/twitter/bootstrap/mixins/border-radius.less
|
168
|
+
- vendor/toolkit/twitter/bootstrap/mixins/buttons.less
|
169
|
+
- vendor/toolkit/twitter/bootstrap/mixins/center-block.less
|
170
|
+
- vendor/toolkit/twitter/bootstrap/mixins/clearfix.less
|
171
|
+
- vendor/toolkit/twitter/bootstrap/mixins/forms.less
|
172
|
+
- vendor/toolkit/twitter/bootstrap/mixins/gradients.less
|
173
|
+
- vendor/toolkit/twitter/bootstrap/mixins/grid-framework.less
|
174
|
+
- vendor/toolkit/twitter/bootstrap/mixins/grid.less
|
175
|
+
- vendor/toolkit/twitter/bootstrap/mixins/hide-text.less
|
176
|
+
- vendor/toolkit/twitter/bootstrap/mixins/image.less
|
177
|
+
- vendor/toolkit/twitter/bootstrap/mixins/labels.less
|
178
|
+
- vendor/toolkit/twitter/bootstrap/mixins/list-group.less
|
179
|
+
- vendor/toolkit/twitter/bootstrap/mixins/nav-divider.less
|
180
|
+
- vendor/toolkit/twitter/bootstrap/mixins/nav-vertical-align.less
|
181
|
+
- vendor/toolkit/twitter/bootstrap/mixins/opacity.less
|
182
|
+
- vendor/toolkit/twitter/bootstrap/mixins/pagination.less
|
183
|
+
- vendor/toolkit/twitter/bootstrap/mixins/panels.less
|
184
|
+
- vendor/toolkit/twitter/bootstrap/mixins/progress-bar.less
|
185
|
+
- vendor/toolkit/twitter/bootstrap/mixins/reset-filter.less
|
186
|
+
- vendor/toolkit/twitter/bootstrap/mixins/resize.less
|
187
|
+
- vendor/toolkit/twitter/bootstrap/mixins/responsive-visibility.less
|
188
|
+
- vendor/toolkit/twitter/bootstrap/mixins/size.less
|
189
|
+
- vendor/toolkit/twitter/bootstrap/mixins/tab-focus.less
|
190
|
+
- vendor/toolkit/twitter/bootstrap/mixins/table-row.less
|
191
|
+
- vendor/toolkit/twitter/bootstrap/mixins/text-emphasis.less
|
192
|
+
- vendor/toolkit/twitter/bootstrap/mixins/text-overflow.less
|
193
|
+
- vendor/toolkit/twitter/bootstrap/mixins/vendor-prefixes.less
|
165
194
|
- vendor/toolkit/twitter/bootstrap/modals.less
|
166
195
|
- vendor/toolkit/twitter/bootstrap/navbar.less
|
167
196
|
- vendor/toolkit/twitter/bootstrap/navs.less
|
@@ -172,6 +201,7 @@ files:
|
|
172
201
|
- vendor/toolkit/twitter/bootstrap/popovers.less
|
173
202
|
- vendor/toolkit/twitter/bootstrap/print.less
|
174
203
|
- vendor/toolkit/twitter/bootstrap/progress-bars.less
|
204
|
+
- vendor/toolkit/twitter/bootstrap/responsive-embed.less
|
175
205
|
- vendor/toolkit/twitter/bootstrap/responsive-utilities.less
|
176
206
|
- vendor/toolkit/twitter/bootstrap/scaffolding.less
|
177
207
|
- vendor/toolkit/twitter/bootstrap/tables.less
|
@@ -209,5 +239,5 @@ rubyforge_project:
|
|
209
239
|
rubygems_version: 2.2.2
|
210
240
|
signing_key:
|
211
241
|
specification_version: 4
|
212
|
-
summary: Bootstrap
|
242
|
+
summary: TWBS Bootstrap integration gem for the Rails Asset Pipeline using less-rails
|
213
243
|
test_files: []
|