sass-twitter-bootstrap 2.0.1 → 2.1.1
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/lib/sass/twitter/bootstrap/version.rb +1 -1
- data/vendor/assets/images/glyphicons-halflings-white.png +0 -0
- data/vendor/assets/images/glyphicons-halflings.png +0 -0
- data/vendor/assets/javascripts/twitter/bootstrap-affix.js +104 -0
- data/vendor/assets/javascripts/twitter/bootstrap-alert.js +28 -32
- data/vendor/assets/javascripts/twitter/bootstrap-button.js +29 -33
- data/vendor/assets/javascripts/twitter/bootstrap-carousel.js +43 -24
- data/vendor/assets/javascripts/twitter/bootstrap-collapse.js +50 -28
- data/vendor/assets/javascripts/twitter/bootstrap-dropdown.js +77 -19
- data/vendor/assets/javascripts/twitter/bootstrap-modal.js +113 -84
- data/vendor/assets/javascripts/twitter/bootstrap-popover.js +19 -11
- data/vendor/assets/javascripts/twitter/bootstrap-scrollspy.js +50 -24
- data/vendor/assets/javascripts/twitter/bootstrap-tab.js +13 -8
- data/vendor/assets/javascripts/twitter/bootstrap-tooltip.js +44 -39
- data/vendor/assets/javascripts/twitter/bootstrap-transition.js +29 -20
- data/vendor/assets/javascripts/twitter/bootstrap-typeahead.js +73 -44
- data/vendor/assets/javascripts/twitter/bootstrap.js +12 -0
- data/vendor/assets/stylesheets/tests/css-tests.css +1 -12
- data/vendor/assets/stylesheets/tests/css-tests.html +22 -125
- data/vendor/assets/stylesheets/tests/navbar.html +39 -38
- data/vendor/assets/stylesheets/twitter/_accordion.scss +8 -2
- data/vendor/assets/stylesheets/twitter/_alerts.scss +16 -21
- data/vendor/assets/stylesheets/twitter/_breadcrumbs.scss +12 -10
- data/vendor/assets/stylesheets/twitter/_button-groups.scss +137 -39
- data/vendor/assets/stylesheets/twitter/_buttons.scss +129 -81
- data/vendor/assets/stylesheets/twitter/_carousel.scss +13 -3
- data/vendor/assets/stylesheets/twitter/_close.scss +16 -3
- data/vendor/assets/stylesheets/twitter/_code.scss +11 -10
- data/vendor/assets/stylesheets/twitter/_component-animations.scss +12 -8
- data/vendor/assets/stylesheets/twitter/_dropdowns.scss +133 -53
- data/vendor/assets/stylesheets/twitter/_forms.scss +298 -170
- data/vendor/assets/stylesheets/twitter/_grid.scss +17 -4
- data/vendor/assets/stylesheets/twitter/_hero-unit.scss +7 -3
- data/vendor/assets/stylesheets/twitter/_labels-badges.scss +69 -0
- data/vendor/assets/stylesheets/twitter/_layouts.scss +2 -3
- data/vendor/assets/stylesheets/twitter/_mixins.scss +359 -258
- data/vendor/assets/stylesheets/twitter/_modals.scss +26 -12
- data/vendor/assets/stylesheets/twitter/_navbar.scss +318 -143
- data/vendor/assets/stylesheets/twitter/_navs.scss +87 -56
- data/vendor/assets/stylesheets/twitter/_pager.scss +16 -6
- data/vendor/assets/stylesheets/twitter/_pagination.scss +23 -14
- data/vendor/assets/stylesheets/twitter/_popovers.scss +101 -33
- data/vendor/assets/stylesheets/twitter/_progress-bars.scss +43 -16
- data/vendor/assets/stylesheets/twitter/_reset.scss +16 -6
- data/vendor/assets/stylesheets/twitter/_responsive-1200px-min.scss +28 -0
- data/vendor/assets/stylesheets/twitter/_responsive-767px-max.scss +174 -0
- data/vendor/assets/stylesheets/twitter/_responsive-768px-979px.scss +19 -0
- data/vendor/assets/stylesheets/twitter/_responsive-navbar.scss +177 -0
- data/vendor/assets/stylesheets/twitter/_responsive-utilities.scss +58 -0
- data/vendor/assets/stylesheets/twitter/_scaffolding.scss +32 -11
- data/vendor/assets/stylesheets/twitter/_sprites.scss +49 -14
- data/vendor/assets/stylesheets/twitter/_tables.scss +115 -42
- data/vendor/assets/stylesheets/twitter/_thumbnails.scss +23 -6
- data/vendor/assets/stylesheets/twitter/_tooltip.scss +47 -12
- data/vendor/assets/stylesheets/twitter/_type.scss +96 -93
- data/vendor/assets/stylesheets/twitter/_utilities.scss +24 -2
- data/vendor/assets/stylesheets/twitter/_variables.scss +202 -31
- data/vendor/assets/stylesheets/twitter/_wells.scss +17 -5
- data/vendor/assets/stylesheets/twitter/bootstrap.scss +3 -7
- data/vendor/assets/stylesheets/twitter/responsive.scss +15 -301
- metadata +10 -7
- data/vendor/assets/stylesheets/tests/buttons.html +0 -139
- data/vendor/assets/stylesheets/tests/forms-responsive.html +0 -71
- data/vendor/assets/stylesheets/tests/navbar-fixed-top.html +0 -104
- data/vendor/assets/stylesheets/tests/navbar-static-top.html +0 -107
- data/vendor/assets/stylesheets/twitter/_labels.scss +0 -32
@@ -1,5 +1,5 @@
|
|
1
1
|
/* ===================================================
|
2
|
-
* bootstrap-transition.js v2.
|
2
|
+
* bootstrap-transition.js v2.1.1
|
3
3
|
* http://twitter.github.com/bootstrap/javascript.html#transitions
|
4
4
|
* ===================================================
|
5
5
|
* Copyright 2012 Twitter, Inc.
|
@@ -17,35 +17,44 @@
|
|
17
17
|
* limitations under the License.
|
18
18
|
* ========================================================== */
|
19
19
|
|
20
|
-
|
20
|
+
|
21
|
+
!function ($) {
|
21
22
|
|
22
23
|
$(function () {
|
23
24
|
|
24
|
-
"use strict"
|
25
|
+
"use strict"; // jshint ;_;
|
26
|
+
|
25
27
|
|
26
|
-
/* CSS TRANSITION SUPPORT (
|
28
|
+
/* CSS TRANSITION SUPPORT (http://www.modernizr.com/)
|
27
29
|
* ======================================================= */
|
28
30
|
|
29
31
|
$.support.transition = (function () {
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
32
|
+
|
33
|
+
var transitionEnd = (function () {
|
34
|
+
|
35
|
+
var el = document.createElement('bootstrap')
|
36
|
+
, transEndEventNames = {
|
37
|
+
'WebkitTransition' : 'webkitTransitionEnd'
|
38
|
+
, 'MozTransition' : 'transitionend'
|
39
|
+
, 'OTransition' : 'oTransitionEnd otransitionend'
|
40
|
+
, 'transition' : 'transitionend'
|
41
|
+
}
|
42
|
+
, name
|
43
|
+
|
44
|
+
for (name in transEndEventNames){
|
45
|
+
if (el.style[name] !== undefined) {
|
46
|
+
return transEndEventNames[name]
|
43
47
|
}
|
44
|
-
|
45
|
-
|
48
|
+
}
|
49
|
+
|
50
|
+
}())
|
51
|
+
|
52
|
+
return transitionEnd && {
|
53
|
+
end: transitionEnd
|
46
54
|
}
|
55
|
+
|
47
56
|
})()
|
48
57
|
|
49
58
|
})
|
50
59
|
|
51
|
-
}(
|
60
|
+
}(window.jQuery);
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/* =============================================================
|
2
|
-
* bootstrap-typeahead.js v2.
|
2
|
+
* bootstrap-typeahead.js v2.1.1
|
3
3
|
* http://twitter.github.com/bootstrap/javascript.html#typeahead
|
4
4
|
* =============================================================
|
5
5
|
* Copyright 2012 Twitter, Inc.
|
@@ -17,16 +17,22 @@
|
|
17
17
|
* limitations under the License.
|
18
18
|
* ============================================================ */
|
19
19
|
|
20
|
-
!function( $ ){
|
21
20
|
|
22
|
-
|
21
|
+
!function($){
|
23
22
|
|
24
|
-
|
23
|
+
"use strict"; // jshint ;_;
|
24
|
+
|
25
|
+
|
26
|
+
/* TYPEAHEAD PUBLIC CLASS DEFINITION
|
27
|
+
* ================================= */
|
28
|
+
|
29
|
+
var Typeahead = function (element, options) {
|
25
30
|
this.$element = $(element)
|
26
31
|
this.options = $.extend({}, $.fn.typeahead.defaults, options)
|
27
32
|
this.matcher = this.options.matcher || this.matcher
|
28
33
|
this.sorter = this.options.sorter || this.sorter
|
29
34
|
this.highlighter = this.options.highlighter || this.highlighter
|
35
|
+
this.updater = this.options.updater || this.updater
|
30
36
|
this.$menu = $(this.options.menu).appendTo('body')
|
31
37
|
this.source = this.options.source
|
32
38
|
this.shown = false
|
@@ -39,10 +45,16 @@
|
|
39
45
|
|
40
46
|
, select: function () {
|
41
47
|
var val = this.$menu.find('.active').attr('data-value')
|
42
|
-
this.$element
|
48
|
+
this.$element
|
49
|
+
.val(this.updater(val))
|
50
|
+
.change()
|
43
51
|
return this.hide()
|
44
52
|
}
|
45
53
|
|
54
|
+
, updater: function (item) {
|
55
|
+
return item
|
56
|
+
}
|
57
|
+
|
46
58
|
, show: function () {
|
47
59
|
var pos = $.extend({}, this.$element.offset(), {
|
48
60
|
height: this.$element[0].offsetHeight
|
@@ -65,18 +77,24 @@
|
|
65
77
|
}
|
66
78
|
|
67
79
|
, lookup: function (event) {
|
68
|
-
var
|
69
|
-
, items
|
70
|
-
, q
|
80
|
+
var items
|
71
81
|
|
72
82
|
this.query = this.$element.val()
|
73
83
|
|
74
|
-
if (!this.query) {
|
84
|
+
if (!this.query || this.query.length < this.options.minLength) {
|
75
85
|
return this.shown ? this.hide() : this
|
76
86
|
}
|
77
87
|
|
78
|
-
items = $.
|
79
|
-
|
88
|
+
items = $.isFunction(this.source) ? this.source(this.query, $.proxy(this.process, this)) : this.source
|
89
|
+
|
90
|
+
return items ? this.process(items) : this
|
91
|
+
}
|
92
|
+
|
93
|
+
, process: function (items) {
|
94
|
+
var that = this
|
95
|
+
|
96
|
+
items = $.grep(items, function (item) {
|
97
|
+
return that.matcher(item)
|
80
98
|
})
|
81
99
|
|
82
100
|
items = this.sorter(items)
|
@@ -108,7 +126,8 @@
|
|
108
126
|
}
|
109
127
|
|
110
128
|
, highlighter: function (item) {
|
111
|
-
|
129
|
+
var query = this.query.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g, '\\$&')
|
130
|
+
return item.replace(new RegExp('(' + query + ')', 'ig'), function ($1, match) {
|
112
131
|
return '<strong>' + match + '</strong>'
|
113
132
|
})
|
114
133
|
}
|
@@ -155,8 +174,8 @@
|
|
155
174
|
.on('keypress', $.proxy(this.keypress, this))
|
156
175
|
.on('keyup', $.proxy(this.keyup, this))
|
157
176
|
|
158
|
-
if ($.browser.webkit || $.browser.msie) {
|
159
|
-
this.$element.on('keydown', $.proxy(this.
|
177
|
+
if ($.browser.chrome || $.browser.webkit || $.browser.msie) {
|
178
|
+
this.$element.on('keydown', $.proxy(this.keydown, this))
|
160
179
|
}
|
161
180
|
|
162
181
|
this.$menu
|
@@ -164,10 +183,41 @@
|
|
164
183
|
.on('mouseenter', 'li', $.proxy(this.mouseenter, this))
|
165
184
|
}
|
166
185
|
|
167
|
-
,
|
186
|
+
, move: function (e) {
|
187
|
+
if (!this.shown) return
|
188
|
+
|
189
|
+
switch(e.keyCode) {
|
190
|
+
case 9: // tab
|
191
|
+
case 13: // enter
|
192
|
+
case 27: // escape
|
193
|
+
e.preventDefault()
|
194
|
+
break
|
195
|
+
|
196
|
+
case 38: // up arrow
|
197
|
+
e.preventDefault()
|
198
|
+
this.prev()
|
199
|
+
break
|
200
|
+
|
201
|
+
case 40: // down arrow
|
202
|
+
e.preventDefault()
|
203
|
+
this.next()
|
204
|
+
break
|
205
|
+
}
|
206
|
+
|
168
207
|
e.stopPropagation()
|
169
|
-
|
208
|
+
}
|
170
209
|
|
210
|
+
, keydown: function (e) {
|
211
|
+
this.suppressKeyPressRepeat = !~$.inArray(e.keyCode, [40,38,9,13,27])
|
212
|
+
this.move(e)
|
213
|
+
}
|
214
|
+
|
215
|
+
, keypress: function (e) {
|
216
|
+
if (this.suppressKeyPressRepeat) return
|
217
|
+
this.move(e)
|
218
|
+
}
|
219
|
+
|
220
|
+
, keyup: function (e) {
|
171
221
|
switch(e.keyCode) {
|
172
222
|
case 40: // down arrow
|
173
223
|
case 38: // up arrow
|
@@ -180,6 +230,7 @@
|
|
180
230
|
break
|
181
231
|
|
182
232
|
case 27: // escape
|
233
|
+
if (!this.shown) return
|
183
234
|
this.hide()
|
184
235
|
break
|
185
236
|
|
@@ -187,35 +238,12 @@
|
|
187
238
|
this.lookup()
|
188
239
|
}
|
189
240
|
|
190
|
-
}
|
191
|
-
|
192
|
-
, keypress: function (e) {
|
193
241
|
e.stopPropagation()
|
194
|
-
|
195
|
-
|
196
|
-
switch(e.keyCode) {
|
197
|
-
case 9: // tab
|
198
|
-
case 13: // enter
|
199
|
-
case 27: // escape
|
200
|
-
e.preventDefault()
|
201
|
-
break
|
202
|
-
|
203
|
-
case 38: // up arrow
|
204
|
-
e.preventDefault()
|
205
|
-
this.prev()
|
206
|
-
break
|
207
|
-
|
208
|
-
case 40: // down arrow
|
209
|
-
e.preventDefault()
|
210
|
-
this.next()
|
211
|
-
break
|
212
|
-
}
|
213
|
-
}
|
242
|
+
e.preventDefault()
|
243
|
+
}
|
214
244
|
|
215
245
|
, blur: function (e) {
|
216
246
|
var that = this
|
217
|
-
e.stopPropagation()
|
218
|
-
e.preventDefault()
|
219
247
|
setTimeout(function () { that.hide() }, 150)
|
220
248
|
}
|
221
249
|
|
@@ -236,7 +264,7 @@
|
|
236
264
|
/* TYPEAHEAD PLUGIN DEFINITION
|
237
265
|
* =========================== */
|
238
266
|
|
239
|
-
$.fn.typeahead = function (
|
267
|
+
$.fn.typeahead = function (option) {
|
240
268
|
return this.each(function () {
|
241
269
|
var $this = $(this)
|
242
270
|
, data = $this.data('typeahead')
|
@@ -251,12 +279,13 @@
|
|
251
279
|
, items: 8
|
252
280
|
, menu: '<ul class="typeahead dropdown-menu"></ul>'
|
253
281
|
, item: '<li><a href="#"></a></li>'
|
282
|
+
, minLength: 1
|
254
283
|
}
|
255
284
|
|
256
285
|
$.fn.typeahead.Constructor = Typeahead
|
257
286
|
|
258
287
|
|
259
|
-
/*
|
288
|
+
/* TYPEAHEAD DATA-API
|
260
289
|
* ================== */
|
261
290
|
|
262
291
|
$(function () {
|
@@ -268,4 +297,4 @@
|
|
268
297
|
})
|
269
298
|
})
|
270
299
|
|
271
|
-
}(
|
300
|
+
}(window.jQuery);
|
@@ -0,0 +1,12 @@
|
|
1
|
+
//= require twitter/bootstrap-transition
|
2
|
+
//= require twitter/bootstrap-alert
|
3
|
+
//= require twitter/bootstrap-modal
|
4
|
+
//= require twitter/bootstrap-dropdown
|
5
|
+
//= require twitter/bootstrap-scrollspy
|
6
|
+
//= require twitter/bootstrap-tab
|
7
|
+
//= require twitter/bootstrap-tooltip
|
8
|
+
//= require twitter/bootstrap-popover
|
9
|
+
//= require twitter/bootstrap-button
|
10
|
+
//= require twitter/bootstrap-collapse
|
11
|
+
//= require twitter/bootstrap-carousel
|
12
|
+
//= require twitter/bootstrap-typeahead
|
@@ -136,15 +136,4 @@ body {
|
|
136
136
|
background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
137
137
|
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
138
138
|
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
139
|
-
}
|
140
|
-
|
141
|
-
.gradient-horizontal-three {
|
142
|
-
background-color: #00b3ee;
|
143
|
-
background-image: -webkit-gradient(left, linear, 0 0, 0 100%, from(#00b3ee), color-stop(50%, #7a43b6), to(#c3325f));
|
144
|
-
background-image: -webkit-linear-gradient(left, #00b3ee, #7a43b6 50%, #c3325f);
|
145
|
-
background-image: -moz-linear-gradient(left, #00b3ee, #7a43b6 50%, #c3325f);
|
146
|
-
background-image: -o-linear-gradient(left, #00b3ee, #7a43b6 50%, #c3325f);
|
147
|
-
background-image: linear-gradient(to right, #00b3ee, #7a43b6 50%, #c3325f);
|
148
|
-
background-repeat: no-repeat;
|
149
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00b3ee', endColorstr='#c3325f', GradientType=0);
|
150
|
-
}
|
139
|
+
}
|
@@ -22,11 +22,11 @@
|
|
22
22
|
<![endif]-->
|
23
23
|
|
24
24
|
<!-- Le fav and touch icons -->
|
25
|
+
<link rel="shortcut icon" href="../../docs/assets/ico/favicon.ico">
|
25
26
|
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="../../docs/assets/ico/apple-touch-icon-144-precomposed.png">
|
26
27
|
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="../../docs/assets/ico/apple-touch-icon-114-precomposed.png">
|
27
|
-
|
28
|
-
|
29
|
-
<link rel="shortcut icon" href="../../docs/assets/ico/favicon.png">
|
28
|
+
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="../../docs/assets/ico/apple-touch-icon-72-precomposed.png">
|
29
|
+
<link rel="apple-touch-icon-precomposed" href="../../docs/assets/ico/apple-touch-icon-57-precomposed.png">
|
30
30
|
</head>
|
31
31
|
|
32
32
|
<body>
|
@@ -107,13 +107,13 @@
|
|
107
107
|
|
108
108
|
<div class="row">
|
109
109
|
<div class="span4">
|
110
|
-
<img
|
110
|
+
<img src="http://placehold.it/600x600" height="200">
|
111
111
|
</div>
|
112
112
|
<div class="span4">
|
113
|
-
<img
|
113
|
+
<img src="http://placehold.it/600x600">
|
114
114
|
</div>
|
115
115
|
<div class="span4">
|
116
|
-
<img
|
116
|
+
<img src="http://placehold.it/600x600">
|
117
117
|
</div>
|
118
118
|
</div>
|
119
119
|
|
@@ -121,13 +121,13 @@
|
|
121
121
|
|
122
122
|
<div class="row">
|
123
123
|
<div class="span4">
|
124
|
-
<img
|
124
|
+
<img src="http://placehold.it/600x900" style="width: 200px;">
|
125
125
|
</div>
|
126
126
|
<div class="span4">
|
127
|
-
<img
|
127
|
+
<img src="http://placehold.it/200x300">
|
128
128
|
</div>
|
129
129
|
<div class="span4">
|
130
|
-
<img
|
130
|
+
<img src="http://placehold.it/600x600">
|
131
131
|
</div>
|
132
132
|
</div>
|
133
133
|
|
@@ -593,55 +593,6 @@
|
|
593
593
|
</div>
|
594
594
|
</div><!--/row-->
|
595
595
|
|
596
|
-
<h4>Nesting and striping</h4>
|
597
|
-
<table class="table table-bordered table-striped">
|
598
|
-
<thead>
|
599
|
-
<tr>
|
600
|
-
<th>Test</th>
|
601
|
-
</tr>
|
602
|
-
</thead>
|
603
|
-
<tbody>
|
604
|
-
<tr>
|
605
|
-
<td>
|
606
|
-
<table class="table table-bordered table-striped">
|
607
|
-
<thead>
|
608
|
-
<tr>
|
609
|
-
<th>Test</th>
|
610
|
-
<th>Test</th>
|
611
|
-
</tr>
|
612
|
-
</thead>
|
613
|
-
<tbody>
|
614
|
-
<tr>
|
615
|
-
<td>
|
616
|
-
test
|
617
|
-
</td>
|
618
|
-
<td>
|
619
|
-
test
|
620
|
-
</td>
|
621
|
-
</tr>
|
622
|
-
<tr>
|
623
|
-
<td>
|
624
|
-
test
|
625
|
-
</td>
|
626
|
-
<td>
|
627
|
-
test
|
628
|
-
</td>
|
629
|
-
</tr>
|
630
|
-
<tr>
|
631
|
-
<td>
|
632
|
-
test
|
633
|
-
</td>
|
634
|
-
<td>
|
635
|
-
test
|
636
|
-
</td>
|
637
|
-
</tr>
|
638
|
-
</tbody>
|
639
|
-
</table>
|
640
|
-
</td>
|
641
|
-
</tr>
|
642
|
-
</tbody>
|
643
|
-
</table>
|
644
|
-
|
645
596
|
<h4>Fluid grid sizing</h4>
|
646
597
|
<div class="row-fluid">
|
647
598
|
<div class="span12">
|
@@ -1045,16 +996,16 @@
|
|
1045
996
|
<h4>Default thumbnails (no grid sizing)</h4>
|
1046
997
|
<ul class="thumbnails">
|
1047
998
|
<li class="thumbnail">
|
1048
|
-
<img
|
999
|
+
<img src="http://placehold.it/260x180" alt="">
|
1049
1000
|
</li>
|
1050
1001
|
<li class="thumbnail">
|
1051
|
-
<img
|
1002
|
+
<img src="http://placehold.it/260x180" alt="">
|
1052
1003
|
</li>
|
1053
1004
|
<li class="thumbnail">
|
1054
|
-
<img
|
1005
|
+
<img src="http://placehold.it/260x180" alt="">
|
1055
1006
|
</li>
|
1056
1007
|
<li class="thumbnail">
|
1057
|
-
<img
|
1008
|
+
<img src="http://placehold.it/260x180" alt="">
|
1058
1009
|
</li>
|
1059
1010
|
</ul>
|
1060
1011
|
|
@@ -1063,17 +1014,17 @@
|
|
1063
1014
|
<ul class="thumbnails">
|
1064
1015
|
<li class="span3 offset3">
|
1065
1016
|
<a href="#" class="thumbnail">
|
1066
|
-
<img
|
1017
|
+
<img src="http://placehold.it/260x180" alt="">
|
1067
1018
|
</a>
|
1068
1019
|
</li>
|
1069
1020
|
<li class="span3">
|
1070
1021
|
<a href="#" class="thumbnail">
|
1071
|
-
<img
|
1022
|
+
<img src="http://placehold.it/260x180" alt="">
|
1072
1023
|
</a>
|
1073
1024
|
</li>
|
1074
1025
|
<li class="span3">
|
1075
1026
|
<a href="#" class="thumbnail">
|
1076
|
-
<img
|
1027
|
+
<img src="http://placehold.it/260x180" alt="">
|
1077
1028
|
</a>
|
1078
1029
|
</li>
|
1079
1030
|
</ul>
|
@@ -1083,17 +1034,17 @@
|
|
1083
1034
|
<ul class="thumbnails">
|
1084
1035
|
<li class="span3">
|
1085
1036
|
<a href="#" class="thumbnail">
|
1086
|
-
<img
|
1037
|
+
<img src="http://placehold.it/260x180" alt="">
|
1087
1038
|
</a>
|
1088
1039
|
</li>
|
1089
1040
|
<li class="span3 offset3">
|
1090
1041
|
<a href="#" class="thumbnail">
|
1091
|
-
<img
|
1042
|
+
<img src="http://placehold.it/260x180" alt="">
|
1092
1043
|
</a>
|
1093
1044
|
</li>
|
1094
1045
|
<li class="span3">
|
1095
1046
|
<a href="#" class="thumbnail">
|
1096
|
-
<img
|
1047
|
+
<img src="http://placehold.it/260x180" alt="">
|
1097
1048
|
</a>
|
1098
1049
|
</li>
|
1099
1050
|
</ul>
|
@@ -1104,17 +1055,17 @@
|
|
1104
1055
|
<ul class="thumbnails">
|
1105
1056
|
<li class="span4">
|
1106
1057
|
<a href="#" class="thumbnail">
|
1107
|
-
<img
|
1058
|
+
<img src="http://placehold.it/260x180" alt="">
|
1108
1059
|
</a>
|
1109
1060
|
</li>
|
1110
1061
|
<li class="span4">
|
1111
1062
|
<a href="#" class="thumbnail">
|
1112
|
-
<img
|
1063
|
+
<img src="http://placehold.it/260x180" alt="">
|
1113
1064
|
</a>
|
1114
1065
|
</li>
|
1115
1066
|
<li class="span4">
|
1116
1067
|
<a href="#" class="thumbnail">
|
1117
|
-
<img
|
1068
|
+
<img src="http://placehold.it/260x180" alt="">
|
1118
1069
|
</a>
|
1119
1070
|
</li>
|
1120
1071
|
</ul>
|
@@ -1291,64 +1242,10 @@
|
|
1291
1242
|
<h4>Striped</h4>
|
1292
1243
|
<div class="gradient-striped"></div>
|
1293
1244
|
|
1294
|
-
<h4>Horizontal three colors</h4>
|
1295
|
-
<div class="gradient-horizontal-three"></div>
|
1296
|
-
|
1297
|
-
|
1298
|
-
|
1299
|
-
<div class="page-header">
|
1300
|
-
<h1>Alerts</h1>
|
1301
|
-
</div>
|
1302
1245
|
|
1303
|
-
<h4>Alert default</h4>
|
1304
|
-
<div class="alert">
|
1305
|
-
<button type="button" class="close" data-dismiss="alert">×</button>
|
1306
|
-
<strong>Alert!</strong> Best check yourself, you're not looking too good.
|
1307
|
-
</div>
|
1308
|
-
<div class="alert alert-block">
|
1309
|
-
<button type="button" class="close" data-dismiss="alert">×</button>
|
1310
|
-
<p><strong>Alert!</strong> Best check yourself, you're not looking too good.</p>
|
1311
|
-
</div>
|
1312
1246
|
|
1313
|
-
<h4>Success</h4>
|
1314
|
-
<div class="alert alert-success">
|
1315
|
-
<button type="button" class="close" data-dismiss="alert">×</button>
|
1316
|
-
<strong>Success!</strong> Best check yourself, you're not looking too good.
|
1317
|
-
</div>
|
1318
|
-
<div class="alert alert-block alert-success">
|
1319
|
-
<button type="button" class="close" data-dismiss="alert">×</button>
|
1320
|
-
<p><strong>Success!</strong> Best check yourself, you're not looking too good.</p>
|
1321
|
-
</div>
|
1322
1247
|
|
1323
|
-
<h4>Info</h4>
|
1324
|
-
<div class="alert alert-info">
|
1325
|
-
<button type="button" class="close" data-dismiss="alert">×</button>
|
1326
|
-
<strong>Info!</strong> Best check yourself, you're not looking too good.
|
1327
|
-
</div>
|
1328
|
-
<div class="alert alert-block alert-info">
|
1329
|
-
<button type="button" class="close" data-dismiss="alert">×</button>
|
1330
|
-
<p><strong>Info!</strong> Best check yourself, you're not looking too good.</p>
|
1331
|
-
</div>
|
1332
|
-
|
1333
|
-
<h4>Warning</h4>
|
1334
|
-
<div class="alert ">
|
1335
|
-
<button type="button" class="close" data-dismiss="alert">×</button>
|
1336
|
-
<strong>Warning!</strong> Best check yourself, you're not looking too good.
|
1337
|
-
</div>
|
1338
|
-
<div class="alert alert-block alert-warning">
|
1339
|
-
<button type="button" class="close" data-dismiss="alert">×</button>
|
1340
|
-
<p><strong>Warning!</strong> Best check yourself, you're not looking too good.</p>
|
1341
|
-
</div>
|
1342
1248
|
|
1343
|
-
<h4>Error</h4>
|
1344
|
-
<div class="alert alert-error">
|
1345
|
-
<button type="button" class="close" data-dismiss="alert">×</button>
|
1346
|
-
<strong>Error!</strong> Best check yourself, you're not looking too good.
|
1347
|
-
</div>
|
1348
|
-
<div class="alert alert-block alert-error">
|
1349
|
-
<button type="button" class="close" data-dismiss="alert">×</button>
|
1350
|
-
<p><strong>Error!</strong> Best check yourself, you're not looking too good.</p>
|
1351
|
-
</div>
|
1352
1249
|
|
1353
1250
|
|
1354
1251
|
</div><!-- /container -->
|