bootstrap-sass-rails 3.0.3.0 → 3.1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (66) hide show
  1. data/LICENSE +1 -1
  2. data/README.md +24 -133
  3. data/app/assets/javascripts/twitter/bootstrap.js +1 -12
  4. data/app/assets/javascripts/twitter/bootstrap/affix.js +1 -126
  5. data/app/assets/javascripts/twitter/bootstrap/alert.js +1 -98
  6. data/app/assets/javascripts/twitter/bootstrap/button.js +1 -115
  7. data/app/assets/javascripts/twitter/bootstrap/carousel.js +1 -217
  8. data/app/assets/javascripts/twitter/bootstrap/collapse.js +1 -179
  9. data/app/assets/javascripts/twitter/bootstrap/dropdown.js +1 -154
  10. data/app/assets/javascripts/twitter/bootstrap/modal.js +1 -246
  11. data/app/assets/javascripts/twitter/bootstrap/popover.js +1 -117
  12. data/app/assets/javascripts/twitter/bootstrap/scrollspy.js +1 -158
  13. data/app/assets/javascripts/twitter/bootstrap/tab.js +1 -135
  14. data/app/assets/javascripts/twitter/bootstrap/tooltip.js +1 -386
  15. data/app/assets/javascripts/twitter/bootstrap/transition.js +1 -56
  16. data/app/assets/stylesheets/twitter/bootstrap.css.scss +1 -49
  17. data/app/assets/stylesheets/twitter/bootstrap/_alerts.scss +1 -67
  18. data/app/assets/stylesheets/twitter/bootstrap/_badges.scss +1 -51
  19. data/app/assets/stylesheets/twitter/bootstrap/_breadcrumbs.scss +1 -23
  20. data/app/assets/stylesheets/twitter/bootstrap/_button-groups.scss +1 -227
  21. data/app/assets/stylesheets/twitter/bootstrap/_buttons.scss +1 -155
  22. data/app/assets/stylesheets/twitter/bootstrap/_carousel.scss +1 -232
  23. data/app/assets/stylesheets/twitter/bootstrap/_close.scss +1 -34
  24. data/app/assets/stylesheets/twitter/bootstrap/_code.scss +1 -53
  25. data/app/assets/stylesheets/twitter/bootstrap/_component-animations.scss +1 -29
  26. data/app/assets/stylesheets/twitter/bootstrap/_dropdowns.scss +1 -187
  27. data/app/assets/stylesheets/twitter/bootstrap/_forms.scss +1 -373
  28. data/app/assets/stylesheets/twitter/bootstrap/_glyphicons.scss +1 -237
  29. data/app/assets/stylesheets/twitter/bootstrap/_grid.scss +1 -78
  30. data/app/assets/stylesheets/twitter/bootstrap/_input-groups.scss +1 -136
  31. data/app/assets/stylesheets/twitter/bootstrap/_jumbotron.scss +1 -46
  32. data/app/assets/stylesheets/twitter/bootstrap/_labels.scss +1 -64
  33. data/app/assets/stylesheets/twitter/bootstrap/_list-group.scss +1 -88
  34. data/app/assets/stylesheets/twitter/bootstrap/_media.scss +1 -56
  35. data/app/assets/stylesheets/twitter/bootstrap/_mixins.scss +1 -847
  36. data/app/assets/stylesheets/twitter/bootstrap/_modals.scss +1 -129
  37. data/app/assets/stylesheets/twitter/bootstrap/_navbar.scss +1 -616
  38. data/app/assets/stylesheets/twitter/bootstrap/_navs.scss +1 -242
  39. data/app/assets/stylesheets/twitter/bootstrap/_normalize.scss +1 -406
  40. data/app/assets/stylesheets/twitter/bootstrap/_pager.scss +1 -55
  41. data/app/assets/stylesheets/twitter/bootstrap/_pagination.scss +1 -85
  42. data/app/assets/stylesheets/twitter/bootstrap/_panels.scss +1 -182
  43. data/app/assets/stylesheets/twitter/bootstrap/_popovers.scss +1 -133
  44. data/app/assets/stylesheets/twitter/bootstrap/_print.scss +1 -105
  45. data/app/assets/stylesheets/twitter/bootstrap/_progress-bars.scss +1 -80
  46. data/app/assets/stylesheets/twitter/bootstrap/_responsive-utilities.scss +1 -198
  47. data/app/assets/stylesheets/twitter/bootstrap/_scaffolding.scss +1 -119
  48. data/app/assets/stylesheets/twitter/bootstrap/_tables.scss +1 -231
  49. data/app/assets/stylesheets/twitter/bootstrap/_theme.scss +1 -247
  50. data/app/assets/stylesheets/twitter/bootstrap/_thumbnails.scss +1 -38
  51. data/app/assets/stylesheets/twitter/bootstrap/_tooltip.scss +1 -95
  52. data/app/assets/stylesheets/twitter/bootstrap/_type.scss +1 -281
  53. data/app/assets/stylesheets/twitter/bootstrap/_utilities.scss +1 -56
  54. data/app/assets/stylesheets/twitter/bootstrap/_variables.scss +1 -642
  55. data/app/assets/stylesheets/twitter/bootstrap/_wells.scss +1 -29
  56. data/lib/bootstrap-sass-rails.rb +1 -1
  57. data/lib/bootstrap/sass/rails/engine.rb +3 -8
  58. data/lib/bootstrap/sass/rails/version.rb +2 -1
  59. data/lib/generators/bootstrap/templates/USAGE +1 -1
  60. metadata +37 -17
  61. data/app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.eot +0 -0
  62. data/app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.svg +0 -229
  63. data/app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.ttf +0 -0
  64. data/app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.woff +0 -0
  65. data/lib/bootstrap/sass/extensions.rb +0 -5
  66. data/lib/bootstrap/sass/extensions/functions.rb +0 -15
