css-bootstrap-rails 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,8 +1,8 @@
1
1
  module Css
2
2
  module Bootstrap
3
3
  module Rails
4
- VERSION = "0.0.5"
5
- TWITTER_BOOTSTRAP = "1.3.0"
4
+ VERSION = "0.0.6"
5
+ TWITTER_BOOTSTRAP = "1.4.0"
6
6
  end
7
7
  end
8
8
  end
@@ -1,5 +1,5 @@
1
1
  /* ==========================================================
2
- * bootstrap-alerts.js v1.3.0
2
+ * bootstrap-alerts.js v1.4.0
3
3
  * http://twitter.github.com/bootstrap/javascript.html#alerts
4
4
  * ==========================================================
5
5
  * Copyright 2011 Twitter, Inc.
@@ -20,6 +20,8 @@
20
20
 
21
21
  !function( $ ){
22
22
 
23
+ "use strict"
24
+
23
25
  /* CSS TRANSITION SUPPORT (https://gist.github.com/373874)
24
26
  * ======================================================= */
25
27
 
@@ -38,11 +40,11 @@
38
40
  if ( $.support.transition ) {
39
41
  transitionEnd = "TransitionEnd"
40
42
  if ( $.browser.webkit ) {
41
- transitionEnd = "webkitTransitionEnd"
43
+ transitionEnd = "webkitTransitionEnd"
42
44
  } else if ( $.browser.mozilla ) {
43
- transitionEnd = "transitionend"
45
+ transitionEnd = "transitionend"
44
46
  } else if ( $.browser.opera ) {
45
- transitionEnd = "oTransitionEnd"
47
+ transitionEnd = "oTransitionEnd"
46
48
  }
47
49
  }
48
50
 
@@ -0,0 +1,62 @@
1
+ /* ============================================================
2
+ * bootstrap-dropdown.js v1.4.0
3
+ * http://twitter.github.com/bootstrap/javascript.html#dropdown
4
+ * ============================================================
5
+ * Copyright 2011 Twitter, Inc.
6
+ *
7
+ * Licensed under the Apache License, Version 2.0 (the "License");
8
+ * you may not use this file except in compliance with the License.
9
+ * You may obtain a copy of the License at
10
+ *
11
+ * http://www.apache.org/licenses/LICENSE-2.0
12
+ *
13
+ * Unless required by applicable law or agreed to in writing, software
14
+ * distributed under the License is distributed on an "AS IS" BASIS,
15
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ * See the License for the specific language governing permissions and
17
+ * limitations under the License.
18
+ * ============================================================ */
19
+
20
+ !function( $ ){
21
+
22
+ "use strict"
23
+
24
+ function setState(el, state) {
25
+ var d = 'disabled'
26
+ , $el = $(el)
27
+ , data = $el.data()
28
+
29
+ state = state + 'Text'
30
+ data.resetText || $el.data('resetText', $el.html())
31
+
32
+ $el.html( data[state] || $.fn.button.defaults[state] )
33
+
34
+ state == 'loadingText' ?
35
+ $el.addClass(d).attr(d, d) :
36
+ $el.removeClass(d).removeAttr(d)
37
+ }
38
+
39
+ function toggle(el) {
40
+ $(el).toggleClass('active')
41
+ }
42
+
43
+ $.fn.button = function(options) {
44
+ return this.each(function () {
45
+ if (options == 'toggle') {
46
+ return toggle(this)
47
+ }
48
+ options && setState(this, options)
49
+ })
50
+ }
51
+
52
+ $.fn.button.defaults = {
53
+ loadingText: 'loading...'
54
+ }
55
+
56
+ $(function () {
57
+ $('body').delegate('.btn[data-toggle]', 'click', function () {
58
+ $(this).button('toggle')
59
+ })
60
+ })
61
+
62
+ }( window.jQuery || window.ender );
@@ -1,5 +1,5 @@
1
1
  /* ============================================================
2
- * bootstrap-dropdown.js v1.3.0
2
+ * bootstrap-dropdown.js v1.4.0
3
3
  * http://twitter.github.com/bootstrap/javascript.html#dropdown
4
4
  * ============================================================
5
5
  * Copyright 2011 Twitter, Inc.
@@ -20,6 +20,8 @@
20
20
 
21
21
  !function( $ ){
22
22
 
23
+ "use strict"
24
+
23
25
  /* DROPDOWN PLUGIN DEFINITION
24
26
  * ========================== */
25
27
 
@@ -1,5 +1,5 @@
1
1
  /* =========================================================
2
- * bootstrap-modal.js v1.3.0
2
+ * bootstrap-modal.js v1.4.0
3
3
  * http://twitter.github.com/bootstrap/javascript.html#modal
4
4
  * =========================================================
5
5
  * Copyright 2011 Twitter, Inc.
@@ -20,6 +20,8 @@
20
20
 
21
21
  !function( $ ){
22
22
 
23
+ "use strict"
24
+
23
25
  /* CSS TRANSITION SUPPORT (https://gist.github.com/373874)
24
26
  * ======================================================= */
25
27
 
@@ -87,8 +89,7 @@
87
89
  that.$element[0].offsetWidth // force reflow
88
90
  }
89
91
 
90
- that.$element
91
- .addClass('in')
92
+ that.$element.addClass('in')
92
93
 
93
94
  transition ?
94
95
  that.$element.one(transitionEnd, function () { that.$element.trigger('shown') }) :
@@ -115,17 +116,9 @@
115
116
  .trigger('hide')
116
117
  .removeClass('in')
117
118
 
118
- function removeElement () {
119
- that.$element
120
- .hide()
121
- .trigger('hidden')
122
-
123
- backdrop.call(that)
124
- }
125
-
126
119
  $.support.transition && this.$element.hasClass('fade') ?
127
- this.$element.one(transitionEnd, removeElement) :
128
- removeElement()
120
+ hideWithTransition.call(this) :
121
+ hideModal.call(this)
129
122
 
130
123
  return this
131
124
  }
@@ -136,6 +129,28 @@
136
129
  /* MODAL PRIVATE METHODS
137
130
  * ===================== */
138
131
 
