jombo 1.0.6 → 1.0.7

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.
@@ -1,5 +1,5 @@
1
1
  /* ===========================================================
2
- * bootstrap-popover.js v2.0.3
2
+ * bootstrap-popover.js v2.0.4
3
3
  * http://twitter.github.com/bootstrap/javascript.html#popovers
4
4
  * ===========================================================
5
5
  * Copyright 2012 Twitter, Inc.
@@ -26,7 +26,7 @@
26
26
  /* POPOVER PUBLIC CLASS DEFINITION
27
27
  * =============================== */
28
28
 
29
- var Popover = function ( element, options ) {
29
+ var Popover = function (element, options) {
30
30
  this.init('popover', element, options)
31
31
  }
32
32
 
@@ -43,8 +43,8 @@
43
43
  , title = this.getTitle()
44
44
  , content = this.getContent()
45
45
 
46
- $tip.find('.popover-title')[this.isHTML(title) ? 'html' : 'text'](title)
47
- $tip.find('.popover-content > *')[this.isHTML(content) ? 'html' : 'text'](content)
46
+ $tip.find('.popover-title')[this.options.html ? 'html' : 'text'](title)
47
+ $tip.find('.popover-content > *')[this.options.html ? 'html' : 'text'](content)
48
48
 
49
49
  $tip.removeClass('fade top bottom left right in')
50
50
  }
@@ -71,6 +71,10 @@
71
71
  return this.$tip
72
72
  }
73
73
 
74
+ , destroy: function () {
75
+ this.hide().$element.off('.' + this.type).removeData(this.type)
76
+ }
77
+
74
78
  })
75
79
 
76
80
 
@@ -1,5 +1,5 @@
1
1
  /* =============================================================
2
- * bootstrap-scrollspy.js v2.0.3
2
+ * bootstrap-scrollspy.js v2.0.4
3
3
  * http://twitter.github.com/bootstrap/javascript.html#scrollspy
4
4
  * =============================================================
5
5
  * Copyright 2012 Twitter, Inc.
@@ -23,19 +23,19 @@
23
23
  "use strict"; // jshint ;_;
24
24
 
25
25
 
26
- /* SCROLLSPY CLASS DEFINITION
27
- * ========================== */
26
+ /* SCROLLSPY CLASS DEFINITION
27
+ * ========================== */
28
28
 