@@ -1,242 +1 @@
1
- //
2
- // Navs
3
- // --------------------------------------------------
4
-
5
-
6
- // Base class
7
- // --------------------------------------------------
8
-
9
- .nav {
10
- margin-bottom: 0;
11
- padding-left: 0; // Override default ul/ol
12
- list-style: none;
13
- @include clearfix();
14
-
15
- > li {
16
- position: relative;
17
- display: block;
18
-
19
- > a {
20
- position: relative;
21
- display: block;
22
- padding: $nav-link-padding;
23
- &:hover,
24
- &:focus {
25
- text-decoration: none;
26
- background-color: $nav-link-hover-bg;
27
- }
28
- }
29
-
30
- // Disabled state sets text to gray and nukes hover/tab effects
31
- &.disabled > a {
32
- color: $nav-disabled-link-color;
33
-
34
- &:hover,
35
- &:focus {
36
- color: $nav-disabled-link-hover-color;
37
- text-decoration: none;
38
- background-color: transparent;
39
- cursor: not-allowed;
40
- }
41
- }
42
- }
43
-
44
- // Open dropdowns
45
- .open > a {
46
- &,
47
- &:hover,
48
- &:focus {
49
- background-color: $nav-link-hover-bg;
50
- border-color: $link-color;
51
- }
52
- }
53
-
54
- // Nav dividers (deprecated with v3.0.1)
55
- //
56
- // This should have been removed in v3 with the dropping of `.nav-list`, but
57
- // we missed it. We don't currently support this anywhere, but in the interest
58
- // of maintaining backward compatibility in case you use it, it's deprecated.
59
- .nav-divider {
60
- @include nav-divider();
61
- }
62
-
63
- // Prevent IE8 from misplacing imgs
64
- //
65
- // See https://github.com/h5bp/html5-boilerplate/issues/984#issuecomment-3985989
66
- > li > a > img {
67
- max-width: none;
68
- }
69
- }
70
-
71
-
72
- // Tabs
73
- // -------------------------
74
-
75
- // Give the tabs something to sit on
76
- .nav-tabs {
77
- border-bottom: 1px solid $nav-tabs-border-color;
78
- > li {
79
- float: left;
80
- // Make the list-items overlay the bottom border
81
- margin-bottom: -1px;
82
-
83
- // Actual tabs (as links)
84
- > a {
85
- margin-right: 2px;
86
- line-height: $line-height-base;
87
- border: 1px solid transparent;
88
- border-radius: $border-radius-base $border-radius-base 0 0;
89
- &:hover {
90
- border-color: $nav-tabs-link-hover-border-color $nav-tabs-link-hover-border-color $nav-tabs-border-color;
91
- }
92
- }
93
-
94
- // Active state, and it's :hover to override normal :hover
95
- &.active > a {
96
- &,
97
- &:hover,
98
- &:focus {
99
- color: $nav-tabs-active-link-hover-color;
100
- background-color: $nav-tabs-active-link-hover-bg;
101
- border: 1px solid $nav-tabs-active-link-hover-border-color;
102
- border-bottom-color: transparent;
103
- cursor: default;
104
- }
105
- }
106
- }
107
- // pulling this in mainly for less shorthand
108
- &.nav-justified {
109
- @extend .nav-justified;
110
- @extend .nav-tabs-justified;
111
- }
112
- }
113
-
114
-
115
- // Pills
116
- // -------------------------
117
- .nav-pills {
118
- > li {
119
- float: left;
120
-
121
- // Links rendered as pills
122
- > a {
123
- border-radius: $nav-pills-border-radius;
124
- }
125
- + li {
126
- margin-left: 2px;
127
- }
128
-
129
- // Active state
130
- &.active > a {
131
- &,
132
- &:hover,
133
- &:focus {
134
- color: $nav-pills-active-link-hover-color;
135
- background-color: $nav-pills-active-link-hover-bg;
136
- }
137
- }
138
- }
139
- }
140
-
141
-
142
- // Stacked pills
143
- .nav-stacked {
144
- > li {
145
- float: none;
146
- + li {
147
- margin-top: 2px;
148
- margin-left: 0; // no need for this gap between nav items
149
- }
150
- }
151
- }
152
-
153
-
154
- // Nav variations
155
- // --------------------------------------------------
156
-
157
- // Justified nav links
158
- // -------------------------
159
-
160
- .nav-justified {
161
- width: 100%;
162
-
163
- > li {
164
- float: none;
165
- > a {
166
- text-align: center;
167
- margin-bottom: 5px;
168
- }
169
- }
170
-
171
- > .dropdown .dropdown-menu {
172
- top: auto;
173
- left: auto;
174
- }
175
-
176
- @media (min-width: $screen-sm-min) {
177
- > li {
178
- display: table-cell;
179
- width: 1%;
180
- > a {
181
- margin-bottom: 0;
182
- }
183
- }
184
- }
185
- }
186
-
187
- // Move borders to anchors instead of bottom of list
188
- //
189
- // Mixin for adding on top the shared `.nav-justified` styles for our tabs
190
- .nav-tabs-justified {
191
- border-bottom: 0;
192
-
193
- > li > a {
194
- // Override margin from .nav-tabs
195
- margin-right: 0;
196
- border-radius: $border-radius-base;
197
- }
198
-
199
- > .active > a,
200
- > .active > a:hover,
201
- > .active > a:focus {
202
- border: 1px solid $nav-tabs-justified-link-border-color;
203
- }
204
-
205
- @media (min-width: $screen-sm-min) {
206
- > li > a {
207
- border-bottom: 1px solid $nav-tabs-justified-link-border-color;
208
- border-radius: $border-radius-base $border-radius-base 0 0;
209
- }
210
- > .active > a,
211
- > .active > a:hover,
212
- > .active > a:focus {
213
- border-bottom-color: $nav-tabs-justified-active-link-border-color;
214
- }
215
- }
216
- }
217
-
218
-
219
- // Tabbable tabs
220
- // -------------------------
221
-
222
- // Hide tabbable panes to start, show them when `.active`
223
- .tab-content {
224
- > .tab-pane {
225
- display: none;
226
- }
227
- > .active {
228
- display: block;
229
- }
230
- }
231
-
232
-
233
- // Dropdowns
234
- // -------------------------
235
-
236
- // Specific dropdowns
237
- .nav-tabs .dropdown-menu {
238
- // make dropdown border overlap tab border
239
- margin-top: -1px;
240
- // Remove the top rounded corners here since there is a hard edge above the menu
241
- @include border-top-radius(0);
242
- }
1
+ @import "bootstrap/navs";
@@ -1,406 +1 @@
1
- /*! normalize.css v2.1.3 | MIT License | git.io/normalize */
2
-
3
- // ==========================================================================
4
- // HTML5 display definitions
5
- // ==========================================================================
6
-
7
- //
8
- // Correct `block` display not defined in IE 8/9.
9
- //
10
-
11
- article,
12
- aside,
13
- details,
14
- figcaption,
15
- figure,
16
- footer,
17
- header,
18
- hgroup,
19
- main,
20
- nav,
21
- section,
22
- summary {
23
- display: block;
24
- }
25
-
26
- //
27
- // Correct `inline-block` display not defined in IE 8/9.
28
- //
29
-
30
- audio,
31
- canvas,
32
- video {
33
- display: inline-block;
34
- }
35
-
36
- //
37
- // Prevent modern browsers from displaying `audio` without controls.
38
- // Remove excess height in iOS 5 devices.
39
- //
40
-
41
- audio:not([controls]) {
42
- display: none;
43
- height: 0;
44
- }
45
-
46
- //
47
- // Address `[hidden]` styling not present in IE 8/9.
48
- // Hide the `template` element in IE, Safari, and Firefox < 22.
49
- //
50
-
51
- [hidden],
52
- template {
53
- display: none;
54
- }
55
-
56
- // ==========================================================================
57
- // Base
58
- // ==========================================================================
59
-
60
- //
61
- // 1. Set default font family to sans-serif.
62
- // 2. Prevent iOS text size adjust after orientation change, without disabling
63
- // user zoom.
64
- //
65
-
66
- html {
67
- font-family: sans-serif; // 1
68
- -ms-text-size-adjust: 100%; // 2
69
- -webkit-text-size-adjust: 100%; // 2
70
- }
71
-
72
- //
73
- // Remove default margin.
74
- //
75
-
76
- body {
77
- margin: 0;
78
- }
79
-
80
- // ==========================================================================
81
- // Links
82
- // ==========================================================================
83
-
84
- //
85
- // Remove the gray background color from active links in IE 10.
86
- //
87
-
88
- a {
89
- background: transparent;
90
- }
91
-
92
- //
93
- // Address `outline` inconsistency between Chrome and other browsers.
94
- //
95
-
96
- a:focus {
97
- outline: thin dotted;
98
- }
99
-
100
- //
101
- // Improve readability when focused and also mouse hovered in all browsers.
102
- //
103
-
104
- a:active,
105
- a:hover {
106
- outline: 0;
107
- }
108
-
109
- // ==========================================================================
110
- // Typography
111
- // ==========================================================================
112
-
113
- //
114
- // Address variable `h1` font-size and margin within `section` and `article`
115
- // contexts in Firefox 4+, Safari 5, and Chrome.
116
- //
117
-
118
- h1 {
119
- font-size: 2em;
120
- margin: 0.67em 0;
121
- }
122
-
123
- //
124
- // Address styling not present in IE 8/9, Safari 5, and Chrome.
125
- //
126
-
127
- abbr[title] {
128
- border-bottom: 1px dotted;
129
- }
130
-
131
- //
132
- // Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
133
- //
134
-
135
- b,
136
- strong {
137
- font-weight: bold;
138
- }
139
-
140
- //
141
- // Address styling not present in Safari 5 and Chrome.
142
- //
143
-
144
- dfn {
145
- font-style: italic;
146
- }
147
-
148
- //
149
- // Address differences between Firefox and other browsers.
150
- //
151
-
152
- hr {
153
- -moz-box-sizing: content-box;
154
- box-sizing: content-box;
155
- height: 0;
156
- }
157
-
158
- //
159
- // Address styling not present in IE 8/9.
160
- //
161
-
162
- mark {
163
- background: #ff0;
164
- color: #000;
165
- }
166
-
167
- //
168
- // Correct font family set oddly in Safari 5 and Chrome.
169
- //
170
-
171
- code,
172
- kbd,
173
- pre,
174
- samp {
175
- font-family: monospace, serif;
176
- font-size: 1em;
177
- }
178
-
179
- //
180
- // Improve readability of pre-formatted text in all browsers.
181
- //
182
-
183
- pre {
184
- white-space: pre-wrap;
185
- }
186
-
187
- //
188
- // Set consistent quote types.
189
- //
190
-
191
- q {
192
- quotes: "\201C" "\201D" "\2018" "\2019";
193
- }
194
-
195
- //
196
- // Address inconsistent and variable font size in all browsers.
197
- //
198
-
199
- small {
200
- font-size: 80%;
201
- }
202
-
203
- //
204
- // Prevent `sub` and `sup` affecting `line-height` in all browsers.
205
- //
206
-
207
- sub,
208
- sup {
209
- font-size: 75%;
210
- line-height: 0;
211
- position: relative;
212
- vertical-align: baseline;
213
- }
214
-
215
- sup {
216
- top: -0.5em;
217
- }
218
-
219
- sub {
220
- bottom: -0.25em;
221
- }
222
-
223
- // ==========================================================================
224
- // Embedded content
225
- // ==========================================================================
226
-
227
- //
228
- // Remove border when inside `a` element in IE 8/9.
229
- //
230
-
231
- img {
232
- border: 0;
233
- }
234
-
235
- //
236
- // Correct overflow displayed oddly in IE 9.
237
- //
238
-
239
- svg:not(:root) {
240
- overflow: hidden;
241
- }
242
-
243
- // ==========================================================================
244
- // Figures
245
- // ==========================================================================
246
-
247
- //
248
- // Address margin not present in IE 8/9 and Safari 5.
249
- //
250
-
251
- figure {
252
- margin: 0;
253
- }
254
-
255
- // ==========================================================================
256
- // Forms
257
- // ==========================================================================
258
-
259
- //
260
- // Define consistent border, margin, and padding.
261
- //
262
-
263
- fieldset {
264
- border: 1px solid #c0c0c0;
265
- margin: 0 2px;
266
- padding: 0.35em 0.625em 0.75em;
267
- }
268
-
269
- //
270
- // 1. Correct `color` not being inherited in IE 8/9.
271
- // 2. Remove padding so people aren't caught out if they zero out fieldsets.
272
- //
273
-
274
- legend {
275
- border: 0; // 1
276
- padding: 0; // 2
277
- }
278
-
279
- //
280
- // 1. Correct font family not being inherited in all browsers.
281
- // 2. Correct font size not being inherited in all browsers.
282
- // 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
283
- //
284
-
285
- button,
286
- input,
287
- select,
288
- textarea {
289
- font-family: inherit; // 1
290
- font-size: 100%; // 2
291
- margin: 0; // 3
292
- }
293
-
294
- //
295
- // Address Firefox 4+ setting `line-height` on `input` using `!important` in
296
- // the UA stylesheet.
297
- //
298
-
299
- button,
300
- input {
301
- line-height: normal;
302
- }
303
-
304
- //
305
- // Address inconsistent `text-transform` inheritance for `button` and `select`.
306
- // All other form control elements do not inherit `text-transform` values.
307
- // Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
308
- // Correct `select` style inheritance in Firefox 4+ and Opera.
309
- //
310
-
311
- button,
312
- select {
313
- text-transform: none;
314
- }
315
-
316
- //
317
- // 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
318
- // and `video` controls.
319
- // 2. Correct inability to style clickable `input` types in iOS.
320
- // 3. Improve usability and consistency of cursor style between image-type
321
- // `input` and others.
322
- //
323
-
324
- button,
325
- html input[type="button"], // 1
326
- input[type="reset"],
327
- input[type="submit"] {
328
- -webkit-appearance: button; // 2
329
- cursor: pointer; // 3
330
- }
331
-
332
- //
333
- // Re-set default cursor for disabled elements.
334
- //
335
-
336
- button[disabled],
337
- html input[disabled] {
338
- cursor: default;
339
- }
340
-
341
- //
342
- // 1. Address box sizing set to `content-box` in IE 8/9/10.
343
- // 2. Remove excess padding in IE 8/9/10.
344
- //
345
-
346
- input[type="checkbox"],
347
- input[type="radio"] {
348
- box-sizing: border-box; // 1
349
- padding: 0; // 2
350
- }
351
-
352
- //
353
- // 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
354
- // 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
355
- // (include `-moz` to future-proof).
356
- //
357
-
358
- input[type="search"] {
359
- -webkit-appearance: textfield; // 1
360
- -moz-box-sizing: content-box;
361
- -webkit-box-sizing: content-box; // 2
362
- box-sizing: content-box;
363
- }
364
-
365
- //
366
- // Remove inner padding and search cancel button in Safari 5 and Chrome
367
- // on OS X.
368
- //
369
-
370
- input[type="search"]::-webkit-search-cancel-button,
371
- input[type="search"]::-webkit-search-decoration {
372
- -webkit-appearance: none;
373
- }
374
-
375
- //
376
- // Remove inner padding and border in Firefox 4+.
377
- //
378
-
379
- button::-moz-focus-inner,
380
- input::-moz-focus-inner {
381
- border: 0;
382
- padding: 0;
383
- }
384
-
385
- //
386
- // 1. Remove default vertical scrollbar in IE 8/9.
387
- // 2. Improve readability and alignment in all browsers.
388
- //
389
-
390
- textarea {
391
- overflow: auto; // 1
392
- vertical-align: top; // 2
393
- }
394
-
395
- // ==========================================================================
396
- // Tables
397
- // ==========================================================================
398
-
399
- //
400
- // Remove most spacing between table cells.
401
- //
402
-
403
- table {
404
- border-collapse: collapse;
405
- border-spacing: 0;
406
- }
1
+ @import "bootstrap/normalize";