jombo 0.0.1.beta25 → 0.0.1.beta26

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/jombo/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Jombo
2
- VERSION = "0.0.1.beta25"
2
+ VERSION = "0.0.1.beta26"
3
3
  end
@@ -36,9 +36,15 @@
36
36
 
37
37
  , close: function ( e ) {
38
38
  var $this = $(this)
39
- , selector = $this.attr('data-target') || $this.attr('href')
40
- , $parent = $(selector)
39
+ , selector = $this.attr('data-target')
40
+ , $parent
41
41
 
42
+ if (!selector) {
43
+ selector = $this.attr('href')
44
+ selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7
45
+ }
46
+
47
+ $parent = $(selector)
42
48
  $parent.trigger('close')
43
49
 
44
50
  e && e.preventDefault()
@@ -82,4 +88,4 @@
82
88
  $('body').on('click.alert.data-api', dismiss, Alert.prototype.close)
83
89
  })
84
90
 
85
- }( window.jQuery )
91
+ }( window.jQuery )
@@ -1,5 +1,5 @@
1
1
  /* ============================================================
2
- * bootstrap-buttons.js v2.0.0
2
+ * bootstrap-button.js v2.0.0
3
3
  * http://twitter.github.com/bootstrap/javascript.html#buttons
4
4
  * ============================================================
5
5
  * Copyright 2012 Twitter, Inc.
@@ -95,4 +95,4 @@
95
95
  })
96
96
  })
97
97
 
98
- }( window.jQuery )
98
+ }( window.jQuery )
@@ -1,6 +1,6 @@
1
1
  /* ==========================================================
2
2
  * bootstrap-carousel.js v2.0.0
3
- * http://twitter.github.com/bootstrap/javascript.html#alerts
3
+ * http://twitter.github.com/bootstrap/javascript.html#carousel
4
4
  * ==========================================================
5
5
  * Copyright 2012 Twitter, Inc.
6
6
  *
@@ -143,11 +143,12 @@
143
143
 
144
144
  $(function () {
145
145
  $('body').on('click.carousel.data-api', '[data-slide]', function ( e ) {
146
- var $this = $(this)
147
- , $target = $($this.attr('data-target') || $this.attr('href'))
146
+ var $this = $(this), href
147
+ , $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7
148
148
  , options = !$target.data('modal') && $.extend({}, $target.data(), $this.data())
149
149
  $target.carousel(options)
150
+ e.preventDefault()
150
151
  })
151
152
  })
152
153
 
153
- }( window.jQuery )
154
+ }( window.jQuery )
@@ -1,6 +1,6 @@
1
1
  /* =============================================================
2
- * bootstrap-collapsible.js v2.0.0
3
- * http://twitter.github.com/bootstrap/javascript.html#collapsible
2
+ * bootstrap-collapse.js v2.0.0
3
+ * http://twitter.github.com/bootstrap/javascript.html#collapse
4
4
  * =============================================================
5
5
  * Copyright 2012 Twitter, Inc.
6
6
  *
@@ -124,11 +124,13 @@
124
124
 
125
125
  $(function () {
126
126
  $('body').on('click.collapse.data-api', '[data-toggle=collapse]', function ( e ) {
127
- var $this = $(this)
128
- , target = $this.attr('data-target') || e.preventDefault() || $this.attr('href')
127
+ var $this = $(this), href
128
+ , target = $this.attr('data-target')
129
+ || e.preventDefault()
130
+ || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') //strip for ie7
129
131
  , option = $(target).data('collapse') ? 'toggle' : $this.data()
130
132
  $(target).collapse(option)
131
133
  })
132
134
  })
133
135
 
134
- }( window.jQuery )
136
+ }( window.jQuery )
@@ -1,6 +1,6 @@
1
1
  /* ============================================================
2
2
  * bootstrap-dropdown.js v2.0.0
3
- * http://twitter.github.com/bootstrap/javascript.html#dropdown
3
+ * http://twitter.github.com/bootstrap/javascript.html#dropdowns
4
4
  * ============================================================
5
5
  * Copyright 2012 Twitter, Inc.
6
6
  *
@@ -27,7 +27,10 @@
27
27
 
28
28
  var toggle = '[data-toggle="dropdown"]'
29
29
  , Dropdown = function ( element ) {
30
- $(element).bind('click', this.toggle)
30
+ var $el = $(element).on('click.dropdown.data-api', this.toggle)
31
+ $('html').on('click.dropdown.data-api', function () {
32
+ $el.parent().removeClass('open')
33
+ })
31
34
  }
32
35
 
33
36
  Dropdown.prototype = {
@@ -36,15 +39,21 @@
36
39
 
37
40
  , toggle: function ( e ) {
38
41
  var $this = $(this)
39
- , selector = $this.attr('data-target') || $this.attr('href')
40
- , $parent = $(selector)
42
+ , selector = $this.attr('data-target')
43
+ , $parent
41
44
  , isActive
42
45
 
46
+ if (!selector) {
47
+ selector = $this.attr('href')
48
+ selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7
49
+ }
50
+
51
+ $parent = $(selector)
43
52
  $parent.length || ($parent = $this.parent())
53
+
44
54
  isActive = $parent.hasClass('open')
45
55
 
46
56
  clearMenus()
47
-
48
57
  !isActive && $parent.toggleClass('open')
49
58
 
50
59
  return false
@@ -76,8 +85,8 @@
76
85
  * =================================== */
