jombo 1.0.10 → 1.0.11

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-transition.js v2.1.1
2
+ * bootstrap-transition.js v2.3.1
3
3
  * http://twitter.github.com/bootstrap/javascript.html#transitions
4
4
  * ===================================================
5
5
  * Copyright 2012 Twitter, Inc.
@@ -20,13 +20,13 @@
20
20
 
21
21
  !function ($) {
22
22
 
23
- $(function () {
23
+ "use strict"; // jshint ;_;
24
24
 
25
- "use strict"; // jshint ;_;
26
25
 
26
+ /* CSS TRANSITION SUPPORT (http://www.modernizr.com/)
27
+ * ======================================================= */
27
28
 
28
- /* CSS TRANSITION SUPPORT (http://www.modernizr.com/)
29
- * ======================================================= */
29
+ $(function () {
30
30
 
31
31
  $.support.transition = (function () {
32
32
 
@@ -1,5 +1,5 @@
1
1
  /* =============================================================
2
- * bootstrap-typeahead.js v2.1.1
2
+ * bootstrap-typeahead.js v2.3.1
3
3
  * http://twitter.github.com/bootstrap/javascript.html#typeahead
4
4
  * =============================================================
5
5
  * Copyright 2012 Twitter, Inc.
@@ -33,8 +33,8 @@
33
33
  this.sorter = this.options.sorter || this.sorter
34
34
  this.highlighter = this.options.highlighter || this.highlighter
35
35
  this.updater = this.options.updater || this.updater
36
- this.$menu = $(this.options.menu).appendTo('body')
37
36
  this.source = this.options.source
37
+ this.$menu = $(this.options.menu)
38
38
  this.shown = false
39
39
  this.listen()
40
40
  }
@@ -56,16 +56,18 @@
56
56
  }
57
57
 
58
58
  , show: function () {
59
- var pos = $.extend({}, this.$element.offset(), {
59
+ var pos = $.extend({}, this.$element.position(), {
60
60
  height: this.$element[0].offsetHeight
61
61
  })
62
62
 
63
- this.$menu.css({
64
- top: pos.top + pos.height
65
- , left: pos.left
66
- })
63
+ this.$menu
64
+ .insertAfter(this.$element)
65
+ .css({
66
+ top: pos.top + pos.height
67
+ , left: pos.left
68
+ })
69
+ .show()
67
70
 
68
- this.$menu.show()
69
71
  this.shown = true
70
72
  return this
71
73
  }
@@ -170,17 +172,28 @@
170
172
 
171
173
  , listen: function () {
172
174
  this.$element
175
+ .on('focus', $.proxy(this.focus, this))
173
176
  .on('blur', $.proxy(this.blur, this))
174
177
  .on('keypress', $.proxy(this.keypress, this))
175
178
  .on('keyup', $.proxy(this.keyup, this))
176
179
 
177
- if ($.browser.chrome || $.browser.webkit || $.browser.msie) {
180
+ if (this.eventSupported('keydown')) {
178
181
  this.$element.on('keydown', $.proxy(this.keydown, this))
179
182
  }
180
183
 
181
184
  this.$menu
182
185
  .on('click', $.proxy(this.click, this))
183
186
  .on('mouseenter', 'li', $.proxy(this.mouseenter, this))
187
+ .on('mouseleave', 'li', $.proxy(this.mouseleave, this))
188
+ }
189
+
190
+ , eventSupported: function(eventName) {
191
+ var isSupported = eventName in this.$element
192
+ if (!isSupported) {
193
+ this.$element.setAttribute(eventName, 'return;')
194
+ isSupported = typeof this.$element[eventName] === 'function'
195
+ }
196
+ return isSupported
184
197
  }
185
198
 
186
199
  , move: function (e) {
@@ -208,7 +221,7 @@
208
221
  }
209
222
 
210
223
  , keydown: function (e) {
211
- this.suppressKeyPressRepeat = !~$.inArray(e.keyCode, [40,38,9,13,27])
224
+ this.suppressKeyPressRepeat = ~$.inArray(e.keyCode, [40,38,9,13,27])
212
225
  this.move(e)
213
226
  }
214
227
 
@@ -221,6 +234,9 @@
221
234
  switch(e.keyCode) {
222
235
  case 40: // down arrow
223
236
  case 38: // up arrow
237
+ case 16: // shift
238
+ case 17: // ctrl
239
+ case 18: // alt
224
240
  break
225
241
 
226
242
  case 9: // tab
@@ -242,28 +258,41 @@
242
258
  e.preventDefault()
243
259
  }
244
260
 
261
+ , focus: function (e) {
262
+ this.focused = true
263
+ }
264
+
245
265
  , blur: function (e) {
246
- var that = this
247
- setTimeout(function () { that.hide() }, 150)
266
+ this.focused = false
267
+ if (!this.mousedover && this.shown) this.hide()
248
268
  }
249
269
 
250
270
  , click: function (e) {
251
271
  e.stopPropagation()
252
272
  e.preventDefault()
253
273
  this.select()
274
+ this.$element.focus()
254
275
  }
255
276
 
256
277
  , mouseenter: function (e) {
278
+ this.mousedover = true
257
279
  this.$menu.find('.active').removeClass('active')
258
280
  $(e.currentTarget).addClass('active')
259
281
  }
260
282
 
283
+ , mouseleave: function (e) {
284
+ this.mousedover = false
285
+ if (!this.focused && this.shown) this.hide()
286
+ }
287
+
261
288
  }
262
289
 
263
290
 
264
291
  /* TYPEAHEAD PLUGIN DEFINITION
265
292
  * =========================== */
266
293
 
294
+ var old = $.fn.typeahead
295
+
267
296
  $.fn.typeahead = function (option) {
268
297
  return this.each(function () {
269
298
  var $this = $(this)
@@ -285,16 +314,22 @@
285
314
  $.fn.typeahead.Constructor = Typeahead
286
315
 
287
316
 
288
- /* TYPEAHEAD DATA-API
317
+ /* TYPEAHEAD NO CONFLICT
318
+ * =================== */
319
+
320
+ $.fn.typeahead.noConflict = function () {
321
+ $.fn.typeahead = old
322
+ return this
323
+ }
324
+
325
+
326
+ /* TYPEAHEAD DATA-API
289
327
  * ================== */
290
328
 
291
- $(function () {
292
- $('body').on('focus.typeahead.data-api', '[data-provide="typeahead"]', function (e) {
293
- var $this = $(this)
294
- if ($this.data('typeahead')) return
295
- e.preventDefault()
296
- $this.typeahead($this.data())
297
- })
329
+ $(document).on('focus.typeahead.data-api', '[data-provide="typeahead"]', function (e) {
330
+ var $this = $(this)
331
+ if ($this.data('typeahead')) return
332
+ $this.typeahead($this.data())
298
333
  })
299
334
 
300
335
  }(window.jQuery);
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Bootstrap Responsive v2.1.1
2
+ * Bootstrap Responsive v2.3.1
3
3
  *
4
4
  * Copyright 2012 Twitter, Inc
5
5
  * Licensed under the Apache License v2.0
@@ -40,6 +40,10 @@
40
40
  box-sizing: border-box;
41
41
  }
42
42
 
43
+ @-ms-viewport {
44
+ width: device-width;
45
+ }
46
+
43
47
  .hidden {
44
48
  display: none;
45
49
  visibility: hidden;
@@ -91,6 +95,19 @@
91
95
  }
92
96
  }
93
97
 
98
+ .visible-print {
99
+ display: none !important;
100
+ }
101
+
102
+ @media print {
103
+ .visible-print {
104
+ display: inherit !important;
105
+ }
106
+ .hidden-print {
107
+ display: none !important;
108
+ }
109
+ }
110
+
94
111
  @media (min-width: 1200px) {
95
112
  .row {
96
113
  margin-left: -30px;
@@ -215,6 +232,9 @@
215
232
  .row-fluid [class*="span"]:first-child {
216
233
  margin-left: 0;
217
234
  }
235
+ .row-fluid .controls-row [class*="span"] + [class*="span"] {
236
+ margin-left: 2.564102564102564%;
237
+ }
218
238
  .row-fluid .span12 {
219
239
  width: 100%;
220
240
  *width: 99.94680851063829%;
@@ -562,6 +582,9 @@
562
582
  .row-fluid [class*="span"]:first-child {
563
583
  margin-left: 0;
564
584
  }
585
+ .row-fluid .controls-row [class*="span"] + [class*="span"] {
586
+ margin-left: 2.7624309392265194%;
587
+ }
565
588
  .row-fluid .span12 {
566
589
  width: 100%;
567
590
  *width: 99.94680851063829%;
@@ -814,6 +837,7 @@
814
837
  margin-left: 0;
815
838
  }
816
839
  [class*="span"],
840
+ .uneditable-input[class*="span"],
817
841
  .row-fluid [class*="span"] {
818
842
  display: block;
819
843
  float: none;
@@ -830,6 +854,9 @@
830
854
  -moz-box-sizing: border-box;
831
855
  box-sizing: border-box;
832
856
  }
857
+ .row-fluid [class*="offset"]:first-child {
858
+ margin-left: 0;
859
+ }
833
860
  .input-large,
834
861
  .input-xlarge,
835
862
  .input-xxlarge,
@@ -862,8 +889,11 @@
862
889
  width: auto;
863
890
  margin: 0;
864
891
  }
892
+ .modal.fade {
893
+ top: -100px;
894
+ }
865
895
  .modal.fade.in {
866
- top: auto;
896
+ top: 20px;
867
897
  }
868
898
  }
869
899
 
@@ -895,6 +925,16 @@
895
925
  padding-right: 10px;
896
926
  padding-left: 10px;
897
927
  }
928
+ .media .pull-left,
929
+ .media .pull-right {
930
+ display: block;
931
+ float: none;
932
+ margin-bottom: 10px;
933
+ }
934
+ .media-object {
935
+ margin-right: 0;
936
+ margin-left: 0;
937
+ }
898
938
  .modal {
899
939
  top: 10px;
900
940
  right: 10px;
@@ -976,11 +1016,19 @@
976
1016
  margin-bottom: 2px;
977
1017
  }
978
1018
  .nav-collapse .nav > li > a:hover,
979
- .nav-collapse .dropdown-menu a:hover {
1019
+ .nav-collapse .nav > li > a:focus,
1020
+ .nav-collapse .dropdown-menu a:hover,
1021
+ .nav-collapse .dropdown-menu a:focus {
980
1022
  background-color: #f2f2f2;
981
1023
  }
1024
+ .navbar-inverse .nav-collapse .nav > li > a,
1025
+ .navbar-inverse .nav-collapse .dropdown-menu a {
1026
+ color: #999999;
1027
+ }
982
1028
  .navbar-inverse .nav-collapse .nav > li > a:hover,
983
- .navbar-inverse .nav-collapse .dropdown-menu a:hover {
1029
+ .navbar-inverse .nav-collapse .nav > li > a:focus,
1030
+ .navbar-inverse .nav-collapse .dropdown-menu a:hover,
1031
+ .navbar-inverse .nav-collapse .dropdown-menu a:focus {
984
1032
  background-color: #111111;
985
1033
  }
986
1034
  .nav-collapse.in .btn-group {
@@ -991,7 +1039,7 @@
991
1039
  position: static;
992
1040
  top: auto;
993
1041
  left: auto;
994
- display: block;
1042
+ display: none;
995
1043
  float: none;
996
1044
  max-width: none;
997
1045
  padding: 0;
@@ -1005,6 +1053,9 @@
1005
1053
  -moz-box-shadow: none;
1006
1054
  box-shadow: none;
1007
1055
  }
1056
+ .nav-collapse .open > .dropdown-menu {
1057
+ display: block;
1058
+ }
1008
1059
  .nav-collapse .dropdown-menu:before,
1009
1060
  .nav-collapse .dropdown-menu:after {
1010
1061
  display: none;
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Bootstrap v2.1.1
2
+ * Bootstrap v2.3.1
3
3
  *
4
4
  * Copyright 2012 Twitter, Inc
5
5
  * Licensed under the Apache License v2.0
@@ -8,6 +8,38 @@
8
8
  * Designed and built with all the love in the world @twitter by @mdo and @fat.
9
9
  */
10
10
 
11
+ .clearfix {
12
+ *zoom: 1;
13
+ }
14
+
15
+ .clearfix:before,
16
+ .clearfix:after {
17
+ display: table;
18
+ line-height: 0;
19
+ content: "";
20
+ }
21
+
22
+ .clearfix:after {
23
+ clear: both;
24
+ }
25
+
26
+ .hide-text {
27
+ font: 0/0 a;
28
+ color: transparent;
29
+ text-shadow: none;
30
+ background-color: transparent;
31
+ border: 0;
32
+ }
33
+
34
+ .input-block-level {
35
+ display: block;
36
+ width: 100%;
37
+ min-height: 30px;
38
+ -webkit-box-sizing: border-box;
39
+ -moz-box-sizing: border-box;
40
+ box-sizing: border-box;
41
+ }
42
+
11
43
  article,
12
44
  aside,
13
45
  details,
@@ -75,7 +107,8 @@ img {
75
107
  -ms-interpolation-mode: bicubic;
76
108
  }
77
109
 
78
- #map_canvas img {
110
+ #map_canvas img,
111
+ .google-maps img {
79
112
  max-width: none;
80
113
  }
81
114
 
@@ -101,13 +134,24 @@ input::-moz-focus-inner {
101
134
  }
102
135
 
103
136
  button,
104
- input[type="button"],
137
+ html input[type="button"],
105
138
  input[type="reset"],
106
139
  input[type="submit"] {
107
140
  cursor: pointer;
108
141
  -webkit-appearance: button;
109
142
  }
110
143
 
144
+ label,
145
+ select,
146
+ button,
147
+ input[type="button"],
148
+ input[type="reset"],
149
+ input[type="submit"],
150
+ input[type="radio"],
151
+ input[type="checkbox"] {
152
+ cursor: pointer;
153
+ }
154
+
111
155
  input[type="search"] {
112
156
  -webkit-box-sizing: content-box;
113
157
  -moz-box-sizing: content-box;
@@ -125,36 +169,56 @@ textarea {
125
169
  vertical-align: top;
126
170
  }
127
171
 
128
- .clearfix {
129
- *zoom: 1;
130
- }
131
-
132
- .clearfix:before,
133
- .clearfix:after {
134
- display: table;
135
- line-height: 0;
136
- content: "";
137
- }
138
-
139
- .clearfix:after {
140
- clear: both;
141
- }
142
-
143
- .hide-text {
144
- font: 0/0 a;
145
- color: transparent;
146
- text-shadow: none;
147
- background-color: transparent;
148
- border: 0;
149
- }
150
-
151
- .input-block-level {
152
- display: block;
153
- width: 100%;
154
- min-height: 30px;
155
- -webkit-box-sizing: border-box;
156
- -moz-box-sizing: border-box;
157
- box-sizing: border-box;
172
+ @media print {
173
+ * {
174
+ color: #000 !important;
175
+ text-shadow: none !important;
176
+ background: transparent !important;
177
+ box-shadow: none !important;
178
+ }
179
+ a,
180
+ a:visited {
181
+ text-decoration: underline;
182
+ }
183
+ a[href]:after {
184
+ content: " (" attr(href) ")";
185
+ }
186
+ abbr[title]:after {
187
+ content: " (" attr(title) ")";
188
+ }
189
+ .ir a:after,
190
+ a[href^="javascript:"]:after,
191
+ a[href^="#"]:after {
192
+ content: "";
193
+ }
194
+ pre,
195
+ blockquote {
196
+ border: 1px solid #999;
197
+ page-break-inside: avoid;
198
+ }
199
+ thead {
200
+ display: table-header-group;
201
+ }
202
+ tr,
203
+ img {
204
+ page-break-inside: avoid;
205
+ }
206
+ img {
207
+ max-width: 100% !important;
208
+ }
209
+ @page {
210
+ margin: 0.5cm;
211
+ }
212
+ p,
213
+ h2,
214
+ h3 {
215
+ orphans: 3;
216
+ widows: 3;
217
+ }
218
+ h2,
219
+ h3 {
220
+ page-break-after: avoid;
221
+ }
158
222
  }
159
223
 
160
224
  body {
@@ -171,7 +235,8 @@ a {
171
235
  text-decoration: none;
172
236
  }
173
237
 
174
- a:hover {
238
+ a:hover,
239
+ a:focus {
175
240
  color: #005580;
176
241
  text-decoration: underline;
177
242
  }
@@ -355,6 +420,10 @@ a:hover {
355
420
  margin-left: 0;
356
421
  }
357
422
 
423
+ .row-fluid .controls-row [class*="span"] + [class*="span"] {
424
+ margin-left: 2.127659574468085%;
425
+ }
426
+
358
427
  .row-fluid .span12 {
359
428
  width: 100%;
360
429
  *width: 99.94680851063829%;
@@ -610,22 +679,59 @@ cite {
610
679
  color: #999999;
611
680
  }
612
681
 
682
+ a.muted:hover,
683
+ a.muted:focus {
684
+ color: #808080;
685
+ }
686
+
613
687
  .text-warning {
614
688
  color: #c09853;
615
689
  }
616
690
 
691
+ a.text-warning:hover,
692
+ a.text-warning:focus {
693
+ color: #a47e3c;
694
+ }
695
+
617
696
  .text-error {
618
697
  color: #b94a48;
619
698
  }
620
699
 
700
+ a.text-error:hover,
701
+ a.text-error:focus {
702
+ color: #953b39;
703
+ }
704
+
621
705
  .text-info {
622
706
  color: #3a87ad;
623
707
  }
624
708
 
709
+ a.text-info:hover,
710
+ a.text-info:focus {
711
+ color: #2d6987;
712
+ }
713
+
625
714
  .text-success {
626
715
  color: #468847;
627
716
  }
628
717
 
718
+ a.text-success:hover,
719
+ a.text-success:focus {
720
+ color: #356635;
721
+ }
722
+
723
+ .text-left {
724
+ text-align: left;
725
+ }
726
+
727
+ .text-right {
728
+ text-align: right;
729
+ }
730
+
731
+ .text-center {
732
+ text-align: center;
733
+ }
734
+
629
735
  h1,
630
736
  h2,
631
737
  h3,
@@ -635,7 +741,7 @@ h6 {
635
741
  margin: 10px 0;
636
742
  font-family: inherit;
637
743
  font-weight: bold;
638
- line-height: 1;
744
+ line-height: 20px;
639
745
  color: inherit;
640
746
  text-rendering: optimizelegibility;
641
747
  }
@@ -651,42 +757,42 @@ h6 small {
651
757
  color: #999999;
652
758
  }
653
759
 
654
- h1 {
655
- font-size: 36px;
760
+ h1,
761
+ h2,
762
+ h3 {
656
763
  line-height: 40px;
657
764
  }
658
765
 
766
+ h1 {
767
+ font-size: 38.5px;
768
+ }
769
+
659
770
  h2 {
660
- font-size: 30px;
661
- line-height: 40px;
771
+ font-size: 31.5px;
662
772
  }
663
773
 
664
774
  h3 {
665
- font-size: 24px;
666
- line-height: 40px;
775
+ font-size: 24.5px;
667
776
  }
668
777
 
669
778
  h4 {
670
- font-size: 18px;
671
- line-height: 20px;
779
+ font-size: 17.5px;
672
780
  }
673
781
 
674
782
  h5 {
675
783
  font-size: 14px;
676
- line-height: 20px;
677
784
  }
678
785
 
679
786
  h6 {
680
- font-size: 12px;
681
- line-height: 20px;
787
+ font-size: 11.9px;
682
788
  }
683
789
 
684
790
  h1 small {
685
- font-size: 24px;
791
+ font-size: 24.5px;
686
792
  }
687
793
 
688
794
  h2 small {
689
- font-size: 18px;
795
+ font-size: 17.5px;
690
796
  }
691
797
 
692
798
  h3 small {
@@ -726,6 +832,21 @@ ol.unstyled {
726
832
  list-style: none;
727
833
  }
728
834
 
835
+ ul.inline,
836
+ ol.inline {
837
+ margin-left: 0;
838
+ list-style: none;
839
+ }
840
+
841
+ ul.inline > li,
842
+ ol.inline > li {
843
+ display: inline-block;
844
+ *display: inline;
845
+ padding-right: 5px;
846
+ padding-left: 5px;
847
+ *zoom: 1;
848
+ }
849
+
729
850
  dl {
730
851
  margin-bottom: 20px;
731
852
  }
@@ -779,7 +900,8 @@ hr {
779
900
  border-bottom: 1px solid #ffffff;
780
901
  }
781
902
 
782
- abbr[title] {
903
+ abbr[title],
904
+ abbr[data-original-title] {
783
905
  cursor: help;
784
906
  border-bottom: 1px dotted #999999;
785
907
  }
@@ -797,9 +919,9 @@ blockquote {
797
919
 
798
920
  blockquote p {
799
921
  margin-bottom: 0;
800
- font-size: 16px;
922
+ font-size: 17.5px;
801
923
  font-weight: 300;
802
- line-height: 25px;
924
+ line-height: 1.25;
803
925
  }
804
926
 
805
927
  blockquote small {
@@ -861,6 +983,7 @@ pre {
861
983
  code {
862
984
  padding: 2px 4px;
863
985
  color: #d14;
986
+ white-space: nowrap;
864
987
  background-color: #f7f7f9;
865
988
  border: 1px solid #e1e1e8;
866
989
  }
@@ -890,6 +1013,8 @@ pre.prettyprint {
890
1013
  pre code {
891
1014
  padding: 0;
892
1015
  color: inherit;
1016
+ white-space: pre;
1017
+ white-space: pre-wrap;
893
1018
  background-color: transparent;
894
1019
  border: 0;
895
1020
  }
@@ -968,13 +1093,14 @@ input[type="color"],
968
1093
  display: inline-block;
969
1094
  height: 20px;
970
1095
  padding: 4px 6px;
971
- margin-bottom: 9px;
1096
+ margin-bottom: 10px;
972
1097
  font-size: 14px;
973
1098
  line-height: 20px;
974
1099
  color: #555555;
975
- -webkit-border-radius: 3px;
976
- -moz-border-radius: 3px;
977
- border-radius: 3px;
1100
+ vertical-align: middle;
1101
+ -webkit-border-radius: 4px;
1102
+ -moz-border-radius: 4px;
1103
+ border-radius: 4px;
978
1104
  }
979
1105
 
980
1106
  input,
@@ -1046,7 +1172,6 @@ input[type="checkbox"] {
1046
1172
  margin-top: 1px \9;
1047
1173
  *margin-top: 0;
1048
1174
  line-height: normal;
1049
- cursor: pointer;
1050
1175
  }
1051
1176
 
1052
1177
  input[type="file"],
@@ -1128,14 +1253,14 @@ textarea::-webkit-input-placeholder {
1128
1253
 
1129
1254
  .radio,
1130
1255
  .checkbox {
1131
- min-height: 18px;
1132
- padding-left: 18px;
1256
+ min-height: 20px;
1257
+ padding-left: 20px;
1133
1258
  }
1134
1259
 
1135
1260
  .radio input[type="radio"],
1136
1261
  .checkbox input[type="checkbox"] {
1137
1262
  float: left;
1138
- margin-left: -18px;
1263
+ margin-left: -20px;
1139
1264
  }
1140
1265
 
1141
1266
  .controls > .radio:first-child,
@@ -1302,10 +1427,16 @@ textarea.span1,
1302
1427
  clear: both;
1303
1428
  }
1304
1429
 
1305
- .controls-row [class*="span"] {
1430
+ .controls-row [class*="span"],
1431
+ .row-fluid .controls-row [class*="span"] {
1306
1432
  float: left;
1307
1433
  }
1308
1434
 
1435
+ .controls-row .checkbox[class*="span"],
1436
+ .controls-row .radio[class*="span"] {
1437
+ padding-top: 5px;
1438
+ }
1439
+
1309
1440
  input[disabled],
1310
1441
  select[disabled],
1311
1442
  textarea[disabled],
@@ -1323,7 +1454,7 @@ input[type="checkbox"][readonly] {
1323
1454
  background-color: transparent;
1324
1455
  }
1325
1456
 
1326
- .control-group.warning > label,
1457
+ .control-group.warning .control-label,
1327
1458
  .control-group.warning .help-block,
1328
1459
  .control-group.warning .help-inline {
1329
1460
  color: #c09853;
@@ -1362,7 +1493,7 @@ input[type="checkbox"][readonly] {
1362
1493
  border-color: #c09853;
1363
1494
  }
1364
1495
 
1365
- .control-group.error > label,
1496
+ .control-group.error .control-label,
1366
1497
  .control-group.error .help-block,
1367
1498
  .control-group.error .help-inline {
1368
1499
  color: #b94a48;
@@ -1401,7 +1532,7 @@ input[type="checkbox"][readonly] {
1401
1532
  border-color: #b94a48;
1402
1533
  }
1403
1534
 
1404
- .control-group.success > label,
1535
+ .control-group.success .control-label,
1405
1536
  .control-group.success .help-block,
1406
1537
  .control-group.success .help-inline {
1407
1538
  color: #468847;
@@ -1440,7 +1571,7 @@ input[type="checkbox"][readonly] {
1440
1571
  border-color: #468847;
1441
1572
  }
1442
1573
 
1443
- .control-group.info > label,
1574
+ .control-group.info .control-label,
1444
1575
  .control-group.info .help-block,
1445
1576
  .control-group.info .help-inline {
1446
1577
  color: #3a87ad;
@@ -1479,16 +1610,16 @@ input[type="checkbox"][readonly] {
1479
1610
  border-color: #3a87ad;
1480
1611
  }
1481
1612
 
1482
- input:focus:required:invalid,
1483
- textarea:focus:required:invalid,
1484
- select:focus:required:invalid {
1613
+ input:focus:invalid,
1614
+ textarea:focus:invalid,
1615
+ select:focus:invalid {
1485
1616
  color: #b94a48;
1486
1617
  border-color: #ee5f5b;
1487
1618
  }
1488
1619
 
1489
- input:focus:required:invalid:focus,
1490
- textarea:focus:required:invalid:focus,
1491
- select:focus:required:invalid:focus {
1620
+ input:focus:invalid:focus,
1621
+ textarea:focus:invalid:focus,
1622
+ select:focus:invalid:focus {
1492
1623
  border-color: #e9322d;
1493
1624
  -webkit-box-shadow: 0 0 6px #f8b9b7;
1494
1625
  -moz-box-shadow: 0 0 6px #f8b9b7;
@@ -1535,9 +1666,24 @@ select:focus:required:invalid:focus {
1535
1666
 
1536
1667
  .input-append,
1537
1668
  .input-prepend {
1538
- margin-bottom: 5px;
1669
+ display: inline-block;
1670
+ margin-bottom: 10px;
1539
1671
  font-size: 0;
1540
1672
  white-space: nowrap;
1673
+ vertical-align: middle;
1674
+ }
1675
+
1676
+ .input-append input,
1677
+ .input-prepend input,
1678
+ .input-append select,
1679
+ .input-prepend select,
1680
+ .input-append .uneditable-input,
1681
+ .input-prepend .uneditable-input,
1682
+ .input-append .dropdown-menu,
1683
+ .input-prepend .dropdown-menu,
1684
+ .input-append .popover,
1685
+ .input-prepend .popover {
1686
+ font-size: 14px;
1541
1687
  }
1542
1688
 
1543
1689
  .input-append input,
@@ -1549,11 +1695,10 @@ select:focus:required:invalid:focus {
1549
1695
  position: relative;
1550
1696
  margin-bottom: 0;
1551
1697
  *margin-left: 0;
1552
- font-size: 14px;
1553
1698
  vertical-align: top;
1554
- -webkit-border-radius: 0 3px 3px 0;
1555
- -moz-border-radius: 0 3px 3px 0;
1556
- border-radius: 0 3px 3px 0;
1699
+ -webkit-border-radius: 0 4px 4px 0;
1700
+ -moz-border-radius: 0 4px 4px 0;
1701
+ border-radius: 0 4px 4px 0;
1557
1702
  }
1558
1703
 
1559
1704
  .input-append input:focus,
@@ -1584,7 +1729,9 @@ select:focus:required:invalid:focus {
1584
1729
  .input-append .add-on,
1585
1730
  .input-prepend .add-on,
1586
1731
  .input-append .btn,
1587
- .input-prepend .btn {
1732
+ .input-prepend .btn,
1733
+ .input-append .btn-group > .dropdown-toggle,
1734
+ .input-prepend .btn-group > .dropdown-toggle {
1588
1735
  vertical-align: top;
1589
1736
  -webkit-border-radius: 0;
1590
1737
  -moz-border-radius: 0;
@@ -1604,29 +1751,39 @@ select:focus:required:invalid:focus {
1604
1751
 
1605
1752
  .input-prepend .add-on:first-child,
1606
1753
  .input-prepend .btn:first-child {
1607
- -webkit-border-radius: 3px 0 0 3px;
1608
- -moz-border-radius: 3px 0 0 3px;
1609
- border-radius: 3px 0 0 3px;
1754
+ -webkit-border-radius: 4px 0 0 4px;
1755
+ -moz-border-radius: 4px 0 0 4px;
1756
+ border-radius: 4px 0 0 4px;
1610
1757
  }
1611
1758
 
1612
1759
  .input-append input,
1613
1760
  .input-append select,
1614
1761
  .input-append .uneditable-input {
1615
- -webkit-border-radius: 3px 0 0 3px;
1616
- -moz-border-radius: 3px 0 0 3px;
1617
- border-radius: 3px 0 0 3px;
1762
+ -webkit-border-radius: 4px 0 0 4px;
1763
+ -moz-border-radius: 4px 0 0 4px;
1764
+ border-radius: 4px 0 0 4px;
1765
+ }
1766
+
1767
+ .input-append input + .btn-group .btn:last-child,
1768
+ .input-append select + .btn-group .btn:last-child,
1769
+ .input-append .uneditable-input + .btn-group .btn:last-child {
1770
+ -webkit-border-radius: 0 4px 4px 0;
1771
+ -moz-border-radius: 0 4px 4px 0;
1772
+ border-radius: 0 4px 4px 0;
1618
1773
  }
1619
1774
 
1620
1775
  .input-append .add-on,
1621
- .input-append .btn {
1776
+ .input-append .btn,
1777
+ .input-append .btn-group {
1622
1778
  margin-left: -1px;
1623
1779
  }
1624
1780
 
1625
1781
  .input-append .add-on:last-child,
1626
- .input-append .btn:last-child {
1627
- -webkit-border-radius: 0 3px 3px 0;
1628
- -moz-border-radius: 0 3px 3px 0;
1629
- border-radius: 0 3px 3px 0;
1782
+ .input-append .btn:last-child,
1783
+ .input-append .btn-group:last-child > .dropdown-toggle {
1784
+ -webkit-border-radius: 0 4px 4px 0;
1785
+ -moz-border-radius: 0 4px 4px 0;
1786
+ border-radius: 0 4px 4px 0;
1630
1787
  }
1631
1788
 
1632
1789
  .input-prepend.input-append input,
@@ -1637,20 +1794,32 @@ select:focus:required:invalid:focus {
1637
1794
  border-radius: 0;
1638
1795
  }
1639
1796
 
1797
+ .input-prepend.input-append input + .btn-group .btn,
1798
+ .input-prepend.input-append select + .btn-group .btn,
1799
+ .input-prepend.input-append .uneditable-input + .btn-group .btn {
1800
+ -webkit-border-radius: 0 4px 4px 0;
1801
+ -moz-border-radius: 0 4px 4px 0;
1802
+ border-radius: 0 4px 4px 0;
1803
+ }
1804
+
1640
1805
  .input-prepend.input-append .add-on:first-child,
1641
1806
  .input-prepend.input-append .btn:first-child {
1642
1807
  margin-right: -1px;
1643
- -webkit-border-radius: 3px 0 0 3px;
1644
- -moz-border-radius: 3px 0 0 3px;
1645
- border-radius: 3px 0 0 3px;
1808
+ -webkit-border-radius: 4px 0 0 4px;
1809
+ -moz-border-radius: 4px 0 0 4px;
1810
+ border-radius: 4px 0 0 4px;
1646
1811
  }
1647
1812
 
1648
1813
  .input-prepend.input-append .add-on:last-child,
1649
1814
  .input-prepend.input-append .btn:last-child {
1650
1815
  margin-left: -1px;
1651
- -webkit-border-radius: 0 3px 3px 0;
1652
- -moz-border-radius: 0 3px 3px 0;
1653
- border-radius: 0 3px 3px 0;
1816
+ -webkit-border-radius: 0 4px 4px 0;
1817
+ -moz-border-radius: 0 4px 4px 0;
1818
+ border-radius: 0 4px 4px 0;
1819
+ }
1820
+
1821
+ .input-prepend.input-append .btn-group:first-child {
1822
+ margin-left: 0;
1654
1823
  }
1655
1824
 
1656
1825
  input.search-query {
@@ -1814,7 +1983,10 @@ legend + .control-group {
1814
1983
 
1815
1984
  .form-horizontal input + .help-block,
1816
1985
  .form-horizontal select + .help-block,
1817
- .form-horizontal textarea + .help-block {
1986
+ .form-horizontal textarea + .help-block,
1987
+ .form-horizontal .uneditable-input + .help-block,
1988
+ .form-horizontal .input-prepend + .help-block,
1989
+ .form-horizontal .input-append + .help-block {
1818
1990
  margin-top: 10px;
1819
1991
  }
1820
1992
 
@@ -1864,6 +2036,10 @@ table {
1864
2036
  border-top: 2px solid #dddddd;
1865
2037
  }
1866
2038
 
2039
+ .table .table {
2040
+ background-color: #ffffff;
2041
+ }
2042
+
1867
2043
  .table-condensed th,
1868
2044
  .table-condensed td {
1869
2045
  padding: 4px 5px;
@@ -1896,39 +2072,54 @@ table {
1896
2072
  border-top: 0;
1897
2073
  }
1898
2074
 
1899
- .table-bordered thead:first-child tr:first-child th:first-child,
1900
- .table-bordered tbody:first-child tr:first-child td:first-child {
2075
+ .table-bordered thead:first-child tr:first-child > th:first-child,
2076
+ .table-bordered tbody:first-child tr:first-child > td:first-child,
2077
+ .table-bordered tbody:first-child tr:first-child > th:first-child {
1901
2078
  -webkit-border-top-left-radius: 4px;
1902
2079
  border-top-left-radius: 4px;
1903
2080
  -moz-border-radius-topleft: 4px;
1904
2081
  }
1905
2082
 
1906
- .table-bordered thead:first-child tr:first-child th:last-child,
1907
- .table-bordered tbody:first-child tr:first-child td:last-child {
2083
+ .table-bordered thead:first-child tr:first-child > th:last-child,
2084
+ .table-bordered tbody:first-child tr:first-child > td:last-child,
2085
+ .table-bordered tbody:first-child tr:first-child > th:last-child {
1908
2086
  -webkit-border-top-right-radius: 4px;
1909
2087
  border-top-right-radius: 4px;
1910
2088
  -moz-border-radius-topright: 4px;
1911
2089
  }
1912
2090
 
1913
- .table-bordered thead:last-child tr:last-child th:first-child,
1914
- .table-bordered tbody:last-child tr:last-child td:first-child,
1915
- .table-bordered tfoot:last-child tr:last-child td:first-child {
1916
- -webkit-border-radius: 0 0 0 4px;
1917
- -moz-border-radius: 0 0 0 4px;
1918
- border-radius: 0 0 0 4px;
2091
+ .table-bordered thead:last-child tr:last-child > th:first-child,
2092
+ .table-bordered tbody:last-child tr:last-child > td:first-child,
2093
+ .table-bordered tbody:last-child tr:last-child > th:first-child,
2094
+ .table-bordered tfoot:last-child tr:last-child > td:first-child,
2095
+ .table-bordered tfoot:last-child tr:last-child > th:first-child {
1919
2096
  -webkit-border-bottom-left-radius: 4px;
1920
2097
  border-bottom-left-radius: 4px;
1921
2098
  -moz-border-radius-bottomleft: 4px;
1922
2099
  }
1923
2100
 
1924
- .table-bordered thead:last-child tr:last-child th:last-child,
1925
- .table-bordered tbody:last-child tr:last-child td:last-child,
1926
- .table-bordered tfoot:last-child tr:last-child td:last-child {
2101
+ .table-bordered thead:last-child tr:last-child > th:last-child,
2102
+ .table-bordered tbody:last-child tr:last-child > td:last-child,
2103
+ .table-bordered tbody:last-child tr:last-child > th:last-child,
2104
+ .table-bordered tfoot:last-child tr:last-child > td:last-child,
2105
+ .table-bordered tfoot:last-child tr:last-child > th:last-child {
1927
2106
  -webkit-border-bottom-right-radius: 4px;
1928
2107
  border-bottom-right-radius: 4px;
1929
2108
  -moz-border-radius-bottomright: 4px;
1930
2109
  }
1931
2110
 
2111
+ .table-bordered tfoot + tbody:last-child tr:last-child td:first-child {
2112
+ -webkit-border-bottom-left-radius: 0;
2113
+ border-bottom-left-radius: 0;
2114
+ -moz-border-radius-bottomleft: 0;
2115
+ }
2116
+
2117
+ .table-bordered tfoot + tbody:last-child tr:last-child td:last-child {
2118
+ -webkit-border-bottom-right-radius: 0;
2119
+ border-bottom-right-radius: 0;
2120
+ -moz-border-radius-bottomright: 0;
2121
+ }
2122
+
1932
2123
  .table-bordered caption + thead tr:first-child th:first-child,
1933
2124
  .table-bordered caption + tbody tr:first-child td:first-child,
1934
2125
  .table-bordered colgroup + thead tr:first-child th:first-child,
@@ -1944,199 +2135,141 @@ table {
1944
2135
  .table-bordered colgroup + tbody tr:first-child td:last-child {
1945
2136
  -webkit-border-top-right-radius: 4px;
1946
2137
  border-top-right-radius: 4px;
1947
- -moz-border-radius-topleft: 4px;
2138
+ -moz-border-radius-topright: 4px;
1948
2139
  }
1949
2140
 
1950
- .table-striped tbody tr:nth-child(odd) td,
1951
- .table-striped tbody tr:nth-child(odd) th {
2141
+ .table-striped tbody > tr:nth-child(odd) > td,
2142
+ .table-striped tbody > tr:nth-child(odd) > th {
1952
2143
  background-color: #f9f9f9;
1953
2144
  }
1954
2145
 
1955
- .table-hover tbody tr:hover td,
1956
- .table-hover tbody tr:hover th {
2146
+ .table-hover tbody tr:hover > td,
2147
+ .table-hover tbody tr:hover > th {
1957
2148
  background-color: #f5f5f5;
1958
2149
  }
1959
2150
 
1960
- table [class*=span],
1961
- .row-fluid table [class*=span] {
2151
+ table td[class*="span"],
2152
+ table th[class*="span"],
2153
+ .row-fluid table td[class*="span"],
2154
+ .row-fluid table th[class*="span"] {
1962
2155
  display: table-cell;
1963
2156
  float: none;
1964
2157
  margin-left: 0;
1965
2158
  }
1966
2159
 
1967
- .table .span1 {
2160
+ .table td.span1,
2161
+ .table th.span1 {
1968
2162
  float: none;
1969
2163
  width: 44px;
1970
2164
  margin-left: 0;
1971
2165
  }
1972
2166
 
1973
- .table .span2 {
2167
+ .table td.span2,
2168
+ .table th.span2 {
1974
2169
  float: none;
1975
2170
  width: 124px;
1976
2171
  margin-left: 0;
1977
2172
  }
1978
2173
 
1979
- .table .span3 {
2174
+ .table td.span3,
2175
+ .table th.span3 {
1980
2176
  float: none;
1981
2177
  width: 204px;
1982
2178
  margin-left: 0;
1983
2179
  }
1984
2180
 
1985
- .table .span4 {
2181
+ .table td.span4,
2182
+ .table th.span4 {
1986
2183
  float: none;
1987
2184
  width: 284px;
1988
2185
  margin-left: 0;
1989
2186
  }
1990
2187
 
1991
- .table .span5 {
2188
+ .table td.span5,
2189
+ .table th.span5 {
1992
2190
  float: none;
1993
2191
  width: 364px;
1994
2192
  margin-left: 0;
1995
2193
  }
1996
2194
 
1997
- .table .span6 {
2195
+ .table td.span6,
2196
+ .table th.span6 {
1998
2197
  float: none;
1999
2198
  width: 444px;
2000
2199
  margin-left: 0;
2001
2200
  }
2002
2201
 
2003
- .table .span7 {
2202
+ .table td.span7,
2203
+ .table th.span7 {
2004
2204
  float: none;
2005
2205
  width: 524px;
2006
2206
  margin-left: 0;
2007
2207
  }
2008
2208
 
2009
- .table .span8 {
2209
+ .table td.span8,
2210
+ .table th.span8 {
2010
2211
  float: none;
2011
2212
  width: 604px;
2012
2213
  margin-left: 0;
2013
2214
  }
2014
2215
 
2015
- .table .span9 {
2216
+ .table td.span9,
2217
+ .table th.span9 {
2016
2218
  float: none;
2017
2219
  width: 684px;
2018
2220
  margin-left: 0;
2019
2221
  }
2020
2222
 
2021
- .table .span10 {
2223
+ .table td.span10,
2224
+ .table th.span10 {
2022
2225
  float: none;
2023
2226
  width: 764px;
2024
2227
  margin-left: 0;
2025
2228
  }
2026
2229
 
2027
- .table .span11 {
2230
+ .table td.span11,
2231
+ .table th.span11 {
2028
2232
  float: none;
2029
2233
  width: 844px;
2030
2234
  margin-left: 0;
2031
2235
  }
2032
2236
 
2033
- .table .span12 {
2237
+ .table td.span12,
2238
+ .table th.span12 {
2034
2239
  float: none;
2035
2240
  width: 924px;
2036
2241
  margin-left: 0;
2037
2242
  }
2038
2243
 
2039
- .table .span13 {
2040
- float: none;
2041
- width: 1004px;
2042
- margin-left: 0;
2043
- }
2044
-
2045
- .table .span14 {
2046
- float: none;
2047
- width: 1084px;
2048
- margin-left: 0;
2049
- }
2050
-
2051
- .table .span15 {
2052
- float: none;
2053
- width: 1164px;
2054
- margin-left: 0;
2055
- }
2056
-
2057
- .table .span16 {
2058
- float: none;
2059
- width: 1244px;
2060
- margin-left: 0;
2061
- }
2062
-
2063
- .table .span17 {
2064
- float: none;
2065
- width: 1324px;
2066
- margin-left: 0;
2067
- }
2068
-
2069
- .table .span18 {
2070
- float: none;
2071
- width: 1404px;
2072
- margin-left: 0;
2073
- }
2074
-
2075
- .table .span19 {
2076
- float: none;
2077
- width: 1484px;
2078
- margin-left: 0;
2079
- }
2080
-
2081
- .table .span20 {
2082
- float: none;
2083
- width: 1564px;
2084
- margin-left: 0;
2085
- }
2086
-
2087
- .table .span21 {
2088
- float: none;
2089
- width: 1644px;
2090
- margin-left: 0;
2091
- }
2092
-
2093
- .table .span22 {
2094
- float: none;
2095
- width: 1724px;
2096
- margin-left: 0;
2097
- }
2098
-
2099
- .table .span23 {
2100
- float: none;
2101
- width: 1804px;
2102
- margin-left: 0;
2103
- }
2104
-
2105
- .table .span24 {
2106
- float: none;
2107
- width: 1884px;
2108
- margin-left: 0;
2109
- }
2110
-
2111
- .table tbody tr.success td {
2244
+ .table tbody tr.success > td {
2112
2245
  background-color: #dff0d8;
2113
2246
  }
2114
2247
 
2115
- .table tbody tr.error td {
2248
+ .table tbody tr.error > td {
2116
2249
  background-color: #f2dede;
2117
2250
  }
2118
2251
 
2119
- .table tbody tr.warning td {
2252
+ .table tbody tr.warning > td {
2120
2253
  background-color: #fcf8e3;
2121
2254
  }
2122
2255
 
2123
- .table tbody tr.info td {
2256
+ .table tbody tr.info > td {
2124
2257
  background-color: #d9edf7;
2125
2258
  }
2126
2259
 
2127
- .table-hover tbody tr.success:hover td {
2260
+ .table-hover tbody tr.success:hover > td {
2128
2261
  background-color: #d0e9c6;
2129
2262
  }
2130
2263
 
2131
- .table-hover tbody tr.error:hover td {
2264
+ .table-hover tbody tr.error:hover > td {
2132
2265
  background-color: #ebcccc;
2133
2266
  }
2134
2267
 
2135
- .table-hover tbody tr.warning:hover td {
2268
+ .table-hover tbody tr.warning:hover > td {
2136
2269
  background-color: #faf2cc;
2137
2270
  }
2138
2271
 
2139
- .table-hover tbody tr.info:hover td {
2272
+ .table-hover tbody tr.info:hover > td {
2140
2273
  background-color: #c4e3f3;
2141
2274
  }
2142
2275
 
@@ -2154,11 +2287,9 @@ table [class*=span],
2154
2287
  background-repeat: no-repeat;
2155
2288
  }
2156
2289
 
2157
- /* White icons with optional class, or on hover/active states of certain elements */
2290
+ /* White icons with optional class, or on hover/focus/active states of certain elements */
2158
2291
 
2159
2292
  .icon-white,
2160
- .nav-tabs > .active > a > [class^="icon-"],
2161
- .nav-tabs > .active > a > [class*=" icon-"],
2162
2293
  .nav-pills > .active > a > [class^="icon-"],
2163
2294
  .nav-pills > .active > a > [class*=" icon-"],
2164
2295
  .nav-list > .active > a > [class^="icon-"],
@@ -2166,9 +2297,15 @@ table [class*=span],
2166
2297
  .navbar-inverse .nav > .active > a > [class^="icon-"],
2167
2298
  .navbar-inverse .nav > .active > a > [class*=" icon-"],
2168
2299
  .dropdown-menu > li > a:hover > [class^="icon-"],
2300
+ .dropdown-menu > li > a:focus > [class^="icon-"],
2169
2301
  .dropdown-menu > li > a:hover > [class*=" icon-"],
2302
+ .dropdown-menu > li > a:focus > [class*=" icon-"],
2170
2303
  .dropdown-menu > .active > a > [class^="icon-"],
2171
- .dropdown-menu > .active > a > [class*=" icon-"] {
2304
+ .dropdown-menu > .active > a > [class*=" icon-"],
2305
+ .dropdown-submenu:hover > a > [class^="icon-"],
2306
+ .dropdown-submenu:focus > a > [class^="icon-"],
2307
+ .dropdown-submenu:hover > a > [class*=" icon-"],
2308
+ .dropdown-submenu:focus > a > [class*=" icon-"] {
2172
2309
  background-image: url("<%= asset_path "glyphicons-halflings-white.png" %>");
2173
2310
  }
2174
2311
 
@@ -2638,6 +2775,7 @@ table [class*=span],
2638
2775
  }
2639
2776
 
2640
2777
  .icon-folder-close {
2778
+ width: 16px;
2641
2779
  background-position: -384px -120px;
2642
2780
  }
2643
2781
 
@@ -2806,7 +2944,7 @@ table [class*=span],
2806
2944
  border-bottom: 1px solid #ffffff;
2807
2945
  }
2808
2946
 
2809
- .dropdown-menu a {
2947
+ .dropdown-menu > li > a {
2810
2948
  display: block;
2811
2949
  padding: 3px 20px;
2812
2950
  clear: both;
@@ -2816,12 +2954,12 @@ table [class*=span],
2816
2954
  white-space: nowrap;
2817
2955
  }
2818
2956
 
2819
- .dropdown-menu li > a:hover,
2820
- .dropdown-menu li > a:focus,
2821
- .dropdown-submenu:hover > a {
2957
+ .dropdown-menu > li > a:hover,
2958
+ .dropdown-menu > li > a:focus,
2959
+ .dropdown-submenu:hover > a,
2960
+ .dropdown-submenu:focus > a {
2822
2961
  color: #ffffff;
2823
2962
  text-decoration: none;
2824
- background-color: #0088cc;
2825
2963
  background-color: #0081c2;
2826
2964
  background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
2827
2965
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
@@ -2829,34 +2967,38 @@ table [class*=span],
2829
2967
  background-image: -o-linear-gradient(top, #0088cc, #0077b3);
2830
2968
  background-image: linear-gradient(to bottom, #0088cc, #0077b3);
2831
2969
  background-repeat: repeat-x;
2832
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);
2970
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);
2833
2971
  }
2834
2972
 
2835
- .dropdown-menu .active > a,
2836
- .dropdown-menu .active > a:hover {
2973
+ .dropdown-menu > .active > a,
2974
+ .dropdown-menu > .active > a:hover,
2975
+ .dropdown-menu > .active > a:focus {
2837
2976
  color: #ffffff;
2838
2977
  text-decoration: none;
2839
- background-color: #0088cc;
2840
2978
  background-color: #0081c2;
2841
- background-image: linear-gradient(to bottom, #0088cc, #0077b3);
2842
2979
  background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
2843
2980
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
2844
2981
  background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
2845
2982
  background-image: -o-linear-gradient(top, #0088cc, #0077b3);
2983
+ background-image: linear-gradient(to bottom, #0088cc, #0077b3);
2846
2984
  background-repeat: repeat-x;
2847
2985
  outline: 0;
2848
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);
2986
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);
2849
2987
  }
2850
2988
 
2851
- .dropdown-menu .disabled > a,
2852
- .dropdown-menu .disabled > a:hover {
2989
+ .dropdown-menu > .disabled > a,
2990
+ .dropdown-menu > .disabled > a:hover,
2991
+ .dropdown-menu > .disabled > a:focus {
2853
2992
  color: #999999;
2854
2993
  }
2855
2994
 
2856
- .dropdown-menu .disabled > a:hover {
2995
+ .dropdown-menu > .disabled > a:hover,
2996
+ .dropdown-menu > .disabled > a:focus {
2857
2997
  text-decoration: none;
2858
2998
  cursor: default;
2859
2999
  background-color: transparent;
3000
+ background-image: none;
3001
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
2860
3002
  }
2861
3003
 
2862
3004
  .open {
@@ -2904,6 +3046,16 @@ table [class*=span],
2904
3046
  display: block;
2905
3047
  }
2906
3048
 
3049
+ .dropup .dropdown-submenu > .dropdown-menu {
3050
+ top: auto;
3051
+ bottom: 0;
3052
+ margin-top: 0;
3053
+ margin-bottom: -2px;
3054
+ -webkit-border-radius: 5px 5px 5px 0;
3055
+ -moz-border-radius: 5px 5px 5px 0;
3056
+ border-radius: 5px 5px 5px 0;
3057
+ }
3058
+
2907
3059
  .dropdown-submenu > a:after {
2908
3060
  display: block;
2909
3061
  float: right;
@@ -2922,12 +3074,25 @@ table [class*=span],
2922
3074
  border-left-color: #ffffff;
2923
3075
  }
2924
3076
 
3077
+ .dropdown-submenu.pull-left {
3078
+ float: none;
3079
+ }
3080
+
3081
+ .dropdown-submenu.pull-left > .dropdown-menu {
3082
+ left: -100%;
3083
+ margin-left: 10px;
3084
+ -webkit-border-radius: 6px 0 6px 6px;
3085
+ -moz-border-radius: 6px 0 6px 6px;
3086
+ border-radius: 6px 0 6px 6px;
3087
+ }
3088
+
2925
3089
  .dropdown .dropdown-menu .nav-header {
2926
3090
  padding-right: 20px;
2927
3091
  padding-left: 20px;
2928
3092
  }
2929
3093
 
2930
3094
  .typeahead {
3095
+ z-index: 1051;
2931
3096
  margin-top: 2px;
2932
3097
  -webkit-border-radius: 4px;
2933
3098
  -moz-border-radius: 4px;
@@ -3004,7 +3169,8 @@ table [class*=span],
3004
3169
  filter: alpha(opacity=20);
3005
3170
  }
3006
3171
 
3007
- .close:hover {
3172
+ .close:hover,
3173
+ .close:focus {
3008
3174
  color: #000000;
3009
3175
  text-decoration: none;
3010
3176
  cursor: pointer;
@@ -3023,12 +3189,11 @@ button.close {
3023
3189
  .btn {
3024
3190
  display: inline-block;
3025
3191
  *display: inline;
3026
- padding: 4px 14px;
3192
+ padding: 4px 12px;
3027
3193
  margin-bottom: 0;
3028
3194
  *margin-left: .3em;
3029
3195
  font-size: 14px;
3030
3196
  line-height: 20px;
3031
- *line-height: 20px;
3032
3197
  color: #333333;
3033
3198
  text-align: center;
3034
3199
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
@@ -3036,22 +3201,22 @@ button.close {
3036
3201
  cursor: pointer;
3037
3202
  background-color: #f5f5f5;
3038
3203
  *background-color: #e6e6e6;
3204
+ background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
3039
3205
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
3040
3206
  background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
3041
3207
  background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
3042
3208
  background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
3043
- background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
3044
3209
  background-repeat: repeat-x;
3045
- border: 1px solid #bbbbbb;
3210
+ border: 1px solid #cccccc;
3046
3211
  *border: 0;
3047
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3048
3212
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
3049
- border-bottom-color: #a2a2a2;
3213
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3214
+ border-bottom-color: #b3b3b3;
3050
3215
  -webkit-border-radius: 4px;
3051
3216
  -moz-border-radius: 4px;
3052
3217
  border-radius: 4px;
3053
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
3054
- filter: progid:dximagetransform.microsoft.gradient(enabled=false);
3218
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
3219
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
3055
3220
  *zoom: 1;
3056
3221
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
3057
3222
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
@@ -3059,6 +3224,7 @@ button.close {
3059
3224
  }
3060
3225
 
3061
3226
  .btn:hover,
3227
+ .btn:focus,
3062
3228
  .btn:active,
3063
3229
  .btn.active,
3064
3230
  .btn.disabled,
@@ -3077,13 +3243,10 @@ button.close {
3077
3243
  *margin-left: 0;
3078
3244
  }
3079
3245
 
3080
- .btn:hover {
3246
+ .btn:hover,
3247
+ .btn:focus {
3081
3248
  color: #333333;
3082
3249
  text-decoration: none;
3083
- background-color: #e6e6e6;
3084
- *background-color: #d9d9d9;
3085
- /* Buttons in IE7 don't get borders, so darken on hover */
3086
-
3087
3250
  background-position: 0 -15px;
3088
3251
  -webkit-transition: background-position 0.1s linear;
3089
3252
  -moz-transition: background-position 0.1s linear;
@@ -3099,8 +3262,6 @@ button.close {
3099
3262
 
3100
3263
  .btn.active,
3101
3264
  .btn:active {
3102
- background-color: #e6e6e6;
3103
- background-color: #d9d9d9 \9;
3104
3265
  background-image: none;
3105
3266
  outline: 0;
3106
3267
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
@@ -3111,7 +3272,6 @@ button.close {
3111
3272
  .btn.disabled,
3112
3273
  .btn[disabled] {
3113
3274
  cursor: default;
3114
- background-color: #e6e6e6;
3115
3275
  background-image: none;
3116
3276
  opacity: 0.65;
3117
3277
  filter: alpha(opacity=65);
@@ -3121,32 +3281,42 @@ button.close {
3121
3281
  }
3122
3282
 
3123
3283
  .btn-large {
3124
- padding: 9px 14px;
3125
- font-size: 16px;
3126
- line-height: normal;
3127
- -webkit-border-radius: 5px;
3128
- -moz-border-radius: 5px;
3129
- border-radius: 5px;
3284
+ padding: 11px 19px;
3285
+ font-size: 17.5px;
3286
+ -webkit-border-radius: 6px;
3287
+ -moz-border-radius: 6px;
3288
+ border-radius: 6px;
3130
3289
  }
3131
3290
 
3132
- .btn-large [class^="icon-"] {
3133
- margin-top: 2px;
3291
+ .btn-large [class^="icon-"],
3292
+ .btn-large [class*=" icon-"] {
3293
+ margin-top: 4px;
3134
3294
  }
3135
3295
 
3136
3296
  .btn-small {
3137
- padding: 3px 9px;
3138
- font-size: 12px;
3139
- line-height: 18px;
3297
+ padding: 2px 10px;
3298
+ font-size: 11.9px;
3299
+ -webkit-border-radius: 3px;
3300
+ -moz-border-radius: 3px;
3301
+ border-radius: 3px;
3140
3302
  }
3141
3303
 
3142
- .btn-small [class^="icon-"] {
3304
+ .btn-small [class^="icon-"],
3305
+ .btn-small [class*=" icon-"] {
3143
3306
  margin-top: 0;
3144
3307
  }
3145
3308
 
3309
+ .btn-mini [class^="icon-"],
3310
+ .btn-mini [class*=" icon-"] {
3311
+ margin-top: -1px;
3312
+ }
3313
+
3146
3314
  .btn-mini {
3147
- padding: 2px 6px;
3148
- font-size: 11px;
3149
- line-height: 17px;
3315
+ padding: 0 6px;
3316
+ font-size: 10.5px;
3317
+ -webkit-border-radius: 3px;
3318
+ -moz-border-radius: 3px;
3319
+ border-radius: 3px;
3150
3320
  }
3151
3321
 
3152
3322
  .btn-block {
@@ -3178,29 +3348,25 @@ input[type="button"].btn-block {
3178
3348
  color: rgba(255, 255, 255, 0.75);
3179
3349
  }
3180
3350
 
3181
- .btn {
3182
- border-color: #c5c5c5;
3183
- border-color: rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.25);
3184
- }
3185
-
3186
3351
  .btn-primary {
3187
3352
  color: #ffffff;
3188
3353
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
3189
3354
  background-color: #006dcc;
3190
3355
  *background-color: #0044cc;
3356
+ background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
3191
3357
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
3192
3358
  background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
3193
3359
  background-image: -o-linear-gradient(top, #0088cc, #0044cc);
3194
3360
  background-image: linear-gradient(to bottom, #0088cc, #0044cc);
3195
- background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
3196
3361
  background-repeat: repeat-x;
3197
3362
  border-color: #0044cc #0044cc #002a80;
3198
3363
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3199
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);
3200
- filter: progid:dximagetransform.microsoft.gradient(enabled=false);
3364
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);
3365
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
3201
3366
  }
3202
3367
 
3203
3368
  .btn-primary:hover,
3369
+ .btn-primary:focus,
3204
3370
  .btn-primary:active,
3205
3371
  .btn-primary.active,
3206
3372
  .btn-primary.disabled,
@@ -3220,19 +3386,20 @@ input[type="button"].btn-block {
3220
3386
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
3221
3387
  background-color: #faa732;
3222
3388
  *background-color: #f89406;
3389
+ background-image: -moz-linear-gradient(top, #fbb450, #f89406);
3223
3390
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
3224
3391
  background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
3225
3392
  background-image: -o-linear-gradient(top, #fbb450, #f89406);
3226
3393
  background-image: linear-gradient(to bottom, #fbb450, #f89406);
3227
- background-image: -moz-linear-gradient(top, #fbb450, #f89406);
3228
3394
  background-repeat: repeat-x;
3229
3395
  border-color: #f89406 #f89406 #ad6704;
3230
3396
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3231
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);
3232
- filter: progid:dximagetransform.microsoft.gradient(enabled=false);
3397
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);
3398
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
3233
3399
  }
3234
3400
 
3235
3401
  .btn-warning:hover,
3402
+ .btn-warning:focus,
3236
3403
  .btn-warning:active,
3237
3404
  .btn-warning.active,
3238
3405
  .btn-warning.disabled,
@@ -3252,19 +3419,20 @@ input[type="button"].btn-block {
3252
3419
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
3253
3420
  background-color: #da4f49;
3254
3421
  *background-color: #bd362f;
3422
+ background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
3255
3423
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
3256
3424
  background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
3257
3425
  background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
3258
3426
  background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
3259
- background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
3260
3427
  background-repeat: repeat-x;
3261
3428
  border-color: #bd362f #bd362f #802420;
3262
3429
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3263
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);
3264
- filter: progid:dximagetransform.microsoft.gradient(enabled=false);
3430
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);
3431
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
3265
3432
  }
3266
3433
 
3267
3434
  .btn-danger:hover,
3435
+ .btn-danger:focus,
3268
3436
  .btn-danger:active,
3269
3437
  .btn-danger.active,
3270
3438
  .btn-danger.disabled,
@@ -3284,19 +3452,20 @@ input[type="button"].btn-block {
3284
3452
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
3285
3453
  background-color: #5bb75b;
3286
3454
  *background-color: #51a351;
3455
+ background-image: -moz-linear-gradient(top, #62c462, #51a351);
3287
3456
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
3288
3457
  background-image: -webkit-linear-gradient(top, #62c462, #51a351);
3289
3458
  background-image: -o-linear-gradient(top, #62c462, #51a351);
3290
3459
  background-image: linear-gradient(to bottom, #62c462, #51a351);
3291
- background-image: -moz-linear-gradient(top, #62c462, #51a351);
3292
3460
  background-repeat: repeat-x;
3293
3461
  border-color: #51a351 #51a351 #387038;
3294
3462
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3295
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);
3296
- filter: progid:dximagetransform.microsoft.gradient(enabled=false);
3463
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);
3464
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
3297
3465
  }
3298
3466
 
3299
3467
  .btn-success:hover,
3468
+ .btn-success:focus,
3300
3469
  .btn-success:active,
3301
3470
  .btn-success.active,
3302
3471
  .btn-success.disabled,
@@ -3316,19 +3485,20 @@ input[type="button"].btn-block {
3316
3485
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
3317
3486
  background-color: #49afcd;
3318
3487
  *background-color: #2f96b4;
3488
+ background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
3319
3489
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
3320
3490
  background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
3321
3491
  background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
3322
3492
  background-image: linear-gradient(to bottom, #5bc0de, #2f96b4);
3323
- background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
3324
3493
  background-repeat: repeat-x;
3325
3494
  border-color: #2f96b4 #2f96b4 #1f6377;
3326
3495
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3327
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);
3328
- filter: progid:dximagetransform.microsoft.gradient(enabled=false);
3496
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);
3497
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
3329
3498
  }
3330
3499
 
3331
3500
  .btn-info:hover,
3501
+ .btn-info:focus,
3332
3502
  .btn-info:active,
3333
3503
  .btn-info.active,
3334
3504
  .btn-info.disabled,
@@ -3348,19 +3518,20 @@ input[type="button"].btn-block {
3348
3518
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
3349
3519
  background-color: #363636;
3350
3520
  *background-color: #222222;
3521
+ background-image: -moz-linear-gradient(top, #444444, #222222);
3351
3522
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#444444), to(#222222));
3352
3523
  background-image: -webkit-linear-gradient(top, #444444, #222222);
3353
3524
  background-image: -o-linear-gradient(top, #444444, #222222);
3354
3525
  background-image: linear-gradient(to bottom, #444444, #222222);
3355
- background-image: -moz-linear-gradient(top, #444444, #222222);
3356
3526
  background-repeat: repeat-x;
3357
3527
  border-color: #222222 #222222 #000000;
3358
3528
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3359
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);
3360
- filter: progid:dximagetransform.microsoft.gradient(enabled=false);
3529
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);
3530
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
3361
3531
  }
3362
3532
 
3363
3533
  .btn-inverse:hover,
3534
+ .btn-inverse:focus,
3364
3535
  .btn-inverse:active,
3365
3536
  .btn-inverse.active,
3366
3537
  .btn-inverse.disabled,
@@ -3424,23 +3595,28 @@ input[type="submit"].btn.btn-mini {
3424
3595
  border-radius: 0;
3425
3596
  }
3426
3597
 
3427
- .btn-link:hover {
3598
+ .btn-link:hover,
3599
+ .btn-link:focus {
3428
3600
  color: #005580;
3429
3601
  text-decoration: underline;
3430
3602
  background-color: transparent;
3431
3603
  }
3432
3604
 
3433
- .btn-link[disabled]:hover {
3605
+ .btn-link[disabled]:hover,
3606
+ .btn-link[disabled]:focus {
3434
3607
  color: #333333;
3435
3608
  text-decoration: none;
3436
3609
  }
3437
3610
 
3438
3611
  .btn-group {
3439
3612
  position: relative;
3613
+ display: inline-block;
3614
+ *display: inline;
3440
3615
  *margin-left: .3em;
3441
3616
  font-size: 0;
3442
3617
  white-space: nowrap;
3443
3618
  vertical-align: middle;
3619
+ *zoom: 1;
3444
3620
  }
3445
3621
 
3446
3622
  .btn-group:first-child {
@@ -3457,17 +3633,9 @@ input[type="submit"].btn.btn-mini {
3457
3633
  font-size: 0;
3458
3634
  }
3459
3635
 
3460
- .btn-toolbar .btn-group {
3461
- display: inline-block;
3462
- *display: inline;
3463
- /* IE7 inline-block hack */
3464
-
3465
- *zoom: 1;
3466
- }
3467
-
3468
- .btn-toolbar .btn + .btn,
3469
- .btn-toolbar .btn-group + .btn,
3470
- .btn-toolbar .btn + .btn-group {
3636
+ .btn-toolbar > .btn + .btn,
3637
+ .btn-toolbar > .btn-group + .btn,
3638
+ .btn-toolbar > .btn + .btn-group {
3471
3639
  margin-left: 5px;
3472
3640
  }
3473
3641
 
@@ -3483,20 +3651,21 @@ input[type="submit"].btn.btn-mini {
3483
3651
  }
3484
3652
 
3485
3653
  .btn-group > .btn,
3486
- .btn-group > .dropdown-menu {
3654
+ .btn-group > .dropdown-menu,
3655
+ .btn-group > .popover {
3487
3656
  font-size: 14px;
3488
3657
  }
3489
3658
 
3490
3659
  .btn-group > .btn-mini {
3491
- font-size: 11px;
3660
+ font-size: 10.5px;
3492
3661
  }
3493
3662
 
3494
3663
  .btn-group > .btn-small {
3495
- font-size: 12px;
3664
+ font-size: 11.9px;
3496
3665
  }
3497
3666
 
3498
3667
  .btn-group > .btn-large {
3499
- font-size: 16px;
3668
+ font-size: 17.5px;
3500
3669
  }
3501
3670
 
3502
3671
  .btn-group > .btn:first-child {
@@ -3620,8 +3789,6 @@ input[type="submit"].btn.btn-mini {
3620
3789
  margin-left: 0;
3621
3790
  }
3622
3791
 
3623
- .btn-mini .caret,
3624
- .btn-small .caret,
3625
3792
  .btn-large .caret {
3626
3793
  margin-top: 6px;
3627
3794
  }
@@ -3632,9 +3799,13 @@ input[type="submit"].btn.btn-mini {
3632
3799
  border-left-width: 5px;
3633
3800
  }
3634
3801
 
3802
+ .btn-mini .caret,
3803
+ .btn-small .caret {
3804
+ margin-top: 8px;
3805
+ }
3806
+
3635
3807
  .dropup .btn-large .caret {
3636
- border-top: 0;
3637
- border-bottom: 5px solid #000000;
3808
+ border-bottom-width: 5px;
3638
3809
  }
3639
3810
 
3640
3811
  .btn-primary .caret,
@@ -3655,39 +3826,39 @@ input[type="submit"].btn.btn-mini {
3655
3826
  *zoom: 1;
3656
3827
  }
3657
3828
 
3658
- .btn-group-vertical .btn {
3829
+ .btn-group-vertical > .btn {
3659
3830
  display: block;
3660
3831
  float: none;
3661
- width: 100%;
3832
+ max-width: 100%;
3662
3833
  -webkit-border-radius: 0;
3663
3834
  -moz-border-radius: 0;
3664
3835
  border-radius: 0;
3665
3836
  }
3666
3837
 
3667
- .btn-group-vertical .btn + .btn {
3838
+ .btn-group-vertical > .btn + .btn {
3668
3839
  margin-top: -1px;
3669
3840
  margin-left: 0;
3670
3841
  }
3671
3842
 
3672
- .btn-group-vertical .btn:first-child {
3843
+ .btn-group-vertical > .btn:first-child {
3673
3844
  -webkit-border-radius: 4px 4px 0 0;
3674
3845
  -moz-border-radius: 4px 4px 0 0;
3675
3846
  border-radius: 4px 4px 0 0;
3676
3847
  }
3677
3848
 
3678
- .btn-group-vertical .btn:last-child {
3849
+ .btn-group-vertical > .btn:last-child {
3679
3850
  -webkit-border-radius: 0 0 4px 4px;
3680
3851
  -moz-border-radius: 0 0 4px 4px;
3681
3852
  border-radius: 0 0 4px 4px;
3682
3853
  }
3683
3854
 
3684
- .btn-group-vertical .btn-large:first-child {
3855
+ .btn-group-vertical > .btn-large:first-child {
3685
3856
  -webkit-border-radius: 6px 6px 0 0;
3686
3857
  -moz-border-radius: 6px 6px 0 0;
3687
3858
  border-radius: 6px 6px 0 0;
3688
3859
  }
3689
3860
 
3690
- .btn-group-vertical .btn-large:last-child {
3861
+ .btn-group-vertical > .btn-large:last-child {
3691
3862
  -webkit-border-radius: 0 0 6px 6px;
3692
3863
  -moz-border-radius: 0 0 6px 6px;
3693
3864
  border-radius: 0 0 6px 6px;
@@ -3696,7 +3867,6 @@ input[type="submit"].btn.btn-mini {
3696
3867
  .alert {
3697
3868
  padding: 8px 35px 8px 14px;
3698
3869
  margin-bottom: 20px;
3699
- color: #c09853;
3700
3870
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
3701
3871
  background-color: #fcf8e3;
3702
3872
  border: 1px solid #fbeed5;
@@ -3705,6 +3875,11 @@ input[type="submit"].btn.btn-mini {
3705
3875
  border-radius: 4px;
3706
3876
  }
3707
3877
 
3878
+ .alert,
3879
+ .alert h4 {
3880
+ color: #c09853;
3881
+ }
3882
+
3708
3883
  .alert h4 {
3709
3884
  margin: 0;
3710
3885
  }
@@ -3722,6 +3897,10 @@ input[type="submit"].btn.btn-mini {
3722
3897
  border-color: #d6e9c6;
3723
3898
  }
3724
3899
 
3900
+ .alert-success h4 {
3901
+ color: #468847;
3902
+ }
3903
+
3725
3904
  .alert-danger,
3726
3905
  .alert-error {
3727
3906
  color: #b94a48;
@@ -3729,12 +3908,21 @@ input[type="submit"].btn.btn-mini {
3729
3908
  border-color: #eed3d7;
3730
3909
  }
3731
3910
 
3911
+ .alert-danger h4,
3912
+ .alert-error h4 {
3913
+ color: #b94a48;
3914
+ }
3915
+
3732
3916
  .alert-info {
3733
3917
  color: #3a87ad;
3734
3918
  background-color: #d9edf7;
3735
3919
  border-color: #bce8f1;
3736
3920
  }
3737
3921
 
3922
+ .alert-info h4 {
3923
+ color: #3a87ad;
3924
+ }
3925
+
3738
3926
  .alert-block {
3739
3927
  padding-top: 14px;
3740
3928
  padding-bottom: 14px;
@@ -3759,11 +3947,16 @@ input[type="submit"].btn.btn-mini {
3759
3947
  display: block;
3760
3948
  }
3761
3949
 
3762
- .nav > li > a:hover {
3950
+ .nav > li > a:hover,
3951
+ .nav > li > a:focus {
3763
3952
  text-decoration: none;
3764
3953
  background-color: #eeeeee;
3765
3954
  }
3766
3955
 
3956
+ .nav > li > a > img {
3957
+ max-width: none;
3958
+ }
3959
+
3767
3960
  .nav > .pull-right {
3768
3961
  float: right;
3769
3962
  }
@@ -3801,13 +3994,15 @@ input[type="submit"].btn.btn-mini {
3801
3994
  }
3802
3995
 
3803
3996
  .nav-list > .active > a,
3804
- .nav-list > .active > a:hover {
3997
+ .nav-list > .active > a:hover,
3998
+ .nav-list > .active > a:focus {
3805
3999
  color: #ffffff;
3806
4000
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
3807
4001
  background-color: #0088cc;
3808
4002
  }
3809
4003
 
3810
- .nav-list [class^="icon-"] {
4004
+ .nav-list [class^="icon-"],
4005
+ .nav-list [class*=" icon-"] {
3811
4006
  margin-right: 2px;
3812
4007
  }
3813
4008
 
@@ -3871,12 +4066,14 @@ input[type="submit"].btn.btn-mini {
3871
4066
  border-radius: 4px 4px 0 0;
3872
4067
  }
3873
4068
 
3874
- .nav-tabs > li > a:hover {
4069
+ .nav-tabs > li > a:hover,
4070
+ .nav-tabs > li > a:focus {
3875
4071
  border-color: #eeeeee #eeeeee #dddddd;
3876
4072
  }
3877
4073
 
3878
4074
  .nav-tabs > .active > a,
3879
- .nav-tabs > .active > a:hover {
4075
+ .nav-tabs > .active > a:hover,
4076
+ .nav-tabs > .active > a:focus {
3880
4077
  color: #555555;
3881
4078
  cursor: default;
3882
4079
  background-color: #ffffff;
@@ -3895,7 +4092,8 @@ input[type="submit"].btn.btn-mini {
3895
4092
  }
3896
4093
 
3897
4094
  .nav-pills > .active > a,
3898
- .nav-pills > .active > a:hover {
4095
+ .nav-pills > .active > a:hover,
4096
+ .nav-pills > .active > a:focus {
3899
4097
  color: #ffffff;
3900
4098
  background-color: #0088cc;
3901
4099
  }
@@ -3937,7 +4135,8 @@ input[type="submit"].btn.btn-mini {
3937
4135
  -moz-border-radius-bottomleft: 4px;
3938
4136
  }
3939
4137
 
3940
- .nav-tabs.nav-stacked > li > a:hover {
4138
+ .nav-tabs.nav-stacked > li > a:hover,
4139
+ .nav-tabs.nav-stacked > li > a:focus {
3941
4140
  z-index: 2;
3942
4141
  border-color: #ddd;
3943
4142
  }
@@ -3968,7 +4167,8 @@ input[type="submit"].btn.btn-mini {
3968
4167
  border-bottom-color: #0088cc;
3969
4168
  }
3970
4169
 
3971
- .nav .dropdown-toggle:hover .caret {
4170
+ .nav .dropdown-toggle:hover .caret,
4171
+ .nav .dropdown-toggle:focus .caret {
3972
4172
  border-top-color: #005580;
3973
4173
  border-bottom-color: #005580;
3974
4174
  }
@@ -3989,13 +4189,15 @@ input[type="submit"].btn.btn-mini {
3989
4189
  border-bottom-color: #555555;
3990
4190
  }
3991
4191
 
3992
- .nav > .dropdown.active > a:hover {
4192
+ .nav > .dropdown.active > a:hover,
4193
+ .nav > .dropdown.active > a:focus {
3993
4194
  cursor: pointer;
3994
4195
  }
3995
4196
 
3996
4197
  .nav-tabs .open .dropdown-toggle,
3997
4198
  .nav-pills .open .dropdown-toggle,
3998
- .nav > li.dropdown.open.active > a:hover {
4199
+ .nav > li.dropdown.open.active > a:hover,
4200
+ .nav > li.dropdown.open.active > a:focus {
3999
4201
  color: #ffffff;
4000
4202
  background-color: #999999;
4001
4203
  border-color: #999999;
@@ -4003,14 +4205,16 @@ input[type="submit"].btn.btn-mini {
4003
4205
 
4004
4206
  .nav li.dropdown.open .caret,
4005
4207
  .nav li.dropdown.open.active .caret,
4006
- .nav li.dropdown.open a:hover .caret {
4208
+ .nav li.dropdown.open a:hover .caret,
4209
+ .nav li.dropdown.open a:focus .caret {
4007
4210
  border-top-color: #ffffff;
4008
4211
  border-bottom-color: #ffffff;
4009
4212
  opacity: 1;
4010
4213
  filter: alpha(opacity=100);
4011
4214
  }
4012
4215
 
4013
- .tabs-stacked .open > a:hover {
4216
+ .tabs-stacked .open > a:hover,
4217
+ .tabs-stacked .open > a:focus {
4014
4218
  border-color: #999999;
4015
4219
  }
4016
4220
 
@@ -4064,13 +4268,15 @@ input[type="submit"].btn.btn-mini {
4064
4268
  border-radius: 0 0 4px 4px;
4065
4269
  }
4066
4270
 
4067
- .tabs-below > .nav-tabs > li > a:hover {
4271
+ .tabs-below > .nav-tabs > li > a:hover,
4272
+ .tabs-below > .nav-tabs > li > a:focus {
4068
4273
  border-top-color: #ddd;
4069
4274
  border-bottom-color: transparent;
4070
4275
  }
4071
4276
 
4072
4277
  .tabs-below > .nav-tabs > .active > a,
4073
- .tabs-below > .nav-tabs > .active > a:hover {
4278
+ .tabs-below > .nav-tabs > .active > a:hover,
4279
+ .tabs-below > .nav-tabs > .active > a:focus {
4074
4280
  border-color: transparent #ddd #ddd #ddd;
4075
4281
  }
4076
4282
 
@@ -4099,12 +4305,14 @@ input[type="submit"].btn.btn-mini {
4099
4305
  border-radius: 4px 0 0 4px;
4100
4306
  }
4101
4307
 
4102
- .tabs-left > .nav-tabs > li > a:hover {
4308
+ .tabs-left > .nav-tabs > li > a:hover,
4309
+ .tabs-left > .nav-tabs > li > a:focus {
4103
4310
  border-color: #eeeeee #dddddd #eeeeee #eeeeee;
4104
4311
  }
4105
4312
 
4106
4313
  .tabs-left > .nav-tabs .active > a,
4107
- .tabs-left > .nav-tabs .active > a:hover {
4314
+ .tabs-left > .nav-tabs .active > a:hover,
4315
+ .tabs-left > .nav-tabs .active > a:focus {
4108
4316
  border-color: #ddd transparent #ddd #ddd;
4109
4317
  *border-right-color: #ffffff;
4110
4318
  }
@@ -4122,12 +4330,14 @@ input[type="submit"].btn.btn-mini {
4122
4330
  border-radius: 0 4px 4px 0;
4123
4331
  }
4124
4332
 
4125
- .tabs-right > .nav-tabs > li > a:hover {
4333
+ .tabs-right > .nav-tabs > li > a:hover,
4334
+ .tabs-right > .nav-tabs > li > a:focus {
4126
4335
  border-color: #eeeeee #eeeeee #eeeeee #dddddd;
4127
4336
  }
4128
4337
 
4129
4338
  .tabs-right > .nav-tabs .active > a,
4130
- .tabs-right > .nav-tabs .active > a:hover {
4339
+ .tabs-right > .nav-tabs .active > a:hover,
4340
+ .tabs-right > .nav-tabs .active > a:focus {
4131
4341
  border-color: #ddd #ddd #ddd transparent;
4132
4342
  *border-left-color: #ffffff;
4133
4343
  }
@@ -4136,7 +4346,8 @@ input[type="submit"].btn.btn-mini {
4136
4346
  color: #999999;
4137
4347
  }
4138
4348
 
4139
- .nav > .disabled > a:hover {
4349
+ .nav > .disabled > a:hover,
4350
+ .nav > .disabled > a:focus {
4140
4351
  text-decoration: none;
4141
4352
  cursor: default;
4142
4353
  background-color: transparent;
@@ -4147,7 +4358,6 @@ input[type="submit"].btn.btn-mini {
4147
4358
  *z-index: 2;
4148
4359
  margin-bottom: 20px;
4149
4360
  overflow: visible;
4150
- color: #777777;
4151
4361
  }
4152
4362
 
4153
4363
  .navbar-inner {
@@ -4165,7 +4375,7 @@ input[type="submit"].btn.btn-mini {
4165
4375
  -webkit-border-radius: 4px;
4166
4376
  -moz-border-radius: 4px;
4167
4377
  border-radius: 4px;
4168
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);
4378
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);
4169
4379
  *zoom: 1;
4170
4380
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
4171
4381
  -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
@@ -4189,6 +4399,7 @@ input[type="submit"].btn.btn-mini {
4189
4399
 
4190
4400
  .nav-collapse.collapse {
4191
4401
  height: auto;
4402
+ overflow: visible;
4192
4403
  }
4193
4404
 
4194
4405
  .navbar .brand {
@@ -4202,20 +4413,23 @@ input[type="submit"].btn.btn-mini {
4202
4413
  text-shadow: 0 1px 0 #ffffff;
4203
4414
  }
4204
4415
 
4205
- .navbar .brand:hover {
4416
+ .navbar .brand:hover,
4417
+ .navbar .brand:focus {
4206
4418
  text-decoration: none;
4207
4419
  }
4208
4420
 
4209
4421
  .navbar-text {
4210
4422
  margin-bottom: 0;
4211
4423
  line-height: 40px;
4424
+ color: #777777;
4212
4425
  }
4213
4426
 
4214
4427
  .navbar-link {
4215
4428
  color: #777777;
4216
4429
  }
4217
4430
 
4218
- .navbar-link:hover {
4431
+ .navbar-link:hover,
4432
+ .navbar-link:focus {
4219
4433
  color: #333333;
4220
4434
  }
4221
4435
 
@@ -4233,7 +4447,9 @@ input[type="submit"].btn.btn-mini {
4233
4447
 
4234
4448
  .navbar .btn-group .btn,
4235
4449
  .navbar .input-prepend .btn,
4236
- .navbar .input-append .btn {
4450
+ .navbar .input-append .btn,
4451
+ .navbar .input-prepend .btn-group,
4452
+ .navbar .input-append .btn-group {
4237
4453
  margin-top: 0;
4238
4454
  }
4239
4455
 
@@ -4275,7 +4491,7 @@ input[type="submit"].btn.btn-mini {
4275
4491
 
4276
4492
  .navbar-form .input-append,
4277
4493
  .navbar-form .input-prepend {
4278
- margin-top: 6px;
4494
+ margin-top: 5px;
4279
4495
  white-space: nowrap;
4280
4496
  }
4281
4497
 
@@ -4305,7 +4521,6 @@ input[type="submit"].btn.btn-mini {
4305
4521
 
4306
4522
  .navbar-static-top {
4307
4523
  position: static;
4308
- width: 100%;
4309
4524
  margin-bottom: 0;
4310
4525
  }
4311
4526
 
@@ -4354,9 +4569,9 @@ input[type="submit"].btn.btn-mini {
4354
4569
 
4355
4570
  .navbar-fixed-top .navbar-inner,
4356
4571
  .navbar-static-top .navbar-inner {
4357
- -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 1px 10px rgba(0, 0, 0, 0.1);
4358
- -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 1px 10px rgba(0, 0, 0, 0.1);
4359
- box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 1px 10px rgba(0, 0, 0, 0.1);
4572
+ -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
4573
+ -moz-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
4574
+ box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
4360
4575
  }
4361
4576
 
4362
4577
  .navbar-fixed-bottom {
@@ -4364,9 +4579,9 @@ input[type="submit"].btn.btn-mini {
4364
4579
  }
4365
4580
 
4366
4581
  .navbar-fixed-bottom .navbar-inner {
4367
- -webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1), 0 -1px 10px rgba(0, 0, 0, 0.1);
4368
- -moz-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1), 0 -1px 10px rgba(0, 0, 0, 0.1);
4369
- box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1), 0 -1px 10px rgba(0, 0, 0, 0.1);
4582
+ -webkit-box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1);
4583
+ -moz-box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1);
4584
+ box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1);
4370
4585
  }
4371
4586
 
4372
4587
  .navbar .nav {
@@ -4426,22 +4641,23 @@ input[type="submit"].btn.btn-mini {
4426
4641
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
4427
4642
  background-color: #ededed;
4428
4643
  *background-color: #e5e5e5;
4644
+ background-image: -moz-linear-gradient(top, #f2f2f2, #e5e5e5);
4429
4645
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e5e5e5));
4430
4646
  background-image: -webkit-linear-gradient(top, #f2f2f2, #e5e5e5);
4431
4647
  background-image: -o-linear-gradient(top, #f2f2f2, #e5e5e5);
4432
4648
  background-image: linear-gradient(to bottom, #f2f2f2, #e5e5e5);
4433
- background-image: -moz-linear-gradient(top, #f2f2f2, #e5e5e5);
4434
4649
  background-repeat: repeat-x;
4435
4650
  border-color: #e5e5e5 #e5e5e5 #bfbfbf;
4436
4651
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
4437
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0);
4438
- filter: progid:dximagetransform.microsoft.gradient(enabled=false);
4652
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0);
4653
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
4439
4654
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
4440
4655
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
4441
4656
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
4442
4657
  }
4443
4658
 
4444
4659
  .navbar .btn-navbar:hover,
4660
+ .navbar .btn-navbar:focus,
4445
4661
  .navbar .btn-navbar:active,
4446
4662
  .navbar .btn-navbar.active,
4447
4663
  .navbar .btn-navbar.disabled,
@@ -4511,6 +4727,12 @@ input[type="submit"].btn.btn-mini {
4511
4727
  border-bottom: 0;
4512
4728
  }
4513
4729
 
4730
+ .navbar .nav li.dropdown > a:hover .caret,
4731
+ .navbar .nav li.dropdown > a:focus .caret {
4732
+ border-top-color: #333333;
4733
+ border-bottom-color: #333333;
4734
+ }
4735
+
4514
4736
  .navbar .nav li.dropdown.open > .dropdown-toggle,
4515
4737
  .navbar .nav li.dropdown.active > .dropdown-toggle,
4516
4738
  .navbar .nav li.dropdown.open.active > .dropdown-toggle {
@@ -4559,10 +4781,6 @@ input[type="submit"].btn.btn-mini {
4559
4781
  border-radius: 6px 0 6px 6px;
4560
4782
  }
4561
4783
 
4562
- .navbar-inverse {
4563
- color: #999999;
4564
- }
4565
-
4566
4784
  .navbar-inverse .navbar-inner {
4567
4785
  background-color: #1b1b1b;
4568
4786
  background-image: -moz-linear-gradient(top, #222222, #111111);
@@ -4572,7 +4790,7 @@ input[type="submit"].btn.btn-mini {
4572
4790
  background-image: linear-gradient(to bottom, #222222, #111111);
4573
4791
  background-repeat: repeat-x;
4574
4792
  border-color: #252525;
4575
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0);
4793
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0);
4576
4794
  }
4577
4795
 
4578
4796
  .navbar-inverse .brand,
@@ -4582,10 +4800,20 @@ input[type="submit"].btn.btn-mini {
4582
4800
  }
4583
4801
 
4584
4802
  .navbar-inverse .brand:hover,
4585
- .navbar-inverse .nav > li > a:hover {
4803
+ .navbar-inverse .nav > li > a:hover,
4804
+ .navbar-inverse .brand:focus,
4805
+ .navbar-inverse .nav > li > a:focus {
4586
4806
  color: #ffffff;
4587
4807
  }
4588
4808
 
4809
+ .navbar-inverse .brand {
4810
+ color: #999999;
4811
+ }
4812
+
4813
+ .navbar-inverse .navbar-text {
4814
+ color: #999999;
4815
+ }
4816
+
4589
4817
  .navbar-inverse .nav > li > a:focus,
4590
4818
  .navbar-inverse .nav > li > a:hover {
4591
4819
  color: #ffffff;
@@ -4603,7 +4831,8 @@ input[type="submit"].btn.btn-mini {
4603
4831
  color: #999999;
4604
4832
  }
4605
4833
 
4606
- .navbar-inverse .navbar-link:hover {
4834
+ .navbar-inverse .navbar-link:hover,
4835
+ .navbar-inverse .navbar-link:focus {
4607
4836
  color: #ffffff;
4608
4837
  }
4609
4838
 
@@ -4619,6 +4848,12 @@ input[type="submit"].btn.btn-mini {
4619
4848
  background-color: #111111;
4620
4849
  }
4621
4850
 
4851
+ .navbar-inverse .nav li.dropdown > a:hover .caret,
4852
+ .navbar-inverse .nav li.dropdown > a:focus .caret {
4853
+ border-top-color: #ffffff;
4854
+ border-bottom-color: #ffffff;
4855
+ }
4856
+
4622
4857
  .navbar-inverse .nav li.dropdown > .dropdown-toggle .caret {
4623
4858
  border-top-color: #999999;
4624
4859
  border-bottom-color: #999999;
@@ -4674,19 +4909,20 @@ input[type="submit"].btn.btn-mini {
4674
4909
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
4675
4910
  background-color: #0e0e0e;
4676
4911
  *background-color: #040404;
4912
+ background-image: -moz-linear-gradient(top, #151515, #040404);
4677
4913
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404));
4678
4914
  background-image: -webkit-linear-gradient(top, #151515, #040404);
4679
4915
  background-image: -o-linear-gradient(top, #151515, #040404);
4680
4916
  background-image: linear-gradient(to bottom, #151515, #040404);
4681
- background-image: -moz-linear-gradient(top, #151515, #040404);
4682
4917
  background-repeat: repeat-x;
4683
4918
  border-color: #040404 #040404 #000000;
4684
4919
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
4685
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0);
4686
- filter: progid:dximagetransform.microsoft.gradient(enabled=false);
4920
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0);
4921
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
4687
4922
  }
4688
4923
 
4689
4924
  .navbar-inverse .btn-navbar:hover,
4925
+ .navbar-inverse .btn-navbar:focus,
4690
4926
  .navbar-inverse .btn-navbar:active,
4691
4927
  .navbar-inverse .btn-navbar.active,
4692
4928
  .navbar-inverse .btn-navbar.disabled,
@@ -4711,24 +4947,23 @@ input[type="submit"].btn.btn-mini {
4711
4947
  border-radius: 4px;
4712
4948
  }
4713
4949
 
4714
- .breadcrumb li {
4950
+ .breadcrumb > li {
4715
4951
  display: inline-block;
4716
4952
  *display: inline;
4717
4953
  text-shadow: 0 1px 0 #ffffff;
4718
4954
  *zoom: 1;
4719
4955
  }
4720
4956
 
4721
- .breadcrumb .divider {
4957
+ .breadcrumb > li > .divider {
4722
4958
  padding: 0 5px;
4723
4959
  color: #ccc;
4724
4960
  }
4725
4961
 
4726
- .breadcrumb .active {
4962
+ .breadcrumb > .active {
4727
4963
  color: #999999;
4728
4964
  }
4729
4965
 
4730
4966
  .pagination {
4731
- height: 40px;
4732
4967
  margin: 20px 0;
4733
4968
  }
4734
4969
 
@@ -4737,9 +4972,9 @@ input[type="submit"].btn.btn-mini {
4737
4972
  *display: inline;
4738
4973
  margin-bottom: 0;
4739
4974
  margin-left: 0;
4740
- -webkit-border-radius: 3px;
4741
- -moz-border-radius: 3px;
4742
- border-radius: 3px;
4975
+ -webkit-border-radius: 4px;
4976
+ -moz-border-radius: 4px;
4977
+ border-radius: 4px;
4743
4978
  *zoom: 1;
4744
4979
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
4745
4980
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
@@ -4753,8 +4988,8 @@ input[type="submit"].btn.btn-mini {
4753
4988
  .pagination ul > li > a,
4754
4989
  .pagination ul > li > span {
4755
4990
  float: left;
4756
- padding: 0 14px;
4757
- line-height: 38px;
4991
+ padding: 4px 12px;
4992
+ line-height: 20px;
4758
4993
  text-decoration: none;
4759
4994
  background-color: #ffffff;
4760
4995
  border: 1px solid #dddddd;
@@ -4762,6 +4997,7 @@ input[type="submit"].btn.btn-mini {
4762
4997
  }
4763
4998
 
4764
4999
  .pagination ul > li > a:hover,
5000
+ .pagination ul > li > a:focus,
4765
5001
  .pagination ul > .active > a,
4766
5002
  .pagination ul > .active > span {
4767
5003
  background-color: #f5f5f5;
@@ -4775,7 +5011,8 @@ input[type="submit"].btn.btn-mini {
4775
5011
 
4776
5012
  .pagination ul > .disabled > span,
4777
5013
  .pagination ul > .disabled > a,
4778
- .pagination ul > .disabled > a:hover {
5014
+ .pagination ul > .disabled > a:hover,
5015
+ .pagination ul > .disabled > a:focus {
4779
5016
  color: #999999;
4780
5017
  cursor: default;
4781
5018
  background-color: transparent;
@@ -4784,16 +5021,22 @@ input[type="submit"].btn.btn-mini {
4784
5021
  .pagination ul > li:first-child > a,
4785
5022
  .pagination ul > li:first-child > span {
4786
5023
  border-left-width: 1px;
4787
- -webkit-border-radius: 3px 0 0 3px;
4788
- -moz-border-radius: 3px 0 0 3px;
4789
- border-radius: 3px 0 0 3px;
5024
+ -webkit-border-bottom-left-radius: 4px;
5025
+ border-bottom-left-radius: 4px;
5026
+ -webkit-border-top-left-radius: 4px;
5027
+ border-top-left-radius: 4px;
5028
+ -moz-border-radius-bottomleft: 4px;
5029
+ -moz-border-radius-topleft: 4px;
4790
5030
  }
4791
5031
 
4792
5032
  .pagination ul > li:last-child > a,
4793
5033
  .pagination ul > li:last-child > span {
4794
- -webkit-border-radius: 0 3px 3px 0;
4795
- -moz-border-radius: 0 3px 3px 0;
4796
- border-radius: 0 3px 3px 0;
5034
+ -webkit-border-top-right-radius: 4px;
5035
+ border-top-right-radius: 4px;
5036
+ -webkit-border-bottom-right-radius: 4px;
5037
+ border-bottom-right-radius: 4px;
5038
+ -moz-border-radius-topright: 4px;
5039
+ -moz-border-radius-bottomright: 4px;
4797
5040
  }
4798
5041
 
4799
5042
  .pagination-centered {
@@ -4804,6 +5047,68 @@ input[type="submit"].btn.btn-mini {
4804
5047
  text-align: right;
4805
5048
  }
4806
5049
 
5050
+ .pagination-large ul > li > a,
5051
+ .pagination-large ul > li > span {
5052
+ padding: 11px 19px;
5053
+ font-size: 17.5px;
5054
+ }
5055
+
5056
+ .pagination-large ul > li:first-child > a,
5057
+ .pagination-large ul > li:first-child > span {
5058
+ -webkit-border-bottom-left-radius: 6px;
5059
+ border-bottom-left-radius: 6px;
5060
+ -webkit-border-top-left-radius: 6px;
5061
+ border-top-left-radius: 6px;
5062
+ -moz-border-radius-bottomleft: 6px;
5063
+ -moz-border-radius-topleft: 6px;
5064
+ }
5065
+
5066
+ .pagination-large ul > li:last-child > a,
5067
+ .pagination-large ul > li:last-child > span {
5068
+ -webkit-border-top-right-radius: 6px;
5069
+ border-top-right-radius: 6px;
5070
+ -webkit-border-bottom-right-radius: 6px;
5071
+ border-bottom-right-radius: 6px;
5072
+ -moz-border-radius-topright: 6px;
5073
+ -moz-border-radius-bottomright: 6px;
5074
+ }
5075
+
5076
+ .pagination-mini ul > li:first-child > a,
5077
+ .pagination-small ul > li:first-child > a,
5078
+ .pagination-mini ul > li:first-child > span,
5079
+ .pagination-small ul > li:first-child > span {
5080
+ -webkit-border-bottom-left-radius: 3px;
5081
+ border-bottom-left-radius: 3px;
5082
+ -webkit-border-top-left-radius: 3px;
5083
+ border-top-left-radius: 3px;
5084
+ -moz-border-radius-bottomleft: 3px;
5085
+ -moz-border-radius-topleft: 3px;
5086
+ }
5087
+
5088
+ .pagination-mini ul > li:last-child > a,
5089
+ .pagination-small ul > li:last-child > a,
5090
+ .pagination-mini ul > li:last-child > span,
5091
+ .pagination-small ul > li:last-child > span {
5092
+ -webkit-border-top-right-radius: 3px;
5093
+ border-top-right-radius: 3px;
5094
+ -webkit-border-bottom-right-radius: 3px;
5095
+ border-bottom-right-radius: 3px;
5096
+ -moz-border-radius-topright: 3px;
5097
+ -moz-border-radius-bottomright: 3px;
5098
+ }
5099
+
5100
+ .pagination-small ul > li > a,
5101
+ .pagination-small ul > li > span {
5102
+ padding: 2px 10px;
5103
+ font-size: 11.9px;
5104
+ }
5105
+
5106
+ .pagination-mini ul > li > a,
5107
+ .pagination-mini ul > li > span {
5108
+ padding: 0 6px;
5109
+ font-size: 10.5px;
5110
+ }
5111
+
4807
5112
  .pager {
4808
5113
  margin: 20px 0;
4809
5114
  text-align: center;
@@ -4826,8 +5131,8 @@ input[type="submit"].btn.btn-mini {
4826
5131
  display: inline;
4827
5132
  }
4828
5133
 
4829
- .pager a,
4830
- .pager span {
5134
+ .pager li > a,
5135
+ .pager li > span {
4831
5136
  display: inline-block;
4832
5137
  padding: 5px 14px;
4833
5138
  background-color: #fff;
@@ -4837,44 +5142,31 @@ input[type="submit"].btn.btn-mini {
4837
5142
  border-radius: 15px;
4838
5143
  }
4839
5144
 
4840
- .pager a:hover {
5145
+ .pager li > a:hover,
5146
+ .pager li > a:focus {
4841
5147
  text-decoration: none;
4842
5148
  background-color: #f5f5f5;
4843
5149
  }
4844
5150
 
4845
- .pager .next a,
4846
- .pager .next span {
5151
+ .pager .next > a,
5152
+ .pager .next > span {
4847
5153
  float: right;
4848
5154
  }
4849
5155
 
4850
- .pager .previous a {
5156
+ .pager .previous > a,
5157
+ .pager .previous > span {
4851
5158
  float: left;
4852
5159
  }
4853
5160
 
4854
- .pager .disabled a,
4855
- .pager .disabled a:hover,
4856
- .pager .disabled span {
5161
+ .pager .disabled > a,
5162
+ .pager .disabled > a:hover,
5163
+ .pager .disabled > a:focus,
5164
+ .pager .disabled > span {
4857
5165
  color: #999999;
4858
5166
  cursor: default;
4859
5167
  background-color: #fff;
4860
5168
  }
4861
5169
 
4862
- .modal-open .modal .dropdown-menu {
4863
- z-index: 2050;
4864
- }
4865
-
4866
- .modal-open .modal .dropdown.open {
4867
- *z-index: 2050;
4868
- }
4869
-
4870
- .modal-open .modal .popover {
4871
- z-index: 2060;
4872
- }
4873
-
4874
- .modal-open .modal .tooltip {
4875
- z-index: 2080;
4876
- }
4877
-
4878
5170
  .modal-backdrop {
4879
5171
  position: fixed;
4880
5172
  top: 0;
@@ -4897,12 +5189,11 @@ input[type="submit"].btn.btn-mini {
4897
5189
 
4898
5190
  .modal {
4899
5191
  position: fixed;
4900
- top: 50%;
5192
+ top: 10%;
4901
5193
  left: 50%;
4902
5194
  z-index: 1050;
4903
5195
  width: 560px;
4904
- margin: -250px 0 0 -280px;
4905
- overflow: auto;
5196
+ margin-left: -280px;
4906
5197
  background-color: #ffffff;
4907
5198
  border: 1px solid #999;
4908
5199
  border: 1px solid rgba(0, 0, 0, 0.3);
@@ -4910,6 +5201,7 @@ input[type="submit"].btn.btn-mini {
4910
5201
  -webkit-border-radius: 6px;
4911
5202
  -moz-border-radius: 6px;
4912
5203
  border-radius: 6px;
5204
+ outline: none;
4913
5205
  -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
4914
5206
  -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
4915
5207
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
@@ -4927,7 +5219,7 @@ input[type="submit"].btn.btn-mini {
4927
5219
  }
4928
5220
 
4929
5221
  .modal.fade.in {
4930
- top: 50%;
5222
+ top: 10%;
4931
5223
  }
4932
5224
 
4933
5225
  .modal-header {
@@ -4945,6 +5237,7 @@ input[type="submit"].btn.btn-mini {
4945
5237
  }
4946
5238
 
4947
5239
  .modal-body {
5240
+ position: relative;
4948
5241
  max-height: 400px;
4949
5242
  padding: 15px;
4950
5243
  overflow-y: auto;
@@ -4989,12 +5282,16 @@ input[type="submit"].btn.btn-mini {
4989
5282
  margin-left: -1px;
4990
5283
  }
4991
5284
 
5285
+ .modal-footer .btn-block + .btn-block {
5286
+ margin-left: 0;
5287
+ }
5288
+
4992
5289
  .tooltip {
4993
5290
  position: absolute;
4994
5291
  z-index: 1030;
4995
5292
  display: block;
4996
- padding: 5px;
4997
5293
  font-size: 11px;
5294
+ line-height: 1.4;
4998
5295
  opacity: 0;
4999
5296
  filter: alpha(opacity=0);
5000
5297
  visibility: visible;
@@ -5006,24 +5303,28 @@ input[type="submit"].btn.btn-mini {
5006
5303
  }
5007
5304
 
5008
5305
  .tooltip.top {
5306
+ padding: 5px 0;
5009
5307
  margin-top: -3px;
5010
5308
  }
5011
5309
 
5012
5310
  .tooltip.right {
5311
+ padding: 0 5px;
5013
5312
  margin-left: 3px;
5014
5313
  }
5015
5314
 
5016
5315
  .tooltip.bottom {
5316
+ padding: 5px 0;
5017
5317
  margin-top: 3px;
5018
5318
  }
5019
5319
 
5020
5320
  .tooltip.left {
5321
+ padding: 0 5px;
5021
5322
  margin-left: -3px;
5022
5323
  }
5023
5324
 
5024
5325
  .tooltip-inner {
5025
5326
  max-width: 200px;
5026
- padding: 3px 8px;
5327
+ padding: 8px;
5027
5328
  color: #ffffff;
5028
5329
  text-align: center;
5029
5330
  text-decoration: none;
@@ -5079,8 +5380,10 @@ input[type="submit"].btn.btn-mini {
5079
5380
  left: 0;
5080
5381
  z-index: 1010;
5081
5382
  display: none;
5082
- width: 236px;
5383
+ max-width: 276px;
5083
5384
  padding: 1px;
5385
+ text-align: left;
5386
+ white-space: normal;
5084
5387
  background-color: #ffffff;
5085
5388
  border: 1px solid #ccc;
5086
5389
  border: 1px solid rgba(0, 0, 0, 0.2);
@@ -5096,7 +5399,7 @@ input[type="submit"].btn.btn-mini {
5096
5399
  }
5097
5400
 
5098
5401
  .popover.top {
5099
- margin-bottom: 10px;
5402
+ margin-top: -10px;
5100
5403
  }
5101
5404
 
5102
5405
  .popover.right {
@@ -5108,7 +5411,7 @@ input[type="submit"].btn.btn-mini {
5108
5411
  }
5109
5412
 
5110
5413
  .popover.left {
5111
- margin-right: 10px;
5414
+ margin-left: -10px;
5112
5415
  }
5113
5416
 
5114
5417
  .popover-title {
@@ -5124,89 +5427,95 @@ input[type="submit"].btn.btn-mini {
5124
5427
  border-radius: 5px 5px 0 0;
5125
5428
  }
5126
5429
 
5127
- .popover-content {
5128
- padding: 9px 14px;
5430
+ .popover-title:empty {
5431
+ display: none;
5129
5432
  }
5130
5433
 
5131
- .popover-content p,
5132
- .popover-content ul,
5133
- .popover-content ol {
5134
- margin-bottom: 0;
5434
+ .popover-content {
5435
+ padding: 9px 14px;
5135
5436
  }
5136
5437
 
5137
5438
  .popover .arrow,
5138
5439
  .popover .arrow:after {
5139
5440
  position: absolute;
5140
- display: inline-block;
5441
+ display: block;
5141
5442
  width: 0;
5142
5443
  height: 0;
5143
5444
  border-color: transparent;
5144
5445
  border-style: solid;
5145
5446
  }
5146
5447
 
5448
+ .popover .arrow {
5449
+ border-width: 11px;
5450
+ }
5451
+
5147
5452
  .popover .arrow:after {
5148
- z-index: -1;
5453
+ border-width: 10px;
5149
5454
  content: "";
5150
5455
  }
5151
5456
 
5152
5457
  .popover.top .arrow {
5153
- bottom: -10px;
5458
+ bottom: -11px;
5154
5459
  left: 50%;
5155
- margin-left: -10px;
5156
- border-top-color: #ffffff;
5157
- border-width: 10px 10px 0;
5460
+ margin-left: -11px;
5461
+ border-top-color: #999;
5462
+ border-top-color: rgba(0, 0, 0, 0.25);
5463
+ border-bottom-width: 0;
5158
5464
  }
5159
5465
 
5160
5466
  .popover.top .arrow:after {
5161
- bottom: -1px;
5162
- left: -11px;
5163
- border-top-color: rgba(0, 0, 0, 0.25);
5164
- border-width: 11px 11px 0;
5467
+ bottom: 1px;
5468
+ margin-left: -10px;
5469
+ border-top-color: #ffffff;
5470
+ border-bottom-width: 0;
5165
5471
  }
5166
5472
 
5167
5473
  .popover.right .arrow {
5168
5474
  top: 50%;
5169
- left: -10px;
5170
- margin-top: -10px;
5171
- border-right-color: #ffffff;
5172
- border-width: 10px 10px 10px 0;
5475
+ left: -11px;
5476
+ margin-top: -11px;
5477
+ border-right-color: #999;
5478
+ border-right-color: rgba(0, 0, 0, 0.25);
5479
+ border-left-width: 0;
5173
5480
  }
5174
5481
 
5175
5482
  .popover.right .arrow:after {
5176
- bottom: -11px;
5177
- left: -1px;
5178
- border-right-color: rgba(0, 0, 0, 0.25);
5179
- border-width: 11px 11px 11px 0;
5483
+ bottom: -10px;
5484
+ left: 1px;
5485
+ border-right-color: #ffffff;
5486
+ border-left-width: 0;
5180
5487
  }
5181
5488
 
5182
5489
  .popover.bottom .arrow {
5183
- top: -10px;
5490
+ top: -11px;
5184
5491
  left: 50%;
5185
- margin-left: -10px;
5186
- border-bottom-color: #ffffff;
5187
- border-width: 0 10px 10px;
5492
+ margin-left: -11px;
5493
+ border-bottom-color: #999;
5494
+ border-bottom-color: rgba(0, 0, 0, 0.25);
5495
+ border-top-width: 0;
5188
5496
  }
5189
5497
 
5190
5498
  .popover.bottom .arrow:after {
5191
- top: -1px;
5192
- left: -11px;
5193
- border-bottom-color: rgba(0, 0, 0, 0.25);
5194
- border-width: 0 11px 11px;
5499
+ top: 1px;
5500
+ margin-left: -10px;
5501
+ border-bottom-color: #ffffff;
5502
+ border-top-width: 0;
5195
5503
  }
5196
5504
 
5197
5505
  .popover.left .arrow {
5198
5506
  top: 50%;
5199
- right: -10px;
5200
- margin-top: -10px;
5201
- border-left-color: #ffffff;
5202
- border-width: 10px 0 10px 10px;
5507
+ right: -11px;
5508
+ margin-top: -11px;
5509
+ border-left-color: #999;
5510
+ border-left-color: rgba(0, 0, 0, 0.25);
5511
+ border-right-width: 0;
5203
5512
  }
5204
5513
 
5205
5514
  .popover.left .arrow:after {
5206
- right: -1px;
5207
- bottom: -11px;
5208
- border-left-color: rgba(0, 0, 0, 0.25);
5209
- border-width: 11px 0 11px 11px;
5515
+ right: 1px;
5516
+ bottom: -10px;
5517
+ border-left-color: #ffffff;
5518
+ border-right-width: 0;
5210
5519
  }
5211
5520
 
5212
5521
  .thumbnails {
@@ -5253,7 +5562,8 @@ input[type="submit"].btn.btn-mini {
5253
5562
  transition: all 0.2s ease-in-out;
5254
5563
  }
5255
5564
 
5256
- a.thumbnail:hover {
5565
+ a.thumbnail:hover,
5566
+ a.thumbnail:focus {
5257
5567
  border-color: #0088cc;
5258
5568
  -webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
5259
5569
  -moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
@@ -5272,8 +5582,47 @@ a.thumbnail:hover {
5272
5582
  color: #555555;
5273
5583
  }
5274
5584
 
5585
+ .media,
5586
+ .media-body {
5587
+ overflow: hidden;
5588
+ *overflow: visible;
5589
+ zoom: 1;
5590
+ }
5591
+
5592
+ .media,
5593
+ .media .media {
5594
+ margin-top: 15px;
5595
+ }
5596
+
5597
+ .media:first-child {
5598
+ margin-top: 0;
5599
+ }
5600
+
5601
+ .media-object {
5602
+ display: block;
5603
+ }
5604
+
5605
+ .media-heading {
5606
+ margin: 0 0 5px;
5607
+ }
5608
+
5609
+ .media > .pull-left {
5610
+ margin-right: 10px;
5611
+ }
5612
+
5613
+ .media > .pull-right {
5614
+ margin-left: 10px;
5615
+ }
5616
+
5617
+ .media-list {
5618
+ margin-left: 0;
5619
+ list-style: none;
5620
+ }
5621
+
5275
5622
  .label,
5276
5623
  .badge {
5624
+ display: inline-block;
5625
+ padding: 2px 4px;
5277
5626
  font-size: 11.844px;
5278
5627
  font-weight: bold;
5279
5628
  line-height: 14px;
@@ -5285,21 +5634,28 @@ a.thumbnail:hover {
5285
5634
  }
5286
5635
 
5287
5636
  .label {
5288
- padding: 1px 4px 2px;
5289
5637
  -webkit-border-radius: 3px;
5290
5638
  -moz-border-radius: 3px;
5291
5639
  border-radius: 3px;
5292
5640
  }
5293
5641
 
5294
5642
  .badge {
5295
- padding: 1px 9px 2px;
5643
+ padding-right: 9px;
5644
+ padding-left: 9px;
5296
5645
  -webkit-border-radius: 9px;
5297
5646
  -moz-border-radius: 9px;
5298
5647
  border-radius: 9px;
5299
5648
  }
5300
5649
 
5650
+ .label:empty,
5651
+ .badge:empty {
5652
+ display: none;
5653
+ }
5654
+
5301
5655
  a.label:hover,
5302
- a.badge:hover {
5656
+ a.label:focus,
5657
+ a.badge:hover,
5658
+ a.badge:focus {
5303
5659
  color: #ffffff;
5304
5660
  text-decoration: none;
5305
5661
  cursor: pointer;
@@ -5425,7 +5781,7 @@ a.badge:hover {
5425
5781
  -webkit-border-radius: 4px;
5426
5782
  -moz-border-radius: 4px;
5427
5783
  border-radius: 4px;
5428
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);
5784
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);
5429
5785
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
5430
5786
  -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
5431
5787
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
@@ -5446,7 +5802,7 @@ a.badge:hover {
5446
5802
  background-image: -o-linear-gradient(top, #149bdf, #0480be);
5447
5803
  background-image: linear-gradient(to bottom, #149bdf, #0480be);
5448
5804
  background-repeat: repeat-x;
5449
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);
5805
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);
5450
5806
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
5451
5807
  -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
5452
5808
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
@@ -5495,7 +5851,7 @@ a.badge:hover {
5495
5851
  background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
5496
5852
  background-image: linear-gradient(to bottom, #ee5f5b, #c43c35);
5497
5853
  background-repeat: repeat-x;
5498
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0);
5854
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0);
5499
5855
  }
5500
5856
 
5501
5857
  .progress-danger.progress-striped .bar,
@@ -5517,7 +5873,7 @@ a.badge:hover {
5517
5873
  background-image: -o-linear-gradient(top, #62c462, #57a957);
5518
5874
  background-image: linear-gradient(to bottom, #62c462, #57a957);
5519
5875
  background-repeat: repeat-x;
5520
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0);
5876
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0);
5521
5877
  }
5522
5878
 
5523
5879
  .progress-success.progress-striped .bar,
@@ -5539,7 +5895,7 @@ a.badge:hover {
5539
5895
  background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
5540
5896
  background-image: linear-gradient(to bottom, #5bc0de, #339bb9);
5541
5897
  background-repeat: repeat-x;
5542
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0);
5898
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0);
5543
5899
  }
5544
5900
 
5545
5901
  .progress-info.progress-striped .bar,
@@ -5561,7 +5917,7 @@ a.badge:hover {
5561
5917
  background-image: -o-linear-gradient(top, #fbb450, #f89406);
5562
5918
  background-image: linear-gradient(to bottom, #fbb450, #f89406);
5563
5919
  background-repeat: repeat-x;
5564
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);
5920
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);
5565
5921
  }
5566
5922
 
5567
5923
  .progress-warning.progress-striped .bar,
@@ -5616,7 +5972,7 @@ a.badge:hover {
5616
5972
  overflow: hidden;
5617
5973
  }
5618
5974
 
5619
- .carousel .item {
5975
+ .carousel-inner > .item {
5620
5976
  position: relative;
5621
5977
  display: none;
5622
5978
  -webkit-transition: 0.6s ease-in-out left;
@@ -5625,46 +5981,47 @@ a.badge:hover {
5625
5981
  transition: 0.6s ease-in-out left;
5626
5982
  }
5627
5983
 
5628
- .carousel .item > img {
5984
+ .carousel-inner > .item > img,
5985
+ .carousel-inner > .item > a > img {
5629
5986
  display: block;
5630
5987
  line-height: 1;
5631
5988
  }
5632
5989
 
5633
- .carousel .active,
5634
- .carousel .next,
5635
- .carousel .prev {
5990
+ .carousel-inner > .active,
5991
+ .carousel-inner > .next,
5992
+ .carousel-inner > .prev {
5636
5993
  display: block;
5637
5994
  }
5638
5995
 
5639
- .carousel .active {
5996
+ .carousel-inner > .active {
5640
5997
  left: 0;
5641
5998
  }
5642
5999
 
5643
- .carousel .next,
5644
- .carousel .prev {
6000
+ .carousel-inner > .next,
6001
+ .carousel-inner > .prev {
5645
6002
  position: absolute;
5646
6003
  top: 0;
5647
6004
  width: 100%;
5648
6005
  }
5649
6006
 
5650
- .carousel .next {
6007
+ .carousel-inner > .next {
5651
6008
  left: 100%;
5652
6009
  }
5653
6010
 
5654
- .carousel .prev {
6011
+ .carousel-inner > .prev {
5655
6012
  left: -100%;
5656
6013
  }
5657
6014
 
5658
- .carousel .next.left,
5659
- .carousel .prev.right {
6015
+ .carousel-inner > .next.left,
6016
+ .carousel-inner > .prev.right {
5660
6017
  left: 0;
5661
6018
  }
5662
6019
 
5663
- .carousel .active.left {
6020
+ .carousel-inner > .active.left {
5664
6021
  left: -100%;
5665
6022
  }
5666
6023
 
5667
- .carousel .active.right {
6024
+ .carousel-inner > .active.right {
5668
6025
  left: 100%;
5669
6026
  }
5670
6027
 
@@ -5694,13 +6051,39 @@ a.badge:hover {
5694
6051
  left: auto;
5695
6052
  }
5696
6053
 
5697
- .carousel-control:hover {
6054
+ .carousel-control:hover,
6055
+ .carousel-control:focus {
5698
6056
  color: #ffffff;
5699
6057
  text-decoration: none;
5700
6058
  opacity: 0.9;
5701
6059
  filter: alpha(opacity=90);
5702
6060
  }
5703
6061
 
6062
+ .carousel-indicators {
6063
+ position: absolute;
6064
+ top: 15px;
6065
+ right: 15px;
6066
+ z-index: 5;
6067
+ margin: 0;
6068
+ list-style: none;
6069
+ }
6070
+
6071
+ .carousel-indicators li {
6072
+ display: block;
6073
+ float: left;
6074
+ width: 10px;
6075
+ height: 10px;
6076
+ margin-left: 5px;
6077
+ text-indent: -999px;
6078
+ background-color: #ccc;
6079
+ background-color: rgba(255, 255, 255, 0.25);
6080
+ border-radius: 5px;
6081
+ }
6082
+
6083
+ .carousel-indicators .active {
6084
+ background-color: #fff;
6085
+ }
6086
+
5704
6087
  .carousel-caption {
5705
6088
  position: absolute;
5706
6089
  right: 0;
@@ -5728,6 +6111,10 @@ a.badge:hover {
5728
6111
  .hero-unit {
5729
6112
  padding: 60px;
5730
6113
  margin-bottom: 30px;
6114
+ font-size: 18px;
6115
+ font-weight: 200;
6116
+ line-height: 30px;
6117
+ color: inherit;
5731
6118
  background-color: #eeeeee;
5732
6119
  -webkit-border-radius: 6px;
5733
6120
  -moz-border-radius: 6px;
@@ -5742,11 +6129,8 @@ a.badge:hover {
5742
6129
  color: inherit;
5743
6130
  }
5744
6131
 
5745
- .hero-unit p {
5746
- font-size: 18px;
5747
- font-weight: 200;
6132
+ .hero-unit li {
5748
6133
  line-height: 30px;
5749
- color: inherit;
5750
6134
  }
5751
6135
 
5752
6136
  .pull-right {