bootstrap-sass-rails 3.0.3.0 → 3.1.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.
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,231 +1 @@
1
- //
2
- // Tables
3
- // --------------------------------------------------
4
-
5
-
6
- table {
7
- max-width: 100%;
8
- background-color: $table-bg;
9
- }
10
- th {
11
- text-align: left;
12
- }
13
-
14
-
15
- // Baseline styles
16
-
17
- .table {
18
- width: 100%;
19
- margin-bottom: $line-height-computed;
20
- // Cells
21
- > thead,
22
- > tbody,
23
- > tfoot {
24
- > tr {
25
- > th,
26
- > td {
27
- padding: $table-cell-padding;
28
- line-height: $line-height-base;
29
- vertical-align: top;
30
- border-top: 1px solid $table-border-color;
31
- }
32
- }
33
- }
34
- // Bottom align for column headings
35
- > thead > tr > th {
36
- vertical-align: bottom;
37
- border-bottom: 2px solid $table-border-color;
38
- }
39
- // Remove top border from thead by default
40
- > caption + thead,
41
- > colgroup + thead,
42
- > thead:first-child {
43
- > tr:first-child {
44
- > th,
45
- > td {
46
- border-top: 0;
47
- }
48
- }
49
- }
50
- // Account for multiple tbody instances
51
- > tbody + tbody {
52
- border-top: 2px solid $table-border-color;
53
- }
54
-
55
- // Nesting
56
- .table {
57
- background-color: $body-bg;
58
- }
59
- }
60
-
61
-
62
- // Condensed table w/ half padding
63
-
64
- .table-condensed {
65
- > thead,
66
- > tbody,
67
- > tfoot {
68
- > tr {
69
- > th,
70
- > td {
71
- padding: $table-condensed-cell-padding;
72
- }
73
- }
74
- }
75
- }
76
-
77
-
78
- // Bordered version
79
- //
80
- // Add borders all around the table and between all the columns.
81
-
82
- .table-bordered {
83
- border: 1px solid $table-border-color;
84
- > thead,
85
- > tbody,
86
- > tfoot {
87
- > tr {
88
- > th,
89
- > td {
90
- border: 1px solid $table-border-color;
91
- }
92
- }
93
- }
94
- > thead > tr {
95
- > th,
96
- > td {
97
- border-bottom-width: 2px;
98
- }
99
- }
100
- }
101
-
102
-
103
- // Zebra-striping
104
- //
105
- // Default zebra-stripe styles (alternating gray and transparent backgrounds)
106
-
107
- .table-striped {
108
- > tbody > tr:nth-child(odd) {
109
- > td,
110
- > th {
111
- background-color: $table-bg-accent;
112
- }
113
- }
114
- }
115
-
116
-
117
- // Hover effect
118
- //
119
- // Placed here since it has to come after the potential zebra striping
120
-
121
- .table-hover {
122
- > tbody > tr:hover {
123
- > td,
124
- > th {
125
- background-color: $table-bg-hover;
126
- }
127
- }
128
- }
129
-
130
-
131
- // Table cell sizing
132
- //
133
- // Reset default table behavior
134
-
135
- table col[class*="col-"] {
136
- position: static; // Prevent border hiding in Firefox and IE9/10 (see https://github.com/twbs/bootstrap/issues/11623)
137
- float: none;
138
- display: table-column;
139
- }
140
- table {
141
- td,
142
- th {
143
- &[class*="col-"] {
144
- float: none;
145
- display: table-cell;
146
- }
147
- }
148
- }
149
-
150
-
151
- // Table backgrounds
152
- //
153
- // Exact selectors below required to override `.table-striped` and prevent
154
- // inheritance to nested tables.
155
-
156
- // Generate the contextual variants
157
- @include table-row-variant('active', $table-bg-active);
158
- @include table-row-variant('success', $state-success-bg);
159
- @include table-row-variant('danger', $state-danger-bg);
160
- @include table-row-variant('warning', $state-warning-bg);
161
-
162
-
163
- // Responsive tables
164
- //
165
- // Wrap your tables in `.table-responsive` and we'll make them mobile friendly
166
- // by enabling horizontal scrolling. Only applies <768px. Everything above that
167
- // will display normally.
168
-
169
- @media (max-width: $screen-xs-max) {
170
- .table-responsive {
171
- width: 100%;
172
- margin-bottom: ($line-height-computed * 0.75);
173
- overflow-y: hidden;
174
- overflow-x: scroll;
175
- -ms-overflow-style: -ms-autohiding-scrollbar;
176
- border: 1px solid $table-border-color;
177
- -webkit-overflow-scrolling: touch;
178
-
179
- // Tighten up spacing
180
- > .table {
181
- margin-bottom: 0;
182
-
183
- // Ensure the content doesn't wrap
184
- > thead,
185
- > tbody,
186
- > tfoot {
187
- > tr {
188
- > th,
189
- > td {
190
- white-space: nowrap;
191
- }
192
- }
193
- }
194
- }
195
-
196
- // Special overrides for the bordered tables
197
- > .table-bordered {
198
- border: 0;
199
-
200
- // Nuke the appropriate borders so that the parent can handle them
201
- > thead,
202
- > tbody,
203
- > tfoot {
204
- > tr {
205
- > th:first-child,
206
- > td:first-child {
207
- border-left: 0;
208
- }
209
- > th:last-child,
210
- > td:last-child {
211
- border-right: 0;
212
- }
213
- }
214
- }
215
-
216
- // Only nuke the last row's bottom-border in `tbody` and `tfoot` since
217
- // chances are there will be only one `tr` in a `thead` and that would
218
- // remove the border altogether.
219
- > tbody,
220
- > tfoot {
221
- > tr:last-child {
222
- > th,
223
- > td {
224
- border-bottom: 0;
225
- }
226
- }
227
- }
228
-
229
- }
230
- }
231
- }
1
+ @import "bootstrap/tables";
@@ -1,247 +1 @@
1
-
2
- //
3
- // Load core variables and mixins
4
- // --------------------------------------------------
5
-
6
- @import "twitter/bootstrap/variables";
7
- @import "twitter/bootstrap/mixins";
8
-
9
-
10
-
11
- //
12
- // Buttons
13
- // --------------------------------------------------
14
-
15
- // Common styles
16
- .btn-default,
17
- .btn-primary,
18
- .btn-success,
19
- .btn-info,
20
- .btn-warning,
21
- .btn-danger {
22
- text-shadow: 0 -1px 0 rgba(0,0,0,.2);
23
- $shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 1px rgba(0,0,0,.075);
24
- @include box-shadow($shadow);
25
-
26
- // Reset the shadow
27
- &:active,
28
- &.active {
29
- @include box-shadow(inset 0 3px 5px rgba(0,0,0,.125));
30
- }
31
- }
32
-
33
- // Mixin for generating new styles
34
- @mixin btn-styles($btn-color: #555) {
35
- @include gradient-vertical($start-color: $btn-color, $end-color: darken($btn-color, 12%));
36
- @include reset-filter(); // Disable gradients for IE9 because filter bleeds through rounded corners
37
- background-repeat: repeat-x;
38
- border-color: darken($btn-color, 14%);
39
-
40
- &:hover,
41
- &:focus {
42
- background-color: darken($btn-color, 12%);
43
- background-position: 0 -15px;
44
- }
45
-
46
- &:active,
47
- &.active {
48
- background-color: darken($btn-color, 12%);
49
- border-color: darken($btn-color, 14%);
50
- }
51
- }
52
-
53
- // Common styles
54
- .btn {
55
- // Remove the gradient for the pressed/active state
56
- &:active,
57
- &.active {
58
- background-image: none;
59
- }
60
- }
61
-
62
- // Apply the mixin to the buttons
63
- .btn-default { @include btn-styles($btn-default-bg); text-shadow: 0 1px 0 #fff; border-color: #ccc; }
64
- .btn-primary { @include btn-styles($btn-primary-bg); }
65
- .btn-success { @include btn-styles($btn-success-bg); }
66
- .btn-warning { @include btn-styles($btn-warning-bg); }
67
- .btn-danger { @include btn-styles($btn-danger-bg); }
68
- .btn-info { @include btn-styles($btn-info-bg); }
69
-
70
-
71
-
72
- //
73
- // Images
74
- // --------------------------------------------------
75
-
76
- .thumbnail,
77
- .img-thumbnail {
78
- @include box-shadow(0 1px 2px rgba(0,0,0,.075));
79
- }
80
-
81
-
82
-
83
- //
84
- // Dropdowns
85
- // --------------------------------------------------
86
-
87
- .dropdown-menu > li > a:hover,
88
- .dropdown-menu > li > a:focus {
89
- @include gradient-vertical($start-color: $dropdown-link-hover-bg, $end-color: darken($dropdown-link-hover-bg, 5%));
90
- background-color: darken($dropdown-link-hover-bg, 5%);
91
- }
92
- .dropdown-menu > .active > a,
93
- .dropdown-menu > .active > a:hover,
94
- .dropdown-menu > .active > a:focus {
95
- @include gradient-vertical($start-color: $dropdown-link-active-bg, $end-color: darken($dropdown-link-active-bg, 5%));
96
- background-color: darken($dropdown-link-active-bg, 5%);
97
- }
98
-
99
-
100
-
101
- //
102
- // Navbar
103
- // --------------------------------------------------
104
-
105
- // Default navbar
106
- .navbar-default {
107
- @include gradient-vertical($start-color: lighten($navbar-default-bg, 10%), $end-color: $navbar-default-bg);
108
- @include reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered
109
- border-radius: $navbar-border-radius;
110
- $shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 5px rgba(0,0,0,.075);
111
- @include box-shadow($shadow);
112
-
113
- .navbar-nav > .active > a {
114
- @include gradient-vertical($start-color: darken($navbar-default-bg, 5%), $end-color: darken($navbar-default-bg, 2%));
115
- @include box-shadow(inset 0 3px 9px rgba(0,0,0,.075));
116
- }
117
- }
118
- .navbar-brand,
119
- .navbar-nav > li > a {
120
- text-shadow: 0 1px 0 rgba(255,255,255,.25);
121
- }
122
-
123
- // Inverted navbar
124
- .navbar-inverse {
125
- @include gradient-vertical($start-color: lighten($navbar-inverse-bg, 10%), $end-color: $navbar-inverse-bg);
126
- @include reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered
127
-
128
- .navbar-nav > .active > a {
129
- @include gradient-vertical($start-color: $navbar-inverse-bg, $end-color: lighten($navbar-inverse-bg, 2.5%));
130
- @include box-shadow(inset 0 3px 9px rgba(0,0,0,.25));
131
- }
132
-
133
- .navbar-brand,
134
- .navbar-nav > li > a {
135
- text-shadow: 0 -1px 0 rgba(0,0,0,.25);
136
- }
137
- }
138
-
139
- // Undo rounded corners in static and fixed navbars
140
- .navbar-static-top,
141
- .navbar-fixed-top,
142
- .navbar-fixed-bottom {
143
- border-radius: 0;
144
- }
145
-
146
-
147
-
148
- //
149
- // Alerts
150
- // --------------------------------------------------
151
-
152
- // Common styles
153
- .alert {
154
- text-shadow: 0 1px 0 rgba(255,255,255,.2);
155
- $shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 1px 2px rgba(0,0,0,.05);
156
- @include box-shadow($shadow);
157
- }
158
-
159
- // Mixin for generating new styles
160
- @mixin alert-styles($color) {
161
- @include gradient-vertical($start-color: $color, $end-color: darken($color, 7.5%));
162
- border-color: darken($color, 15%);
163
- }
164
-
165
- // Apply the mixin to the alerts
166
- .alert-success { @include alert-styles($alert-success-bg); }
167
- .alert-info { @include alert-styles($alert-info-bg); }
168
- .alert-warning { @include alert-styles($alert-warning-bg); }
169
- .alert-danger { @include alert-styles($alert-danger-bg); }
170
-
171
-
172
-
173
- //
174
- // Progress bars
175
- // --------------------------------------------------
176
-
177
- // Give the progress background some depth
178
- .progress {
179
- @include gradient-vertical($start-color: darken($progress-bg, 4%), $end-color: $progress-bg)
180
- }
181
-
182
- // Mixin for generating new styles
183
- @mixin progress-bar-styles($color) {
184
- @include gradient-vertical($start-color: $color, $end-color: darken($color, 10%));
185
- }
186
-
187
- // Apply the mixin to the progress bars
188
- .progress-bar { @include progress-bar-styles($progress-bar-bg); }
189
- .progress-bar-success { @include progress-bar-styles($progress-bar-success-bg); }
190
- .progress-bar-info { @include progress-bar-styles($progress-bar-info-bg); }
191
- .progress-bar-warning { @include progress-bar-styles($progress-bar-warning-bg); }
192
- .progress-bar-danger { @include progress-bar-styles($progress-bar-danger-bg); }
193
-
194
-
195
-
196
- //
197
- // List groups
198
- // --------------------------------------------------
199
-
200
- .list-group {
201
- border-radius: $border-radius-base;
202
- @include box-shadow(0 1px 2px rgba(0,0,0,.075));
203
- }
204
- .list-group-item.active,
205
- .list-group-item.active:hover,
206
- .list-group-item.active:focus {
207
- text-shadow: 0 -1px 0 darken($list-group-active-bg, 10%);
208
- @include gradient-vertical($start-color: $list-group-active-bg, $end-color: darken($list-group-active-bg, 7.5%));
209
- border-color: darken($list-group-active-border, 7.5%);
210
- }
211
-
212
-
213
-
214
- //
215
- // Panels
216
- // --------------------------------------------------
217
-
218
- // Common styles
219
- .panel {
220
- @include box-shadow(0 1px 2px rgba(0,0,0,.05));
221
- }
222
-
223
- // Mixin for generating new styles
224
- @mixin panel-heading-styles($color) {
225
- @include gradient-vertical($start-color: $color, $end-color: darken($color, 5%));
226
- }
227
-
228
- // Apply the mixin to the panel headings only
229
- .panel-default > .panel-heading { @include panel-heading-styles($panel-default-heading-bg); }
230
- .panel-primary > .panel-heading { @include panel-heading-styles($panel-primary-heading-bg); }
231
- .panel-success > .panel-heading { @include panel-heading-styles($panel-success-heading-bg); }
232
- .panel-info > .panel-heading { @include panel-heading-styles($panel-info-heading-bg); }
233
- .panel-warning > .panel-heading { @include panel-heading-styles($panel-warning-heading-bg); }
234
- .panel-danger > .panel-heading { @include panel-heading-styles($panel-danger-heading-bg); }
235
-
236
-
237
-
238
- //
239
- // Wells
240
- // --------------------------------------------------
241
-
242
- .well {
243
- @include gradient-vertical($start-color: darken($well-bg, 5%), $end-color: $well-bg);
244
- border-color: darken($well-bg, 10%);
245
- $shadow: inset 0 1px 3px rgba(0,0,0,.05), 0 1px 0 rgba(255,255,255,.1);
246
- @include box-shadow($shadow);
247
- }
1
+ @import "bootstrap/theme";