132
+ function hideWithTransition() {
133
+ // firefox drops transitionEnd events :{o
134
+ var that = this
135
+ , timeout = setTimeout(function () {
136
+ that.$element.unbind(transitionEnd)
137
+ hideModal.call(that)
138
+ }, 500)
139
+
140
+ this.$element.one(transitionEnd, function () {
141
+ clearTimeout(timeout)
142
+ hideModal.call(that)
143
+ })
144
+ }
145
+
146
+ function hideModal (that) {
147
+ this.$element
148
+ .hide()
149
+ .trigger('hidden')
150
+
151
+ backdrop.call(this)
152
+ }
153
+
139
154
  function backdrop ( callback ) {
140
155
  var that = this
141
156
  , animate = this.$element.hasClass('fade') ? 'fade' : ''
@@ -162,19 +177,20 @@
162
177
  } else if ( !this.isShown && this.$backdrop ) {
163
178
  this.$backdrop.removeClass('in')
164
179
 
165
- function removeElement() {
166
- that.$backdrop.remove()
167
- that.$backdrop = null
168
- }
169
-
170
180
  $.support.transition && this.$element.hasClass('fade')?
171
- this.$backdrop.one(transitionEnd, removeElement) :
172
- removeElement()
181
+ this.$backdrop.one(transitionEnd, $.proxy(removeBackdrop, this)) :
182
+ removeBackdrop.call(this)
183
+
173
184
  } else if ( callback ) {
174
185
  callback()
175
186
  }
176
187
  }
177
188
 
