twitter-bootstrap-ruby 2.1.1.0 → 2.3.1.0

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -1,3 +1,7 @@
1
+ <a href="http://getbootstrap.com">
2
+ <img src="http://twitter.github.com/bootstrap/assets/img/bootstrap-docs-readme.png" width="100px">
3
+ </a>
4
+
1
5
  # Twitter Bootstrap for Espresso, and Sinatra Asset Pipeline
2
6
  Bootstrap is a toolkit from Twitter designed to kickstart development of webapps and sites. It includes base CSS and HTML for typography, forms, buttons, tables, grids, navigation, and more.
3
7
 
@@ -6,21 +10,25 @@ twitter-bootstrap-ruby project integrates into original Twitter Bootstrap some r
6
10
  [Original Twitter Bootstrap](http://twitter.github.com/bootstrap) [![Build Status](https://secure.travis-ci.org/twitter/bootstrap.png)](http://travis-ci.org/twitter/bootstrap)
7
11
  =================
8
12
 
9
- Bootstrap is a sleek, intuitive, and powerful front-end framework for faster and easier web development, created and maintained by [Mark Otto](http://twitter.com/mdo) and [Jacob Thornton](http://twitter.com/fat) at Twitter.
13
+ # [Bootstrap v2.3.1](http://twitter.github.com/bootstrap) [![Build Status](https://secure.travis-ci.org/twitter/bootstrap.png)](http://travis-ci.org/twitter/bootstrap)
14
+
15
+ Bootstrap is a sleek, intuitive, and powerful front-end framework for faster and easier web development, created and maintained by [Mark Otto](http://twitter.com/mdo) and [Jacob Thornton](http://twitter.com/fat).
16
+
17
+ To get started, checkout [http://getbootstrap.com](http://getbootstrap.com)!
10
18
 
11
- To get started, checkout http://getbootstrap.com!
12
19
 
13
20
 
21
+ ## Quick start
14
22
 
15
- Quick start
16
- -----------
23
+ Three quick start options are available:
17
24
 
18
- Clone the repo, `git clone git://github.com/twitter/bootstrap.git`, or [download the latest release](https://github.com/twitter/bootstrap/zipball/master).
25
+ * [Download the latest release](https://github.com/twitter/bootstrap/zipball/master).
26
+ * Clone the repo: `git clone git://github.com/twitter/bootstrap.git`.
27
+ * Install with Twitter's [Bower](http://twitter.github.com/bower): `bower install bootstrap`.
19
28
 
20
29
 
21
30
 
22
- Versioning
23
- ----------
31
+ ## Versioning
24
32
 
25
33
  For transparency and insight into our release cycle, and for striving to maintain backward compatibility, Bootstrap will be maintained under the Semantic Versioning guidelines as much as possible.
26
34
 
@@ -34,100 +42,73 @@ And constructed with the following guidelines:
34
42
  * New additions without breaking backward compatibility bumps the minor (and resets the patch)
35
43
  * Bug fixes and misc changes bumps the patch
36
44
 
37
- For more information on SemVer, please visit http://semver.org/.
38
-
39
-
40
-
41
- Bug tracker
42
- -----------
43
-
44
- Have a bug? Please create an issue here on GitHub that conforms with [necolas's guidelines](https://github.com/necolas/issue-guidelines).
45
-
46
- https://github.com/twitter/bootstrap/issues
47
-
48
-
49
-
50
- Twitter account
51
- ---------------
45
+ For more information on SemVer, please visit [http://semver.org/](http://semver.org/).
52
46
 
53
- Keep up to date on announcements and more by following Bootstrap on Twitter, [@TwBootstrap](http://twitter.com/TwBootstrap).
54
47
 
55
48
 
49
+ ## Bug tracker
56
50
 
57
- Blog
58
- ----
51
+ Have a bug or a feature request? [Please open a new issue](https://github.com/twitter/bootstrap/issues). Before opening any issue, please search for existing issues and read the [Issue Guidelines](https://github.com/necolas/issue-guidelines), written by [Nicolas Gallagher](https://github.com/necolas/).
59
52
 
60
- Read more detailed announcements, discussions, and more on [The Official Twitter Bootstrap Blog](http://blog.getbootstrap.com).
61
53
 
62
54
 
55
+ ## Community
63
56
 
64
- Mailing list
65
- ------------
57
+ Keep track of development and community news.
66
58
 
67
- Have a question? Ask on our mailing list!
59
+ * Follow [@twbootstrap on Twitter](http://twitter.com/twbootstrap).
60
+ * Read and subscribe to the [The Official Twitter Bootstrap Blog](http://blog.getbootstrap.com).
61
+ * Have a question that's not a feature request or bug report? [Ask on the mailing list.](http://groups.google.com/group/twitter-bootstrap)
62
+ * Chat with fellow Bootstrappers in IRC. On the `irc.freenode.net` server, in the `##twitter-bootstrap` channel.
68
63
 
69
- twitter-bootstrap@googlegroups.com
70
64
 
71
- http://groups.google.com/group/twitter-bootstrap
72
65
 
66
+ ## Compiling CSS and JavaScript
73
67
 
74
-
75
- IRC
76
- ---
77
-
78
- Server: irc.freenode.net
79
-
80
- Channel: ##twitter-bootstrap (the double ## is not a typo)
81
-
82
-
83
-
84
- Developers
85
- ----------
86
-
87
- We have included a makefile with convenience methods for working with the Bootstrap library.
88
-
89
- + **dependencies**
90
- Our makefile depends on you having recess, connect, uglify.js, and jshint installed. To install, just run the following command in npm:
68
+ Bootstrap includes a [makefile](Makefile) with convenient methods for working with the framework. Before getting started, be sure to install [the necessary local dependencies](package.json):
91
69
 
92
70
  ```
93
- $ npm install recess connect uglify-js jshint -g
71
+ $ npm install
94
72
  ```
95
73
 
96
- + **build** - `make`
97
- Runs the recess compiler to rebuild the `/less` files and compiles the docs pages. Requires recess and uglify-js. <a href="http://twitter.github.com/bootstrap/less.html#compiling">Read more in our docs &raquo;</a>
74
+ When completed, you'll be able to run the various make commands provided:
75
+
76
+ #### build - `make`
77
+ Runs the recess compiler to rebuild the `/less` files and compiles the docs. Requires recess and uglify-js.
98
78
 
99
- + **test** - `make test`
79
+ #### test - `make test`
100
80
  Runs jshint and qunit tests headlessly in [phantomjs](http://code.google.com/p/phantomjs/) (used for ci). Depends on having phantomjs installed.
101
81
 
102
- + **watch** - `make watch`
82
+ #### watch - `make watch`
103
83
  This is a convenience method for watching just Less files and automatically building them whenever you save. Requires the Watchr gem.
104
84
 
85
+ Should you encounter problems with installing dependencies or running the makefile commands, be sure to first uninstall any previous versions (global and local) you may have installed, and then rerun `npm install`.
86
+
87
+
105
88
 
89
+ ## Contributing
106
90
 
107
- Contributing
108
- ------------
91
+ Please submit all pull requests against *-wip branches. If your pull request contains JavaScript patches or features, you must include relevant unit tests. All HTML and CSS should conform to the [Code Guide](http://github.com/mdo/code-guide), maintained by [Mark Otto](http://github.com/mdo).
109
92
 
110
- Please submit all pull requests against *-wip branches. If your unit test contains javascript patches or features, you must include relevant unit tests. Thanks!
93
+ Thanks!
111
94
 
112
95
 
113
96
 
114
- Authors
115
- -------
97
+ ## Authors
116
98
 
117
99
  **Mark Otto**
118
100
 
119
- + http://twitter.com/mdo
120
- + http://github.com/markdotto
101
+ + [http://twitter.com/mdo](http://twitter.com/mdo)
102
+ + [http://github.com/mdo](http://github.com/mdo)
121
103
 
122
104
  **Jacob Thornton**
123
105
 
124
- + http://twitter.com/fat
125
- + http://github.com/fat
106
+ + [http://twitter.com/fat](http://twitter.com/fat)
107
+ + [http://github.com/fat](http://github.com/fat)
126
108
 
127
109
 
128
110
 
129
- Copyright and license
130
- ---------------------
111
+ ## Copyright and license
131
112
 
132
113
  Copyright 2012 Twitter, Inc.
133
114
 
@@ -135,7 +116,7 @@ Licensed under the Apache License, Version 2.0 (the "License");
135
116
  you may not use this work except in compliance with the License.
136
117
  You may obtain a copy of the License in the LICENSE file, or at:
137
118
 
138
- http://www.apache.org/licenses/LICENSE-2.0
119
+ [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)
139
120
 
140
121
  Unless required by applicable law or agreed to in writing, software
141
122
  distributed under the License is distributed on an "AS IS" BASIS,
data/Rakefile CHANGED
@@ -1,39 +1,44 @@
1
1
  #!/usr/bin/env rake
2
- require 'bundler'
3
- require 'less'
2
+
3
+ begin
4
+ require "bundler/gem_tasks"
5
+ rescue Exception
6
+ sh 'gem install bundler --version "~> 1.3.1" --no-rdoc --no-ri'
7
+ end
8
+
4
9
  Bundler::GemHelper.install_tasks
5
10
 
6
- desc "Prepare bundle environment"
7
- task :pre do
8
- sh 'bundle install'
11
+ desc 'Update dependencies'
12
+ task :up do
13
+ sh 'bundle update'
9
14
  end
10
15
 
11
16
  desc 'Make css'
12
17
  task :css do
13
- parser = Less::Parser.new :paths => ['less']
14
- tree = parser.parse(IO.read('less/bootstrap.less'))
15
- ::File.open("css/bootstrap.css",'w') do |f|
18
+ require 'less'
19
+ parser = Less::Parser.new :paths => ['less']
20
+ tree = parser.parse(IO.read('less/bootstrap.less'))
21
+ ::File.open("css/bootstrap.css",'w') do |f|
16
22
  f.puts tree.to_css
17
- end
18
- ::File.open("css/bootstrap.min.css",'w') do |f|
23
+ end
24
+ ::File.open("css/bootstrap.min.css",'w') do |f|
19
25
  f.puts tree.to_css(:compress => true)
20
- end
26
+ end
21
27
  end
22
28
 
23
29
  desc "Build the gem"
24
30
  task :build do
25
- sh 'gem build *.gemspec'
31
+ sh 'gem build twitter-bootstrap-ruby.gemspec'
26
32
  end
27
33
 
28
34
  desc "Bundle the gem"
29
35
  task :bundle do
30
- sh 'gem install *.gem'
31
- sh 'rm *.gem'
36
+ require File.expand_path( '../lib/twitter/bootstrap/version', __FILE__ )
37
+ sh "gem install twitter-bootstrap-ruby-#{Twitter::Bootstrap::VERSION}.gem"
32
38
  end
33
39
 
34
40
  task(:default).clear
35
- task :css => :pre
36
- task :build => [:pre, :css]
41
+ task :build => :css
37
42
  task :bundle => :build
38
43
  task :release => :build
39
44
  task :default => :bundle
@@ -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
@@ -7,6 +7,33 @@
7
7
  *
8
8
  * Designed and built with all the love in the world @twitter by @mdo and @fat.
9
9
  */
10
+ .clearfix {
11
+ *zoom: 1;
12
+ }
13
+ .clearfix:before,
14
+ .clearfix:after {
15
+ display: table;
16
+ content: "";
17
+ line-height: 0;
18
+ }
19
+ .clearfix:after {
20
+ clear: both;
21
+ }
22
+ .hide-text {
23
+ font: 0/0 a;
24
+ color: transparent;
25
+ text-shadow: none;
26
+ background-color: transparent;
27
+ border: 0;
28
+ }
29
+ .input-block-level {
30
+ display: block;
31
+ width: 100%;
32
+ min-height: 30px;
33
+ -webkit-box-sizing: border-box;
34
+ -moz-box-sizing: border-box;
35
+ box-sizing: border-box;
36
+ }
10
37
  article,
11
38
  aside,
12
39
  details,
@@ -72,7 +99,8 @@ img {
72
99
  border: 0;
73
100
  -ms-interpolation-mode: bicubic;
74
101
  }
75
- #map_canvas img {
102
+ #map_canvas img,
103
+ .google-maps img {
76
104
  max-width: none;
77
105
  }
78
106
  button,
@@ -94,11 +122,21 @@ input::-moz-focus-inner {
94
122
  border: 0;
95
123
  }
96
124
  button,
97
- input[type="button"],
125
+ html input[type="button"],
98
126
  input[type="reset"],
99
127
  input[type="submit"] {
100
- cursor: pointer;
101
128
  -webkit-appearance: button;
129
+ cursor: pointer;
130
+ }
131
+ label,
132
+ select,
133
+ button,
134
+ input[type="button"],
135
+ input[type="reset"],
136
+ input[type="submit"],
137
+ input[type="radio"],
138
+ input[type="checkbox"] {
139
+ cursor: pointer;
102
140
  }
103
141
  input[type="search"] {
104
142
  -webkit-box-sizing: content-box;
@@ -114,32 +152,56 @@ textarea {
114
152
  overflow: auto;
115
153
  vertical-align: top;
116
154
  }
117
- .clearfix {
118
- *zoom: 1;
119
- }
120
- .clearfix:before,
121
- .clearfix:after {
122
- display: table;
123
- content: "";
124
- line-height: 0;
125
- }
126
- .clearfix:after {
127
- clear: both;
128
- }
129
- .hide-text {
130
- font: 0/0 a;
131
- color: transparent;
132
- text-shadow: none;
133
- background-color: transparent;
134
- border: 0;
135
- }
136
- .input-block-level {
137
- display: block;
138
- width: 100%;
139
- min-height: 30px;
140
- -webkit-box-sizing: border-box;
141
- -moz-box-sizing: border-box;
142
- box-sizing: border-box;
155
+ @media print {
156
+ * {
157
+ text-shadow: none !important;
158
+ color: #000 !important;
159
+ background: transparent !important;
160
+ box-shadow: none !important;
161
+ }
162
+ a,
163
+ a:visited {
164
+ text-decoration: underline;
165
+ }
166
+ a[href]:after {
167
+ content: " (" attr(href) ")";
168
+ }
169
+ abbr[title]:after {
170
+ content: " (" attr(title) ")";
171
+ }
172
+ .ir a:after,
173
+ a[href^="javascript:"]:after,
174
+ a[href^="#"]:after {
175
+ content: "";
176
+ }
177
+ pre,
178
+ blockquote {
179
+ border: 1px solid #999;
180
+ page-break-inside: avoid;
181
+ }
182
+ thead {
183
+ display: table-header-group;
184
+ }
185
+ tr,
186
+ img {
187
+ page-break-inside: avoid;
188
+ }
189
+ img {
190
+ max-width: 100% !important;
191
+ }
192
+ @page {
193
+ margin: 0.5cm;
194
+ }
195
+ p,
196
+ h2,
197
+ h3 {
198
+ orphans: 3;
199
+ widows: 3;
200
+ }
201
+ h2,
202
+ h3 {
203
+ page-break-after: avoid;
204
+ }
143
205
  }
144
206
  body {
145
207
  margin: 0;
@@ -153,7 +215,8 @@ a {
153
215
  color: #0088cc;
154
216
  text-decoration: none;
155
217
  }
156
- a:hover {
218
+ a:hover,
219
+ a:focus {
157
220
  color: #005580;
158
221
  text-decoration: underline;
159
222
  }
@@ -299,6 +362,9 @@ a:hover {
299
362
  .row-fluid [class*="span"]:first-child {
300
363
  margin-left: 0;
301
364
  }
365
+ .row-fluid .controls-row [class*="span"] + [class*="span"] {
366
+ margin-left: 2.127659574468085%;
367
+ }
302
368
  .row-fluid .span12 {
303
369
  width: 100%;
304
370
  *width: 99.94680851063829%;
@@ -503,18 +569,47 @@ cite {
503
569
  .muted {
504
570
  color: #999999;
505
571
  }
572
+ a.muted:hover,
573
+ a.muted:focus {
574
+ color: #808080;
575
+ }
506
576
  .text-warning {
507
577
  color: #c09853;
508
578
  }
579
+ a.text-warning:hover,
580
+ a.text-warning:focus {
581
+ color: #a47e3c;
582
+ }
509
583
  .text-error {
510
584
  color: #b94a48;
511
585
  }
586
+ a.text-error:hover,
587
+ a.text-error:focus {
588
+ color: #953b39;
589
+ }
512
590
  .text-info {
513
591
  color: #3a87ad;
514
592
  }
593
+ a.text-info:hover,
594
+ a.text-info:focus {
595
+ color: #2d6987;
596
+ }
515
597
  .text-success {
516
598
  color: #468847;
517
599
  }
600
+ a.text-success:hover,
601
+ a.text-success:focus {
602
+ color: #356635;
603
+ }
604
+ .text-left {
605
+ text-align: left;
606
+ }
607
+ .text-right {
608
+ text-align: right;
609
+ }
610
+ .text-center {
611
+ text-align: center;
612
+ }
518
613
  h1,
519
614
  h2,
520
615
  h3,
@@ -524,7 +619,7 @@ h6 {
524
619
  margin: 10px 0;
525
620
  font-family: inherit;
526
621
  font-weight: bold;
527
- line-height: 1;
622
+ line-height: 20px;
528
623
  color: inherit;
529
624
  text-rendering: optimizelegibility;
530
625
  }
@@ -538,35 +633,34 @@ h6 small {
538
633
  line-height: 1;
539
634
  color: #999999;
540
635
  }
541
- h1 {
542
- font-size: 36px;
636
+ h1,
637
+ h2,
638
+ h3 {
543
639
  line-height: 40px;
544
640
  }
641
+ h1 {
642
+ font-size: 38.5px;
643
+ }
545
644
  h2 {
546
- font-size: 30px;
547
- line-height: 40px;
645
+ font-size: 31.5px;
548
646
  }
549
647
  h3 {
550
- font-size: 24px;
551
- line-height: 40px;
648
+ font-size: 24.5px;
552
649
  }
553
650
  h4 {
554
- font-size: 18px;
555
- line-height: 20px;
651
+ font-size: 17.5px;
556
652
  }
557
653
  h5 {
558
654
  font-size: 14px;
559
- line-height: 20px;
560
655
  }
561
656
  h6 {
562
- font-size: 12px;
563
- line-height: 20px;
657
+ font-size: 11.9px;
564
658
  }
565
659
  h1 small {
566
- font-size: 24px;
660
+ font-size: 24.5px;
567
661
  }
568
662
  h2 small {
569
- font-size: 18px;
663
+ font-size: 17.5px;
570
664
  }
571
665
  h3 small {
572
666
  font-size: 14px;
@@ -598,6 +692,21 @@ ol.unstyled {
598
692
  margin-left: 0;
599
693
  list-style: none;
600
694
  }
695
+ ul.inline,
696
+ ol.inline {
697
+ margin-left: 0;
698
+ list-style: none;
699
+ }
700
+ ul.inline > li,
701
+ ol.inline > li {
702
+ display: inline-block;
703
+ *display: inline;
704
+ /* IE7 inline-block hack */
705
+
706
+ *zoom: 1;
707
+ padding-left: 5px;
708
+ padding-right: 5px;
709
+ }
601
710
  dl {
602
711
  margin-bottom: 20px;
603
712
  }
@@ -641,7 +750,8 @@ hr {
641
750
  border-top: 1px solid #eeeeee;
642
751
  border-bottom: 1px solid #ffffff;
643
752
  }
644
- abbr[title] {
753
+ abbr[title],
754
+ abbr[data-original-title] {
645
755
  cursor: help;
646
756
  border-bottom: 1px dotted #999999;
647
757
  }
@@ -656,9 +766,9 @@ blockquote {
656
766
  }
657
767
  blockquote p {
658
768
  margin-bottom: 0;
659
- font-size: 16px;
769
+ font-size: 17.5px;
660
770
  font-weight: 300;
661
- line-height: 25px;
771
+ line-height: 1.25;
662
772
  }
663
773
  blockquote small {
664
774
  display: block;
@@ -712,6 +822,7 @@ code {
712
822
  color: #d14;
713
823
  background-color: #f7f7f9;
714
824
  border: 1px solid #e1e1e8;
825
+ white-space: nowrap;
715
826
  }
716
827
  pre {
717
828
  display: block;
@@ -736,6 +847,8 @@ pre.prettyprint {
736
847
  pre code {
737
848
  padding: 0;
738
849
  color: inherit;
850
+ white-space: pre;
851
+ white-space: pre-wrap;
739
852
  background-color: transparent;
740
853
  border: 0;
741
854
  }
@@ -805,13 +918,14 @@ input[type="color"],
805
918
  display: inline-block;
806
919
  height: 20px;
807
920
  padding: 4px 6px;
808
- margin-bottom: 9px;
921
+ margin-bottom: 10px;
809
922
  font-size: 14px;
810
923
  line-height: 20px;
811
924
  color: #555555;
812
- -webkit-border-radius: 3px;
813
- -moz-border-radius: 3px;
814
- border-radius: 3px;
925
+ -webkit-border-radius: 4px;
926
+ -moz-border-radius: 4px;
927
+ border-radius: 4px;
928
+ vertical-align: middle;
815
929
  }
816
930
  input,
817
931
  textarea,
@@ -868,9 +982,9 @@ input[type="color"]:focus,
868
982
  outline: thin dotted \9;
869
983
  /* IE6-9 */
870
984
 
871
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
872
- -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
873
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
985
+ -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
986
+ -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
987
+ box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
874
988
  }
875
989
  input[type="radio"],
876
990
  input[type="checkbox"] {
@@ -882,7 +996,6 @@ input[type="checkbox"] {
882
996
  /* IE8-9 */
883
997
 
884
998
  line-height: normal;
885
- cursor: pointer;
886
999
  }
887
1000
  input[type="file"],
888
1001
  input[type="image"],
@@ -952,13 +1065,13 @@ textarea::-webkit-input-placeholder {
952
1065
  }
953
1066
  .radio,
954
1067
  .checkbox {
955
- min-height: 18px;
956
- padding-left: 18px;
1068
+ min-height: 20px;
1069
+ padding-left: 20px;
957
1070
  }
958
1071
  .radio input[type="radio"],
959
1072
  .checkbox input[type="checkbox"] {
960
1073
  float: left;
961
- margin-left: -18px;
1074
+ margin-left: -20px;
962
1075
  }
963
1076
  .controls > .radio:first-child,
964
1077
  .controls > .checkbox:first-child {
@@ -1024,40 +1137,64 @@ textarea,
1024
1137
  .controls-row [class*="span"] + [class*="span"] {
1025
1138
  margin-left: 20px;
1026
1139
  }
1027
- input.span12, textarea.span12, .uneditable-input.span12 {
1140
+ input.span12,
1141
+ textarea.span12,
1142
+ .uneditable-input.span12 {
1028
1143
  width: 926px;
1029
1144
  }
1030
- input.span11, textarea.span11, .uneditable-input.span11 {
1145
+ input.span11,
1146
+ textarea.span11,
1147
+ .uneditable-input.span11 {
1031
1148
  width: 846px;
1032
1149
  }
1033
- input.span10, textarea.span10, .uneditable-input.span10 {
1150
+ input.span10,
1151
+ textarea.span10,
1152
+ .uneditable-input.span10 {
1034
1153
  width: 766px;
1035
1154
  }
1036
- input.span9, textarea.span9, .uneditable-input.span9 {
1155
+ input.span9,
1156
+ textarea.span9,
1157
+ .uneditable-input.span9 {
1037
1158
  width: 686px;
1038
1159
  }
1039
- input.span8, textarea.span8, .uneditable-input.span8 {
1160
+ input.span8,
1161
+ textarea.span8,
1162
+ .uneditable-input.span8 {
1040
1163
  width: 606px;
1041
1164
  }
1042
- input.span7, textarea.span7, .uneditable-input.span7 {
1165
+ input.span7,
1166
+ textarea.span7,
1167
+ .uneditable-input.span7 {
1043
1168
  width: 526px;
1044
1169
  }
1045
- input.span6, textarea.span6, .uneditable-input.span6 {
1170
+ input.span6,
1171
+ textarea.span6,
1172
+ .uneditable-input.span6 {
1046
1173
  width: 446px;
1047
1174
  }
1048
- input.span5, textarea.span5, .uneditable-input.span5 {
1175
+ input.span5,
1176
+ textarea.span5,
1177
+ .uneditable-input.span5 {
1049
1178
  width: 366px;
1050
1179
  }
1051
- input.span4, textarea.span4, .uneditable-input.span4 {
1180
+ input.span4,
1181
+ textarea.span4,
1182
+ .uneditable-input.span4 {
1052
1183
  width: 286px;
1053
1184
  }
1054
- input.span3, textarea.span3, .uneditable-input.span3 {
1185
+ input.span3,
1186
+ textarea.span3,
1187
+ .uneditable-input.span3 {
1055
1188
  width: 206px;
1056
1189
  }
1057
- input.span2, textarea.span2, .uneditable-input.span2 {
1190
+ input.span2,
1191
+ textarea.span2,
1192
+ .uneditable-input.span2 {
1058
1193
  width: 126px;
1059
1194
  }
1060
- input.span1, textarea.span1, .uneditable-input.span1 {
1195
+ input.span1,
1196
+ textarea.span1,
1197
+ .uneditable-input.span1 {
1061
1198
  width: 46px;
1062
1199
  }
1063
1200
  .controls-row {
@@ -1072,9 +1209,14 @@ input.span1, textarea.span1, .uneditable-input.span1 {
1072
1209
  .controls-row:after {
1073
1210
  clear: both;
1074
1211
  }
1075
- .controls-row [class*="span"] {
1212
+ .controls-row [class*="span"],
1213
+ .row-fluid .controls-row [class*="span"] {
1076
1214
  float: left;
1077
1215
  }
1216
+ .controls-row .checkbox[class*="span"],
1217
+ .controls-row .radio[class*="span"] {
1218
+ padding-top: 5px;
1219
+ }
1078
1220
  input[disabled],
1079
1221
  select[disabled],
1080
1222
  textarea[disabled],
@@ -1090,7 +1232,7 @@ input[type="radio"][readonly],
1090
1232
  input[type="checkbox"][readonly] {
1091
1233
  background-color: transparent;
1092
1234
  }
1093
- .control-group.warning > label,
1235
+ .control-group.warning .control-label,
1094
1236
  .control-group.warning .help-block,
1095
1237
  .control-group.warning .help-inline {
1096
1238
  color: #c09853;
@@ -1124,7 +1266,7 @@ input[type="checkbox"][readonly] {
1124
1266
  background-color: #fcf8e3;
1125
1267
  border-color: #c09853;
1126
1268
  }
1127
- .control-group.error > label,
1269
+ .control-group.error .control-label,
1128
1270
  .control-group.error .help-block,
1129
1271
  .control-group.error .help-inline {
1130
1272
  color: #b94a48;
@@ -1158,7 +1300,7 @@ input[type="checkbox"][readonly] {
1158
1300
  background-color: #f2dede;
1159
1301
  border-color: #b94a48;
1160
1302
  }
1161
- .control-group.success > label,
1303
+ .control-group.success .control-label,
1162
1304
  .control-group.success .help-block,
1163
1305
  .control-group.success .help-inline {
1164
1306
  color: #468847;
@@ -1192,7 +1334,7 @@ input[type="checkbox"][readonly] {
1192
1334
  background-color: #dff0d8;
1193
1335
  border-color: #468847;
1194
1336
  }
1195
- .control-group.info > label,
1337
+ .control-group.info .control-label,
1196
1338
  .control-group.info .help-block,
1197
1339
  .control-group.info .help-inline {
1198
1340
  color: #3a87ad;
@@ -1226,15 +1368,15 @@ input[type="checkbox"][readonly] {
1226
1368
  background-color: #d9edf7;
1227
1369
  border-color: #3a87ad;
1228
1370
  }
1229
- input:focus:required:invalid,
1230
- textarea:focus:required:invalid,
1231
- select:focus:required:invalid {
1371
+ input:focus:invalid,
1372
+ textarea:focus:invalid,
1373
+ select:focus:invalid {
1232
1374
  color: #b94a48;
1233
1375
  border-color: #ee5f5b;
1234
1376
  }
1235
- input:focus:required:invalid:focus,
1236
- textarea:focus:required:invalid:focus,
1237
- select:focus:required:invalid:focus {
1377
+ input:focus:invalid:focus,
1378
+ textarea:focus:invalid:focus,
1379
+ select:focus:invalid:focus {
1238
1380
  border-color: #e9322d;
1239
1381
  -webkit-box-shadow: 0 0 6px #f8b9b7;
1240
1382
  -moz-box-shadow: 0 0 6px #f8b9b7;
@@ -1276,7 +1418,9 @@ select:focus:required:invalid:focus {
1276
1418
  }
1277
1419
  .input-append,
1278
1420
  .input-prepend {
1279
- margin-bottom: 5px;
1421
+ display: inline-block;
1422
+ margin-bottom: 10px;
1423
+ vertical-align: middle;
1280
1424
  font-size: 0;
1281
1425
  white-space: nowrap;
1282
1426
  }
@@ -1285,15 +1429,26 @@ select:focus:required:invalid:focus {
1285
1429
  .input-append select,
1286
1430
  .input-prepend select,
1287
1431
  .input-append .uneditable-input,
1432
+ .input-prepend .uneditable-input,
1433
+ .input-append .dropdown-menu,
1434
+ .input-prepend .dropdown-menu,
1435
+ .input-append .popover,
1436
+ .input-prepend .popover {
1437
+ font-size: 14px;
1438
+ }
1439
+ .input-append input,
1440
+ .input-prepend input,
1441
+ .input-append select,
1442
+ .input-prepend select,
1443
+ .input-append .uneditable-input,
1288
1444
  .input-prepend .uneditable-input {
1289
1445
  position: relative;
1290
1446
  margin-bottom: 0;
1291
1447
  *margin-left: 0;
1292
- font-size: 14px;
1293
1448
  vertical-align: top;
1294
- -webkit-border-radius: 0 3px 3px 0;
1295
- -moz-border-radius: 0 3px 3px 0;
1296
- border-radius: 0 3px 3px 0;
1449
+ -webkit-border-radius: 0 4px 4px 0;
1450
+ -moz-border-radius: 0 4px 4px 0;
1451
+ border-radius: 0 4px 4px 0;
1297
1452
  }
1298
1453
  .input-append input:focus,
1299
1454
  .input-prepend input:focus,
@@ -1321,7 +1476,9 @@ select:focus:required:invalid:focus {
1321
1476
  .input-append .add-on,
1322
1477
  .input-prepend .add-on,
1323
1478
  .input-append .btn,
1324
- .input-prepend .btn {
1479
+ .input-prepend .btn,
1480
+ .input-append .btn-group > .dropdown-toggle,
1481
+ .input-prepend .btn-group > .dropdown-toggle {
1325
1482
  vertical-align: top;
1326
1483
  -webkit-border-radius: 0;
1327
1484
  -moz-border-radius: 0;
@@ -1338,26 +1495,35 @@ select:focus:required:invalid:focus {
1338
1495
  }
1339
1496
  .input-prepend .add-on:first-child,
1340
1497
  .input-prepend .btn:first-child {
1341
- -webkit-border-radius: 3px 0 0 3px;
1342
- -moz-border-radius: 3px 0 0 3px;
1343
- border-radius: 3px 0 0 3px;
1498
+ -webkit-border-radius: 4px 0 0 4px;
1499
+ -moz-border-radius: 4px 0 0 4px;
1500
+ border-radius: 4px 0 0 4px;
1344
1501
  }
1345
1502
  .input-append input,
1346
1503
  .input-append select,
1347
1504
  .input-append .uneditable-input {
1348
- -webkit-border-radius: 3px 0 0 3px;
1349
- -moz-border-radius: 3px 0 0 3px;
1350
- border-radius: 3px 0 0 3px;
1505
+ -webkit-border-radius: 4px 0 0 4px;
1506
+ -moz-border-radius: 4px 0 0 4px;
1507
+ border-radius: 4px 0 0 4px;
1508
+ }
1509
+ .input-append input + .btn-group .btn:last-child,
1510
+ .input-append select + .btn-group .btn:last-child,
1511
+ .input-append .uneditable-input + .btn-group .btn:last-child {
1512
+ -webkit-border-radius: 0 4px 4px 0;
1513
+ -moz-border-radius: 0 4px 4px 0;
1514
+ border-radius: 0 4px 4px 0;
1351
1515
  }
1352
1516
  .input-append .add-on,
1353
- .input-append .btn {
1517
+ .input-append .btn,
1518
+ .input-append .btn-group {
1354
1519
  margin-left: -1px;
1355
1520
  }
1356
1521
  .input-append .add-on:last-child,
1357
- .input-append .btn:last-child {
1358
- -webkit-border-radius: 0 3px 3px 0;
1359
- -moz-border-radius: 0 3px 3px 0;
1360
- border-radius: 0 3px 3px 0;
1522
+ .input-append .btn:last-child,
1523
+ .input-append .btn-group:last-child > .dropdown-toggle {
1524
+ -webkit-border-radius: 0 4px 4px 0;
1525
+ -moz-border-radius: 0 4px 4px 0;
1526
+ border-radius: 0 4px 4px 0;
1361
1527
  }
1362
1528
  .input-prepend.input-append input,
1363
1529
  .input-prepend.input-append select,
@@ -1366,19 +1532,29 @@ select:focus:required:invalid:focus {
1366
1532
  -moz-border-radius: 0;
1367
1533
  border-radius: 0;
1368
1534
  }
1535
+ .input-prepend.input-append input + .btn-group .btn,
1536
+ .input-prepend.input-append select + .btn-group .btn,
1537
+ .input-prepend.input-append .uneditable-input + .btn-group .btn {
1538
+ -webkit-border-radius: 0 4px 4px 0;
1539
+ -moz-border-radius: 0 4px 4px 0;
1540
+ border-radius: 0 4px 4px 0;
1541
+ }
1369
1542
  .input-prepend.input-append .add-on:first-child,
1370
1543
  .input-prepend.input-append .btn:first-child {
1371
1544
  margin-right: -1px;
1372
- -webkit-border-radius: 3px 0 0 3px;
1373
- -moz-border-radius: 3px 0 0 3px;
1374
- border-radius: 3px 0 0 3px;
1545
+ -webkit-border-radius: 4px 0 0 4px;
1546
+ -moz-border-radius: 4px 0 0 4px;
1547
+ border-radius: 4px 0 0 4px;
1375
1548
  }
1376
1549
  .input-prepend.input-append .add-on:last-child,
1377
1550
  .input-prepend.input-append .btn:last-child {
1378
1551
  margin-left: -1px;
1379
- -webkit-border-radius: 0 3px 3px 0;
1380
- -moz-border-radius: 0 3px 3px 0;
1381
- border-radius: 0 3px 3px 0;
1552
+ -webkit-border-radius: 0 4px 4px 0;
1553
+ -moz-border-radius: 0 4px 4px 0;
1554
+ border-radius: 0 4px 4px 0;
1555
+ }
1556
+ .input-prepend.input-append .btn-group:first-child {
1557
+ margin-left: 0;
1382
1558
  }
1383
1559
  input.search-query {
1384
1560
  padding-right: 14px;
@@ -1521,7 +1697,10 @@ legend + .control-group {
1521
1697
  }
1522
1698
  .form-horizontal input + .help-block,
1523
1699
  .form-horizontal select + .help-block,
1524
- .form-horizontal textarea + .help-block {
1700
+ .form-horizontal textarea + .help-block,
1701
+ .form-horizontal .uneditable-input + .help-block,
1702
+ .form-horizontal .input-prepend + .help-block,
1703
+ .form-horizontal .input-append + .help-block {
1525
1704
  margin-top: 10px;
1526
1705
  }
1527
1706
  .form-horizontal .form-actions {
@@ -1562,6 +1741,9 @@ table {
1562
1741
  .table tbody + tbody {
1563
1742
  border-top: 2px solid #dddddd;
1564
1743
  }
1744
+ .table .table {
1745
+ background-color: #ffffff;
1746
+ }
1565
1747
  .table-condensed th,
1566
1748
  .table-condensed td {
1567
1749
  padding: 4px 5px;
@@ -1590,207 +1772,174 @@ table {
1590
1772
  .table-bordered tbody:first-child tr:first-child td {
1591
1773
  border-top: 0;
1592
1774
  }
1593
- .table-bordered thead:first-child tr:first-child th:first-child,
1594
- .table-bordered tbody:first-child tr:first-child td:first-child {
1775
+ .table-bordered thead:first-child tr:first-child > th:first-child,
1776
+ .table-bordered tbody:first-child tr:first-child > td:first-child,
1777
+ .table-bordered tbody:first-child tr:first-child > th:first-child {
1595
1778
  -webkit-border-top-left-radius: 4px;
1596
- border-top-left-radius: 4px;
1597
1779
  -moz-border-radius-topleft: 4px;
1780
+ border-top-left-radius: 4px;
1598
1781
  }
1599
- .table-bordered thead:first-child tr:first-child th:last-child,
1600
- .table-bordered tbody:first-child tr:first-child td:last-child {
1782
+ .table-bordered thead:first-child tr:first-child > th:last-child,
1783
+ .table-bordered tbody:first-child tr:first-child > td:last-child,
1784
+ .table-bordered tbody:first-child tr:first-child > th:last-child {
1601
1785
  -webkit-border-top-right-radius: 4px;
1602
- border-top-right-radius: 4px;
1603
1786
  -moz-border-radius-topright: 4px;
1787
+ border-top-right-radius: 4px;
1604
1788
  }
1605
- .table-bordered thead:last-child tr:last-child th:first-child,
1606
- .table-bordered tbody:last-child tr:last-child td:first-child,
1607
- .table-bordered tfoot:last-child tr:last-child td:first-child {
1608
- -webkit-border-radius: 0 0 0 4px;
1609
- -moz-border-radius: 0 0 0 4px;
1610
- border-radius: 0 0 0 4px;
1789
+ .table-bordered thead:last-child tr:last-child > th:first-child,
1790
+ .table-bordered tbody:last-child tr:last-child > td:first-child,
1791
+ .table-bordered tbody:last-child tr:last-child > th:first-child,
1792
+ .table-bordered tfoot:last-child tr:last-child > td:first-child,
1793
+ .table-bordered tfoot:last-child tr:last-child > th:first-child {
1611
1794
  -webkit-border-bottom-left-radius: 4px;
1612
- border-bottom-left-radius: 4px;
1613
1795
  -moz-border-radius-bottomleft: 4px;
1796
+ border-bottom-left-radius: 4px;
1614
1797
  }
1615
- .table-bordered thead:last-child tr:last-child th:last-child,
1616
- .table-bordered tbody:last-child tr:last-child td:last-child,
1617
- .table-bordered tfoot:last-child tr:last-child td:last-child {
1798
+ .table-bordered thead:last-child tr:last-child > th:last-child,
1799
+ .table-bordered tbody:last-child tr:last-child > td:last-child,
1800
+ .table-bordered tbody:last-child tr:last-child > th:last-child,
1801
+ .table-bordered tfoot:last-child tr:last-child > td:last-child,
1802
+ .table-bordered tfoot:last-child tr:last-child > th:last-child {
1618
1803
  -webkit-border-bottom-right-radius: 4px;
1619
- border-bottom-right-radius: 4px;
1620
1804
  -moz-border-radius-bottomright: 4px;
1805
+ border-bottom-right-radius: 4px;
1806
+ }
1807
+ .table-bordered tfoot + tbody:last-child tr:last-child td:first-child {
1808
+ -webkit-border-bottom-left-radius: 0;
1809
+ -moz-border-radius-bottomleft: 0;
1810
+ border-bottom-left-radius: 0;
1811
+ }
1812
+ .table-bordered tfoot + tbody:last-child tr:last-child td:last-child {
1813
+ -webkit-border-bottom-right-radius: 0;
1814
+ -moz-border-radius-bottomright: 0;
1815
+ border-bottom-right-radius: 0;
1621
1816
  }
1622
1817
  .table-bordered caption + thead tr:first-child th:first-child,
1623
1818
  .table-bordered caption + tbody tr:first-child td:first-child,
1624
1819
  .table-bordered colgroup + thead tr:first-child th:first-child,
1625
1820
  .table-bordered colgroup + tbody tr:first-child td:first-child {
1626
1821
  -webkit-border-top-left-radius: 4px;
1627
- border-top-left-radius: 4px;
1628
1822
  -moz-border-radius-topleft: 4px;
1823
+ border-top-left-radius: 4px;
1629
1824
  }
1630
1825
  .table-bordered caption + thead tr:first-child th:last-child,
1631
1826
  .table-bordered caption + tbody tr:first-child td:last-child,
1632
1827
  .table-bordered colgroup + thead tr:first-child th:last-child,
1633
1828
  .table-bordered colgroup + tbody tr:first-child td:last-child {
1634
1829
  -webkit-border-top-right-radius: 4px;
1830
+ -moz-border-radius-topright: 4px;
1635
1831
  border-top-right-radius: 4px;
1636
- -moz-border-radius-topleft: 4px;
1637
1832
  }
1638
- .table-striped tbody tr:nth-child(odd) td,
1639
- .table-striped tbody tr:nth-child(odd) th {
1833
+ .table-striped tbody > tr:nth-child(odd) > td,
1834
+ .table-striped tbody > tr:nth-child(odd) > th {
1640
1835
  background-color: #f9f9f9;
1641
1836
  }
1642
- .table-hover tbody tr:hover td,
1643
- .table-hover tbody tr:hover th {
1837
+ .table-hover tbody tr:hover > td,
1838
+ .table-hover tbody tr:hover > th {
1644
1839
  background-color: #f5f5f5;
1645
1840
  }
1646
- table [class*=span],
1647
- .row-fluid table [class*=span] {
1841
+ table td[class*="span"],
1842
+ table th[class*="span"],
1843
+ .row-fluid table td[class*="span"],
1844
+ .row-fluid table th[class*="span"] {
1648
1845
  display: table-cell;
1649
1846
  float: none;
1650
1847
  margin-left: 0;
1651
1848
  }
1652
- .table .span1 {
1849
+ .table td.span1,
1850
+ .table th.span1 {
1653
1851
  float: none;
1654
1852
  width: 44px;
1655
1853
  margin-left: 0;
1656
1854
  }
1657
- .table .span2 {
1855
+ .table td.span2,
1856
+ .table th.span2 {
1658
1857
  float: none;
1659
1858
  width: 124px;
1660
1859
  margin-left: 0;
1661
1860
  }
1662
- .table .span3 {
1861
+ .table td.span3,
1862
+ .table th.span3 {
1663
1863
  float: none;
1664
1864
  width: 204px;
1665
1865
  margin-left: 0;
1666
1866
  }
1667
- .table .span4 {
1867
+ .table td.span4,
1868
+ .table th.span4 {
1668
1869
  float: none;
1669
1870
  width: 284px;
1670
1871
  margin-left: 0;
1671
1872
  }
1672
- .table .span5 {
1873
+ .table td.span5,
1874
+ .table th.span5 {
1673
1875
  float: none;
1674
1876
  width: 364px;
1675
1877
  margin-left: 0;
1676
1878
  }
1677
- .table .span6 {
1879
+ .table td.span6,
1880
+ .table th.span6 {
1678
1881
  float: none;
1679
1882
  width: 444px;
1680
1883
  margin-left: 0;
1681
1884
  }
1682
- .table .span7 {
1885
+ .table td.span7,
1886
+ .table th.span7 {
1683
1887
  float: none;
1684
1888
  width: 524px;
1685
1889
  margin-left: 0;
1686
1890
  }
1687
- .table .span8 {
1891
+ .table td.span8,
1892
+ .table th.span8 {
1688
1893
  float: none;
1689
1894
  width: 604px;
1690
1895
  margin-left: 0;
1691
1896
  }
1692
- .table .span9 {
1897
+ .table td.span9,
1898
+ .table th.span9 {
1693
1899
  float: none;
1694
1900
  width: 684px;
1695
1901
  margin-left: 0;
1696
1902
  }
1697
- .table .span10 {
1903
+ .table td.span10,
1904
+ .table th.span10 {
1698
1905
  float: none;
1699
1906
  width: 764px;
1700
1907
  margin-left: 0;
1701
1908
  }
1702
- .table .span11 {
1909
+ .table td.span11,
1910
+ .table th.span11 {
1703
1911
  float: none;
1704
1912
  width: 844px;
1705
1913
  margin-left: 0;
1706
1914
  }
1707
- .table .span12 {
1915
+ .table td.span12,
1916
+ .table th.span12 {
1708
1917
  float: none;
1709
1918
  width: 924px;
1710
1919
  margin-left: 0;
1711
1920
  }
1712
- .table .span13 {
1713
- float: none;
1714
- width: 1004px;
1715
- margin-left: 0;
1716
- }
1717
- .table .span14 {
1718
- float: none;
1719
- width: 1084px;
1720
- margin-left: 0;
1721
- }
1722
- .table .span15 {
1723
- float: none;
1724
- width: 1164px;
1725
- margin-left: 0;
1726
- }
1727
- .table .span16 {
1728
- float: none;
1729
- width: 1244px;
1730
- margin-left: 0;
1731
- }
1732
- .table .span17 {
1733
- float: none;
1734
- width: 1324px;
1735
- margin-left: 0;
1736
- }
1737
- .table .span18 {
1738
- float: none;
1739
- width: 1404px;
1740
- margin-left: 0;
1741
- }
1742
- .table .span19 {
1743
- float: none;
1744
- width: 1484px;
1745
- margin-left: 0;
1746
- }
1747
- .table .span20 {
1748
- float: none;
1749
- width: 1564px;
1750
- margin-left: 0;
1751
- }
1752
- .table .span21 {
1753
- float: none;
1754
- width: 1644px;
1755
- margin-left: 0;
1756
- }
1757
- .table .span22 {
1758
- float: none;
1759
- width: 1724px;
1760
- margin-left: 0;
1761
- }
1762
- .table .span23 {
1763
- float: none;
1764
- width: 1804px;
1765
- margin-left: 0;
1766
- }
1767
- .table .span24 {
1768
- float: none;
1769
- width: 1884px;
1770
- margin-left: 0;
1771
- }
1772
- .table tbody tr.success td {
1921
+ .table tbody tr.success > td {
1773
1922
  background-color: #dff0d8;
1774
1923
  }
1775
- .table tbody tr.error td {
1924
+ .table tbody tr.error > td {
1776
1925
  background-color: #f2dede;
1777
1926
  }
1778
- .table tbody tr.warning td {
1927
+ .table tbody tr.warning > td {
1779
1928
  background-color: #fcf8e3;
1780
1929
  }
1781
- .table tbody tr.info td {
1930
+ .table tbody tr.info > td {
1782
1931
  background-color: #d9edf7;
1783
1932
  }
1784
- .table-hover tbody tr.success:hover td {
1933
+ .table-hover tbody tr.success:hover > td {
1785
1934
  background-color: #d0e9c6;
1786
1935
  }
1787
- .table-hover tbody tr.error:hover td {
1936
+ .table-hover tbody tr.error:hover > td {
1788
1937
  background-color: #ebcccc;
1789
1938
  }
1790
- .table-hover tbody tr.warning:hover td {
1939
+ .table-hover tbody tr.warning:hover > td {
1791
1940
  background-color: #faf2cc;
1792
1941
  }
1793
- .table-hover tbody tr.info:hover td {
1942
+ .table-hover tbody tr.info:hover > td {
1794
1943
  background-color: #c4e3f3;
1795
1944
  }
1796
1945
  [class^="icon-"],
@@ -1806,10 +1955,8 @@ table [class*=span],
1806
1955
  background-repeat: no-repeat;
1807
1956
  margin-top: 1px;
1808
1957
  }
1809
- /* White icons with optional class, or on hover/active states of certain elements */
1958
+ /* White icons with optional class, or on hover/focus/active states of certain elements */
1810
1959
  .icon-white,
1811
- .nav-tabs > .active > a > [class^="icon-"],
1812
- .nav-tabs > .active > a > [class*=" icon-"],
1813
1960
  .nav-pills > .active > a > [class^="icon-"],
1814
1961
  .nav-pills > .active > a > [class*=" icon-"],
1815
1962
  .nav-list > .active > a > [class^="icon-"],
@@ -1817,9 +1964,15 @@ table [class*=span],
1817
1964
  .navbar-inverse .nav > .active > a > [class^="icon-"],
1818
1965
  .navbar-inverse .nav > .active > a > [class*=" icon-"],
1819
1966
  .dropdown-menu > li > a:hover > [class^="icon-"],
1967
+ .dropdown-menu > li > a:focus > [class^="icon-"],
1820
1968
  .dropdown-menu > li > a:hover > [class*=" icon-"],
1969
+ .dropdown-menu > li > a:focus > [class*=" icon-"],
1821
1970
  .dropdown-menu > .active > a > [class^="icon-"],
1822
- .dropdown-menu > .active > a > [class*=" icon-"] {
1971
+ .dropdown-menu > .active > a > [class*=" icon-"],
1972
+ .dropdown-submenu:hover > a > [class^="icon-"],
1973
+ .dropdown-submenu:focus > a > [class^="icon-"],
1974
+ .dropdown-submenu:hover > a > [class*=" icon-"],
1975
+ .dropdown-submenu:focus > a > [class*=" icon-"] {
1823
1976
  background-image: url("../img/glyphicons-halflings-white.png");
1824
1977
  }
1825
1978
  .icon-glass {
@@ -2173,6 +2326,7 @@ table [class*=span],
2173
2326
  }
2174
2327
  .icon-folder-close {
2175
2328
  background-position: -384px -120px;
2329
+ width: 16px;
2176
2330
  }
2177
2331
  .icon-folder-open {
2178
2332
  background-position: -408px -120px;
@@ -2308,7 +2462,7 @@ table [class*=span],
2308
2462
  background-color: #e5e5e5;
2309
2463
  border-bottom: 1px solid #ffffff;
2310
2464
  }
2311
- .dropdown-menu a {
2465
+ .dropdown-menu > li > a {
2312
2466
  display: block;
2313
2467
  padding: 3px 20px;
2314
2468
  clear: both;
@@ -2317,12 +2471,12 @@ table [class*=span],
2317
2471
  color: #333333;
2318
2472
  white-space: nowrap;
2319
2473
  }
2320
- .dropdown-menu li > a:hover,
2321
- .dropdown-menu li > a:focus,
2322
- .dropdown-submenu:hover > a {
2474
+ .dropdown-menu > li > a:hover,
2475
+ .dropdown-menu > li > a:focus,
2476
+ .dropdown-submenu:hover > a,
2477
+ .dropdown-submenu:focus > a {
2323
2478
  text-decoration: none;
2324
2479
  color: #ffffff;
2325
- background-color: #0088cc;
2326
2480
  background-color: #0081c2;
2327
2481
  background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
2328
2482
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
@@ -2332,12 +2486,12 @@ table [class*=span],
2332
2486
  background-repeat: repeat-x;
2333
2487
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);
2334
2488
  }
2335
- .dropdown-menu .active > a,
2336
- .dropdown-menu .active > a:hover {
2489
+ .dropdown-menu > .active > a,
2490
+ .dropdown-menu > .active > a:hover,
2491
+ .dropdown-menu > .active > a:focus {
2337
2492
  color: #ffffff;
2338
2493
  text-decoration: none;
2339
2494
  outline: 0;
2340
- background-color: #0088cc;
2341
2495
  background-color: #0081c2;
2342
2496
  background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
2343
2497
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
@@ -2347,19 +2501,23 @@ table [class*=span],
2347
2501
  background-repeat: repeat-x;
2348
2502
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);
2349
2503
  }
2350
- .dropdown-menu .disabled > a,
2351
- .dropdown-menu .disabled > a:hover {
2504
+ .dropdown-menu > .disabled > a,
2505
+ .dropdown-menu > .disabled > a:hover,
2506
+ .dropdown-menu > .disabled > a:focus {
2352
2507
  color: #999999;
2353
2508
  }
2354
- .dropdown-menu .disabled > a:hover {
2509
+ .dropdown-menu > .disabled > a:hover,
2510
+ .dropdown-menu > .disabled > a:focus {
2355
2511
  text-decoration: none;
2356
2512
  background-color: transparent;
2513
+ background-image: none;
2514
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2357
2515
  cursor: default;
2358
2516
  }
2359
2517
  .open {
2360
2518
  *z-index: 1000;
2361
2519
  }
2362
- .open > .dropdown-menu {
2520
+ .open > .dropdown-menu {
2363
2521
  display: block;
2364
2522
  }
2365
2523
  .pull-right > .dropdown-menu {
@@ -2393,6 +2551,15 @@ table [class*=span],
2393
2551
  .dropdown-submenu:hover > .dropdown-menu {
2394
2552
  display: block;
2395
2553
  }
2554
+ .dropup .dropdown-submenu > .dropdown-menu {
2555
+ top: auto;
2556
+ bottom: 0;
2557
+ margin-top: 0;
2558
+ margin-bottom: -2px;
2559
+ -webkit-border-radius: 5px 5px 5px 0;
2560
+ -moz-border-radius: 5px 5px 5px 0;
2561
+ border-radius: 5px 5px 5px 0;
2562
+ }
2396
2563
  .dropdown-submenu > a:after {
2397
2564
  display: block;
2398
2565
  content: " ";
@@ -2409,11 +2576,22 @@ table [class*=span],
2409
2576
  .dropdown-submenu:hover > a:after {
2410
2577
  border-left-color: #ffffff;
2411
2578
  }
2579
+ .dropdown-submenu.pull-left {
2580
+ float: none;
2581
+ }
2582
+ .dropdown-submenu.pull-left > .dropdown-menu {
2583
+ left: -100%;
2584
+ margin-left: 10px;
2585
+ -webkit-border-radius: 6px 0 6px 6px;
2586
+ -moz-border-radius: 6px 0 6px 6px;
2587
+ border-radius: 6px 0 6px 6px;
2588
+ }
2412
2589
  .dropdown .dropdown-menu .nav-header {
2413
2590
  padding-left: 20px;
2414
2591
  padding-right: 20px;
2415
2592
  }
2416
2593
  .typeahead {
2594
+ z-index: 1051;
2417
2595
  margin-top: 2px;
2418
2596
  -webkit-border-radius: 4px;
2419
2597
  -moz-border-radius: 4px;
@@ -2480,7 +2658,8 @@ table [class*=span],
2480
2658
  opacity: 0.2;
2481
2659
  filter: alpha(opacity=20);
2482
2660
  }
2483
- .close:hover {
2661
+ .close:hover,
2662
+ .close:focus {
2484
2663
  color: #000000;
2485
2664
  text-decoration: none;
2486
2665
  cursor: pointer;
@@ -2500,11 +2679,10 @@ button.close {
2500
2679
  /* IE7 inline-block hack */
2501
2680
 
2502
2681
  *zoom: 1;
2503
- padding: 4px 14px;
2682
+ padding: 4px 12px;
2504
2683
  margin-bottom: 0;
2505
2684
  font-size: 14px;
2506
2685
  line-height: 20px;
2507
- *line-height: 20px;
2508
2686
  text-align: center;
2509
2687
  vertical-align: middle;
2510
2688
  cursor: pointer;
@@ -2524,18 +2702,19 @@ button.close {
2524
2702
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
2525
2703
 
2526
2704
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2527
- border: 1px solid #bbbbbb;
2705
+ border: 1px solid #cccccc;
2528
2706
  *border: 0;
2529
- border-bottom-color: #a2a2a2;
2707
+ border-bottom-color: #b3b3b3;
2530
2708
  -webkit-border-radius: 4px;
2531
2709
  -moz-border-radius: 4px;
2532
2710
  border-radius: 4px;
2533
2711
  *margin-left: .3em;
2534
- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
2535
- -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
2536
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
2712
+ -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
2713
+ -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
2714
+ box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
2537
2715
  }
2538
2716
  .btn:hover,
2717
+ .btn:focus,
2539
2718
  .btn:active,
2540
2719
  .btn.active,
2541
2720
  .btn.disabled,
@@ -2551,13 +2730,10 @@ button.close {
2551
2730
  .btn:first-child {
2552
2731
  *margin-left: 0;
2553
2732
  }
2554
- .btn:hover {
2733
+ .btn:hover,
2734
+ .btn:focus {
2555
2735
  color: #333333;
2556
2736
  text-decoration: none;
2557
- background-color: #e6e6e6;
2558
- *background-color: #d9d9d9;
2559
- /* Buttons in IE7 don't get borders, so darken on hover */
2560
-
2561
2737
  background-position: 0 -15px;
2562
2738
  -webkit-transition: background-position 0.1s linear;
2563
2739
  -moz-transition: background-position 0.1s linear;
@@ -2571,18 +2747,15 @@ button.close {
2571
2747
  }
2572
2748
  .btn.active,
2573
2749
  .btn:active {
2574
- background-color: #e6e6e6;
2575
- background-color: #d9d9d9 \9;
2576
2750
  background-image: none;
2577
2751
  outline: 0;
2578
- -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
2579
- -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
2580
- box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
2752
+ -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
2753
+ -moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
2754
+ box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
2581
2755
  }
2582
2756
  .btn.disabled,
2583
2757
  .btn[disabled] {
2584
2758
  cursor: default;
2585
- background-color: #e6e6e6;
2586
2759
  background-image: none;
2587
2760
  opacity: 0.65;
2588
2761
  filter: alpha(opacity=65);
@@ -2591,28 +2764,37 @@ button.close {
2591
2764
  box-shadow: none;
2592
2765
  }
2593
2766
  .btn-large {
2594
- padding: 9px 14px;
2595
- font-size: 16px;
2596
- line-height: normal;
2597
- -webkit-border-radius: 5px;
2598
- -moz-border-radius: 5px;
2599
- border-radius: 5px;
2767
+ padding: 11px 19px;
2768
+ font-size: 17.5px;
2769
+ -webkit-border-radius: 6px;
2770
+ -moz-border-radius: 6px;
2771
+ border-radius: 6px;
2600
2772
  }
2601
- .btn-large [class^="icon-"] {
2602
- margin-top: 2px;
2773
+ .btn-large [class^="icon-"],
2774
+ .btn-large [class*=" icon-"] {
2775
+ margin-top: 4px;
2603
2776
  }
2604
2777
  .btn-small {
2605
- padding: 3px 9px;
2606
- font-size: 12px;
2607
- line-height: 18px;
2778
+ padding: 2px 10px;
2779
+ font-size: 11.9px;
2780
+ -webkit-border-radius: 3px;
2781
+ -moz-border-radius: 3px;
2782
+ border-radius: 3px;
2608
2783
  }
2609
- .btn-small [class^="icon-"] {
2784
+ .btn-small [class^="icon-"],
2785
+ .btn-small [class*=" icon-"] {
2610
2786
  margin-top: 0;
2611
2787
  }
2788
+ .btn-mini [class^="icon-"],
2789
+ .btn-mini [class*=" icon-"] {
2790
+ margin-top: -1px;
2791
+ }
2612
2792
  .btn-mini {
2613
- padding: 2px 6px;
2614
- font-size: 11px;
2615
- line-height: 17px;
2793
+ padding: 0 6px;
2794
+ font-size: 10.5px;
2795
+ -webkit-border-radius: 3px;
2796
+ -moz-border-radius: 3px;
2797
+ border-radius: 3px;
2616
2798
  }
2617
2799
  .btn-block {
2618
2800
  display: block;
@@ -2639,10 +2821,6 @@ input[type="button"].btn-block {
2639
2821
  .btn-inverse.active {
2640
2822
  color: rgba(255, 255, 255, 0.75);
2641
2823
  }
2642
- .btn {
2643
- border-color: #c5c5c5;
2644
- border-color: rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.25);
2645
- }
2646
2824
  .btn-primary {
2647
2825
  color: #ffffff;
2648
2826
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
@@ -2662,6 +2840,7 @@ input[type="button"].btn-block {
2662
2840
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2663
2841
  }
2664
2842
  .btn-primary:hover,
2843
+ .btn-primary:focus,
2665
2844
  .btn-primary:active,
2666
2845
  .btn-primary.active,
2667
2846
  .btn-primary.disabled,
@@ -2693,6 +2872,7 @@ input[type="button"].btn-block {
2693
2872
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2694
2873
  }
2695
2874
  .btn-warning:hover,
2875
+ .btn-warning:focus,
2696
2876
  .btn-warning:active,
2697
2877
  .btn-warning.active,
2698
2878
  .btn-warning.disabled,
@@ -2724,6 +2904,7 @@ input[type="button"].btn-block {
2724
2904
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2725
2905
  }
2726
2906
  .btn-danger:hover,
2907
+ .btn-danger:focus,
2727
2908
  .btn-danger:active,
2728
2909
  .btn-danger.active,
2729
2910
  .btn-danger.disabled,
@@ -2755,6 +2936,7 @@ input[type="button"].btn-block {
2755
2936
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2756
2937
  }
2757
2938
  .btn-success:hover,
2939
+ .btn-success:focus,
2758
2940
  .btn-success:active,
2759
2941
  .btn-success.active,
2760
2942
  .btn-success.disabled,
@@ -2786,6 +2968,7 @@ input[type="button"].btn-block {
2786
2968
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2787
2969
  }
2788
2970
  .btn-info:hover,
2971
+ .btn-info:focus,
2789
2972
  .btn-info:active,
2790
2973
  .btn-info.active,
2791
2974
  .btn-info.disabled,
@@ -2817,6 +3000,7 @@ input[type="button"].btn-block {
2817
3000
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2818
3001
  }
2819
3002
  .btn-inverse:hover,
3003
+ .btn-inverse:focus,
2820
3004
  .btn-inverse:active,
2821
3005
  .btn-inverse.active,
2822
3006
  .btn-inverse.disabled,
@@ -2871,17 +3055,24 @@ input[type="submit"].btn.btn-mini {
2871
3055
  -moz-border-radius: 0;
2872
3056
  border-radius: 0;
2873
3057
  }
2874
- .btn-link:hover {
3058
+ .btn-link:hover,
3059
+ .btn-link:focus {
2875
3060
  color: #005580;
2876
3061
  text-decoration: underline;
2877
3062
  background-color: transparent;
2878
3063
  }
2879
- .btn-link[disabled]:hover {
3064
+ .btn-link[disabled]:hover,
3065
+ .btn-link[disabled]:focus {
2880
3066
  color: #333333;
2881
3067
  text-decoration: none;
2882
3068
  }
2883
3069
  .btn-group {
2884
3070
  position: relative;
3071
+ display: inline-block;
3072
+ *display: inline;
3073
+ /* IE7 inline-block hack */
3074
+
3075
+ *zoom: 1;
2885
3076
  font-size: 0;
2886
3077
  vertical-align: middle;
2887
3078
  white-space: nowrap;
@@ -2898,16 +3089,9 @@ input[type="submit"].btn.btn-mini {
2898
3089
  margin-top: 10px;
2899
3090
  margin-bottom: 10px;
2900
3091
  }
2901
- .btn-toolbar .btn-group {
2902
- display: inline-block;
2903
- *display: inline;
2904
- /* IE7 inline-block hack */
2905
-
2906
- *zoom: 1;
2907
- }
2908
- .btn-toolbar .btn + .btn,
2909
- .btn-toolbar .btn-group + .btn,
2910
- .btn-toolbar .btn + .btn-group {
3092
+ .btn-toolbar > .btn + .btn,
3093
+ .btn-toolbar > .btn-group + .btn,
3094
+ .btn-toolbar > .btn + .btn-group {
2911
3095
  margin-left: 5px;
2912
3096
  }
2913
3097
  .btn-group > .btn {
@@ -2920,17 +3104,18 @@ input[type="submit"].btn.btn-mini {
2920
3104
  margin-left: -1px;
2921
3105
  }
2922
3106
  .btn-group > .btn,
2923
- .btn-group > .dropdown-menu {
3107
+ .btn-group > .dropdown-menu,
3108
+ .btn-group > .popover {
2924
3109
  font-size: 14px;
2925
3110
  }
2926
3111
  .btn-group > .btn-mini {
2927
- font-size: 11px;
3112
+ font-size: 10.5px;
2928
3113
  }
2929
3114
  .btn-group > .btn-small {
2930
- font-size: 12px;
3115
+ font-size: 11.9px;
2931
3116
  }
2932
3117
  .btn-group > .btn-large {
2933
- font-size: 16px;
3118
+ font-size: 17.5px;
2934
3119
  }
2935
3120
  .btn-group > .btn:first-child {
2936
3121
  margin-left: 0;
@@ -2981,9 +3166,9 @@ input[type="submit"].btn.btn-mini {
2981
3166
  .btn-group > .btn + .dropdown-toggle {
2982
3167
  padding-left: 8px;
2983
3168
  padding-right: 8px;
2984
- -webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
2985
- -moz-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
2986
- box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
3169
+ -webkit-box-shadow: inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
3170
+ -moz-box-shadow: inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
3171
+ box-shadow: inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
2987
3172
  *padding-top: 5px;
2988
3173
  *padding-bottom: 5px;
2989
3174
  }
@@ -3005,9 +3190,9 @@ input[type="submit"].btn.btn-mini {
3005
3190
  }
3006
3191
  .btn-group.open .dropdown-toggle {
3007
3192
  background-image: none;
3008
- -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
3009
- -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
3010
- box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
3193
+ -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
3194
+ -moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
3195
+ box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
3011
3196
  }
3012
3197
  .btn-group.open .btn.dropdown-toggle {
3013
3198
  background-color: #e6e6e6;
@@ -3034,8 +3219,6 @@ input[type="submit"].btn.btn-mini {
3034
3219
  margin-top: 8px;
3035
3220
  margin-left: 0;
3036
3221
  }
3037
- .btn-mini .caret,
3038
- .btn-small .caret,
3039
3222
  .btn-large .caret {
3040
3223
  margin-top: 6px;
3041
3224
  }
@@ -3044,9 +3227,12 @@ input[type="submit"].btn.btn-mini {
3044
3227
  border-right-width: 5px;
3045
3228
  border-top-width: 5px;
3046
3229
  }
3230
+ .btn-mini .caret,
3231
+ .btn-small .caret {
3232
+ margin-top: 8px;
3233
+ }
3047
3234
  .dropup .btn-large .caret {
3048
- border-bottom: 5px solid #000000;
3049
- border-top: 0;
3235
+ border-bottom-width: 5px;
3050
3236
  }
3051
3237
  .btn-primary .caret,
3052
3238
  .btn-warning .caret,
@@ -3064,34 +3250,34 @@ input[type="submit"].btn.btn-mini {
3064
3250
 
3065
3251
  *zoom: 1;
3066
3252
  }
3067
- .btn-group-vertical .btn {
3253
+ .btn-group-vertical > .btn {
3068
3254
  display: block;
3069
3255
  float: none;
3070
- width: 100%;
3256
+ max-width: 100%;
3071
3257
  -webkit-border-radius: 0;
3072
3258
  -moz-border-radius: 0;
3073
3259
  border-radius: 0;
3074
3260
  }
3075
- .btn-group-vertical .btn + .btn {
3261
+ .btn-group-vertical > .btn + .btn {
3076
3262
  margin-left: 0;
3077
3263
  margin-top: -1px;
3078
3264
  }
3079
- .btn-group-vertical .btn:first-child {
3265
+ .btn-group-vertical > .btn:first-child {
3080
3266
  -webkit-border-radius: 4px 4px 0 0;
3081
3267
  -moz-border-radius: 4px 4px 0 0;
3082
3268
  border-radius: 4px 4px 0 0;
3083
3269
  }
3084
- .btn-group-vertical .btn:last-child {
3270
+ .btn-group-vertical > .btn:last-child {
3085
3271
  -webkit-border-radius: 0 0 4px 4px;
3086
3272
  -moz-border-radius: 0 0 4px 4px;
3087
3273
  border-radius: 0 0 4px 4px;
3088
3274
  }
3089
- .btn-group-vertical .btn-large:first-child {
3275
+ .btn-group-vertical > .btn-large:first-child {
3090
3276
  -webkit-border-radius: 6px 6px 0 0;
3091
3277
  -moz-border-radius: 6px 6px 0 0;
3092
3278
  border-radius: 6px 6px 0 0;
3093
3279
  }
3094
- .btn-group-vertical .btn-large:last-child {
3280
+ .btn-group-vertical > .btn-large:last-child {
3095
3281
  -webkit-border-radius: 0 0 6px 6px;
3096
3282
  -moz-border-radius: 0 0 6px 6px;
3097
3283
  border-radius: 0 0 6px 6px;
@@ -3105,6 +3291,9 @@ input[type="submit"].btn.btn-mini {
3105
3291
  -webkit-border-radius: 4px;
3106
3292
  -moz-border-radius: 4px;
3107
3293
  border-radius: 4px;
3294
+ }
3295
+ .alert,
3296
+ .alert h4 {
3108
3297
  color: #c09853;
3109
3298
  }
3110
3299
  .alert h4 {
@@ -3121,17 +3310,27 @@ input[type="submit"].btn.btn-mini {
3121
3310
  border-color: #d6e9c6;
3122
3311
  color: #468847;
3123
3312
  }
3313
+ .alert-success h4 {
3314
+ color: #468847;
3315
+ }
3124
3316
  .alert-danger,
3125
3317
  .alert-error {
3126
3318
  background-color: #f2dede;
3127
3319
  border-color: #eed3d7;
3128
3320
  color: #b94a48;
3129
3321
  }
3322
+ .alert-danger h4,
3323
+ .alert-error h4 {
3324
+ color: #b94a48;
3325
+ }
3130
3326
  .alert-info {
3131
3327
  background-color: #d9edf7;
3132
3328
  border-color: #bce8f1;
3133
3329
  color: #3a87ad;
3134
3330
  }
3331
+ .alert-info h4 {
3332
+ color: #3a87ad;
3333
+ }
3135
3334
  .alert-block {
3136
3335
  padding-top: 14px;
3137
3336
  padding-bottom: 14px;
@@ -3151,10 +3350,14 @@ input[type="submit"].btn.btn-mini {
3151
3350
  .nav > li > a {
3152
3351
  display: block;
3153
3352
  }
3154
- .nav > li > a:hover {
3353
+ .nav > li > a:hover,
3354
+ .nav > li > a:focus {
3155
3355
  text-decoration: none;
3156
3356
  background-color: #eeeeee;
3157
3357
  }
3358
+ .nav > li > a > img {
3359
+ max-width: none;
3360
+ }
3158
3361
  .nav > .pull-right {
3159
3362
  float: right;
3160
3363
  }
@@ -3186,12 +3389,14 @@ input[type="submit"].btn.btn-mini {
3186
3389
  padding: 3px 15px;
3187
3390
  }
3188
3391
  .nav-list > .active > a,
3189
- .nav-list > .active > a:hover {
3392
+ .nav-list > .active > a:hover,
3393
+ .nav-list > .active > a:focus {
3190
3394
  color: #ffffff;
3191
3395
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
3192
3396
  background-color: #0088cc;
3193
3397
  }
3194
- .nav-list [class^="icon-"] {
3398
+ .nav-list [class^="icon-"],
3399
+ .nav-list [class*=" icon-"] {
3195
3400
  margin-right: 2px;
3196
3401
  }
3197
3402
  .nav-list .divider {
@@ -3245,11 +3450,13 @@ input[type="submit"].btn.btn-mini {
3245
3450
  -moz-border-radius: 4px 4px 0 0;
3246
3451
  border-radius: 4px 4px 0 0;
3247
3452
  }
3248
- .nav-tabs > li > a:hover {
3453
+ .nav-tabs > li > a:hover,
3454
+ .nav-tabs > li > a:focus {
3249
3455
  border-color: #eeeeee #eeeeee #dddddd;
3250
3456
  }
3251
3457
  .nav-tabs > .active > a,
3252
- .nav-tabs > .active > a:hover {
3458
+ .nav-tabs > .active > a:hover,
3459
+ .nav-tabs > .active > a:focus {
3253
3460
  color: #555555;
3254
3461
  background-color: #ffffff;
3255
3462
  border: 1px solid #ddd;
@@ -3266,7 +3473,8 @@ input[type="submit"].btn.btn-mini {
3266
3473
  border-radius: 5px;
3267
3474
  }
3268
3475
  .nav-pills > .active > a,
3269
- .nav-pills > .active > a:hover {
3476
+ .nav-pills > .active > a:hover,
3477
+ .nav-pills > .active > a:focus {
3270
3478
  color: #ffffff;
3271
3479
  background-color: #0088cc;
3272
3480
  }
@@ -3301,7 +3509,8 @@ input[type="submit"].btn.btn-mini {
3301
3509
  -moz-border-radius-bottomleft: 4px;
3302
3510
  border-bottom-left-radius: 4px;
3303
3511
  }
3304
- .nav-tabs.nav-stacked > li > a:hover {
3512
+ .nav-tabs.nav-stacked > li > a:hover,
3513
+ .nav-tabs.nav-stacked > li > a:focus {
3305
3514
  border-color: #ddd;
3306
3515
  z-index: 2;
3307
3516
  }
@@ -3326,7 +3535,8 @@ input[type="submit"].btn.btn-mini {
3326
3535
  border-bottom-color: #0088cc;
3327
3536
  margin-top: 6px;
3328
3537
  }
3329
- .nav .dropdown-toggle:hover .caret {
3538
+ .nav .dropdown-toggle:hover .caret,
3539
+ .nav .dropdown-toggle:focus .caret {
3330
3540
  border-top-color: #005580;
3331
3541
  border-bottom-color: #005580;
3332
3542
  }
@@ -3342,25 +3552,29 @@ input[type="submit"].btn.btn-mini {
3342
3552
  border-top-color: #555555;
3343
3553
  border-bottom-color: #555555;
3344
3554
  }
3345
- .nav > .dropdown.active > a:hover {
3555
+ .nav > .dropdown.active > a:hover,
3556
+ .nav > .dropdown.active > a:focus {
3346
3557
  cursor: pointer;
3347
3558
  }
3348
3559
  .nav-tabs .open .dropdown-toggle,
3349
3560
  .nav-pills .open .dropdown-toggle,
3350
- .nav > li.dropdown.open.active > a:hover {
3561
+ .nav > li.dropdown.open.active > a:hover,
3562
+ .nav > li.dropdown.open.active > a:focus {
3351
3563
  color: #ffffff;
3352
3564
  background-color: #999999;
3353
3565
  border-color: #999999;
3354
3566
  }
3355
3567
  .nav li.dropdown.open .caret,
3356
3568
  .nav li.dropdown.open.active .caret,
3357
- .nav li.dropdown.open a:hover .caret {
3569
+ .nav li.dropdown.open a:hover .caret,
3570
+ .nav li.dropdown.open a:focus .caret {
3358
3571
  border-top-color: #ffffff;
3359
3572
  border-bottom-color: #ffffff;
3360
3573
  opacity: 1;
3361
3574
  filter: alpha(opacity=100);
3362
3575
  }
3363
- .tabs-stacked .open > a:hover {
3576
+ .tabs-stacked .open > a:hover,
3577
+ .tabs-stacked .open > a:focus {
3364
3578
  border-color: #999999;
3365
3579
  }
3366
3580
  .tabbable {
@@ -3403,12 +3617,14 @@ input[type="submit"].btn.btn-mini {
3403
3617
  -moz-border-radius: 0 0 4px 4px;
3404
3618
  border-radius: 0 0 4px 4px;
3405
3619
  }
3406
- .tabs-below > .nav-tabs > li > a:hover {
3620
+ .tabs-below > .nav-tabs > li > a:hover,
3621
+ .tabs-below > .nav-tabs > li > a:focus {
3407
3622
  border-bottom-color: transparent;
3408
3623
  border-top-color: #ddd;
3409
3624
  }
3410
3625
  .tabs-below > .nav-tabs > .active > a,
3411
- .tabs-below > .nav-tabs > .active > a:hover {
3626
+ .tabs-below > .nav-tabs > .active > a:hover,
3627
+ .tabs-below > .nav-tabs > .active > a:focus {
3412
3628
  border-color: transparent #ddd #ddd #ddd;
3413
3629
  }
3414
3630
  .tabs-left > .nav-tabs > li,
@@ -3432,11 +3648,13 @@ input[type="submit"].btn.btn-mini {
3432
3648
  -moz-border-radius: 4px 0 0 4px;
3433
3649
  border-radius: 4px 0 0 4px;
3434
3650
  }
3435
- .tabs-left > .nav-tabs > li > a:hover {
3651
+ .tabs-left > .nav-tabs > li > a:hover,
3652
+ .tabs-left > .nav-tabs > li > a:focus {
3436
3653
  border-color: #eeeeee #dddddd #eeeeee #eeeeee;
3437
3654
  }
3438
3655
  .tabs-left > .nav-tabs .active > a,
3439
- .tabs-left > .nav-tabs .active > a:hover {
3656
+ .tabs-left > .nav-tabs .active > a:hover,
3657
+ .tabs-left > .nav-tabs .active > a:focus {
3440
3658
  border-color: #ddd transparent #ddd #ddd;
3441
3659
  *border-right-color: #ffffff;
3442
3660
  }
@@ -3451,18 +3669,21 @@ input[type="submit"].btn.btn-mini {
3451
3669
  -moz-border-radius: 0 4px 4px 0;
3452
3670
  border-radius: 0 4px 4px 0;
3453
3671
  }
3454
- .tabs-right > .nav-tabs > li > a:hover {
3672
+ .tabs-right > .nav-tabs > li > a:hover,
3673
+ .tabs-right > .nav-tabs > li > a:focus {
3455
3674
  border-color: #eeeeee #eeeeee #eeeeee #dddddd;
3456
3675
  }
3457
3676
  .tabs-right > .nav-tabs .active > a,
3458
- .tabs-right > .nav-tabs .active > a:hover {
3677
+ .tabs-right > .nav-tabs .active > a:hover,
3678
+ .tabs-right > .nav-tabs .active > a:focus {
3459
3679
  border-color: #ddd #ddd #ddd transparent;
3460
3680
  *border-left-color: #ffffff;
3461
3681
  }
3462
3682
  .nav > .disabled > a {
3463
3683
  color: #999999;
3464
3684
  }
3465
- .nav > .disabled > a:hover {
3685
+ .nav > .disabled > a:hover,
3686
+ .nav > .disabled > a:focus {
3466
3687
  text-decoration: none;
3467
3688
  background-color: transparent;
3468
3689
  cursor: default;
@@ -3470,7 +3691,6 @@ input[type="submit"].btn.btn-mini {
3470
3691
  .navbar {
3471
3692
  overflow: visible;
3472
3693
  margin-bottom: 20px;
3473
- color: #777777;
3474
3694
  *position: relative;
3475
3695
  *z-index: 2;
3476
3696
  }
@@ -3509,6 +3729,7 @@ input[type="submit"].btn.btn-mini {
3509
3729
  }
3510
3730
  .nav-collapse.collapse {
3511
3731
  height: auto;
3732
+ overflow: visible;
3512
3733
  }
3513
3734
  .navbar .brand {
3514
3735
  float: left;
@@ -3520,17 +3741,20 @@ input[type="submit"].btn.btn-mini {
3520
3741
  color: #777777;
3521
3742
  text-shadow: 0 1px 0 #ffffff;
3522
3743
  }
3523
- .navbar .brand:hover {
3744
+ .navbar .brand:hover,
3745
+ .navbar .brand:focus {
3524
3746
  text-decoration: none;
3525
3747
  }
3526
3748
  .navbar-text {
3527
3749
  margin-bottom: 0;
3528
3750
  line-height: 40px;
3751
+ color: #777777;
3529
3752
  }
3530
3753
  .navbar-link {
3531
3754
  color: #777777;
3532
3755
  }
3533
- .navbar-link:hover {
3756
+ .navbar-link:hover,
3757
+ .navbar-link:focus {
3534
3758
  color: #333333;
3535
3759
  }
3536
3760
  .navbar .divider-vertical {
@@ -3545,7 +3769,9 @@ input[type="submit"].btn.btn-mini {
3545
3769
  }
3546
3770
  .navbar .btn-group .btn,
3547
3771
  .navbar .input-prepend .btn,
3548
- .navbar .input-append .btn {
3772
+ .navbar .input-append .btn,
3773
+ .navbar .input-prepend .btn-group,
3774
+ .navbar .input-append .btn-group {
3549
3775
  margin-top: 0;
3550
3776
  }
3551
3777
  .navbar-form {
@@ -3580,7 +3806,7 @@ input[type="submit"].btn.btn-mini {
3580
3806
  }
3581
3807
  .navbar-form .input-append,
3582
3808
  .navbar-form .input-prepend {
3583
- margin-top: 6px;
3809
+ margin-top: 5px;
3584
3810
  white-space: nowrap;
3585
3811
  }
3586
3812
  .navbar-form .input-append input,
@@ -3606,7 +3832,6 @@ input[type="submit"].btn.btn-mini {
3606
3832
  }
3607
3833
  .navbar-static-top {
3608
3834
  position: static;
3609
- width: 100%;
3610
3835
  margin-bottom: 0;
3611
3836
  }
3612
3837
  .navbar-static-top .navbar-inner {
@@ -3647,17 +3872,17 @@ input[type="submit"].btn.btn-mini {
3647
3872
  }
3648
3873
  .navbar-fixed-top .navbar-inner,
3649
3874
  .navbar-static-top .navbar-inner {
3650
- -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 1px 10px rgba(0, 0, 0, 0.1);
3651
- -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 1px 10px rgba(0, 0, 0, 0.1);
3652
- box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 1px 10px rgba(0, 0, 0, 0.1);
3875
+ -webkit-box-shadow: 0 1px 10px rgba(0,0,0,.1);
3876
+ -moz-box-shadow: 0 1px 10px rgba(0,0,0,.1);
3877
+ box-shadow: 0 1px 10px rgba(0,0,0,.1);
3653
3878
  }
3654
3879
  .navbar-fixed-bottom {
3655
3880
  bottom: 0;
3656
3881
  }
3657
3882
  .navbar-fixed-bottom .navbar-inner {
3658
- -webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1), 0 -1px 10px rgba(0, 0, 0, 0.1);
3659
- -moz-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1), 0 -1px 10px rgba(0, 0, 0, 0.1);
3660
- box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1), 0 -1px 10px rgba(0, 0, 0, 0.1);
3883
+ -webkit-box-shadow: 0 -1px 10px rgba(0,0,0,.1);
3884
+ -moz-box-shadow: 0 -1px 10px rgba(0,0,0,.1);
3885
+ box-shadow: 0 -1px 10px rgba(0,0,0,.1);
3661
3886
  }
3662
3887
  .navbar .nav {
3663
3888
  position: relative;
@@ -3721,11 +3946,12 @@ input[type="submit"].btn.btn-mini {
3721
3946
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
3722
3947
 
3723
3948
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
3724
- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
3725
- -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
3726
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
3949
+ -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);
3950
+ -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);
3951
+ box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);
3727
3952
  }
3728
3953
  .navbar .btn-navbar:hover,
3954
+ .navbar .btn-navbar:focus,
3729
3955
  .navbar .btn-navbar:active,
3730
3956
  .navbar .btn-navbar.active,
3731
3957
  .navbar .btn-navbar.disabled,
@@ -3787,6 +4013,11 @@ input[type="submit"].btn.btn-mini {
3787
4013
  bottom: -6px;
3788
4014
  top: auto;
3789
4015
  }
4016
+ .navbar .nav li.dropdown > a:hover .caret,
4017
+ .navbar .nav li.dropdown > a:focus .caret {
4018
+ border-top-color: #333333;
4019
+ border-bottom-color: #333333;
4020
+ }
3790
4021
  .navbar .nav li.dropdown.open > .dropdown-toggle,
3791
4022
  .navbar .nav li.dropdown.active > .dropdown-toggle,
3792
4023
  .navbar .nav li.dropdown.open.active > .dropdown-toggle {
@@ -3828,9 +4059,6 @@ input[type="submit"].btn.btn-mini {
3828
4059
  -moz-border-radius: 6px 0 6px 6px;
3829
4060
  border-radius: 6px 0 6px 6px;
3830
4061
  }
3831
- .navbar-inverse {
3832
- color: #999999;
3833
- }
3834
4062
  .navbar-inverse .navbar-inner {
3835
4063
  background-color: #1b1b1b;
3836
4064
  background-image: -moz-linear-gradient(top, #222222, #111111);
@@ -3848,9 +4076,17 @@ input[type="submit"].btn.btn-mini {
3848
4076
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
3849
4077
  }
3850
4078
  .navbar-inverse .brand:hover,
3851
- .navbar-inverse .nav > li > a:hover {
4079
+ .navbar-inverse .nav > li > a:hover,
4080
+ .navbar-inverse .brand:focus,
4081
+ .navbar-inverse .nav > li > a:focus {
3852
4082
  color: #ffffff;
3853
4083
  }
4084
+ .navbar-inverse .brand {
4085
+ color: #999999;
4086
+ }
4087
+ .navbar-inverse .navbar-text {
4088
+ color: #999999;
4089
+ }
3854
4090
  .navbar-inverse .nav > li > a:focus,
3855
4091
  .navbar-inverse .nav > li > a:hover {
3856
4092
  background-color: transparent;
@@ -3865,7 +4101,8 @@ input[type="submit"].btn.btn-mini {
3865
4101
  .navbar-inverse .navbar-link {
3866
4102
  color: #999999;
3867
4103
  }
3868
- .navbar-inverse .navbar-link:hover {
4104
+ .navbar-inverse .navbar-link:hover,
4105
+ .navbar-inverse .navbar-link:focus {
3869
4106
  color: #ffffff;
3870
4107
  }
3871
4108
  .navbar-inverse .divider-vertical {
@@ -3878,6 +4115,11 @@ input[type="submit"].btn.btn-mini {
3878
4115
  background-color: #111111;
3879
4116
  color: #ffffff;
3880
4117
  }
4118
+ .navbar-inverse .nav li.dropdown > a:hover .caret,
4119
+ .navbar-inverse .nav li.dropdown > a:focus .caret {
4120
+ border-top-color: #ffffff;
4121
+ border-bottom-color: #ffffff;
4122
+ }
3881
4123
  .navbar-inverse .nav li.dropdown > .dropdown-toggle .caret {
3882
4124
  border-top-color: #999999;
3883
4125
  border-bottom-color: #999999;
@@ -3892,9 +4134,9 @@ input[type="submit"].btn.btn-mini {
3892
4134
  color: #ffffff;
3893
4135
  background-color: #515151;
3894
4136
  border-color: #111111;
3895
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15);
3896
- -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15);
3897
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15);
4137
+ -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);
4138
+ -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);
4139
+ box-shadow: inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);
3898
4140
  -webkit-transition: none;
3899
4141
  -moz-transition: none;
3900
4142
  -o-transition: none;
@@ -3940,6 +4182,7 @@ input[type="submit"].btn.btn-mini {
3940
4182
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
3941
4183
  }
3942
4184
  .navbar-inverse .btn-navbar:hover,
4185
+ .navbar-inverse .btn-navbar:focus,
3943
4186
  .navbar-inverse .btn-navbar:active,
3944
4187
  .navbar-inverse .btn-navbar.active,
3945
4188
  .navbar-inverse .btn-navbar.disabled,
@@ -3961,7 +4204,7 @@ input[type="submit"].btn.btn-mini {
3961
4204
  -moz-border-radius: 4px;
3962
4205
  border-radius: 4px;
3963
4206
  }
3964
- .breadcrumb li {
4207
+ .breadcrumb > li {
3965
4208
  display: inline-block;
3966
4209
  *display: inline;
3967
4210
  /* IE7 inline-block hack */
@@ -3969,15 +4212,14 @@ input[type="submit"].btn.btn-mini {
3969
4212
  *zoom: 1;
3970
4213
  text-shadow: 0 1px 0 #ffffff;
3971
4214
  }
3972
- .breadcrumb .divider {
4215
+ .breadcrumb > li > .divider {
3973
4216
  padding: 0 5px;
3974
4217
  color: #ccc;
3975
4218
  }
3976
- .breadcrumb .active {
4219
+ .breadcrumb > .active {
3977
4220
  color: #999999;
3978
4221
  }
3979
4222
  .pagination {
3980
- height: 40px;
3981
4223
  margin: 20px 0;
3982
4224
  }
3983
4225
  .pagination ul {
@@ -3988,9 +4230,9 @@ input[type="submit"].btn.btn-mini {
3988
4230
  *zoom: 1;
3989
4231
  margin-left: 0;
3990
4232
  margin-bottom: 0;
3991
- -webkit-border-radius: 3px;
3992
- -moz-border-radius: 3px;
3993
- border-radius: 3px;
4233
+ -webkit-border-radius: 4px;
4234
+ -moz-border-radius: 4px;
4235
+ border-radius: 4px;
3994
4236
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
3995
4237
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
3996
4238
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
@@ -4001,14 +4243,15 @@ input[type="submit"].btn.btn-mini {
4001
4243
  .pagination ul > li > a,
4002
4244
  .pagination ul > li > span {
4003
4245
  float: left;
4004
- padding: 0 14px;
4005
- line-height: 38px;
4246
+ padding: 4px 12px;
4247
+ line-height: 20px;
4006
4248
  text-decoration: none;
4007
4249
  background-color: #ffffff;
4008
4250
  border: 1px solid #dddddd;
4009
4251
  border-left-width: 0;
4010
4252
  }
4011
4253
  .pagination ul > li > a:hover,
4254
+ .pagination ul > li > a:focus,
4012
4255
  .pagination ul > .active > a,
4013
4256
  .pagination ul > .active > span {
4014
4257
  background-color: #f5f5f5;
@@ -4020,7 +4263,8 @@ input[type="submit"].btn.btn-mini {
4020
4263
  }
4021
4264
  .pagination ul > .disabled > span,
4022
4265
  .pagination ul > .disabled > a,
4023
- .pagination ul > .disabled > a:hover {
4266
+ .pagination ul > .disabled > a:hover,
4267
+ .pagination ul > .disabled > a:focus {
4024
4268
  color: #999999;
4025
4269
  background-color: transparent;
4026
4270
  cursor: default;
@@ -4028,15 +4272,21 @@ input[type="submit"].btn.btn-mini {
4028
4272
  .pagination ul > li:first-child > a,
4029
4273
  .pagination ul > li:first-child > span {
4030
4274
  border-left-width: 1px;
4031
- -webkit-border-radius: 3px 0 0 3px;
4032
- -moz-border-radius: 3px 0 0 3px;
4033
- border-radius: 3px 0 0 3px;
4275
+ -webkit-border-top-left-radius: 4px;
4276
+ -moz-border-radius-topleft: 4px;
4277
+ border-top-left-radius: 4px;
4278
+ -webkit-border-bottom-left-radius: 4px;
4279
+ -moz-border-radius-bottomleft: 4px;
4280
+ border-bottom-left-radius: 4px;
4034
4281
  }
4035
4282
  .pagination ul > li:last-child > a,
4036
4283
  .pagination ul > li:last-child > span {
4037
- -webkit-border-radius: 0 3px 3px 0;
4038
- -moz-border-radius: 0 3px 3px 0;
4039
- border-radius: 0 3px 3px 0;
4284
+ -webkit-border-top-right-radius: 4px;
4285
+ -moz-border-radius-topright: 4px;
4286
+ border-top-right-radius: 4px;
4287
+ -webkit-border-bottom-right-radius: 4px;
4288
+ -moz-border-radius-bottomright: 4px;
4289
+ border-bottom-right-radius: 4px;
4040
4290
  }
4041
4291
  .pagination-centered {
4042
4292
  text-align: center;
@@ -4044,6 +4294,61 @@ input[type="submit"].btn.btn-mini {
4044
4294
  .pagination-right {
4045
4295
  text-align: right;
4046
4296
  }
4297
+ .pagination-large ul > li > a,
4298
+ .pagination-large ul > li > span {
4299
+ padding: 11px 19px;
4300
+ font-size: 17.5px;
4301
+ }
4302
+ .pagination-large ul > li:first-child > a,
4303
+ .pagination-large ul > li:first-child > span {
4304
+ -webkit-border-top-left-radius: 6px;
4305
+ -moz-border-radius-topleft: 6px;
4306
+ border-top-left-radius: 6px;
4307
+ -webkit-border-bottom-left-radius: 6px;
4308
+ -moz-border-radius-bottomleft: 6px;
4309
+ border-bottom-left-radius: 6px;
4310
+ }
4311
+ .pagination-large ul > li:last-child > a,
4312
+ .pagination-large ul > li:last-child > span {
4313
+ -webkit-border-top-right-radius: 6px;
4314
+ -moz-border-radius-topright: 6px;
4315
+ border-top-right-radius: 6px;
4316
+ -webkit-border-bottom-right-radius: 6px;
4317
+ -moz-border-radius-bottomright: 6px;
4318
+ border-bottom-right-radius: 6px;
4319
+ }
4320
+ .pagination-mini ul > li:first-child > a,
4321
+ .pagination-small ul > li:first-child > a,
4322
+ .pagination-mini ul > li:first-child > span,
4323
+ .pagination-small ul > li:first-child > span {
4324
+ -webkit-border-top-left-radius: 3px;
4325
+ -moz-border-radius-topleft: 3px;
4326
+ border-top-left-radius: 3px;
4327
+ -webkit-border-bottom-left-radius: 3px;
4328
+ -moz-border-radius-bottomleft: 3px;
4329
+ border-bottom-left-radius: 3px;
4330
+ }
4331
+ .pagination-mini ul > li:last-child > a,
4332
+ .pagination-small ul > li:last-child > a,
4333
+ .pagination-mini ul > li:last-child > span,
4334
+ .pagination-small ul > li:last-child > span {
4335
+ -webkit-border-top-right-radius: 3px;
4336
+ -moz-border-radius-topright: 3px;
4337
+ border-top-right-radius: 3px;
4338
+ -webkit-border-bottom-right-radius: 3px;
4339
+ -moz-border-radius-bottomright: 3px;
4340
+ border-bottom-right-radius: 3px;
4341
+ }
4342
+ .pagination-small ul > li > a,
4343
+ .pagination-small ul > li > span {
4344
+ padding: 2px 10px;
4345
+ font-size: 11.9px;
4346
+ }
4347
+ .pagination-mini ul > li > a,
4348
+ .pagination-mini ul > li > span {
4349
+ padding: 0 6px;
4350
+ font-size: 10.5px;
4351
+ }
4047
4352
  .pager {
4048
4353
  margin: 20px 0;
4049
4354
  list-style: none;
@@ -4062,8 +4367,8 @@ input[type="submit"].btn.btn-mini {
4062
4367
  .pager li {
4063
4368
  display: inline;
4064
4369
  }
4065
- .pager a,
4066
- .pager span {
4370
+ .pager li > a,
4371
+ .pager li > span {
4067
4372
  display: inline-block;
4068
4373
  padding: 5px 14px;
4069
4374
  background-color: #fff;
@@ -4072,36 +4377,27 @@ input[type="submit"].btn.btn-mini {
4072
4377
  -moz-border-radius: 15px;
4073
4378
  border-radius: 15px;
4074
4379
  }
4075
- .pager a:hover {
4380
+ .pager li > a:hover,
4381
+ .pager li > a:focus {
4076
4382
  text-decoration: none;
4077
4383
  background-color: #f5f5f5;
4078
4384
  }
4079
- .pager .next a,
4080
- .pager .next span {
4385
+ .pager .next > a,
4386
+ .pager .next > span {
4081
4387
  float: right;
4082
4388
  }
4083
- .pager .previous a {
4389
+ .pager .previous > a,
4390
+ .pager .previous > span {
4084
4391
  float: left;
4085
4392
  }
4086
- .pager .disabled a,
4087
- .pager .disabled a:hover,
4088
- .pager .disabled span {
4393
+ .pager .disabled > a,
4394
+ .pager .disabled > a:hover,
4395
+ .pager .disabled > a:focus,
4396
+ .pager .disabled > span {
4089
4397
  color: #999999;
4090
4398
  background-color: #fff;
4091
4399
  cursor: default;
4092
4400
  }
4093
- .modal-open .modal .dropdown-menu {
4094
- z-index: 2050;
4095
- }
4096
- .modal-open .modal .dropdown.open {
4097
- *z-index: 2050;
4098
- }
4099
- .modal-open .modal .popover {
4100
- z-index: 2060;
4101
- }
4102
- .modal-open .modal .tooltip {
4103
- z-index: 2080;
4104
- }
4105
4401
  .modal-backdrop {
4106
4402
  position: fixed;
4107
4403
  top: 0;
@@ -4121,12 +4417,11 @@ input[type="submit"].btn.btn-mini {
4121
4417
  }
4122
4418
  .modal {
4123
4419
  position: fixed;
4124
- top: 50%;
4420
+ top: 10%;
4125
4421
  left: 50%;
4126
4422
  z-index: 1050;
4127
- overflow: auto;
4128
4423
  width: 560px;
4129
- margin: -250px 0 0 -280px;
4424
+ margin-left: -280px;
4130
4425
  background-color: #ffffff;
4131
4426
  border: 1px solid #999;
4132
4427
  border: 1px solid rgba(0, 0, 0, 0.3);
@@ -4142,6 +4437,7 @@ input[type="submit"].btn.btn-mini {
4142
4437
  -webkit-background-clip: padding-box;
4143
4438
  -moz-background-clip: padding-box;
4144
4439
  background-clip: padding-box;
4440
+ outline: none;
4145
4441
  }
4146
4442
  .modal.fade {
4147
4443
  -webkit-transition: opacity .3s linear, top .3s ease-out;
@@ -4151,7 +4447,7 @@ input[type="submit"].btn.btn-mini {
4151
4447
  top: -25%;
4152
4448
  }
4153
4449
  .modal.fade.in {
4154
- top: 50%;
4450
+ top: 10%;
4155
4451
  }
4156
4452
  .modal-header {
4157
4453
  padding: 9px 15px;
@@ -4165,6 +4461,7 @@ input[type="submit"].btn.btn-mini {
4165
4461
  line-height: 30px;
4166
4462
  }
4167
4463
  .modal-body {
4464
+ position: relative;
4168
4465
  overflow-y: auto;
4169
4466
  max-height: 400px;
4170
4467
  padding: 15px;
@@ -4202,13 +4499,16 @@ input[type="submit"].btn.btn-mini {
4202
4499
  .modal-footer .btn-group .btn + .btn {
4203
4500
  margin-left: -1px;
4204
4501
  }
4502
+ .modal-footer .btn-block + .btn-block {
4503
+ margin-left: 0;
4504
+ }
4205
4505
  .tooltip {
4206
4506
  position: absolute;
4207
4507
  z-index: 1030;
4208
4508
  display: block;
4209
4509
  visibility: visible;
4210
- padding: 5px;
4211
4510
  font-size: 11px;
4511
+ line-height: 1.4;
4212
4512
  opacity: 0;
4213
4513
  filter: alpha(opacity=0);
4214
4514
  }
@@ -4218,19 +4518,23 @@ input[type="submit"].btn.btn-mini {
4218
4518
  }
4219
4519
  .tooltip.top {
4220
4520
  margin-top: -3px;
4521
+ padding: 5px 0;
4221
4522
  }
4222
4523
  .tooltip.right {
4223
4524
  margin-left: 3px;
4525
+ padding: 0 5px;
4224
4526
  }
4225
4527
  .tooltip.bottom {
4226
4528
  margin-top: 3px;
4529
+ padding: 5px 0;
4227
4530
  }
4228
4531
  .tooltip.left {
4229
4532
  margin-left: -3px;
4533
+ padding: 0 5px;
4230
4534
  }
4231
4535
  .tooltip-inner {
4232
4536
  max-width: 200px;
4233
- padding: 3px 8px;
4537
+ padding: 8px;
4234
4538
  color: #ffffff;
4235
4539
  text-align: center;
4236
4540
  text-decoration: none;
@@ -4280,8 +4584,9 @@ input[type="submit"].btn.btn-mini {
4280
4584
  left: 0;
4281
4585
  z-index: 1010;
4282
4586
  display: none;
4283
- width: 236px;
4587
+ max-width: 276px;
4284
4588
  padding: 1px;
4589
+ text-align: left;
4285
4590
  background-color: #ffffff;
4286
4591
  -webkit-background-clip: padding-box;
4287
4592
  -moz-background-clip: padding;
@@ -4294,9 +4599,10 @@ input[type="submit"].btn.btn-mini {
4294
4599
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
4295
4600
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
4296
4601
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
4602
+ white-space: normal;
4297
4603
  }
4298
4604
  .popover.top {
4299
- margin-bottom: 10px;
4605
+ margin-top: -10px;
4300
4606
  }
4301
4607
  .popover.right {
4302
4608
  margin-left: 10px;
@@ -4305,7 +4611,7 @@ input[type="submit"].btn.btn-mini {
4305
4611
  margin-top: 10px;
4306
4612
  }
4307
4613
  .popover.left {
4308
- margin-right: 10px;
4614
+ margin-left: -10px;
4309
4615
  }
4310
4616
  .popover-title {
4311
4617
  margin: 0;
@@ -4319,78 +4625,83 @@ input[type="submit"].btn.btn-mini {
4319
4625
  -moz-border-radius: 5px 5px 0 0;
4320
4626
  border-radius: 5px 5px 0 0;
4321
4627
  }
4628
+ .popover-title:empty {
4629
+ display: none;
4630
+ }
4322
4631
  .popover-content {
4323
4632
  padding: 9px 14px;
4324
4633
  }
4325
- .popover-content p,
4326
- .popover-content ul,
4327
- .popover-content ol {
4328
- margin-bottom: 0;
4329
- }
4330
4634
  .popover .arrow,
4331
4635
  .popover .arrow:after {
4332
4636
  position: absolute;
4333
- display: inline-block;
4637
+ display: block;
4334
4638
  width: 0;
4335
4639
  height: 0;
4336
4640
  border-color: transparent;
4337
4641
  border-style: solid;
4338
4642
  }
4643
+ .popover .arrow {
4644
+ border-width: 11px;
4645
+ }
4339
4646
  .popover .arrow:after {
4647
+ border-width: 10px;
4340
4648
  content: "";
4341
- z-index: -1;
4342
4649
  }
4343
4650
  .popover.top .arrow {
4344
- bottom: -10px;
4345
4651
  left: 50%;
4346
- margin-left: -10px;
4347
- border-width: 10px 10px 0;
4348
- border-top-color: #ffffff;
4652
+ margin-left: -11px;
4653
+ border-bottom-width: 0;
4654
+ border-top-color: #999;
4655
+ border-top-color: rgba(0, 0, 0, 0.25);
4656
+ bottom: -11px;
4349
4657
  }
4350
4658
  .popover.top .arrow:after {
4351
- border-width: 11px 11px 0;
4352
- border-top-color: rgba(0, 0, 0, 0.25);
4353
- bottom: -1px;
4354
- left: -11px;
4659
+ bottom: 1px;
4660
+ margin-left: -10px;
4661
+ border-bottom-width: 0;
4662
+ border-top-color: #ffffff;
4355
4663
  }
4356
4664
  .popover.right .arrow {
4357
4665
  top: 50%;
4358
- left: -10px;
4359
- margin-top: -10px;
4360
- border-width: 10px 10px 10px 0;
4361
- border-right-color: #ffffff;
4666
+ left: -11px;
4667
+ margin-top: -11px;
4668
+ border-left-width: 0;
4669
+ border-right-color: #999;
4670
+ border-right-color: rgba(0, 0, 0, 0.25);
4362
4671
  }
4363
4672
  .popover.right .arrow:after {
4364
- border-width: 11px 11px 11px 0;
4365
- border-right-color: rgba(0, 0, 0, 0.25);
4366
- bottom: -11px;
4367
- left: -1px;
4673
+ left: 1px;
4674
+ bottom: -10px;
4675
+ border-left-width: 0;
4676
+ border-right-color: #ffffff;
4368
4677
  }
4369
4678
  .popover.bottom .arrow {
4370
- top: -10px;
4371
4679
  left: 50%;
4372
- margin-left: -10px;
4373
- border-width: 0 10px 10px;
4374
- border-bottom-color: #ffffff;
4680
+ margin-left: -11px;
4681
+ border-top-width: 0;
4682
+ border-bottom-color: #999;
4683
+ border-bottom-color: rgba(0, 0, 0, 0.25);
4684
+ top: -11px;
4375
4685
  }
4376
4686
  .popover.bottom .arrow:after {
4377
- border-width: 0 11px 11px;
4378
- border-bottom-color: rgba(0, 0, 0, 0.25);
4379
- top: -1px;
4380
- left: -11px;
4687
+ top: 1px;
4688
+ margin-left: -10px;
4689
+ border-top-width: 0;
4690
+ border-bottom-color: #ffffff;
4381
4691
  }
4382
4692
  .popover.left .arrow {
4383
4693
  top: 50%;
4384
- right: -10px;
4385
- margin-top: -10px;
4386
- border-width: 10px 0 10px 10px;
4387
- border-left-color: #ffffff;
4694
+ right: -11px;
4695
+ margin-top: -11px;
4696
+ border-right-width: 0;
4697
+ border-left-color: #999;
4698
+ border-left-color: rgba(0, 0, 0, 0.25);
4388
4699
  }
4389
4700
  .popover.left .arrow:after {
4390
- border-width: 11px 0 11px 11px;
4391
- border-left-color: rgba(0, 0, 0, 0.25);
4392
- bottom: -11px;
4393
- right: -1px;
4701
+ right: 1px;
4702
+ border-right-width: 0;
4703
+ border-left-color: #ffffff;
4704
+ bottom: -10px;
4394
4705
  }
4395
4706
  .thumbnails {
4396
4707
  margin-left: -20px;
@@ -4430,7 +4741,8 @@ input[type="submit"].btn.btn-mini {
4430
4741
  -o-transition: all 0.2s ease-in-out;
4431
4742
  transition: all 0.2s ease-in-out;
4432
4743
  }
4433
- a.thumbnail:hover {
4744
+ a.thumbnail:hover,
4745
+ a.thumbnail:focus {
4434
4746
  border-color: #0088cc;
4435
4747
  -webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
4436
4748
  -moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
@@ -4446,8 +4758,39 @@ a.thumbnail:hover {
4446
4758
  padding: 9px;
4447
4759
  color: #555555;
4448
4760
  }
4761
+ .media,
4762
+ .media-body {
4763
+ overflow: hidden;
4764
+ *overflow: visible;
4765
+ zoom: 1;
4766
+ }
4767
+ .media,
4768
+ .media .media {
4769
+ margin-top: 15px;
4770
+ }
4771
+ .media:first-child {
4772
+ margin-top: 0;
4773
+ }
4774
+ .media-object {
4775
+ display: block;
4776
+ }
4777
+ .media-heading {
4778
+ margin: 0 0 5px;
4779
+ }
4780
+ .media > .pull-left {
4781
+ margin-right: 10px;
4782
+ }
4783
+ .media > .pull-right {
4784
+ margin-left: 10px;
4785
+ }
4786
+ .media-list {
4787
+ margin-left: 0;
4788
+ list-style: none;
4789
+ }
4449
4790
  .label,
4450
4791
  .badge {
4792
+ display: inline-block;
4793
+ padding: 2px 4px;
4451
4794
  font-size: 11.844px;
4452
4795
  font-weight: bold;
4453
4796
  line-height: 14px;
@@ -4458,19 +4801,25 @@ a.thumbnail:hover {
4458
4801
  background-color: #999999;
4459
4802
  }
4460
4803
  .label {
4461
- padding: 1px 4px 2px;
4462
4804
  -webkit-border-radius: 3px;
4463
4805
  -moz-border-radius: 3px;
4464
4806
  border-radius: 3px;
4465
4807
  }
4466
4808
  .badge {
4467
- padding: 1px 9px 2px;
4809
+ padding-left: 9px;
4810
+ padding-right: 9px;
4468
4811
  -webkit-border-radius: 9px;
4469
4812
  -moz-border-radius: 9px;
4470
4813
  border-radius: 9px;
4471
4814
  }
4815
+ .label:empty,
4816
+ .badge:empty {
4817
+ display: none;
4818
+ }
4472
4819
  a.label:hover,
4473
- a.badge:hover {
4820
+ a.label:focus,
4821
+ a.badge:hover,
4822
+ a.badge:focus {
4474
4823
  color: #ffffff;
4475
4824
  text-decoration: none;
4476
4825
  cursor: pointer;
@@ -4611,9 +4960,9 @@ a.badge:hover {
4611
4960
  transition: width 0.6s ease;
4612
4961
  }
4613
4962
  .progress .bar + .bar {
4614
- -webkit-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15);
4615
- -moz-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15);
4616
- box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15);
4963
+ -webkit-box-shadow: inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);
4964
+ -moz-box-shadow: inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);
4965
+ box-shadow: inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);
4617
4966
  }
4618
4967
  .progress-striped .bar {
4619
4968
  background-color: #149bdf;
@@ -4748,7 +5097,7 @@ a.badge:hover {
4748
5097
  width: 100%;
4749
5098
  position: relative;
4750
5099
  }
4751
- .carousel .item {
5100
+ .carousel-inner > .item {
4752
5101
  display: none;
4753
5102
  position: relative;
4754
5103
  -webkit-transition: 0.6s ease-in-out left;
@@ -4756,38 +5105,39 @@ a.badge:hover {
4756
5105
  -o-transition: 0.6s ease-in-out left;
4757
5106
  transition: 0.6s ease-in-out left;
4758
5107
  }
4759
- .carousel .item > img {
5108
+ .carousel-inner > .item > img,
5109
+ .carousel-inner > .item > a > img {
4760
5110
  display: block;
4761
5111
  line-height: 1;
4762
5112
  }
4763
- .carousel .active,
4764
- .carousel .next,
4765
- .carousel .prev {
5113
+ .carousel-inner > .active,
5114
+ .carousel-inner > .next,
5115
+ .carousel-inner > .prev {
4766
5116
  display: block;
4767
5117
  }
4768
- .carousel .active {
5118
+ .carousel-inner > .active {
4769
5119
  left: 0;
4770
5120
  }
4771
- .carousel .next,
4772
- .carousel .prev {
5121
+ .carousel-inner > .next,
5122
+ .carousel-inner > .prev {
4773
5123
  position: absolute;
4774
5124
  top: 0;
4775
5125
  width: 100%;
4776
5126
  }
4777
- .carousel .next {
5127
+ .carousel-inner > .next {
4778
5128
  left: 100%;
4779
5129
  }
4780
- .carousel .prev {
5130
+ .carousel-inner > .prev {
4781
5131
  left: -100%;
4782
5132
  }
4783
- .carousel .next.left,
4784
- .carousel .prev.right {
5133
+ .carousel-inner > .next.left,
5134
+ .carousel-inner > .prev.right {
4785
5135
  left: 0;
4786
5136
  }
4787
- .carousel .active.left {
5137
+ .carousel-inner > .active.left {
4788
5138
  left: -100%;
4789
5139
  }
4790
- .carousel .active.right {
5140
+ .carousel-inner > .active.right {
4791
5141
  left: 100%;
4792
5142
  }
4793
5143
  .carousel-control {
@@ -4814,12 +5164,35 @@ a.badge:hover {
4814
5164
  left: auto;
4815
5165
  right: 15px;
4816
5166
  }
4817
- .carousel-control:hover {
5167
+ .carousel-control:hover,
5168
+ .carousel-control:focus {
4818
5169
  color: #ffffff;
4819
5170
  text-decoration: none;
4820
5171
  opacity: 0.9;
4821
5172
  filter: alpha(opacity=90);
4822
5173
  }
5174
+ .carousel-indicators {
5175
+ position: absolute;
5176
+ top: 15px;
5177
+ right: 15px;
5178
+ z-index: 5;
5179
+ margin: 0;
5180
+ list-style: none;
5181
+ }
5182
+ .carousel-indicators li {
5183
+ display: block;
5184
+ float: left;
5185
+ width: 10px;
5186
+ height: 10px;
5187
+ margin-left: 5px;
5188
+ text-indent: -999px;
5189
+ background-color: #ccc;
5190
+ background-color: rgba(255, 255, 255, 0.25);
5191
+ border-radius: 5px;
5192
+ }
5193
+ .carousel-indicators .active {
5194
+ background-color: #fff;
5195
+ }
4823
5196
  .carousel-caption {
4824
5197
  position: absolute;
4825
5198
  left: 0;
@@ -4843,6 +5216,10 @@ a.badge:hover {
4843
5216
  .hero-unit {
4844
5217
  padding: 60px;
4845
5218
  margin-bottom: 30px;
5219
+ font-size: 18px;
5220
+ font-weight: 200;
5221
+ line-height: 30px;
5222
+ color: inherit;
4846
5223
  background-color: #eeeeee;
4847
5224
  -webkit-border-radius: 6px;
4848
5225
  -moz-border-radius: 6px;
@@ -4855,11 +5232,8 @@ a.badge:hover {
4855
5232
  color: inherit;
4856
5233
  letter-spacing: -1px;
4857
5234
  }
4858
- .hero-unit p {
4859
- font-size: 18px;
4860
- font-weight: 200;
5235
+ .hero-unit li {
4861
5236
  line-height: 30px;
4862
- color: inherit;
4863
5237
  }
4864
5238
  .pull-right {
4865
5239
  float: right;