29
- function ScrollSpy( element, options) {
29
+ function ScrollSpy(element, options) {
30
30
  var process = $.proxy(this.process, this)
31
31
  , $element = $(element).is('body') ? $(window) : $(element)
32
32
  , href
33
33
  this.options = $.extend({}, $.fn.scrollspy.defaults, options)
34
- this.$scrollElement = $element.on('scroll.scroll.data-api', process)
34
+ this.$scrollElement = $element.on('scroll.scroll-spy.data-api', process)
35
35
  this.selector = (this.options.target
36
36
  || ((href = $(element).attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7
37
37
  || '') + ' .nav li > a'
38
- this.$body = $('body').on('click.scroll.data-api', this.selector, process)
38
+ this.$body = $('body')
39
39
  this.refresh()
40
40
  this.process()
41
41
  }
@@ -58,7 +58,7 @@
58
58
  , href = $el.data('target') || $el.attr('href')
59
59
  , $href = /^#\w/.test(href) && $(href)
60
60
  return ( $href
61
- && href.length
61
+ && $href.length
62
62
  && [[ $href.position().top, href ]] ) || null
63
63
  })
64
64
  .sort(function (a, b) { return a[0] - b[0] })
@@ -108,7 +108,7 @@
108
108
  .parent('li')
109
109
  .addClass('active')
110
110
 
111
- if (active.parent('.dropdown-menu')) {
111
+ if (active.parent('.dropdown-menu').length) {
112
112
  active = active.closest('li.dropdown').addClass('active')
113
113
  }
114
114
 
@@ -121,7 +121,7 @@
121
121
  /* SCROLLSPY PLUGIN DEFINITION
122
122
  * =========================== */
123
123
 
124
- $.fn.scrollspy = function ( option ) {
124
+ $.fn.scrollspy = function (option) {
125
125
  return this.each(function () {
126
126
  var $this = $(this)
127
127
  , data = $this.data('scrollspy')
@@ -141,7 +141,7 @@
141
141
  /* SCROLLSPY DATA-API
142
142
  * ================== */
143
143
 
144
- $(function () {
144
+ $(window).on('load', function () {
145
145
  $('[data-spy="scroll"]').each(function () {
146
146
  var $spy = $(this)
147
147
  $spy.scrollspy($spy.data())
@@ -1,5 +1,5 @@
1
1
  /* ========================================================
2
- * bootstrap-tab.js v2.0.3
2
+ * bootstrap-tab.js v2.0.4
3
3
  * http://twitter.github.com/bootstrap/javascript.html#tabs
4
4
  * ========================================================
5
5
  * Copyright 2012 Twitter, Inc.
@@ -26,7 +26,7 @@
26
26
  /* TAB CLASS DEFINITION
27
27
  * ==================== */
28
28
 
29
- var Tab = function ( element ) {
29
+ var Tab = function (element) {
30
30
  this.element = $(element)
31
31
  }
32
32
 
@@ -1,5 +1,5 @@
1
1
  /* ===========================================================
2
- * bootstrap-tooltip.js v2.0.3
2
+ * bootstrap-tooltip.js v2.0.4
3
3
  * http://twitter.github.com/bootstrap/javascript.html#tooltips
4
4
  * Inspired by the original jQuery.tipsy by Jason Frame
5
5
  * ===========================================================
@@ -47,8 +47,8 @@
47
47
  if (this.options.trigger != 'manual') {
48
48
  eventIn = this.options.trigger == 'hover' ? 'mouseenter' : 'focus'
49
49
  eventOut = this.options.trigger == 'hover' ? 'mouseleave' : 'blur'
50
- this.$element.on(eventIn, this.options.selector, $.proxy(this.enter, this))
51
- this.$element.on(eventOut, this.options.selector, $.proxy(this.leave, this))
50
+ this.$element.on(eventIn + '.' + this.type, this.options.selector, $.proxy(this.enter, this))
51
+ this.$element.on(eventOut + '.' + this.type, this.options.selector, $.proxy(this.leave, this))
52
52
  }
53
53
 
54
54
  this.options.selector ?
@@ -84,9 +84,9 @@
84
84
  , leave: function (e) {
85
85
  var self = $(e.currentTarget)[this.type](this._options).data(this.type)
86
86
 
87
+ if (this.timeout) clearTimeout(this.timeout)
87
88
  if (!self.options.delay || !self.options.delay.hide) return self.hide()
88
89
 
89
- clearTimeout(this.timeout)
90
90
  self.hoverState = 'out'
91
91
  this.timeout = setTimeout(function() {
92
92
  if (self.hoverState == 'out') self.hide()
@@ -148,20 +148,11 @@
148
148
  }
149
149
  }
150
150
 
151
- , isHTML: function(text) {
152
- // html string detection logic adapted from jQuery
153
- return typeof text != 'string'
154
- || ( text.charAt(0) === "<"
155
- && text.charAt( text.length - 1 ) === ">"
156
- && text.length >= 3
157
- ) || /^(?:[^<]*<[\w\W]+>[^>]*$)/.exec(text)
158
- }
159
-
160
151
  , setContent: function () {
161
152
  var $tip = this.tip()
162
153
  , title = this.getTitle()
163
154
 
164
- $tip.find('.tooltip-inner')[this.isHTML(title) ? 'html' : 'text'](title)
155
+ $tip.find('.tooltip-inner')[this.options.html ? 'html' : 'text'](title)
165
156
  $tip.removeClass('fade in top bottom left right')
166
157
  }
167
158
 
@@ -185,6 +176,8 @@
185
176
  $.support.transition && this.$tip.hasClass('fade') ?
186
177
  removeWithAnimation() :
187
178
  $tip.remove()
179
+
180
+ return this
188
181
  }
189
182
 
190
183
  , fixTitle: function () {
@@ -244,6 +237,10 @@
244
237
  this[this.tip().hasClass('in') ? 'hide' : 'show']()
245
238
  }
246
239
 
240
+ , destroy: function () {
241
+ this.hide().$element.off('.' + this.type).removeData(this.type)
242
+ }
243
+
247
244
  }
248
245
 
249
246
 
@@ -270,6 +267,7 @@
270
267
  , trigger: 'hover'
271
268
  , title: ''
272
269
  , delay: 0
270
+ , html: true
273
271
  }
274
272
 
275
- }(window.jQuery);
273
+ }(window.jQuery);
@@ -1,5 +1,5 @@
1
1
  /* ===================================================
2
- * bootstrap-transition.js v2.0.3
2
+ * bootstrap-transition.js v2.0.4
3
3
  * http://twitter.github.com/bootstrap/javascript.html#transitions
4
4
  * ===================================================
5
5
  * Copyright 2012 Twitter, Inc.
@@ -36,7 +36,7 @@
36
36
  , transEndEventNames = {
37
37
  'WebkitTransition' : 'webkitTransitionEnd'
38
38
  , 'MozTransition' : 'transitionend'
39
- , 'OTransition' : 'oTransitionEnd'
39
+ , 'OTransition' : 'otransitionend'
40
40
  , 'msTransition' : 'MSTransitionEnd'
41
41
  , 'transition' : 'transitionend'
42
42
  }
@@ -1,5 +1,5 @@
1
1
  /* =============================================================
2
- * bootstrap-typeahead.js v2.0.3
2
+ * bootstrap-typeahead.js v2.0.4
3
3
  * http://twitter.github.com/bootstrap/javascript.html#typeahead
4
4
  * =============================================================
5
5
  * Copyright 2012 Twitter, Inc.
@@ -56,7 +56,7 @@
56
56
  }
57
57
 
58
58
  , show: function () {
59
- var pos = $.extend({}, this.$element.position(), {
59
+ var pos = $.extend({}, this.$element.offset(), {
60
60
  height: this.$element[0].offsetHeight
61
61
  })
62
62
 
@@ -77,17 +77,23 @@
77
77
  }
78
78
 
79
79
  , lookup: function (event) {
80
- var that = this
81
- , items
82
- , q
80
+ var items
83
81
 
84
82
  this.query = this.$element.val()
85
83
 
86
- if (!this.query) {
84
+ if (!this.query || this.query.length < this.options.minLength) {
87
85
  return this.shown ? this.hide() : this
88
86
  }
89
87
 
90
- items = $.grep(this.source, function (item) {
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) {
91
97
  return that.matcher(item)
92
98
  })
93
99
 
@@ -169,7 +175,7 @@
169
175
  .on('keyup', $.proxy(this.keyup, this))
170
176
 
171
177
  if ($.browser.webkit || $.browser.msie) {
172
- this.$element.on('keydown', $.proxy(this.keypress, this))
178
+ this.$element.on('keydown', $.proxy(this.keydown, this))
173
179
  }
174
180
 
175
181
  this.$menu
@@ -177,6 +183,40 @@
177
183
  .on('mouseenter', 'li', $.proxy(this.mouseenter, this))
178
184
  }
179
185
 
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
+
207
+ e.stopPropagation()
208
+ }
209
+
210
+ , keydown: function (e) {
211
+ this.suppressKeyPressRepeat = !~[40,38,9,13,27].indexOf(e.keyCode)
212
+ this.move(e)
213
+ }
214
+
215
+ , keypress: function (e) {
216
+ if (this.suppressKeyPressRepeat) return
217
+ this.move(e)
218
+ }
219
+
180
220
  , keyup: function (e) {
181
221
  switch(e.keyCode) {
182
222
  case 40: // down arrow
@@ -202,32 +242,6 @@
202
242
  e.preventDefault()
203
243
  }
204
244
 
205
- , keypress: function (e) {
206
- if (!this.shown) return
207
-
208
- switch(e.keyCode) {
209
- case 9: // tab
210
- case 13: // enter
211
- case 27: // escape
212
- e.preventDefault()
213
- break
214
-
215
- case 38: // up arrow
216
- if (e.type != 'keydown') break
217
- e.preventDefault()
218
- this.prev()
219
- break
220
-
221
- case 40: // down arrow
222
- if (e.type != 'keydown') break
223
- e.preventDefault()
224
- this.next()
225
- break
226
- }
227
-
228
- e.stopPropagation()
229
- }
230
-
231
245
  , blur: function (e) {
232
246
  var that = this
233
247
  setTimeout(function () { that.hide() }, 150)
@@ -265,12 +279,13 @@
265
279
  , items: 8
266
280
  , menu: '<ul class="typeahead dropdown-menu"></ul>'
267
281
  , item: '<li><a href="#"></a></li>'
282
+ , minLength: 1
268
283
  }
269
284
 
270
285
  $.fn.typeahead.Constructor = Typeahead
271
286
 
272
287
 
273
- /* TYPEAHEAD DATA-API
288
+ /* TYPEAHEAD DATA-API
274
289
  * ================== */
275
290
 
276
291
  $(function () {
@@ -282,4 +297,4 @@
282
297
  })
283
298
  })
284
299
 
285
- }(window.jQuery);
300
+ }(window.jQuery);
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Bootstrap Responsive v2.0.3
2
+ * Bootstrap Responsive v2.0.4
3
3
  *
4
4
  * Copyright 2012 Twitter, Inc
5
5
  * Licensed under the Apache License v2.0
@@ -15,6 +15,7 @@
15
15
  .clearfix:before,
16
16
  .clearfix:after {
17
17
  display: table;
18
+ line-height: 0;
18
19
  content: "";
19
20
  }
20
21
 
@@ -36,7 +37,6 @@
36
37
  min-height: 28px;
37
38
  -webkit-box-sizing: border-box;
38
39
  -moz-box-sizing: border-box;
39
- -ms-box-sizing: border-box;
40
40
  box-sizing: border-box;
41
41
  }
42
42
 
@@ -57,155 +57,49 @@
57
57
  display: none !important;
58
58
  }
59
59
 
60
- @media (max-width: 767px) {
61
- .visible-phone {
62
- display: inherit !important;
63
- }
64
- .hidden-phone {
65
- display: none !important;
66
- }
67
- .hidden-desktop {
68
- display: inherit !important;
69
- }
70
- .visible-desktop {
71
- display: none !important;
72
- }
60
+ .visible-desktop {
61
+ display: inherit !important;
73
62
  }
74
63
 
75
64
  @media (min-width: 768px) and (max-width: 979px) {
76
- .visible-tablet {
77
- display: inherit !important;
78
- }
79
- .hidden-tablet {
80
- display: none !important;
81
- }
82
65
  .hidden-desktop {
83
66
  display: inherit !important;
84
67
  }
85
68
  .visible-desktop {
86
69
  display: none !important ;
87
70
  }
88
- }
89
-
90
- @media (max-width: 480px) {
91
- .nav-collapse {
92
- -webkit-transform: translate3d(0, 0, 0);
93
- }
94
- .page-header h1 small {
95
- display: block;
96
- line-height: 18px;
97
- }
98
- input[type="checkbox"],
99
- input[type="radio"] {
100
- border: 1px solid #ccc;
101
- }
102
- .form-horizontal .control-group > label {
103
- float: none;
104
- width: auto;
105
- padding-top: 0;
106
- text-align: left;
107
- }
108
- .form-horizontal .controls {
109
- margin-left: 0;
110
- }
111
- .form-horizontal .control-list {
112
- padding-top: 0;
113
- }
114
- .form-horizontal .form-actions {
115
- padding-right: 10px;
116
- padding-left: 10px;
117
- }
118
- .modal {
119
- position: absolute;
120
- top: 10px;
121
- right: 10px;
122
- left: 10px;
123
- width: auto;
124
- margin: 0;
125
- }
126
- .modal.fade.in {
127
- top: auto;
128
- }
129
- .modal-header .close {
130
- padding: 10px;
131
- margin: -10px;
71
+ .visible-tablet {
72
+ display: inherit !important;
132
73
  }
133
- .carousel-caption {
134
- position: static;
74
+ .hidden-tablet {
75
+ display: none !important;
135
76
  }
136
77
  }
137
78
 
138
79
  @media (max-width: 767px) {
139
- body {
140
- padding-right: 20px;
141
- padding-left: 20px;
142
- }
143
- .navbar-fixed-top,
144
- .navbar-fixed-bottom {
145
- margin-right: -20px;
146
- margin-left: -20px;
147
- }
148
- .container-fluid {
149
- padding: 0;
150
- }
151
- .dl-horizontal dt {
152
- float: none;
153
- width: auto;
154
- clear: none;
155
- text-align: left;
156
- }
157
- .dl-horizontal dd {
158
- margin-left: 0;
159
- }
160
- .container {
161
- width: auto;
162
- }
163
- .row-fluid {
164
- width: 100%;
165
- }
166
- .row,
167
- .thumbnails {
168
- margin-left: 0;
80
+ .hidden-desktop {
81
+ display: inherit !important;
169
82
  }
170
- [class*="span"],
171
- .row-fluid [class*="span"] {
172
- display: block;
173
- float: none;
174
- width: auto;
175
- margin-left: 0;
83
+ .visible-desktop {
84
+ display: none !important;
176
85
  }
177
- .input-large,
178
- .input-xlarge,
179
- .input-xxlarge,
180
- input[class*="span"],
181
- select[class*="span"],
182
- textarea[class*="span"],
183
- .uneditable-input {
184
- display: block;
185
- width: 100%;
186
- min-height: 28px;
187
- -webkit-box-sizing: border-box;
188
- -moz-box-sizing: border-box;
189
- -ms-box-sizing: border-box;
190
- box-sizing: border-box;
86
+ .visible-phone {
87
+ display: inherit !important;
191
88
  }
192
- .input-prepend input,
193
- .input-append input,
194
- .input-prepend input[class*="span"],
195
- .input-append input[class*="span"] {
196
- display: inline-block;
197
- width: auto;
89
+ .hidden-phone {
90
+ display: none !important;
198
91
  }
199
92
  }
200
93
 
201
- @media (min-width: 768px) and (max-width: 979px) {
94
+ @media (min-width: 1200px) {
202
95
  .row {
203
- margin-left: -20px;
96
+ margin-left: -30px;
204
97
  *zoom: 1;
205
98
  }
206
99
  .row:before,
207
100
  .row:after {
208
101
  display: table;
102
+ line-height: 0;
209
103
  content: "";
210
104
  }
211
105
  .row:after {
@@ -213,84 +107,84 @@
213
107
  }
214
108
  [class*="span"] {
215
109
  float: left;
216
- margin-left: 20px;
110
+ margin-left: 30px;
217
111
  }
218
112
  .container,
219
113
  .navbar-fixed-top .container,
220
114
  .navbar-fixed-bottom .container {
221
- width: 724px;
115
+ width: 1170px;
222
116
  }
223
117
  .span12 {
224
- width: 724px;
118
+ width: 1170px;
225
119
  }
226
120
  .span11 {
227
- width: 662px;
121
+ width: 1070px;
228
122
  }
229
123
  .span10 {
230
- width: 600px;
124
+ width: 970px;
231
125
  }
232
126
  .span9 {
233
- width: 538px;
127
+ width: 870px;
234
128
  }
235
129
  .span8 {
236
- width: 476px;
130
+ width: 770px;
237
131
  }
238
132
  .span7 {
239
- width: 414px;
133
+ width: 670px;
240
134
  }
241
135
  .span6 {
242
- width: 352px;
136
+ width: 570px;
243
137
  }
244
138
  .span5 {
245
- width: 290px;
139
+ width: 470px;
246
140
  }
247
141
  .span4 {
248
- width: 228px;
142
+ width: 370px;
249
143
  }
250
144
  .span3 {
251
- width: 166px;
145
+ width: 270px;
252
146
  }
253
147
  .span2 {
254
- width: 104px;
148
+ width: 170px;
255
149
  }
256
150
  .span1 {
257
- width: 42px;
151
+ width: 70px;
258
152
  }
259
153
  .offset12 {
260
- margin-left: 764px;
154
+ margin-left: 1230px;
261
155
  }
262
156
  .offset11 {
263
- margin-left: 702px;
157
+ margin-left: 1130px;
264
158
  }
265
159
  .offset10 {
266
- margin-left: 640px;
160
+ margin-left: 1030px;
267
161
  }
268
162
  .offset9 {
269
- margin-left: 578px;
163
+ margin-left: 930px;
270
164
  }
271
165
  .offset8 {
272
- margin-left: 516px;
166
+ margin-left: 830px;
273
167
  }
274
168
  .offset7 {
275
- margin-left: 454px;
169
+ margin-left: 730px;
276
170
  }
277
171
  .offset6 {
278
- margin-left: 392px;
172
+ margin-left: 630px;
279
173
  }
280
174
  .offset5 {
281
- margin-left: 330px;
175
+ margin-left: 530px;
282
176
  }
283
177
  .offset4 {
284
- margin-left: 268px;
178
+ margin-left: 430px;
285
179
  }
286
180
  .offset3 {
287
- margin-left: 206px;
181
+ margin-left: 330px;
288
182
  }
289
183
  .offset2 {
290
- margin-left: 144px;
184
+ margin-left: 230px;
291
185
  }
292
186
  .offset1 {
293
- margin-left: 82px;
187
+ margin-left: 130px;
294
188
  }
295
189
  .row-fluid {
296
190
  width: 100%;
@@ -299,6 +193,7 @@
299
193
  .row-fluid:before,
300
194
  .row-fluid:after {
301
195
  display: table;
196
+ line-height: 0;
302
197
  content: "";
303
198
  }
304
199
  .row-fluid:after {
@@ -309,139 +204,247 @@
309
204
  float: left;
310
205
  width: 100%;
311
206
  min-height: 28px;
312
- margin-left: 2.762430939%;
313
- *margin-left: 2.709239449638298%;
207
+ margin-left: 2.564102564102564%;
208
+ *margin-left: 2.5109110747408616%;
314
209
  -webkit-box-sizing: border-box;
315
210
  -moz-box-sizing: border-box;
316
- -ms-box-sizing: border-box;
317
211
  box-sizing: border-box;
318
212
  }
319
213
  .row-fluid [class*="span"]:first-child {
320
214
  margin-left: 0;
321
215
  }
322
216
  .row-fluid .span12 {
323
- width: 99.999999993%;
324
- *width: 99.9468085036383%;
217
+ width: 100%;
218
+ *width: 99.94680851063829%;
325
219
  }
326
220
  .row-fluid .span11 {
327
- width: 91.436464082%;
328
- *width: 91.38327259263829%;
221
+ width: 91.45299145299145%;
222
+ *width: 91.39979996362975%;
329
223
  }
330
224
  .row-fluid .span10 {
331
- width: 82.87292817100001%;
332
- *width: 82.8197366816383%;
225
+ width: 82.90598290598291%;
226
+ *width: 82.8527914166212%;
333
227
  }
334
228
  .row-fluid .span9 {
335
- width: 74.30939226%;
336
- *width: 74.25620077063829%;
229
+ width: 74.35897435897436%;
230
+ *width: 74.30578286961266%;
337
231
  }
338
232
  .row-fluid .span8 {
339
- width: 65.74585634900001%;
340
- *width: 65.6926648596383%;
233
+ width: 65.81196581196582%;
234
+ *width: 65.75877432260411%;
341
235
  }
342
236
  .row-fluid .span7 {
343
- width: 57.182320438000005%;
344
- *width: 57.129128948638304%;
237
+ width: 57.26495726495726%;
238
+ *width: 57.21176577559556%;
345
239
  }
346
240
  .row-fluid .span6 {
347
- width: 48.618784527%;
348
- *width: 48.5655930376383%;
241
+ width: 48.717948717948715%;
242
+ *width: 48.664757228587014%;
349
243
  }
350
244
  .row-fluid .span5 {
351
- width: 40.055248616%;
352
- *width: 40.0020571266383%;
245
+ width: 40.17094017094017%;
246
+ *width: 40.11774868157847%;
353
247
  }
354
248
  .row-fluid .span4 {
355
- width: 31.491712705%;
356
- *width: 31.4385212156383%;
249
+ width: 31.623931623931625%;
250
+ *width: 31.570740134569924%;
357
251
  }
358
252
  .row-fluid .span3 {
359
- width: 22.928176794%;
360
- *width: 22.874985304638297%;
253
+ width: 23.076923076923077%;
254
+ *width: 23.023731587561375%;
361
255
  }
362
256
  .row-fluid .span2 {
363
- width: 14.364640883%;
364
- *width: 14.311449393638298%;
257
+ width: 14.52991452991453%;
258
+ *width: 14.476723040552828%;
365
259
  }
366
260
  .row-fluid .span1 {
367
- width: 5.801104972%;
368
- *width: 5.747913482638298%;
261
+ width: 5.982905982905983%;
262
+ *width: 5.929714493544281%;
263
+ }
264
+ .row-fluid .offset12 {
265
+ margin-left: 105.12820512820512%;
266
+ *margin-left: 105.02182214948171%;
267
+ }
268
+ .row-fluid .offset12:first-child {
269
+ margin-left: 102.56410256410257%;
270
+ *margin-left: 102.45771958537915%;
271
+ }
272
+ .row-fluid .offset11 {
273
+ margin-left: 96.58119658119658%;
274
+ *margin-left: 96.47481360247316%;
275
+ }
276
+ .row-fluid .offset11:first-child {
277
+ margin-left: 94.01709401709402%;
278
+ *margin-left: 93.91071103837061%;
279
+ }
280
+ .row-fluid .offset10 {
281
+ margin-left: 88.03418803418803%;
282
+ *margin-left: 87.92780505546462%;
283
+ }
284
+ .row-fluid .offset10:first-child {
285
+ margin-left: 85.47008547008548%;
286
+ *margin-left: 85.36370249136206%;
287
+ }
288
+ .row-fluid .offset9 {
289
+ margin-left: 79.48717948717949%;
290
+ *margin-left: 79.38079650845607%;
291
+ }
292
+ .row-fluid .offset9:first-child {
293
+ margin-left: 76.92307692307693%;
294
+ *margin-left: 76.81669394435352%;
295
+ }
296
+ .row-fluid .offset8 {
297
+ margin-left: 70.94017094017094%;
298
+ *margin-left: 70.83378796144753%;
299
+ }
300
+ .row-fluid .offset8:first-child {
301
+ margin-left: 68.37606837606839%;
302
+ *margin-left: 68.26968539734497%;
303
+ }
304
+ .row-fluid .offset7 {
305
+ margin-left: 62.393162393162385%;
306
+ *margin-left: 62.28677941443899%;
307
+ }
308
+ .row-fluid .offset7:first-child {
309
+ margin-left: 59.82905982905982%;
310
+ *margin-left: 59.72267685033642%;
311
+ }
312
+ .row-fluid .offset6 {
313
+ margin-left: 53.84615384615384%;
314
+ *margin-left: 53.739770867430444%;
315
+ }
316
+ .row-fluid .offset6:first-child {
317
+ margin-left: 51.28205128205128%;
318
+ *margin-left: 51.175668303327875%;
319
+ }
320
+ .row-fluid .offset5 {
321
+ margin-left: 45.299145299145295%;
322
+ *margin-left: 45.1927623204219%;
323
+ }
324
+ .row-fluid .offset5:first-child {
325
+ margin-left: 42.73504273504273%;
326
+ *margin-left: 42.62865975631933%;
327
+ }
328
+ .row-fluid .offset4 {
329
+ margin-left: 36.75213675213675%;
330
+ *margin-left: 36.645753773413354%;
331
+ }
332
+ .row-fluid .offset4:first-child {
333
+ margin-left: 34.18803418803419%;
334
+ *margin-left: 34.081651209310785%;
335
+ }
336
+ .row-fluid .offset3 {
337
+ margin-left: 28.205128205128204%;
338
+ *margin-left: 28.0987452264048%;
339
+ }
340
+ .row-fluid .offset3:first-child {
341
+ margin-left: 25.641025641025642%;
342
+ *margin-left: 25.53464266230224%;
343
+ }
344
+ .row-fluid .offset2 {
345
+ margin-left: 19.65811965811966%;
346
+ *margin-left: 19.551736679396257%;
347
+ }
348
+ .row-fluid .offset2:first-child {
349
+ margin-left: 17.094017094017094%;
350
+ *margin-left: 16.98763411529369%;
351
+ }
352
+ .row-fluid .offset1 {
353
+ margin-left: 11.11111111111111%;
354
+ *margin-left: 11.004728132387708%;
355
+ }
356
+ .row-fluid .offset1:first-child {
357
+ margin-left: 8.547008547008547%;
358
+ *margin-left: 8.440625568285142%;
369
359
  }
370
360
  input,
371
361
  textarea,
372
362
  .uneditable-input {
373
363
  margin-left: 0;
374
364
  }
365
+ .controls-row [class*="span"] + [class*="span"] {
366
+ margin-left: 30px;
367
+ }
375
368
  input.span12,
376
369
  textarea.span12,
377
370
  .uneditable-input.span12 {
378
- width: 714px;
371
+ width: 1160px;
379
372
  }
380
373
  input.span11,
381
374
  textarea.span11,
382
375
  .uneditable-input.span11 {
383
- width: 652px;
376
+ width: 1060px;
384
377
  }
385
378
  input.span10,
386
379
  textarea.span10,
387
380
  .uneditable-input.span10 {
388
- width: 590px;
381
+ width: 960px;
389
382
  }
390
383
  input.span9,
391
384
  textarea.span9,
392
385
  .uneditable-input.span9 {
393
- width: 528px;
386
+ width: 860px;
394
387
  }
395
388
  input.span8,
396
389
  textarea.span8,
397
390
  .uneditable-input.span8 {
398
- width: 466px;
391
+ width: 760px;
399
392
  }
400
393
  input.span7,
401
394
  textarea.span7,
402
395
  .uneditable-input.span7 {
403
- width: 404px;
396
+ width: 660px;
404
397
  }
405
398
  input.span6,
406
399
  textarea.span6,
407
400
  .uneditable-input.span6 {
408
- width: 342px;
401
+ width: 560px;
409
402
  }
410
403
  input.span5,
411
404
  textarea.span5,
412
405
  .uneditable-input.span5 {
413
- width: 280px;
406
+ width: 460px;
414
407
  }
415
408
  input.span4,
416
409
  textarea.span4,
417
410
  .uneditable-input.span4 {
418
- width: 218px;
411
+ width: 360px;
419
412
  }
420
413
  input.span3,
421
414
  textarea.span3,
422
415
  .uneditable-input.span3 {
423
- width: 156px;
416
+ width: 260px;
424
417
  }
425
418
  input.span2,
426
419
  textarea.span2,
427
420
  .uneditable-input.span2 {
428
- width: 94px;
421
+ width: 160px;
429
422
  }
430
423
  input.span1,
431
424
  textarea.span1,
432
425
  .uneditable-input.span1 {
433
- width: 32px;
426
+ width: 60px;
427
+ }
428
+ .thumbnails {
429
+ margin-left: -30px;
430
+ }
431
+ .thumbnails > li {
432
+ margin-left: 30px;
433
+ }
434
+ .row-fluid .thumbnails {
435
+ margin-left: 0;
434
436
  }
435
437
  }
436
438
 
437
- @media (min-width: 1200px) {
439
+ @media (min-width: 768px) and (max-width: 979px) {
438
440
  .row {
439
- margin-left: -30px;
441
+ margin-left: -20px;
440
442
  *zoom: 1;
441
443
  }
442
444
  .row:before,
443
445
  .row:after {
444
446
  display: table;
447
+ line-height: 0;
445
448
  content: "";
446
449
  }
447
450
  .row:after {
@@ -449,84 +452,84 @@
449
452
  }
450
453
  [class*="span"] {
451
454
  float: left;
452
- margin-left: 30px;
455
+ margin-left: 20px;
453
456
  }
454
457
  .container,
455
458
  .navbar-fixed-top .container,
456
459
  .navbar-fixed-bottom .container {
457
- width: 1170px;
460
+ width: 724px;
458
461
  }
459
462
  .span12 {
460
- width: 1170px;
463
+ width: 724px;
461
464
  }
462
465
  .span11 {
463
- width: 1070px;
466
+ width: 662px;
464
467
  }
465
468
  .span10 {
466
- width: 970px;
469
+ width: 600px;
467
470
  }
468
471
  .span9 {
469
- width: 870px;
472
+ width: 538px;
470
473
  }
471
474
  .span8 {
472
- width: 770px;
475
+ width: 476px;
473
476
  }
474
477
  .span7 {
475
- width: 670px;
478
+ width: 414px;
476
479
  }
477
480
  .span6 {
478
- width: 570px;
481
+ width: 352px;
479
482
  }
480
483
  .span5 {
481
- width: 470px;
484
+ width: 290px;
482
485
  }
483
486
  .span4 {
484
- width: 370px;
487
+ width: 228px;
485
488
  }
486
489
  .span3 {
487
- width: 270px;
490
+ width: 166px;
488
491
  }
489
492
  .span2 {
490
- width: 170px;
493
+ width: 104px;
491
494
  }
492
495
  .span1 {
493
- width: 70px;
496
+ width: 42px;
494
497
  }
495
498
  .offset12 {
496
- margin-left: 1230px;
499
+ margin-left: 764px;
497
500
  }
498
501
  .offset11 {
499
- margin-left: 1130px;
502
+ margin-left: 702px;
500
503
  }
501
504
  .offset10 {
502
- margin-left: 1030px;
505
+ margin-left: 640px;
503
506
  }
504
507
  .offset9 {
505
- margin-left: 930px;
508
+ margin-left: 578px;
506
509
  }
507
510
  .offset8 {
508
- margin-left: 830px;
511
+ margin-left: 516px;
509
512
  }
510
513
  .offset7 {
511
- margin-left: 730px;
514
+ margin-left: 454px;
512
515
  }
513
516
  .offset6 {
514
- margin-left: 630px;
517
+ margin-left: 392px;
515
518
  }
516
519
  .offset5 {
517
- margin-left: 530px;
520
+ margin-left: 330px;
518
521
  }
519
522
  .offset4 {
520
- margin-left: 430px;
523
+ margin-left: 268px;
521
524
  }
522
525
  .offset3 {
523
- margin-left: 330px;
526
+ margin-left: 206px;
524
527
  }
525
528
  .offset2 {
526
- margin-left: 230px;
529
+ margin-left: 144px;
527
530
  }
528
531
  .offset1 {
529
- margin-left: 130px;
532
+ margin-left: 82px;
530
533
  }
531
534
  .row-fluid {
532
535
  width: 100%;
@@ -535,6 +538,7 @@
535
538
  .row-fluid:before,
536
539
  .row-fluid:after {
537
540
  display: table;
541
+ line-height: 0;
538
542
  content: "";
539
543
  }
540
544
  .row-fluid:after {
@@ -545,11 +549,10 @@
545
549
  float: left;
546
550
  width: 100%;
547
551
  min-height: 28px;
548
- margin-left: 2.564102564%;
549
- *margin-left: 2.510911074638298%;
552
+ margin-left: 2.7624309392265194%;
553
+ *margin-left: 2.709239449864817%;
550
554
  -webkit-box-sizing: border-box;
551
555
  -moz-box-sizing: border-box;
552
- -ms-box-sizing: border-box;
553
556
  box-sizing: border-box;
554
557
  }
555
558
  .row-fluid [class*="span"]:first-child {
@@ -560,134 +563,345 @@
560
563
  *width: 99.94680851063829%;
561
564
  }
562
565
  .row-fluid .span11 {
563
- width: 91.45299145300001%;
564
- *width: 91.3997999636383%;
566
+ width: 91.43646408839778%;
567
+ *width: 91.38327259903608%;
565
568
  }
566
569
  .row-fluid .span10 {
567
- width: 82.905982906%;
568
- *width: 82.8527914166383%;
570
+ width: 82.87292817679558%;
571
+ *width: 82.81973668743387%;
569
572
  }
570
573
  .row-fluid .span9 {
571
- width: 74.358974359%;
572
- *width: 74.30578286963829%;
574
+ width: 74.30939226519337%;
575
+ *width: 74.25620077583166%;
573
576
  }
574
577
  .row-fluid .span8 {
575
- width: 65.81196581200001%;
576
- *width: 65.7587743226383%;
578
+ width: 65.74585635359117%;
579
+ *width: 65.69266486422946%;
577
580
  }
578
581
  .row-fluid .span7 {
579
- width: 57.264957265%;
580
- *width: 57.2117657756383%;
582
+ width: 57.18232044198895%;
583
+ *width: 57.12912895262725%;
581
584
  }
582
585
  .row-fluid .span6 {
583
- width: 48.717948718%;
584
- *width: 48.6647572286383%;
586
+ width: 48.61878453038674%;
587
+ *width: 48.56559304102504%;
585
588
  }
586
589
  .row-fluid .span5 {
587
- width: 40.170940171000005%;
588
- *width: 40.117748681638304%;
590
+ width: 40.05524861878453%;
591
+ *width: 40.00205712942283%;
589
592
  }
590
593
  .row-fluid .span4 {
591
- width: 31.623931624%;
592
- *width: 31.5707401346383%;
594
+ width: 31.491712707182323%;
595
+ *width: 31.43852121782062%;
593
596
  }
594
597
  .row-fluid .span3 {
595
- width: 23.076923077%;
596
- *width: 23.0237315876383%;
598
+ width: 22.92817679558011%;
599
+ *width: 22.87498530621841%;
597
600
  }
598
601
  .row-fluid .span2 {
599
- width: 14.529914530000001%;
600
- *width: 14.4767230406383%;
602
+ width: 14.3646408839779%;
603
+ *width: 14.311449394616199%;
601
604
  }
602
605
  .row-fluid .span1 {
603
- width: 5.982905983%;
604
- *width: 5.929714493638298%;
606
+ width: 5.801104972375691%;
607
+ *width: 5.747913483013988%;
608
+ }
609
+ .row-fluid .offset12 {
610
+ margin-left: 105.52486187845304%;
611
+ *margin-left: 105.41847889972962%;
612
+ }
613
+ .row-fluid .offset12:first-child {
614
+ margin-left: 102.76243093922652%;
615
+ *margin-left: 102.6560479605031%;
616
+ }
617
+ .row-fluid .offset11 {
618
+ margin-left: 96.96132596685082%;
619
+ *margin-left: 96.8549429881274%;
620
+ }
621
+ .row-fluid .offset11:first-child {
622
+ margin-left: 94.1988950276243%;
623
+ *margin-left: 94.09251204890089%;
624
+ }
625
+ .row-fluid .offset10 {
626
+ margin-left: 88.39779005524862%;
627
+ *margin-left: 88.2914070765252%;
628
+ }
629
+ .row-fluid .offset10:first-child {
630
+ margin-left: 85.6353591160221%;
631
+ *margin-left: 85.52897613729868%;
632
+ }
633
+ .row-fluid .offset9 {
634
+ margin-left: 79.8342541436464%;
635
+ *margin-left: 79.72787116492299%;
636
+ }
637
+ .row-fluid .offset9:first-child {
638
+ margin-left: 77.07182320441989%;
639
+ *margin-left: 76.96544022569647%;
640
+ }
641
+ .row-fluid .offset8 {
642
+ margin-left: 71.2707182320442%;
643
+ *margin-left: 71.16433525332079%;
644
+ }
645
+ .row-fluid .offset8:first-child {
646
+ margin-left: 68.50828729281768%;
647
+ *margin-left: 68.40190431409427%;
648
+ }
649
+ .row-fluid .offset7 {
650
+ margin-left: 62.70718232044199%;
651
+ *margin-left: 62.600799341718584%;
652
+ }
653
+ .row-fluid .offset7:first-child {
654
+ margin-left: 59.94475138121547%;
655
+ *margin-left: 59.838368402492065%;
656
+ }
657
+ .row-fluid .offset6 {
658
+ margin-left: 54.14364640883978%;
659
+ *margin-left: 54.037263430116376%;
660
+ }
661
+ .row-fluid .offset6:first-child {
662
+ margin-left: 51.38121546961326%;
663
+ *margin-left: 51.27483249088986%;
664
+ }
665
+ .row-fluid .offset5 {
666
+ margin-left: 45.58011049723757%;
667
+ *margin-left: 45.47372751851417%;
668
+ }
669
+ .row-fluid .offset5:first-child {
670
+ margin-left: 42.81767955801105%;
671
+ *margin-left: 42.71129657928765%;
672
+ }
673
+ .row-fluid .offset4 {
674
+ margin-left: 37.01657458563536%;
675
+ *margin-left: 36.91019160691196%;
676
+ }
677
+ .row-fluid .offset4:first-child {
678
+ margin-left: 34.25414364640884%;
679
+ *margin-left: 34.14776066768544%;
680
+ }
681
+ .row-fluid .offset3 {
682
+ margin-left: 28.45303867403315%;
683
+ *margin-left: 28.346655695309746%;
684
+ }
685
+ .row-fluid .offset3:first-child {
686
+ margin-left: 25.69060773480663%;
687
+ *margin-left: 25.584224756083227%;
688
+ }
689
+ .row-fluid .offset2 {
690
+ margin-left: 19.88950276243094%;
691
+ *margin-left: 19.783119783707537%;
692
+ }
693
+ .row-fluid .offset2:first-child {
694
+ margin-left: 17.12707182320442%;
695
+ *margin-left: 17.02068884448102%;
696
+ }
697
+ .row-fluid .offset1 {
698
+ margin-left: 11.32596685082873%;
699
+ *margin-left: 11.219583872105325%;
700
+ }
701
+ .row-fluid .offset1:first-child {
702
+ margin-left: 8.56353591160221%;
703
+ *margin-left: 8.457152932878806%;
605
704
  }
606
705
  input,
607
706
  textarea,
608
707
  .uneditable-input {
609
708
  margin-left: 0;
610
709
  }
710
+ .controls-row [class*="span"] + [class*="span"] {
711
+ margin-left: 20px;
712
+ }
611
713
  input.span12,
612
714
  textarea.span12,
613
715
  .uneditable-input.span12 {
614
- width: 1160px;
716
+ width: 714px;
615
717
  }
616
718
  input.span11,
617
719
  textarea.span11,
618
720
  .uneditable-input.span11 {
619
- width: 1060px;
721
+ width: 652px;
620
722
  }
621
723
  input.span10,
622
724
  textarea.span10,
623
725
  .uneditable-input.span10 {
624
- width: 960px;
726
+ width: 590px;
625
727
  }
626
728
  input.span9,
627
729
  textarea.span9,
628
730
  .uneditable-input.span9 {
629
- width: 860px;
731
+ width: 528px;
630
732
  }
631
733
  input.span8,
632
734
  textarea.span8,
633
735
  .uneditable-input.span8 {
634
- width: 760px;
736
+ width: 466px;
635
737
  }
636
738
  input.span7,
637
739
  textarea.span7,
638
740
  .uneditable-input.span7 {
639
- width: 660px;
741
+ width: 404px;
640
742
  }
641
743
  input.span6,
642
744
  textarea.span6,
643
745
  .uneditable-input.span6 {
644
- width: 560px;
746
+ width: 342px;
645
747
  }
646
748
  input.span5,
647
749
  textarea.span5,
648
750
  .uneditable-input.span5 {
649
- width: 460px;
751
+ width: 280px;
650
752
  }
651
753
  input.span4,
652
754
  textarea.span4,
653
755
  .uneditable-input.span4 {
654
- width: 360px;
756
+ width: 218px;
655
757
  }
656
758
  input.span3,
657
759
  textarea.span3,
658
760
  .uneditable-input.span3 {
659
- width: 260px;
761
+ width: 156px;
660
762
  }
661
763
  input.span2,
662
764
  textarea.span2,
663
765
  .uneditable-input.span2 {
664
- width: 160px;
766
+ width: 94px;
665
767
  }
666
768
  input.span1,
667
769
  textarea.span1,
668
770
  .uneditable-input.span1 {
669
- width: 60px;
771
+ width: 32px;
772
+ }
773
+ }
774
+
775
+ @media (max-width: 767px) {
776
+ body {
777
+ padding-right: 20px;
778
+ padding-left: 20px;
779
+ }
780
+ .navbar-fixed-top,
781
+ .navbar-fixed-bottom {
782
+ margin-right: -20px;
783
+ margin-left: -20px;
784
+ }
785
+ .container-fluid {
786
+ padding: 0;
787
+ }
788
+ .dl-horizontal dt {
789
+ float: none;
790
+ width: auto;
791
+ clear: none;
792
+ text-align: left;
793
+ }
794
+ .dl-horizontal dd {
795
+ margin-left: 0;
796
+ }
797
+ .container {
798
+ width: auto;
670
799
  }
800
+ .row-fluid {
801
+ width: 100%;
802
+ }
803
+ .row,
671
804
  .thumbnails {
672
- margin-left: -30px;
805
+ margin-left: 0;
673
806
  }
674
807
  .thumbnails > li {
675
- margin-left: 30px;
808
+ float: none;
676
809
  }
677
- .row-fluid .thumbnails {
810
+ [class*="span"],
811
+ .row-fluid [class*="span"] {
812
+ display: block;
813
+ float: none;
814
+ width: auto;
815
+ margin-left: 0;
816
+ }
817
+ .input-large,
818
+ .input-xlarge,
819
+ .input-xxlarge,
820
+ input[class*="span"],
821
+ select[class*="span"],
822
+ textarea[class*="span"],
823
+ .uneditable-input {
824
+ display: block;
825
+ width: 100%;
826
+ min-height: 28px;
827
+ -webkit-box-sizing: border-box;
828
+ -moz-box-sizing: border-box;
829
+ box-sizing: border-box;
830
+ }
831
+ .input-prepend input,
832
+ .input-append input,
833
+ .input-prepend input[class*="span"],
834
+ .input-append input[class*="span"] {
835
+ display: inline-block;
836
+ width: auto;
837
+ }
838
+ }
839
+
840
+ @media (max-width: 480px) {
841
+ .nav-collapse {
842
+ -webkit-transform: translate3d(0, 0, 0);
843
+ }
844
+ .page-header h1 small {
845
+ display: block;
846
+ line-height: 20px;
847
+ }
848
+ input[type="checkbox"],
849
+ input[type="radio"] {
850
+ border: 1px solid #ccc;
851
+ }
852
+ .form-horizontal .control-group > label {
853
+ float: none;
854
+ width: auto;
855
+ padding-top: 0;
856
+ text-align: left;
857
+ }
858
+ .form-horizontal .controls {
678
859
  margin-left: 0;
679
860
  }
861
+ .form-horizontal .control-list {
862
+ padding-top: 0;
863
+ }
864
+ .form-horizontal .form-actions {
865
+ padding-right: 10px;
866
+ padding-left: 10px;
867
+ }
868
+ .modal {
869
+ position: fixed;
870
+ top: 10px;
871
+ right: 10px;
872
+ left: 10px;
873
+ width: auto;
874
+ margin: 0;
875
+ }
876
+ .modal.fade.in {
877
+ top: auto;
878
+ }
879
+ .modal-header .close {
880
+ padding: 10px;
881
+ margin: -10px;
882
+ }
883
+ .carousel-caption {
884
+ position: static;
885
+ }
680
886
  }
681
887
 
682
888
  @media (max-width: 979px) {
683
889
  body {
684
890
  padding-top: 0;
685
891
  }
686
- .navbar-fixed-top {
892
+ .navbar-fixed-top,
893
+ .navbar-fixed-bottom,
894
+ .navbar-subnav-fixed {
687
895
  position: static;
688
- margin-bottom: 18px;
689
896
  }
690
- .navbar-fixed-top .navbar-inner {
897
+ .navbar-fixed-top {
898
+ margin-bottom: 20px;
899
+ }
900
+ .navbar-fixed-bottom {
901
+ margin-top: 20px;
902
+ }
903
+ .navbar-fixed-top .navbar-inner,
904
+ .navbar-fixed-bottom .navbar-inner {
691
905
  padding: 5px;
692
906
  }
693
907
  .navbar .container {
@@ -704,7 +918,7 @@
704
918
  }
705
919
  .nav-collapse .nav {
706
920
  float: none;
707
- margin: 0 0 9px;
921
+ margin: 0 0 10px;
708
922
  }
709
923
  .nav-collapse .nav > li {
710
924
  float: none;
@@ -740,7 +954,7 @@
740
954
  }
741
955
  .nav-collapse .nav > li > a:hover,
742
956
  .nav-collapse .dropdown-menu a:hover {
743
- background-color: #222222;
957
+ background-color: #111111;
744
958
  }
745
959
  .nav-collapse.in .btn-group {
746
960
  padding: 0;
@@ -774,10 +988,10 @@
774
988
  .nav-collapse .navbar-form,
775
989
  .nav-collapse .navbar-search {
776
990
  float: none;
777
- padding: 9px 15px;
778
- margin: 9px 0;
779
- border-top: 1px solid #222222;
780
- border-bottom: 1px solid #222222;
991
+ padding: 10px 15px;
992
+ margin: 10px 0;
993
+ border-top: 1px solid #111111;
994
+ border-bottom: 1px solid #111111;
781
995
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
782
996
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
783
997
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
@@ -798,6 +1012,39 @@
798
1012
  padding-right: 10px;
799
1013
  padding-left: 10px;
800
1014
  }
1015
+ .navbar-subnav {
1016
+ width: auto;
1017
+ height: auto;
1018
+ -webkit-box-shadow: none;
1019
+ -moz-box-shadow: none;
1020
+ box-shadow: none;
1021
+ }
1022
+ .navbar-subnav .navbar-inner {
1023
+ background-color: #fff;
1024
+ background-image: none;
1025
+ }
1026
+ .navbar-subnav .nav {
1027
+ float: none;
1028
+ margin-right: 0;
1029
+ }
1030
+ .navbar-subnav .nav > li {
1031
+ float: none;
1032
+ }
1033
+ .navbar-subnav .nav > li > a {
1034
+ border: 0;
1035
+ }
1036
+ .navbar-subnav .nav > li > a:hover {
1037
+ background-color: #f5f5f5;
1038
+ }
1039
+ .navbar-subnav .nav > li + li > a {
1040
+ border-top: 1px solid #e5e5e5;
1041
+ }
1042
+ .navbar-subnav .nav > li:first-child > a,
1043
+ .navbar-subnav .nav > li:first-child > a:hover {
1044
+ -webkit-border-radius: 4px 4px 0 0;
1045
+ -moz-border-radius: 4px 4px 0 0;
1046
+ border-radius: 4px 4px 0 0;
1047
+ }
801
1048
  }
802
1049
 
803
1050
  @media (min-width: 980px) {