77
86
 
78
87
  $(function () {
79
- $(window).on('click.dropdown.data-api', clearMenus)
88
+ $('html').on('click.dropdown.data-api', clearMenus)
80
89
  $('body').on('click.dropdown.data-api', toggle, Dropdown.prototype.toggle)
81
90
  })
82
91
 
83
- }( window.jQuery )
92
+ }( window.jQuery )
@@ -1,6 +1,6 @@
1
1
  /* =========================================================
2
2
  * bootstrap-modal.js v2.0.0
3
- * http://twitter.github.com/bootstrap/javascript.html#modal
3
+ * http://twitter.github.com/bootstrap/javascript.html#modals
4
4
  * =========================================================
5
5
  * Copyright 2012 Twitter, Inc.
6
6
  *
@@ -44,6 +44,8 @@
44
44
 
45
45
  if (this.isShown) return
46
46
 
47
+ $('body').addClass('modal-open')
48
+
47
49
  this.isShown = true
48
50
  this.$element.trigger('show')
49
51
 
@@ -77,6 +79,8 @@
77
79
  var that = this
78
80
  this.isShown = false
79
81
 
82
+ $('body').removeClass('modal-open')
83
+
80
84
  escape.call(this)
81
85
 
82
86
  this.$element
@@ -193,8 +197,8 @@
193
197
 
194
198
  $(function () {
195
199
  $('body').on('click.modal.data-api', '[data-toggle="modal"]', function ( e ) {
196
- var $this = $(this)
197
- , $target = $($this.attr('data-target') || $this.attr('href'))
200
+ var $this = $(this), href
201
+ , $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7
198
202
  , option = $target.data('modal') ? 'toggle' : $.extend({}, $target.data(), $this.data())
199
203
 
200
204
  e.preventDefault()
@@ -202,4 +206,4 @@
202
206
  })
203
207
  })
204
208
 
205
- }( window.jQuery )
209
+ }( window.jQuery )
@@ -1,6 +1,6 @@
1
1
  /* ===========================================================
2
2
  * bootstrap-popover.js v2.0.0
3
- * http://twitter.github.com/bootstrap/javascript.html#popover
3
+ * http://twitter.github.com/bootstrap/javascript.html#popovers
4
4
  * ===========================================================
5
5
  * Copyright 2012 Twitter, Inc.
6
6
  *
@@ -26,10 +26,12 @@
26
26
 
27
27
  function ScrollSpy( element, options) {
28
28
  var process = $.proxy(this.process, this)
29
+ , $element = $(element).is('body') ? $(window) : $(element)
30
+ , href
29
31
  this.options = $.extend({}, $.fn.scrollspy.defaults, options)
30
- this.$scrollElement = $(element).on('scroll.scroll.data-api', process)
31
- this.selector = (this.$scrollElement.attr('data-target')
32
- || this.$scrollElement.attr('href')
32
+ this.$scrollElement = $element.on('scroll.scroll.data-api', process)
33
+ this.selector = (this.options.target
34
+ || ((href = $(element).attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7
33
35
  || '') + ' .nav li > a'
34
36
  this.$body = $('body').on('click.scroll.data-api', this.selector, process)
35
37
  this.refresh()
@@ -111,11 +113,13 @@
111
113
 
112
114
 
113
115
  /* SCROLLSPY DATA-API
114
- * ============== */
116
+ * ================== */
115
117
 