189
+ function removeBackdrop() {
190
+ this.$backdrop.remove()
191
+ this.$backdrop = null
192
+ }
193
+
178
194
  function escape() {
179
195
  var that = this
180
196
  if ( this.isShown && this.settings.keyboard ) {
@@ -1,5 +1,5 @@
1
1
  /* ===========================================================
2
- * bootstrap-popover.js v1.3.0
2
+ * bootstrap-popover.js v1.4.0
3
3
  * http://twitter.github.com/bootstrap/javascript.html#popover
4
4
  * ===========================================================
5
5
  * Copyright 2011 Twitter, Inc.
@@ -20,6 +20,8 @@
20
20
 
21
21
  !function( $ ) {
22
22
 
23
+ "use strict"
24
+
23
25
  var Popover = function ( element, options ) {
24
26
  this.$element = $(element)
25
27
  this.options = options
@@ -39,13 +41,17 @@
39
41
  $tip[0].className = 'popover'
40
42
  }
41
43
 
44
+ , hasContent: function () {
45
+ return this.getTitle() || this.getContent()
46
+ }
47
+
42
48
  , getContent: function () {
43
49
  var content
44
50
  , $e = this.$element
45
51
  , o = this.options
46
52
 
47
53
  if (typeof this.options.content == 'string') {
48
- content = $e.attr(o.content)
54
+ content = this.options.content
49
55
  } else if (typeof this.options.content == 'function') {
50
56
  content = this.options.content.call(this.$element[0])
51
57
  }
@@ -55,7 +61,7 @@
55
61
  , tip: function() {
56
62
  if (!this.$tip) {
57
63
  this.$tip = $('<div class="popover" />')
58
- .html('<div class="arrow"></div><div class="inner"><h3 class="title"></h3><div class="content"><p></p></div></div>')
64
+ .html(this.options.template)
59
65
  }
60
66
  return this.$tip
61
67
  }
@@ -72,6 +78,9 @@
72
78
  return this
73
79
  }
74
80
 
75
- $.fn.popover.defaults = $.extend({} , $.fn.twipsy.defaults, { content: 'data-content', placement: 'right'})
81
+ $.fn.popover.defaults = $.extend({} , $.fn.twipsy.defaults, {
82
+ placement: 'right'
83
+ , template: '<div class="arrow"></div><div class="inner"><h3 class="title"></h3><div class="content"><p></p></div></div>'
84
+ })
76
85
 
77
86
  }( window.jQuery || window.ender );
@@ -1,5 +1,5 @@
1
1
  /* =============================================================
2
- * bootstrap-scrollspy.js v1.3.0
2
+ * bootstrap-scrollspy.js v1.4.0
3
3
  * http://twitter.github.com/bootstrap/javascript.html#scrollspy
4
4
  * =============================================================
5
5
  * Copyright 2011 Twitter, Inc.
@@ -20,6 +20,8 @@
20
20
 
21
21
  !function ( $ ) {
22
22
 
23
+ "use strict"
24
+
23
25
  var $window = $(window)
24
26
 
25
27
  function ScrollSpy( topbar, selector ) {
@@ -1,5 +1,5 @@
1
1
  /* ========================================================
2
- * bootstrap-tabs.js v1.3.0
2
+ * bootstrap-tabs.js v1.4.0
3
3
  * http://twitter.github.com/bootstrap/javascript.html#tabs
4
4
  * ========================================================
5
5
  * Copyright 2011 Twitter, Inc.
@@ -20,6 +20,8 @@
20
20
 
21
21
  !function( $ ){
22
22
 
23
+ "use strict"
24
+
23
25
  function activate ( element, container ) {
24
26
  container
25
27
  .find('> .active')
@@ -39,6 +41,7 @@
39
41
  , $ul = $this.closest('ul:not(.dropdown-menu)')
40
42
  , href = $this.attr('href')
41
43
  , previous
44
+ , $href
42
45
 
43
46
  if ( /^#\w+/.test(href) ) {
44
47
  e.preventDefault()
@@ -1,5 +1,5 @@
1
1
  /* ==========================================================
2
- * bootstrap-twipsy.js v1.3.0
2
+ * bootstrap-twipsy.js v1.4.0
3
3
  * http://twitter.github.com/bootstrap/javascript.html#twipsy
4
4
  * Adapted from the original jQuery.tipsy by Jason Frame
5
5
  * ==========================================================
@@ -21,6 +21,8 @@
21
21
 
22
22
  !function( $ ) {
23
23
 
24
+ "use strict"
25
+
24
26
  /* CSS TRANSITION SUPPORT (https://gist.github.com/373874)
25
27
  * ======================================================= */
26
28
 
@@ -70,7 +72,7 @@
70
72
  , $tip
71
73
  , tp
72
74
 
73
- if (this.getTitle() && this.enabled) {
75
+ if (this.hasContent() && this.enabled) {
74
76
  $tip = this.tip()
75
77
  this.setContent()
76
78
 
@@ -143,6 +145,10 @@
143
145
  }
144
146
  }
145
147
 
148
+ , hasContent: function () {
149
+ return this.getTitle()
150
+ }
151
+
146
152
  , getTitle: function() {
147
153
  var title
148
154
  , $e = this.$element
@@ -163,7 +169,7 @@
163
169
 
164
170
  , tip: function() {
165
171
  if (!this.$tip) {
166
- this.$tip = $('<div class="twipsy" />').html('<div class="twipsy-arrow"></div><div class="twipsy-inner"></div>')
172
+ this.$tip = $('<div class="twipsy" />').html(this.options.template)
167
173
  }
168
174
  return this.$tip
169
175
  }
@@ -294,10 +300,11 @@
294
300
  , offset: 0
295
301
  , title: 'title'
296
302
  , trigger: 'hover'
303
+ , template: '<div class="twipsy-arrow"></div><div class="twipsy-inner"></div>'
297
304
  }
298
305
 
299
306
  $.fn.twipsy.elementOptions = function(ele, options) {
300
- return $.metadata ? $.extend({}, options, $(ele).metadata()) : options
307
+ return $.extend({}, options, $(ele).data())
301
308
  }
302
309
 
303
310
  }( window.jQuery || window.ender );
@@ -1,12 +1,12 @@
1
1
  /*!
2
- * Bootstrap v1.3.0
2
+ * Bootstrap v1.4.0
3
3
  *
4
4
  * Copyright 2011 Twitter, Inc
5
5
  * Licensed under the Apache License v2.0
6
6
  * http://www.apache.org/licenses/LICENSE-2.0
7
7
  *
8
8
  * Designed and built with all the love in the world @twitter by @mdo and @fat.
9
- * Date: Sat Sep 17 18:25:32 PDT 2011
9
+ * Date: Thu Nov 3 17:06:17 PDT 2011
10
10
  */
11
11
  /* Reset.less
12
12
  * Props to Eric Meyer (meyerweb.com) for his CSS reset file. We're using an adapted version here that cuts out some of the reset HTML elements we will never need here (i.e., dfn, samp, etc).
@@ -173,17 +173,15 @@ textarea {
173
173
  /* Variables.less
174
174
  * Variables to customize the look and feel of Bootstrap
175
175
  * ----------------------------------------------------- */
176
- /* Variables.less
176
+ /* Mixins.less
177
177
  * Snippets of reusable CSS to develop faster and keep code readable
178
178
  * ----------------------------------------------------------------- */
179
179
  /*
180
180
  * Scaffolding
181
181
  * Basic and global styles for generating a grid system, structural layout, and page templates
182
182
  * ------------------------------------------------------------------------------------------- */
183
- html, body {
184
- background-color: #ffffff;
185
- }
186
183
  body {
184
+ background-color: #ffffff;
187
185
  margin: 0;
188
186
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
189
187
  font-size: 13px;
@@ -201,7 +199,6 @@ body {
201
199
  display: table;
202
200
  content: "";
203
201
  zoom: 1;
204
- *display: inline;
205
202
  }
206
203
  .container:after {
207
204
  clear: both;
@@ -217,13 +214,14 @@ body {
217
214
  display: table;
218
215
  content: "";
219
216
  zoom: 1;
220
- *display: inline;
221
217
  }
222
218
  .container-fluid:after {
223
219
  clear: both;
224
220
  }
225
221
  .container-fluid > .sidebar {
226
- float: left;
222
+ position: absolute;
223
+ top: 0;
224
+ left: 20px;
227
225
  width: 220px;
228
226
  }
229
227
  .container-fluid > .content {
@@ -259,12 +257,11 @@ a:hover {
259
257
  display: table;
260
258
  content: "";
261
259
  zoom: 1;
262
- *display: inline;
263
260
  }
264
261
  .row:after {
265
262
  clear: both;
266
263
  }
267
- [class*="span"] {
264
+ .row > [class*="span"] {
268
265
  display: inline;
269
266
  float: left;
270
267
  margin-left: 20px;
@@ -341,40 +338,40 @@ a:hover {
341
338
  .span24 {
342
339
  width: 1420px;
343
340
  }
344
- .offset1 {
341
+ .row > .offset1 {
345
342
  margin-left: 80px;
346
343
  }
347
- .offset2 {
344
+ .row > .offset2 {
348
345
  margin-left: 140px;
349
346
  }
350
- .offset3 {
347
+ .row > .offset3 {
351
348
  margin-left: 200px;
352
349
  }
353
- .offset4 {
350
+ .row > .offset4 {
354
351
  margin-left: 260px;
355
352
  }
356
- .offset5 {
353
+ .row > .offset5 {
357
354
  margin-left: 320px;
358
355
  }
359
- .offset6 {
356
+ .row > .offset6 {
360
357
  margin-left: 380px;
361
358
  }
362
- .offset7 {
359
+ .row > .offset7 {
363
360
  margin-left: 440px;
364
361
  }
365
- .offset8 {
362
+ .row > .offset8 {
366
363
  margin-left: 500px;
367
364
  }
368
- .offset9 {
365
+ .row > .offset9 {
369
366
  margin-left: 560px;
370
367
  }
371
- .offset10 {
368
+ .row > .offset10 {
372
369
  margin-left: 620px;
373
370
  }
374
- .offset11 {
371
+ .row > .offset11 {
375
372
  margin-left: 680px;
376
373
  }
377
- .offset12 {
374
+ .row > .offset12 {
378
375
  margin-left: 740px;
379
376
  }
380
377
  .span-one-third {
@@ -598,7 +595,6 @@ form .clearfix:before, form .clearfix:after {
598
595
  display: table;
599
596
  content: "";
600
597
  zoom: 1;
601
- *display: inline;
602
598
  }
603
599
  form .clearfix:after {
604
600
  clear: both;
@@ -643,7 +639,9 @@ select,
643
639
  -moz-border-radius: 3px;
644
640
  border-radius: 3px;
645
641
  }
646
- /* mini reset for non-html5 file types */
642
+ select {
643
+ padding: initial;
644
+ }
647
645
  input[type=checkbox], input[type=radio] {
648
646
  width: auto;
649
647
  height: auto;
@@ -670,6 +668,7 @@ input[type=button], input[type=reset], input[type=submit] {
670
668
  }
671
669
  select, input[type=file] {
672
670
  height: 27px;
671
+ *height: auto;
673
672
  line-height: 27px;
674
673
  *margin-top: 4px;
675
674
  /* For IE7, add top margin to align select with labels */
@@ -677,6 +676,7 @@ select, input[type=file] {
677
676
  }
678
677
  select[multiple] {
679
678
  height: inherit;
679
+ background-color: #ffffff;
680
680
  }
681
681
  textarea {
682
682
  height: auto;
@@ -697,6 +697,7 @@ textarea {
697
697
  color: #bfbfbf;
698
698
  }
699
699
  input, textarea {
700
+ -webkit-transform-style: preserve-3d;
700
701
  -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
701
702
  -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
702
703
  -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
@@ -719,33 +720,59 @@ input[type=file]:focus, input[type=checkbox]:focus, select:focus {
719
720
  box-shadow: none;
720
721
  outline: 1px dotted #666;
721
722
  }
722
- form div.clearfix.error {
723
- background: #fae5e3;
724
- padding: 10px 0;
725
- margin: -10px 0 10px;
726
- -webkit-border-radius: 4px;
727
- -moz-border-radius: 4px;
728
- border-radius: 4px;
723
+ form .clearfix.error > label, form .clearfix.error .help-block, form .clearfix.error .help-inline {
724
+ color: #b94a48;
729
725
  }
730
- form div.clearfix.error > label, form div.clearfix.error span.help-inline, form div.clearfix.error span.help-block {
731
- color: #9d261d;
726
+ form .clearfix.error input, form .clearfix.error textarea {
727
+ color: #b94a48;
728
+ border-color: #ee5f5b;
729
+ }
730
+ form .clearfix.error input:focus, form .clearfix.error textarea:focus {
731
+ border-color: #e9322d;
732
+ -webkit-box-shadow: 0 0 6px #f8b9b7;
733
+ -moz-box-shadow: 0 0 6px #f8b9b7;
734
+ box-shadow: 0 0 6px #f8b9b7;
735
+ }
736
+ form .clearfix.error .input-prepend .add-on, form .clearfix.error .input-append .add-on {
737
+ color: #b94a48;
738
+ background-color: #fce6e6;
739
+ border-color: #b94a48;
740
+ }
741
+ form .clearfix.warning > label, form .clearfix.warning .help-block, form .clearfix.warning .help-inline {
742
+ color: #c09853;
743
+ }
744
+ form .clearfix.warning input, form .clearfix.warning textarea {
745
+ color: #c09853;
746
+ border-color: #ccae64;
747
+ }
748
+ form .clearfix.warning input:focus, form .clearfix.warning textarea:focus {
749
+ border-color: #be9a3f;
750
+ -webkit-box-shadow: 0 0 6px #e5d6b1;
751
+ -moz-box-shadow: 0 0 6px #e5d6b1;
752
+ box-shadow: 0 0 6px #e5d6b1;
732
753
  }
733
- form div.clearfix.error input, form div.clearfix.error textarea {
734
- border-color: #c87872;
735
- -webkit-box-shadow: 0 0 3px rgba(171, 41, 32, 0.25);
736
- -moz-box-shadow: 0 0 3px rgba(171, 41, 32, 0.25);
737
- box-shadow: 0 0 3px rgba(171, 41, 32, 0.25);
754
+ form .clearfix.warning .input-prepend .add-on, form .clearfix.warning .input-append .add-on {
755
+ color: #c09853;
756
+ background-color: #d2b877;
757
+ border-color: #c09853;
738
758
  }
739
- form div.clearfix.error input:focus, form div.clearfix.error textarea:focus {
740
- border-color: #b9554d;
741
- -webkit-box-shadow: 0 0 6px rgba(171, 41, 32, 0.5);
742
- -moz-box-shadow: 0 0 6px rgba(171, 41, 32, 0.5);
743
- box-shadow: 0 0 6px rgba(171, 41, 32, 0.5);
759
+ form .clearfix.success > label, form .clearfix.success .help-block, form .clearfix.success .help-inline {
760
+ color: #468847;
744
761
  }
745
- form div.clearfix.error .input-prepend span.add-on, form div.clearfix.error .input-append span.add-on {
746
- background: #f4c8c5;
747
- border-color: #c87872;
748
- color: #b9554d;
762
+ form .clearfix.success input, form .clearfix.success textarea {
763
+ color: #468847;
764
+ border-color: #57a957;
765
+ }
766
+ form .clearfix.success input:focus, form .clearfix.success textarea:focus {
767
+ border-color: #458845;
768
+ -webkit-box-shadow: 0 0 6px #9acc9a;
769
+ -moz-box-shadow: 0 0 6px #9acc9a;
770
+ box-shadow: 0 0 6px #9acc9a;
771
+ }
772
+ form .clearfix.success .input-prepend .add-on, form .clearfix.success .input-append .add-on {
773
+ color: #468847;
774
+ background-color: #bcddbc;
775
+ border-color: #468847;
749
776
  }
750
777
  .input-mini,
751
778
  input.mini,
@@ -786,97 +813,97 @@ select.xxlarge {
786
813
  textarea.xxlarge {
787
814
  overflow-y: auto;
788
815
  }
789
- input.span1, textarea.span1, select.span1 {
816
+ input.span1, textarea.span1 {
790
817
  display: inline-block;
791
818
  float: none;
792
819
  width: 30px;
793
820
  margin-left: 0;
794
821
  }
795
- input.span2, textarea.span2, select.span2 {
822
+ input.span2, textarea.span2 {
796
823
  display: inline-block;
797
824
  float: none;
798
825
  width: 90px;
799
826
  margin-left: 0;
800
827
  }
801
- input.span3, textarea.span3, select.span3 {
828
+ input.span3, textarea.span3 {
802
829
  display: inline-block;
803
830
  float: none;
804
831
  width: 150px;
805
832
  margin-left: 0;
806
833
  }
807
- input.span4, textarea.span4, select.span4 {
834
+ input.span4, textarea.span4 {
808
835
  display: inline-block;
809
836
  float: none;
810
837
  width: 210px;
811
838
  margin-left: 0;
812
839
  }
813
- input.span5, textarea.span5, select.span5 {
840
+ input.span5, textarea.span5 {
814
841
  display: inline-block;
815
842
  float: none;
816
843
  width: 270px;
817
844
  margin-left: 0;
818
845
  }
819
- input.span6, textarea.span6, select.span6 {
846
+ input.span6, textarea.span6 {
820
847
  display: inline-block;
821
848
  float: none;
822
849
  width: 330px;
823
850
  margin-left: 0;
824
851
  }
825
- input.span7, textarea.span7, select.span7 {
852
+ input.span7, textarea.span7 {
826
853
  display: inline-block;
827
854
  float: none;
828
855
  width: 390px;
829
856
  margin-left: 0;
830
857
  }
831
- input.span8, textarea.span8, select.span8 {
858
+ input.span8, textarea.span8 {
832
859
  display: inline-block;
833
860
  float: none;
834
861
  width: 450px;
835
862
  margin-left: 0;
836
863
  }
837
- input.span9, textarea.span9, select.span9 {
864
+ input.span9, textarea.span9 {
838
865
  display: inline-block;
839
866
  float: none;
840
867
  width: 510px;
841
868
  margin-left: 0;
842
869
  }
843
- input.span10, textarea.span10, select.span10 {
870
+ input.span10, textarea.span10 {
844
871
  display: inline-block;
845
872
  float: none;
846
873
  width: 570px;
847
874
  margin-left: 0;
848
875
  }
849
- input.span11, textarea.span11, select.span11 {
876
+ input.span11, textarea.span11 {
850
877
  display: inline-block;
851
878
  float: none;
852
879
  width: 630px;
853
880
  margin-left: 0;
854
881
  }
855
- input.span12, textarea.span12, select.span12 {
882
+ input.span12, textarea.span12 {
856
883
  display: inline-block;
857
884
  float: none;
858
885
  width: 690px;
859
886
  margin-left: 0;
860
887
  }
861
- input.span13, textarea.span13, select.span13 {
888
+ input.span13, textarea.span13 {
862
889
  display: inline-block;
863
890
  float: none;
864
891
  width: 750px;
865
892
  margin-left: 0;
866
893
  }
867
- input.span14, textarea.span14, select.span14 {
894
+ input.span14, textarea.span14 {
868
895
  display: inline-block;
869
896
  float: none;
870
897
  width: 810px;
871
898
  margin-left: 0;
872
899
  }
873
- input.span15, textarea.span15, select.span15 {
900
+ input.span15, textarea.span15 {
874
901
  display: inline-block;
875
902
  float: none;
876
903
  width: 870px;
877
904
  margin-left: 0;
878
905
  }
879
- input.span16, textarea.span16, select.span16 {
906
+ input.span16, textarea.span16 {
880
907
  display: inline-block;
881
908
  float: none;
882
909
  width: 930px;
@@ -912,7 +939,7 @@ textarea[readonly] {
912
939
  text-decoration: underline;
913
940
  }
914
941
  .help-inline, .help-block {
915
- font-size: 11px;
942
+ font-size: 13px;
916
943
  line-height: 18px;
917
944
  color: #bfbfbf;
918
945
  }
@@ -932,15 +959,6 @@ textarea[readonly] {
932
959
  .inline-inputs {
933
960
  color: #808080;
934
961
  }
935
- .inline-inputs span, .inline-inputs input {
936
- display: inline-block;
937
- }
938
- .inline-inputs input.mini {
939
- width: 60px;
940
- }
941
- .inline-inputs input.small {
942
- width: 90px;
943
- }
944
962
  .inline-inputs span {
945
963
  padding: 0 2px 0 1px;
946
964
  }
@@ -1006,6 +1024,7 @@ textarea[readonly] {
1006
1024
  float: none;
1007
1025
  width: auto;
1008
1026
  padding: 0;
1027
+ margin-left: 20px;
1009
1028
  line-height: 18px;
1010
1029
  text-align: left;
1011
1030
  white-space: normal;
@@ -1030,6 +1049,8 @@ textarea[readonly] {
1030
1049
  }
1031
1050
  .inputs-list input[type=radio], .inputs-list input[type=checkbox] {
1032
1051
  margin-bottom: 0;
1052
+ margin-left: -20px;
1053
+ float: left;
1033
1054
  }
1034
1055
  .form-stacked {
1035
1056
  padding-left: 20px;
@@ -1084,15 +1105,8 @@ table {
1084
1105
  width: 100%;
1085
1106
  margin-bottom: 18px;
1086
1107
  padding: 0;
1087
- border-collapse: separate;
1088
- *border-collapse: collapse;
1089
- /* IE7, collapse table to remove spacing */
1090
-
1091
1108
  font-size: 13px;
1092
- border: 1px solid #ddd;
1093
- -webkit-border-radius: 4px;
1094
- -moz-border-radius: 4px;
1095
- border-radius: 4px;
1109
+ border-collapse: collapse;
1096
1110
  }
1097
1111
  table th, table td {
1098
1112
  padding: 10px 10px 9px;
@@ -1103,47 +1117,109 @@ table th {
1103
1117
  padding-top: 9px;
1104
1118
  font-weight: bold;
1105
1119
  vertical-align: middle;
1106
- border-bottom: 1px solid #ddd;
1107
1120
  }
1108
1121
  table td {
1109
1122
  vertical-align: top;
1123
+ border-top: 1px solid #ddd;
1110
1124
  }
1111
- table th + th, table td + td {
1112
- border-left: 1px solid #ddd;
1113
- }
1114
- table tr + tr td {
1125
+ table tbody th {
1115
1126
  border-top: 1px solid #ddd;
1127
+ vertical-align: top;
1128
+ }
1129
+ .condensed-table th, .condensed-table td {
1130
+ padding: 5px 5px 4px;
1131
+ }
1132
+ .bordered-table {
1133
+ border: 1px solid #ddd;
1134
+ border-collapse: separate;
1135
+ *border-collapse: collapse;
1136
+ /* IE7, collapse table to remove spacing */
1137
+
1138
+ -webkit-border-radius: 4px;
1139
+ -moz-border-radius: 4px;
1140
+ border-radius: 4px;
1141
+ }
1142
+ .bordered-table th + th, .bordered-table td + td, .bordered-table th + td {
1143
+ border-left: 1px solid #ddd;
1116
1144
  }
1117
- table tbody tr:first-child td:first-child {
1145
+ .bordered-table thead tr:first-child th:first-child, .bordered-table tbody tr:first-child td:first-child {
1118
1146
  -webkit-border-radius: 4px 0 0 0;
1119
1147
  -moz-border-radius: 4px 0 0 0;
1120
1148
  border-radius: 4px 0 0 0;
1121
1149
  }
1122
- table tbody tr:first-child td:last-child {
1150
+ .bordered-table thead tr:first-child th:last-child, .bordered-table tbody tr:first-child td:last-child {
1123
1151
  -webkit-border-radius: 0 4px 0 0;
1124
1152
  -moz-border-radius: 0 4px 0 0;
1125
1153
  border-radius: 0 4px 0 0;
1126
1154
  }
1127
- table tbody tr:last-child td:first-child {
1155
+ .bordered-table tbody tr:last-child td:first-child {
1128
1156
  -webkit-border-radius: 0 0 0 4px;
1129
1157
  -moz-border-radius: 0 0 0 4px;
1130
1158
  border-radius: 0 0 0 4px;
1131
1159
  }
1132
- table tbody tr:last-child td:last-child {
1160
+ .bordered-table tbody tr:last-child td:last-child {
1133
1161
  -webkit-border-radius: 0 0 4px 0;
1134
1162
  -moz-border-radius: 0 0 4px 0;
1135
1163
  border-radius: 0 0 4px 0;
1136
1164
  }
1137
- .zebra-striped tbody tr:nth-child(odd) td {
1165
+ table .span1 {
1166
+ width: 20px;
1167
+ }
1168
+ table .span2 {
1169
+ width: 60px;
1170
+ }
1171
+ table .span3 {
1172
+ width: 100px;
1173
+ }
1174
+ table .span4 {
1175
+ width: 140px;
1176
+ }
1177
+ table .span5 {
1178
+ width: 180px;
1179
+ }
1180
+ table .span6 {
1181
+ width: 220px;
1182
+ }
1183
+ table .span7 {
1184
+ width: 260px;
1185
+ }
1186
+ table .span8 {
1187
+ width: 300px;
1188
+ }
1189
+ table .span9 {
1190
+ width: 340px;
1191
+ }
1192
+ table .span10 {
1193
+ width: 380px;
1194
+ }
1195
+ table .span11 {
1196
+ width: 420px;
1197
+ }
1198
+ table .span12 {
1199
+ width: 460px;
1200
+ }
1201
+ table .span13 {
1202
+ width: 500px;
1203
+ }
1204
+ table .span14 {
1205
+ width: 540px;
1206
+ }
1207
+ table .span15 {
1208
+ width: 580px;
1209
+ }
1210
+ table .span16 {
1211
+ width: 620px;
1212
+ }
1213
+ .zebra-striped tbody tr:nth-child(odd) td, .zebra-striped tbody tr:nth-child(odd) th {
1138
1214
  background-color: #f9f9f9;
1139
1215
  }
1140
- .zebra-striped tbody tr:hover td {
1216
+ .zebra-striped tbody tr:hover td, .zebra-striped tbody tr:hover th {
1141
1217
  background-color: #f5f5f5;
1142
1218
  }
1143
- .zebra-striped .header {
1219
+ table .header {
1144
1220
  cursor: pointer;
1145
1221
  }
1146
- .zebra-striped .header:after {
1222
+ table .header:after {
1147
1223
  content: "";
1148
1224
  float: right;
1149
1225
  margin-top: 7px;
@@ -1152,21 +1228,21 @@ table tbody tr:last-child td:last-child {
1152
1228
  border-color: #000 transparent;
1153
1229
  visibility: hidden;
1154
1230
  }
1155
- .zebra-striped .headerSortUp, .zebra-striped .headerSortDown {
1231
+ table .headerSortUp, table .headerSortDown {
1156
1232
  background-color: rgba(141, 192, 219, 0.25);
1157
1233
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
1158
1234
  }
1159
- .zebra-striped .header:hover:after {
1235
+ table .header:hover:after {
1160
1236
  visibility: visible;
1161
1237
  }
1162
- .zebra-striped .headerSortDown:after, .zebra-striped .headerSortDown:hover:after {
1238
+ table .headerSortDown:after, table .headerSortDown:hover:after {
1163
1239
  visibility: visible;
1164
1240
  filter: alpha(opacity=60);
1165
1241
  -khtml-opacity: 0.6;
1166
1242
  -moz-opacity: 0.6;
1167
1243
  opacity: 0.6;
1168
1244
  }
1169
- .zebra-striped .headerSortUp:after {
1245
+ table .headerSortUp:after {
1170
1246
  border-bottom: none;
1171
1247
  border-left: 4px solid transparent;
1172
1248
  border-right: 4px solid transparent;
@@ -1238,7 +1314,7 @@ table .headerSortUp.purple, table .headerSortDown.purple {
1238
1314
  color: #bfbfbf;
1239
1315
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1240
1316
  }
1241
- .topbar h3 a:hover, .topbar .brand a:hover, .topbar ul .active > a {
1317
+ .topbar h3 a:hover, .topbar .brand:hover, .topbar ul .active > a {
1242
1318
  background-color: #333;
1243
1319
  background-color: rgba(255, 255, 255, 0.05);
1244
1320
  color: #ffffff;
@@ -1294,6 +1370,7 @@ table .headerSortUp.purple, table .headerSortDown.purple {
1294
1370
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.25);
1295
1371
  -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.25);
1296
1372
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.25);
1373
+ -webkit-transform-style: preserve-3d;
1297
1374
  -webkit-transition: none;
1298
1375
  -moz-transition: none;
1299
1376
  -ms-transition: none;
@@ -1522,7 +1599,10 @@ a.menu:after, .dropdown-toggle:after {
1522
1599
  color: #808080;
1523
1600
  text-shadow: 0 1px 0 #ffffff;
1524
1601
  }
1525
- .topbar .dropdown-menu a:hover, .dropdown-menu a:hover {
1602
+ .topbar .dropdown-menu a:hover,
1603
+ .dropdown-menu a:hover,
1604
+ .topbar .dropdown-menu a.hover,
1605
+ .dropdown-menu a.hover {
1526
1606
  background-color: #dddddd;
1527
1607
  background-repeat: repeat-x;
1528
1608
  background-image: -khtml-gradient(linear, left top, left bottom, from(#eeeeee), to(#dddddd));
@@ -1554,7 +1634,7 @@ a.menu:after, .dropdown-toggle:after {
1554
1634
  display: block;
1555
1635
  }
1556
1636
  .tabs, .pills {
1557
- margin: 0 0 20px;
1637
+ margin: 0 0 18px;
1558
1638
  padding: 0;
1559
1639
  list-style: none;
1560
1640
  zoom: 1;
@@ -1566,7 +1646,6 @@ a.menu:after, .dropdown-toggle:after {
1566
1646
  display: table;
1567
1647
  content: "";
1568
1648
  zoom: 1;
1569
- *display: inline;
1570
1649
  }
1571
1650
  .tabs:after, .pills:after {
1572
1651
  clear: both;
@@ -1578,18 +1657,18 @@ a.menu:after, .dropdown-toggle:after {
1578
1657
  display: block;
1579
1658
  }
1580
1659
  .tabs {
1581
- float: left;
1582
- width: 100%;
1583
- border-bottom: 1px solid #ddd;
1660
+ border-color: #ddd;
1661
+ border-style: solid;
1662
+ border-width: 0 0 1px;
1584
1663
  }
1585
1664
  .tabs > li {
1586
1665
  position: relative;
1587
- top: 1px;
1666
+ margin-bottom: -1px;
1588
1667
  }
1589
1668
  .tabs > li > a {
1590
1669
  padding: 0 15px;
1591
1670
  margin-right: 2px;
1592
- line-height: 36px;
1671
+ line-height: 34px;
1593
1672
  border: 1px solid transparent;
1594
1673
  -webkit-border-radius: 4px 4px 0 0;
1595
1674
  -moz-border-radius: 4px 4px 0 0;
@@ -1600,11 +1679,12 @@ a.menu:after, .dropdown-toggle:after {
1600
1679
  background-color: #eee;
1601
1680
  border-color: #eee #eee #ddd;
1602
1681
  }
1603
- .tabs > li.active > a {
1682
+ .tabs .active > a, .tabs .active > a:hover {
1604
1683
  color: #808080;
1605
1684
  background-color: #ffffff;
1606
1685
  border: 1px solid #ddd;
1607
1686
  border-bottom-color: transparent;
1687
+ cursor: default;
1608
1688
  }
1609
1689
  .tabs .menu-dropdown, .tabs .dropdown-menu {
1610
1690
  top: 35px;
@@ -1624,38 +1704,38 @@ a.menu:after, .dropdown-toggle:after {
1624
1704
  .tabs li.open a.menu:after, .tabs .dropdown.open .dropdown-toggle:after {
1625
1705
  border-top-color: #555;
1626
1706
  }
1627
- .tab-content {
1628
- clear: both;
1629
- }
1630
1707
  .pills a {
1631
1708
  margin: 5px 3px 5px 0;
1632
1709
  padding: 0 15px;
1633
- text-shadow: 0 1px 1px #ffffff;
1634
1710
  line-height: 30px;
1711
+ text-shadow: 0 1px 1px #ffffff;
1635
1712
  -webkit-border-radius: 15px;
1636
1713
  -moz-border-radius: 15px;
1637
1714
  border-radius: 15px;
1638
1715
  }
1639
1716
  .pills a:hover {
1640
- background: #00438a;
1641
1717
  color: #ffffff;
1642
1718
  text-decoration: none;
1643
1719
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
1720
+ background-color: #00438a;
1644
1721
  }
1645
1722
  .pills .active a {
1646
- background: #0069d6;
1647
1723
  color: #ffffff;
1648
1724
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
1725
+ background-color: #0069d6;
1726
+ }
1727
+ .pills-vertical > li {
1728
+ float: none;
1649
1729
  }
1650
- .tab-content > *, .pill-content > * {
1730
+ .tab-content > .tab-pane, .pill-content > .pill-pane {
1651
1731
  display: none;
1652
1732
  }
1653
1733
  .tab-content > .active, .pill-content > .active {
1654
1734
  display: block;
1655
1735
  }
1656
1736
  .breadcrumb {
1657
- margin: 0 0 18px;
1658
1737
  padding: 7px 14px;
1738
+ margin: 0 0 18px;
1659
1739
  background-color: #f5f5f5;
1660
1740
  background-repeat: repeat-x;
1661
1741
  background-image: -khtml-gradient(linear, left top, left bottom, from(#ffffff), to(#f5f5f5));
@@ -1737,6 +1817,10 @@ footer {
1737
1817
  .alert-message.info:hover {
1738
1818
  color: #ffffff;
1739
1819
  }
1820
+ .btn .close, .alert-message .close {
1821
+ font-family: Arial, sans-serif;
1822
+ line-height: 18px;
1823
+ }
1740
1824
  .btn.danger,
1741
1825
  .alert-message.danger,
1742
1826
  .btn.error,
@@ -1810,6 +1894,7 @@ footer {
1810
1894
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1811
1895
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1812
1896
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1897
+ -webkit-transform-style: preserve-3d;
1813
1898
  -webkit-transition: 0.1s linear all;
1814
1899
  -moz-transition: 0.1s linear all;
1815
1900
  -ms-transition: 0.1s linear all;
@@ -1840,7 +1925,7 @@ footer {
1840
1925
  border-color: #0064cd #0064cd #003f81;
1841
1926
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1842
1927
  }
1843
- .btn:active {
1928
+ .btn.active, .btn :active {
1844
1929
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
1845
1930
  -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
1846
1931
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
@@ -1895,10 +1980,10 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
1895
1980
  font-weight: bold;
1896
1981
  line-height: 13.5px;
1897
1982
  text-shadow: 0 1px 0 #ffffff;
1898
- filter: alpha(opacity=20);
1899
- -khtml-opacity: 0.2;
1900
- -moz-opacity: 0.2;
1901
- opacity: 0.2;
1983
+ filter: alpha(opacity=25);
1984
+ -khtml-opacity: 0.25;
1985
+ -moz-opacity: 0.25;
1986
+ opacity: 0.25;
1902
1987
  }
1903
1988
  .close:hover {
1904
1989
  color: #000000;
@@ -1937,9 +2022,18 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
1937
2022
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
1938
2023
  }
1939
2024
  .alert-message .close {
1940
- *margin-top: 3px;
1941
- /* IE7 spacing */
1942
-
2025
+ margin-top: 1px;
2026
+ *margin-top: 0;
2027
+ }
2028
+ .alert-message a {
2029
+ font-weight: bold;
2030
+ color: #404040;
2031
+ }
2032
+ .alert-message.danger p a,
2033
+ .alert-message.error p a,
2034
+ .alert-message.success p a,
2035
+ .alert-message.info p a {
2036
+ color: #ffffff;
1943
2037
  }
1944
2038
  .alert-message h5 {
1945
2039
  line-height: 18px;
@@ -1995,6 +2089,12 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
1995
2089
  background-color: #ddf4fb;
1996
2090
  border-color: #c6edf9;
1997
2091
  }
2092
+ .alert-message.block-message.danger p a,
2093
+ .alert-message.block-message.error p a,
2094
+ .alert-message.block-message.success p a,
2095
+ .alert-message.block-message.info p a {
2096
+ color: #404040;
2097
+ }
1998
2098
  .pagination {
1999
2099
  height: 36px;
2000
2100
  margin: 18px 0;
@@ -2078,7 +2178,7 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
2078
2178
  left: 50%;
2079
2179
  z-index: 11000;
2080
2180
  width: 560px;
2081
- margin: -250px 0 0 -250px;
2181
+ margin: -250px 0 0 -280px;
2082
2182
  background-color: #ffffff;
2083
2183
  border: 1px solid #999;
2084
2184
  border: 1px solid rgba(0, 0, 0, 0.3);
@@ -2099,6 +2199,7 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
2099
2199
  margin-top: 7px;
2100
2200
  }
2101
2201
  .modal.fade {
2202
+ -webkit-transform-style: preserve-3d;
2102
2203
  -webkit-transition: opacity .3s linear, top .3s ease-out;
2103
2204
  -moz-transition: opacity .3s linear, top .3s ease-out;
2104
2205
  -ms-transition: opacity .3s linear, top .3s ease-out;
@@ -2116,6 +2217,9 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
2116
2217
  .modal-body {
2117
2218
  padding: 15px;
2118
2219
  }
2220
+ .modal-body form {
2221
+ margin-bottom: 0;
2222
+ }
2119
2223
  .modal-footer {
2120
2224
  background-color: #f5f5f5;
2121
2225
  padding: 14px 15px 15px;
@@ -2133,7 +2237,6 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
2133
2237
  display: table;
2134
2238
  content: "";
2135
2239
  zoom: 1;
2136
- *display: inline;
2137
2240
  }
2138
2241
  .modal-footer:after {
2139
2242
  clear: both;
@@ -2142,6 +2245,9 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
2142
2245
  float: right;
2143
2246
  margin-left: 5px;
2144
2247
  }
2248
+ .modal .popover, .modal .twipsy {
2249
+ z-index: 12000;
2250
+ }
2145
2251
  .twipsy {
2146
2252
  display: block;
2147
2253
  position: absolute;
@@ -2254,8 +2360,8 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
2254
2360
  height: 0;
2255
2361
  }
2256
2362
  .popover .inner {
2257
- background-color: #000000;
2258
- background-color: rgba(0, 0, 0, 0.8);
2363
+ background: #000000;
2364
+ background: rgba(0, 0, 0, 0.8);
2259
2365
  padding: 3px;
2260
2366
  overflow: hidden;
2261
2367
  width: 280px;
@@ -2289,6 +2395,7 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
2289
2395
  margin-bottom: 0;
2290
2396
  }
2291
2397
  .fade {
2398
+ -webkit-transform-style: preserve-3d;
2292
2399
  -webkit-transition: opacity 0.15s linear;
2293
2400
  -moz-transition: opacity 0.15s linear;
2294
2401
  -ms-transition: opacity 0.15s linear;
@@ -2301,11 +2408,12 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
2301
2408
  }
2302
2409
  .label {
2303
2410
  padding: 1px 3px 2px;
2304
- background-color: #bfbfbf;
2305
2411
  font-size: 9.75px;
2306
2412
  font-weight: bold;
2307
2413
  color: #ffffff;
2308
2414
  text-transform: uppercase;
2415
+ white-space: nowrap;
2416
+ background-color: #bfbfbf;
2309
2417
  -webkit-border-radius: 3px;
2310
2418
  -moz-border-radius: 3px;
2311
2419
  border-radius: 3px;
@@ -2331,7 +2439,6 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
2331
2439
  display: table;
2332
2440
  content: "";
2333
2441
  zoom: 1;
2334
- *display: inline;
2335
2442
  }
2336
2443
  .media-grid:after {
2337
2444
  clear: both;
@@ -2342,7 +2449,7 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
2342
2449
  .media-grid a {
2343
2450
  float: left;
2344
2451
  padding: 4px;
2345
- margin: 0 0 20px 20px;
2452
+ margin: 0 0 18px 20px;
2346
2453
  border: 1px solid #ddd;
2347
2454
  -webkit-border-radius: 4px;
2348
2455
  -moz-border-radius: 4px;
@@ -2359,4 +2466,4 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
2359
2466
  -webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
2360
2467
  -moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
2361
2468
  box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
2362
- }
2469
+ }