116
118
  $(function () {
117
- var $spy = $('[data-spy="scroll"]')
118
- $spy.scrollspy($spy.data())
119
+ $('[data-spy="scroll"]').each(function () {
120
+ var $spy = $(this)
121
+ $spy.scrollspy($spy.data())
122
+ })
119
123
  })
120
124
 
121
- }( window.jQuery )
125
+ }( window.jQuery )
@@ -1,5 +1,5 @@
1
1
  /* ========================================================
2
- * bootstrap-tabs.js v2.0.0
2
+ * bootstrap-tab.js v2.0.0
3
3
  * http://twitter.github.com/bootstrap/javascript.html#tabs
4
4
  * ========================================================
5
5
  * Copyright 2012 Twitter, Inc.
@@ -36,9 +36,14 @@
36
36
  , show: function () {
37
37
  var $this = this.element
38
38
  , $ul = $this.closest('ul:not(.dropdown-menu)')
39
- , href = $this.attr('data-target') || $this.attr('href')
39
+ , selector = $this.attr('data-target')
40
40
  , previous
41
- , $href
41
+ , $target
42
+
43
+ if (!selector) {
44
+ selector = $this.attr('href')
45
+ selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7
46
+ }
42
47
 
43
48
  if ( $this.parent('li').hasClass('active') ) return
44
49
 
@@ -49,10 +54,10 @@
49
54
  , relatedTarget: previous
50
55
  })
51
56
 
52
- $href = $(href)
57
+ $target = $(selector)
53
58
 
54
59
  this.activate($this.parent('li'), $ul)
55
- this.activate($href, $href.parent(), function () {
60
+ this.activate($target, $target.parent(), function () {
56
61
  $this.trigger({
57
62
  type: 'shown'
58
63
  , relatedTarget: previous
@@ -122,4 +127,4 @@
122
127
  })
123
128
  })
124
129
 
125
- }( window.jQuery )
130
+ }( window.jQuery )
@@ -1,6 +1,6 @@
1
1
  /* ===========================================================
2
2
  * bootstrap-tooltip.js v2.0.0
3
- * http://twitter.github.com/bootstrap/javascript.html#tooltip
3
+ * http://twitter.github.com/bootstrap/javascript.html#tooltips
4
4
  * Inspired by the original jQuery.tipsy by Jason Frame
5
5
  * ===========================================================
6
6
  * Copyright 2012 Twitter, Inc.
@@ -1,6 +1,6 @@
1
1
  /* ===================================================
2
- * bootstrap-transitions.js v2.0.0
3
- * http://twitter.github.com/bootstrap/javascript.html
2
+ * bootstrap-transition.js v2.0.0
3
+ * http://twitter.github.com/bootstrap/javascript.html#transitions
4
4
  * ===================================================
5
5
  * Copyright 2012 Twitter, Inc.
6
6
  *
@@ -48,4 +48,4 @@
48
48
 
49
49
  })
50
50
 
51
- }( window.jQuery )
51
+ }( window.jQuery )
@@ -1,6 +1,6 @@
1
1
  /* =============================================================
2
2
  * bootstrap-typeahead.js v2.0.0
3
- * http://twitter.github.com/bootstrap/javascript.html#collapsible
3
+ * http://twitter.github.com/bootstrap/javascript.html#typeahead
4
4
  * =============================================================
5
5
  * Copyright 2012 Twitter, Inc.
6
6
  *
@@ -24,8 +24,11 @@
24
24
  var Typeahead = function ( element, options ) {
25
25
  this.$element = $(element)
26
26
  this.options = $.extend({}, $.fn.typeahead.defaults, options)
27
+ this.matcher = this.options.matcher || this.matcher
28
+ this.sorter = this.options.sorter || this.sorter
29
+ this.highlighter = this.options.highlighter || this.highlighter
27
30
  this.$menu = $(this.options.menu).appendTo('body')
28
- this.data = this.options.data
31
+ this.source = this.options.source
29
32
  this.shown = false
30
33
  this.listen()
31
34
  }
@@ -34,11 +37,6 @@
34
37
 
35
38
  constructor: Typeahead
36
39
 
37
- , matcher: function (item, query) {
38
- // ;_; http://jsperf.com/asdfdfasdfa
39
- return ~item.toLowerCase().indexOf(query)
40
- }
41
-
42
40
  , select: function () {
43
41
  var val = this.$menu.find('.active').attr('data-value')
44
42
  this.$element.val(val)
@@ -77,12 +75,12 @@
77
75
  return this.shown ? this.hide() : this
78
76
  }
79
77
 
80
- q = this.query.toLowerCase()
81
-
82
- items = this.data.filter(function (item) {
83
- if (that.matcher(item, q)) return item
78
+ items = $.grep(this.source, function (item) {
79
+ if (that.matcher(item)) return item
84
80
  })
85
81
 
82
+ items = this.sorter(items)
83
+
86
84
  if (!items.length) {
87
85
  return this.shown ? this.hide() : this
88
86
  }
@@ -90,17 +88,37 @@
90
88
  return this.render(items.slice(0, this.options.items)).show()
91
89
  }
92
90
 
91
+ , matcher: function (item) {
92
+ return ~item.toLowerCase().indexOf(this.query.toLowerCase())
93
+ }
94
+
95
+ , sorter: function (items) {
96
+ var beginswith = []
97
+ , caseSensitive = []
98
+ , caseInsensitive = []
99
+ , item
100
+
101
+ while (item = items.shift()) {
102
+ if (!item.toLowerCase().indexOf(this.query.toLowerCase())) beginswith.push(item)
103
+ else if (~item.indexOf(this.query)) caseSensitive.push(item)
104
+ else caseInsensitive.push(item)
105
+ }
106
+
107
+ return beginswith.concat(caseSensitive, caseInsensitive)
108
+ }
109
+
110
+ , highlighter: function (item) {
111
+ return item.replace(new RegExp('(' + this.query + ')', 'ig'), function ($1, match) {
112
+ return '<strong>' + match + '</strong>'
113
+ })
114
+ }
115
+
93
116
  , render: function (items) {
94
117
  var that = this
95
- , QUERY = new RegExp('(' + this.query + ')', 'ig')
96
118
 
97
119
  items = $(items).map(function (i, item) {
98
120
  i = $(that.options.item).attr('data-value', item)
99
-
100
- i.find('a').html(item.replace(QUERY, function ($1, match) {
101
- return '<strong>' + match + '</strong>'
102
- }))
103
-
121
+ i.find('a').html(that.highlighter(item))
104
122
  return i[0]
105
123
  })
106
124
 
@@ -157,6 +175,7 @@
157
175
 
158
176
  case 9: // tab
159
177
  case 13: // enter
178
+ if (!this.shown) return
160
179
  this.select()
161
180
  break
162
181
 
@@ -172,6 +191,7 @@
172
191
 
173
192
  , keypress: function (e) {
174
193
  e.stopPropagation()
194
+ if (!this.shown) return
175
195
 
176
196
  switch(e.keyCode) {
177
197
  case 9: // tab
@@ -181,13 +201,11 @@
181
201
  break
182
202
 
183
203
  case 38: // up arrow
184
- if (!this.shown) return
185
204
  e.preventDefault()
186
205
  this.prev()
187
206
  break
188
207
 
189
208
  case 40: // down arrow
190
- if (!this.shown) return
191
209
  e.preventDefault()
192
210
  this.next()
193
211
  break
@@ -229,7 +247,8 @@
229
247
  }
230
248
 
231
249
  $.fn.typeahead.defaults = {
232
- items: 8
250
+ source: []
251
+ , items: 8
233
252
  , menu: '<ul class="typeahead dropdown-menu"></ul>'
234
253
  , item: '<li><a href="#"></a></li>'
235
254
  }
@@ -249,4 +268,4 @@
249
268
  })
250
269
  })
251
270
 
252
- }( window.jQuery )
271
+ }( window.jQuery )
@@ -0,0 +1,345 @@
1
+ .hidden {
2
+ display: none;
3
+ visibility: hidden;
4
+ }
5
+ @media (max-width: 480px) {
6
+ .page-header h1 small {
7
+ display: block;
8
+ line-height: 18px;
9
+ }
10
+ input[class*="span"],
11
+ select[class*="span"],
12
+ textarea[class*="span"],
13
+ .uneditable-input {
14
+ display: block;
15
+ width: 100%;
16
+ height: 28px;
17
+ /* Make inputs at least the height of their button counterpart */
18
+
19
+ /* Makes inputs behave like true block-level elements */
20
+
21
+ -webkit-box-sizing: border-box;
22
+ /* Older Webkit */
23
+
24
+ -moz-box-sizing: border-box;
25
+ /* Older FF */
26
+
27
+ -ms-box-sizing: border-box;
28
+ /* IE8 */
29
+
30
+ box-sizing: border-box;
31
+ /* CSS3 spec*/
32
+
33
+ }
34
+ .input-prepend input[class*="span"], .input-append input[class*="span"] {
35
+ width: auto;
36
+ }
37
+ input[type="checkbox"], input[type="radio"] {
38
+ border: 1px solid #ccc;
39
+ }
40
+ .form-horizontal .control-group > label {
41
+ float: none;
42
+ width: auto;
43
+ padding-top: 0;
44
+ text-align: left;
45
+ }
46
+ .form-horizontal .controls {
47
+ margin-left: 0;
48
+ }
49
+ .form-horizontal .control-list {
50
+ padding-top: 0;
51
+ }
52
+ .form-horizontal .form-actions {
53
+ padding-left: 10px;
54
+ padding-right: 10px;
55
+ }
56
+ .modal {
57
+ position: absolute;
58
+ top: 10px;
59
+ left: 10px;
60
+ right: 10px;
61
+ width: auto;
62
+ margin: 0;
63
+ }
64
+ .modal.fade.in {
65
+ top: auto;
66
+ }
67
+ .modal-header .close {
68
+ padding: 10px;
69
+ margin: -10px;
70
+ }
71
+ .carousel-caption {
72
+ position: static;
73
+ }
74
+ }
75
+ @media (max-width: 768px) {
76
+ .container {
77
+ width: auto;
78
+ padding: 0 20px;
79
+ }
80
+ .row {
81
+ margin-left: 0;
82
+ }
83
+ .row > [class*="span"] {
84
+ float: none;
85
+ display: block;
86
+ width: auto;
87
+ margin: 0;
88
+ }
89
+ }
90
+ @media (min-width: 768px) and (max-width: 940px) {
91
+ .container {
92
+ width: 724px;
93
+ padding-left: 20px;
94
+ padding-right: 20px;
95
+ }
96
+ .span1 {
97
+ width: 42px;
98
+ }
99
+ .span2 {
100
+ width: 104px;
101
+ }
102
+ .span3 {
103
+ width: 166px;
104
+ }
105
+ .span4 {
106
+ width: 228px;
107
+ }
108
+ .span5 {
109
+ width: 290px;
110
+ }
111
+ .span6 {
112
+ width: 352px;
113
+ }
114
+ .span7 {
115
+ width: 414px;
116
+ }
117
+ .span8 {
118
+ width: 476px;
119
+ }
120
+ .span9 {
121
+ width: 538px;
122
+ }
123
+ .span10 {
124
+ width: 600px;
125
+ }
126
+ .span11 {
127
+ width: 662px;
128
+ }
129
+ .span12 {
130
+ width: 724px;
131
+ }
132
+ .offset1 {
133
+ margin-left: 82px;
134
+ }
135
+ .offset2 {
136
+ margin-left: 144px;
137
+ }
138
+ .offset3 {
139
+ margin-left: 206px;
140
+ }
141
+ .offset4 {
142
+ margin-left: 268px;
143
+ }
144
+ .offset5 {
145
+ margin-left: 330px;
146
+ }
147
+ .offset6 {
148
+ margin-left: 392px;
149
+ }
150
+ .offset7 {
151
+ margin-left: 454px;
152
+ }
153
+ .offset8 {
154
+ margin-left: 516px;
155
+ }
156
+ .offset9 {
157
+ margin-left: 578px;
158
+ }
159
+ .offset10 {
160
+ margin-left: 640px;
161
+ }
162
+ .offset11 {
163
+ margin-left: 702px;
164
+ }
165
+ }
166
+ @media (max-width: 940px) {
167
+ body {
168
+ padding-top: 0;
169
+ }
170
+ .navbar-fixed-top {
171
+ position: static;
172
+ margin-bottom: 36px;
173
+ }
174
+ .navbar-inner {
175
+ padding: 5px;
176
+ background-image: none;
177
+ }
178
+ .navbar .container {
179
+ padding: 0;
180
+ }
181
+ .navbar .brand {
182
+ padding-left: 10px;
183
+ padding-right: 10px;
184
+ margin: 0 0 0 -5px;
185
+ }
186
+ .navbar .nav-collapse {
187
+ clear: left;
188
+ }
189
+ .navbar .nav {
190
+ float: none;
191
+ margin: 0 0 9px;
192
+ }
193
+ .navbar .nav > li {
194
+ float: none;
195
+ }
196
+ .navbar .nav > li > a {
197
+ margin-bottom: 2px;
198
+ }
199
+ .navbar .nav > .vertical-divider {
200
+ display: none;
201
+ }
202
+ .navbar .nav > li > a, .navbar .dropdown-menu a {
203
+ padding: 6px 15px;
204
+ font-weight: bold;
205
+ color: #999999;
206
+ -webkit-border-radius: 3px;
207
+ -moz-border-radius: 3px;
208
+ border-radius: 3px;
209
+ }
210
+ .navbar .dropdown-menu li + li a {
211
+ margin-bottom: 2px;
212
+ }
213
+ .navbar .nav > li > a:hover, .navbar .dropdown-menu a:hover {
214
+ background-color: #222222;
215
+ }
216
+ .navbar .dropdown-menu {
217
+ position: static;
218
+ top: auto;
219
+ left: auto;
220
+ float: none;
221
+ display: block;
222
+ max-width: none;
223
+ margin: 0 15px;
224
+ padding: 0;
225
+ background-color: transparent;
226
+ border: none;
227
+ -webkit-border-radius: 0;
228
+ -moz-border-radius: 0;
229
+ border-radius: 0;
230
+ -webkit-box-shadow: none;
231
+ -moz-box-shadow: none;
232
+ box-shadow: none;
233
+ }
234
+ .navbar .dropdown-menu:before, .navbar .dropdown-menu:after {
235
+ display: none;
236
+ }
237
+ .navbar .dropdown-menu .divider {
238
+ display: none;
239
+ }
240
+ .navbar-form, .navbar-search {
241
+ float: none;
242
+ padding: 9px 15px;
243
+ margin: 9px 0;
244
+ border-top: 1px solid #222222;
245
+ border-bottom: 1px solid #222222;
246
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
247
+ -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
248
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
249
+ }
250
+ .navbar .nav.pull-right {
251
+ float: none;
252
+ margin-left: 0;
253
+ }
254
+ .navbar-static .navbar-inner {
255
+ padding-left: 10px;
256
+ padding-right: 10px;
257
+ }
258
+ .btn-navbar {
259
+ display: block;
260
+ }
261
+ .nav-collapse {
262
+ overflow: hidden;
263
+ height: 0;
264
+ }
265
+ }
266
+ @media (min-width: 1210px) {
267
+ .container {
268
+ width: 1170px;
269
+ }
270
+ .row {
271
+ margin-left: -30px;
272
+ }
273
+ [class*="span"] {
274
+ margin-left: 30px;
275
+ }
276
+ .span1 {
277
+ width: 70px;
278
+ }
279
+ .span2 {
280
+ width: 170px;
281
+ }
282
+ .span3 {
283
+ width: 270px;
284
+ }
285
+ .span4 {
286
+ width: 370px;
287
+ }
288
+ .span5 {
289
+ width: 470px;
290
+ }
291
+ .span6 {
292
+ width: 570px;
293
+ }
294
+ .span7 {
295
+ width: 670px;
296
+ }
297
+ .span8 {
298
+ width: 770px;
299
+ }
300
+ .span9 {
301
+ width: 870px;
302
+ }
303
+ .span10 {
304
+ width: 970px;
305
+ }
306
+ .span11 {
307
+ width: 1070px;
308
+ }
309
+ .span12 {
310
+ width: 1170px;
311
+ }
312
+ .offset1 {
313
+ margin-left: 130px;
314
+ }
315
+ .offset2 {
316
+ margin-left: 230px;
317
+ }
318
+ .offset3 {
319
+ margin-left: 330px;
320
+ }
321
+ .offset4 {
322
+ margin-left: 430px;
323
+ }
324
+ .offset5 {
325
+ margin-left: 530px;
326
+ }
327
+ .offset6 {
328
+ margin-left: 630px;
329
+ }
330
+ .offset7 {
331
+ margin-left: 730px;
332
+ }
333
+ .offset8 {
334
+ margin-left: 830px;
335
+ }
336
+ .offset9 {
337
+ margin-left: 930px;
338
+ }
339
+ .offset10 {
340
+ margin-left: 1030px;
341
+ }
342
+ .offset11 {
343
+ margin-left: 1130px;
344
+ }
345
+ }