blazer 1.7.7 → 2.6.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (139) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +242 -33
  3. data/CONTRIBUTING.md +42 -0
  4. data/LICENSE.txt +1 -1
  5. data/README.md +621 -211
  6. data/app/assets/fonts/blazer/glyphicons-halflings-regular.eot +0 -0
  7. data/app/assets/fonts/blazer/glyphicons-halflings-regular.svg +0 -0
  8. data/app/assets/fonts/blazer/glyphicons-halflings-regular.ttf +0 -0
  9. data/app/assets/fonts/blazer/glyphicons-halflings-regular.woff +0 -0
  10. data/app/assets/fonts/blazer/glyphicons-halflings-regular.woff2 +0 -0
  11. data/app/assets/images/blazer/favicon.png +0 -0
  12. data/app/assets/javascripts/blazer/Chart.js +15658 -10011
  13. data/app/assets/javascripts/blazer/Sortable.js +3413 -848
  14. data/app/assets/javascripts/blazer/ace/ace.js +21294 -4
  15. data/app/assets/javascripts/blazer/ace/ext-language_tools.js +1991 -3
  16. data/app/assets/javascripts/blazer/ace/mode-sql.js +110 -1
  17. data/app/assets/javascripts/blazer/ace/snippets/sql.js +40 -1
  18. data/app/assets/javascripts/blazer/ace/snippets/text.js +14 -1
  19. data/app/assets/javascripts/blazer/ace/theme-twilight.js +116 -1
  20. data/app/assets/javascripts/blazer/application.js +5 -3
  21. data/app/assets/javascripts/blazer/bootstrap.js +842 -628
  22. data/app/assets/javascripts/blazer/chartkick.js +2015 -1244
  23. data/app/assets/javascripts/blazer/daterangepicker.js +372 -299
  24. data/app/assets/javascripts/blazer/highlight.min.js +3 -0
  25. data/app/assets/javascripts/blazer/{jquery_ujs.js → jquery-ujs.js} +161 -75
  26. data/app/assets/javascripts/blazer/jquery.js +10126 -9562
  27. data/app/assets/javascripts/blazer/jquery.stickytableheaders.js +321 -259
  28. data/app/assets/javascripts/blazer/moment-timezone-with-data.js +1546 -0
  29. data/app/assets/javascripts/blazer/moment.js +5085 -2460
  30. data/app/assets/javascripts/blazer/queries.js +18 -4
  31. data/app/assets/javascripts/blazer/routes.js +3 -0
  32. data/app/assets/javascripts/blazer/selectize.js +3828 -3604
  33. data/app/assets/javascripts/blazer/stupidtable-custom-settings.js +13 -0
  34. data/app/assets/javascripts/blazer/stupidtable.js +254 -87
  35. data/app/assets/javascripts/blazer/vue.js +11175 -6676
  36. data/app/assets/stylesheets/blazer/application.css +51 -6
  37. data/app/assets/stylesheets/blazer/bootstrap-propshaft.css +10 -0
  38. data/app/assets/stylesheets/blazer/bootstrap-sprockets.css.erb +10 -0
  39. data/app/assets/stylesheets/blazer/{bootstrap.css.erb → bootstrap.css} +1337 -711
  40. data/app/assets/stylesheets/blazer/{daterangepicker-bs3.css → daterangepicker.css} +207 -172
  41. data/app/assets/stylesheets/blazer/{selectize.default.css → selectize.css} +26 -10
  42. data/app/controllers/blazer/base_controller.rb +73 -46
  43. data/app/controllers/blazer/checks_controller.rb +1 -1
  44. data/app/controllers/blazer/dashboards_controller.rb +7 -13
  45. data/app/controllers/blazer/queries_controller.rb +171 -51
  46. data/app/controllers/blazer/uploads_controller.rb +147 -0
  47. data/app/helpers/blazer/base_helper.rb +6 -16
  48. data/app/models/blazer/audit.rb +3 -3
  49. data/app/models/blazer/check.rb +31 -5
  50. data/app/models/blazer/dashboard.rb +6 -2
  51. data/app/models/blazer/dashboard_query.rb +1 -1
  52. data/app/models/blazer/query.rb +30 -4
  53. data/app/models/blazer/record.rb +5 -0
  54. data/app/models/blazer/upload.rb +11 -0
  55. data/app/models/blazer/uploads_connection.rb +7 -0
  56. data/app/views/blazer/_nav.html.erb +3 -1
  57. data/app/views/blazer/_variables.html.erb +48 -23
  58. data/app/views/blazer/check_mailer/failing_checks.html.erb +1 -0
  59. data/app/views/blazer/check_mailer/state_change.html.erb +1 -0
  60. data/app/views/blazer/checks/_form.html.erb +17 -9
  61. data/app/views/blazer/checks/edit.html.erb +2 -0
  62. data/app/views/blazer/checks/index.html.erb +37 -5
  63. data/app/views/blazer/checks/new.html.erb +2 -0
  64. data/app/views/blazer/dashboards/_form.html.erb +5 -5
  65. data/app/views/blazer/dashboards/edit.html.erb +2 -0
  66. data/app/views/blazer/dashboards/new.html.erb +2 -0
  67. data/app/views/blazer/dashboards/show.html.erb +13 -7
  68. data/app/views/blazer/queries/_caching.html.erb +16 -0
  69. data/app/views/blazer/queries/_cohorts.html.erb +48 -0
  70. data/app/views/blazer/queries/_form.html.erb +23 -13
  71. data/app/views/blazer/queries/docs.html.erb +137 -0
  72. data/app/views/blazer/queries/home.html.erb +21 -7
  73. data/app/views/blazer/queries/run.html.erb +64 -29
  74. data/app/views/blazer/queries/schema.html.erb +44 -7
  75. data/app/views/blazer/queries/show.html.erb +15 -8
  76. data/app/views/blazer/uploads/_form.html.erb +27 -0
  77. data/app/views/blazer/uploads/edit.html.erb +3 -0
  78. data/app/views/blazer/uploads/index.html.erb +55 -0
  79. data/app/views/blazer/uploads/new.html.erb +3 -0
  80. data/app/views/layouts/blazer/application.html.erb +10 -5
  81. data/config/routes.rb +10 -1
  82. data/lib/blazer/adapters/athena_adapter.rb +182 -0
  83. data/lib/blazer/adapters/base_adapter.rb +24 -1
  84. data/lib/blazer/adapters/bigquery_adapter.rb +79 -0
  85. data/lib/blazer/adapters/cassandra_adapter.rb +70 -0
  86. data/lib/blazer/adapters/drill_adapter.rb +38 -0
  87. data/lib/blazer/adapters/druid_adapter.rb +102 -0
  88. data/lib/blazer/adapters/elasticsearch_adapter.rb +30 -18
  89. data/lib/blazer/adapters/hive_adapter.rb +55 -0
  90. data/lib/blazer/adapters/ignite_adapter.rb +64 -0
  91. data/lib/blazer/adapters/influxdb_adapter.rb +57 -0
  92. data/lib/blazer/adapters/mongodb_adapter.rb +5 -1
  93. data/lib/blazer/adapters/neo4j_adapter.rb +62 -0
  94. data/lib/blazer/adapters/opensearch_adapter.rb +52 -0
  95. data/lib/blazer/adapters/presto_adapter.rb +9 -0
  96. data/lib/blazer/adapters/salesforce_adapter.rb +50 -0
  97. data/lib/blazer/adapters/snowflake_adapter.rb +82 -0
  98. data/lib/blazer/adapters/soda_adapter.rb +105 -0
  99. data/lib/blazer/adapters/spark_adapter.rb +14 -0
  100. data/lib/blazer/adapters/sql_adapter.rb +187 -20
  101. data/{app/mailers → lib}/blazer/check_mailer.rb +0 -0
  102. data/lib/blazer/data_source.rb +107 -30
  103. data/lib/blazer/engine.rb +21 -23
  104. data/lib/blazer/result.rb +95 -29
  105. data/lib/blazer/run_statement.rb +8 -4
  106. data/lib/blazer/run_statement_job.rb +8 -9
  107. data/lib/blazer/slack_notifier.rb +94 -0
  108. data/lib/blazer/statement.rb +75 -0
  109. data/lib/blazer/version.rb +1 -1
  110. data/lib/blazer.rb +154 -26
  111. data/lib/generators/blazer/install_generator.rb +7 -18
  112. data/lib/generators/blazer/templates/{config.yml → config.yml.tt} +26 -3
  113. data/lib/generators/blazer/templates/{install.rb → install.rb.tt} +6 -4
  114. data/lib/generators/blazer/templates/uploads.rb.tt +10 -0
  115. data/lib/generators/blazer/uploads_generator.rb +18 -0
  116. data/lib/tasks/blazer.rake +11 -1
  117. data/licenses/LICENSE-ace.txt +24 -0
  118. data/licenses/LICENSE-bootstrap.txt +21 -0
  119. data/licenses/LICENSE-chart.js.txt +9 -0
  120. data/licenses/LICENSE-chartkick.js.txt +22 -0
  121. data/licenses/LICENSE-daterangepicker.txt +21 -0
  122. data/licenses/LICENSE-fuzzysearch.txt +20 -0
  123. data/licenses/LICENSE-highlight.js.txt +29 -0
  124. data/licenses/LICENSE-jquery-ujs.txt +20 -0
  125. data/licenses/LICENSE-jquery.txt +20 -0
  126. data/licenses/LICENSE-moment-timezone.txt +20 -0
  127. data/licenses/LICENSE-moment.txt +22 -0
  128. data/licenses/LICENSE-selectize.txt +202 -0
  129. data/licenses/LICENSE-sortable.txt +21 -0
  130. data/licenses/LICENSE-stickytableheaders.txt +20 -0
  131. data/licenses/LICENSE-stupidtable.txt +19 -0
  132. data/licenses/LICENSE-vue.txt +21 -0
  133. metadata +83 -53
  134. data/.gitignore +0 -14
  135. data/Gemfile +0 -4
  136. data/Rakefile +0 -1
  137. data/app/assets/javascripts/blazer/highlight.pack.js +0 -1
  138. data/app/assets/javascripts/blazer/moment-timezone.js +0 -1007
  139. data/blazer.gemspec +0 -26
@@ -1,14 +1,13 @@
1
1
  /*!
2
- * Bootstrap v3.2.0 (http://getbootstrap.com)
3
- * Copyright 2011-2014 Twitter, Inc.
2
+ * Bootstrap v3.4.1 (https://getbootstrap.com/)
3
+ * Copyright 2011-2019 Twitter, Inc.
4
4
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
5
5
  */
6
-
7
- /*! normalize.css v3.0.1 | MIT License | git.io/normalize */
6
+ /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
8
7
  html {
9
8
  font-family: sans-serif;
9
+ -ms-text-size-adjust: 100%;
10
10
  -webkit-text-size-adjust: 100%;
11
- -ms-text-size-adjust: 100%;
12
11
  }
13
12
  body {
14
13
  margin: 0;
@@ -22,6 +21,7 @@ footer,
22
21
  header,
23
22
  hgroup,
24
23
  main,
24
+ menu,
25
25
  nav,
26
26
  section,
27
27
  summary {
@@ -43,14 +43,18 @@ template {
43
43
  display: none;
44
44
  }
45
45
  a {
46
- background: transparent;
46
+ background-color: transparent;
47
47
  }
48
48
  a:active,
49
49
  a:hover {
50
50
  outline: 0;
51
51
  }
52
52
  abbr[title] {
53
- border-bottom: 1px dotted;
53
+ border-bottom: none;
54
+ text-decoration: underline;
55
+ -webkit-text-decoration: underline dotted;
56
+ -moz-text-decoration: underline dotted;
57
+ text-decoration: underline dotted;
54
58
  }
55
59
  b,
56
60
  strong {
@@ -60,28 +64,28 @@ dfn {
60
64
  font-style: italic;
61
65
  }
62
66
  h1 {
63
- margin: .67em 0;
64
67
  font-size: 2em;
68
+ margin: 0.67em 0;
65
69
  }
66
70
  mark {
67
- color: #000;
68
71
  background: #ff0;
72
+ color: #000;
69
73
  }
70
74
  small {
71
75
  font-size: 80%;
72
76
  }
73
77
  sub,
74
78
  sup {
75
- position: relative;
76
79
  font-size: 75%;
77
80
  line-height: 0;
81
+ position: relative;
78
82
  vertical-align: baseline;
79
83
  }
80
84
  sup {
81
- top: -.5em;
85
+ top: -0.5em;
82
86
  }
83
87
  sub {
84
- bottom: -.25em;
88
+ bottom: -0.25em;
85
89
  }
86
90
  img {
87
91
  border: 0;
@@ -93,10 +97,10 @@ figure {
93
97
  margin: 1em 40px;
94
98
  }
95
99
  hr {
96
- height: 0;
97
100
  -webkit-box-sizing: content-box;
98
- -moz-box-sizing: content-box;
99
- box-sizing: content-box;
101
+ -moz-box-sizing: content-box;
102
+ box-sizing: content-box;
103
+ height: 0;
100
104
  }
101
105
  pre {
102
106
  overflow: auto;
@@ -113,9 +117,9 @@ input,
113
117
  optgroup,
114
118
  select,
115
119
  textarea {
116
- margin: 0;
117
- font: inherit;
118
120
  color: inherit;
121
+ font: inherit;
122
+ margin: 0;
119
123
  }
120
124
  button {
121
125
  overflow: visible;
@@ -137,8 +141,8 @@ html input[disabled] {
137
141
  }
138
142
  button::-moz-focus-inner,
139
143
  input::-moz-focus-inner {
140
- padding: 0;
141
144
  border: 0;
145
+ padding: 0;
142
146
  }
143
147
  input {
144
148
  line-height: normal;
@@ -146,8 +150,8 @@ input {
146
150
  input[type="checkbox"],
147
151
  input[type="radio"] {
148
152
  -webkit-box-sizing: border-box;
149
- -moz-box-sizing: border-box;
150
- box-sizing: border-box;
153
+ -moz-box-sizing: border-box;
154
+ box-sizing: border-box;
151
155
  padding: 0;
152
156
  }
153
157
  input[type="number"]::-webkit-inner-spin-button,
@@ -155,23 +159,23 @@ input[type="number"]::-webkit-outer-spin-button {
155
159
  height: auto;
156
160
  }
157
161
  input[type="search"] {
158
- -webkit-box-sizing: content-box;
159
- -moz-box-sizing: content-box;
160
- box-sizing: content-box;
161
162
  -webkit-appearance: textfield;
163
+ -webkit-box-sizing: content-box;
164
+ -moz-box-sizing: content-box;
165
+ box-sizing: content-box;
162
166
  }
163
167
  input[type="search"]::-webkit-search-cancel-button,
164
168
  input[type="search"]::-webkit-search-decoration {
165
169
  -webkit-appearance: none;
166
170
  }
167
171
  fieldset {
168
- padding: .35em .625em .75em;
169
- margin: 0 2px;
170
172
  border: 1px solid #c0c0c0;
173
+ margin: 0 2px;
174
+ padding: 0.35em 0.625em 0.75em;
171
175
  }
172
176
  legend {
173
- padding: 0;
174
177
  border: 0;
178
+ padding: 0;
175
179
  }
176
180
  textarea {
177
181
  overflow: auto;
@@ -180,20 +184,23 @@ optgroup {
180
184
  font-weight: bold;
181
185
  }
182
186
  table {
183
- border-spacing: 0;
184
187
  border-collapse: collapse;
188
+ border-spacing: 0;
185
189
  }
186
190
  td,
187
191
  th {
188
192
  padding: 0;
189
193
  }
194
+ /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
190
195
  @media print {
191
- * {
196
+ *,
197
+ *:before,
198
+ *:after {
192
199
  color: #000 !important;
193
200
  text-shadow: none !important;
194
201
  background: transparent !important;
195
202
  -webkit-box-shadow: none !important;
196
- box-shadow: none !important;
203
+ box-shadow: none !important;
197
204
  }
198
205
  a,
199
206
  a:visited {
@@ -205,14 +212,13 @@ th {
205
212
  abbr[title]:after {
206
213
  content: " (" attr(title) ")";
207
214
  }
208
- a[href^="javascript:"]:after,
209
- a[href^="#"]:after {
215
+ a[href^="#"]:after,
216
+ a[href^="javascript:"]:after {
210
217
  content: "";
211
218
  }
212
219
  pre,
213
220
  blockquote {
214
221
  border: 1px solid #999;
215
-
216
222
  page-break-inside: avoid;
217
223
  }
218
224
  thead {
@@ -235,16 +241,9 @@ th {
235
241
  h3 {
236
242
  page-break-after: avoid;
237
243
  }
238
- select {
239
- background: #fff !important;
240
- }
241
244
  .navbar {
242
245
  display: none;
243
246
  }
244
- .table td,
245
- .table th {
246
- background-color: #fff !important;
247
- }
248
247
  .btn > .caret,
249
248
  .dropup > .btn > .caret {
250
249
  border-top-color: #000 !important;
@@ -255,36 +254,34 @@ th {
255
254
  .table {
256
255
  border-collapse: collapse !important;
257
256
  }
257
+ .table td,
258
+ .table th {
259
+ background-color: #fff !important;
260
+ }
258
261
  .table-bordered th,
259
262
  .table-bordered td {
260
263
  border: 1px solid #ddd !important;
261
264
  }
262
265
  }
263
- @font-face {
264
- font-family: 'Glyphicons Halflings';
265
-
266
- src: url('<%= font_path("blazer/glyphicons-halflings-regular.eot") %>');
267
- src: url('<%= font_path("blazer/glyphicons-halflings-regular.eot?#iefix") %>') format('embedded-opentype'), url('<%= font_path("blazer/glyphicons-halflings-regular.woff") %>') format('woff'), url('<%= font_path("blazer/glyphicons-halflings-regular.ttf") %>') format('truetype'), url('<%= font_path("blazer/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") %>') format('svg');
268
- }
269
266
  .glyphicon {
270
267
  position: relative;
271
268
  top: 1px;
272
269
  display: inline-block;
273
- font-family: 'Glyphicons Halflings';
270
+ font-family: "Glyphicons Halflings";
274
271
  font-style: normal;
275
- font-weight: normal;
272
+ font-weight: 400;
276
273
  line-height: 1;
277
-
278
274
  -webkit-font-smoothing: antialiased;
279
275
  -moz-osx-font-smoothing: grayscale;
280
276
  }
281
277
  .glyphicon-asterisk:before {
282
- content: "\2a";
278
+ content: "\002a";
283
279
  }
284
280
  .glyphicon-plus:before {
285
- content: "\2b";
281
+ content: "\002b";
286
282
  }
287
- .glyphicon-euro:before {
283
+ .glyphicon-euro:before,
284
+ .glyphicon-eur:before {
288
285
  content: "\20ac";
289
286
  }
290
287
  .glyphicon-minus:before {
@@ -878,27 +875,212 @@ th {
878
875
  .glyphicon-tree-deciduous:before {
879
876
  content: "\e200";
880
877
  }
878
+ .glyphicon-cd:before {
879
+ content: "\e201";
880
+ }
881
+ .glyphicon-save-file:before {
882
+ content: "\e202";
883
+ }
884
+ .glyphicon-open-file:before {
885
+ content: "\e203";
886
+ }
887
+ .glyphicon-level-up:before {
888
+ content: "\e204";
889
+ }
890
+ .glyphicon-copy:before {
891
+ content: "\e205";
892
+ }
893
+ .glyphicon-paste:before {
894
+ content: "\e206";
895
+ }
896
+ .glyphicon-alert:before {
897
+ content: "\e209";
898
+ }
899
+ .glyphicon-equalizer:before {
900
+ content: "\e210";
901
+ }
902
+ .glyphicon-king:before {
903
+ content: "\e211";
904
+ }
905
+ .glyphicon-queen:before {
906
+ content: "\e212";
907
+ }
908
+ .glyphicon-pawn:before {
909
+ content: "\e213";
910
+ }
911
+ .glyphicon-bishop:before {
912
+ content: "\e214";
913
+ }
914
+ .glyphicon-knight:before {
915
+ content: "\e215";
916
+ }
917
+ .glyphicon-baby-formula:before {
918
+ content: "\e216";
919
+ }
920
+ .glyphicon-tent:before {
921
+ content: "\26fa";
922
+ }
923
+ .glyphicon-blackboard:before {
924
+ content: "\e218";
925
+ }
926
+ .glyphicon-bed:before {
927
+ content: "\e219";
928
+ }
929
+ .glyphicon-apple:before {
930
+ content: "\f8ff";
931
+ }
932
+ .glyphicon-erase:before {
933
+ content: "\e221";
934
+ }
935
+ .glyphicon-hourglass:before {
936
+ content: "\231b";
937
+ }
938
+ .glyphicon-lamp:before {
939
+ content: "\e223";
940
+ }
941
+ .glyphicon-duplicate:before {
942
+ content: "\e224";
943
+ }
944
+ .glyphicon-piggy-bank:before {
945
+ content: "\e225";
946
+ }
947
+ .glyphicon-scissors:before {
948
+ content: "\e226";
949
+ }
950
+ .glyphicon-bitcoin:before {
951
+ content: "\e227";
952
+ }
953
+ .glyphicon-btc:before {
954
+ content: "\e227";
955
+ }
956
+ .glyphicon-xbt:before {
957
+ content: "\e227";
958
+ }
959
+ .glyphicon-yen:before {
960
+ content: "\00a5";
961
+ }
962
+ .glyphicon-jpy:before {
963
+ content: "\00a5";
964
+ }
965
+ .glyphicon-ruble:before {
966
+ content: "\20bd";
967
+ }
968
+ .glyphicon-rub:before {
969
+ content: "\20bd";
970
+ }
971
+ .glyphicon-scale:before {
972
+ content: "\e230";
973
+ }
974
+ .glyphicon-ice-lolly:before {
975
+ content: "\e231";
976
+ }
977
+ .glyphicon-ice-lolly-tasted:before {
978
+ content: "\e232";
979
+ }
980
+ .glyphicon-education:before {
981
+ content: "\e233";
982
+ }
983
+ .glyphicon-option-horizontal:before {
984
+ content: "\e234";
985
+ }
986
+ .glyphicon-option-vertical:before {
987
+ content: "\e235";
988
+ }
989
+ .glyphicon-menu-hamburger:before {
990
+ content: "\e236";
991
+ }
992
+ .glyphicon-modal-window:before {
993
+ content: "\e237";
994
+ }
995
+ .glyphicon-oil:before {
996
+ content: "\e238";
997
+ }
998
+ .glyphicon-grain:before {
999
+ content: "\e239";
1000
+ }
1001
+ .glyphicon-sunglasses:before {
1002
+ content: "\e240";
1003
+ }
1004
+ .glyphicon-text-size:before {
1005
+ content: "\e241";
1006
+ }
1007
+ .glyphicon-text-color:before {
1008
+ content: "\e242";
1009
+ }
1010
+ .glyphicon-text-background:before {
1011
+ content: "\e243";
1012
+ }
1013
+ .glyphicon-object-align-top:before {
1014
+ content: "\e244";
1015
+ }
1016
+ .glyphicon-object-align-bottom:before {
1017
+ content: "\e245";
1018
+ }
1019
+ .glyphicon-object-align-horizontal:before {
1020
+ content: "\e246";
1021
+ }
1022
+ .glyphicon-object-align-left:before {
1023
+ content: "\e247";
1024
+ }
1025
+ .glyphicon-object-align-vertical:before {
1026
+ content: "\e248";
1027
+ }
1028
+ .glyphicon-object-align-right:before {
1029
+ content: "\e249";
1030
+ }
1031
+ .glyphicon-triangle-right:before {
1032
+ content: "\e250";
1033
+ }
1034
+ .glyphicon-triangle-left:before {
1035
+ content: "\e251";
1036
+ }
1037
+ .glyphicon-triangle-bottom:before {
1038
+ content: "\e252";
1039
+ }
1040
+ .glyphicon-triangle-top:before {
1041
+ content: "\e253";
1042
+ }
1043
+ .glyphicon-console:before {
1044
+ content: "\e254";
1045
+ }
1046
+ .glyphicon-superscript:before {
1047
+ content: "\e255";
1048
+ }
1049
+ .glyphicon-subscript:before {
1050
+ content: "\e256";
1051
+ }
1052
+ .glyphicon-menu-left:before {
1053
+ content: "\e257";
1054
+ }
1055
+ .glyphicon-menu-right:before {
1056
+ content: "\e258";
1057
+ }
1058
+ .glyphicon-menu-down:before {
1059
+ content: "\e259";
1060
+ }
1061
+ .glyphicon-menu-up:before {
1062
+ content: "\e260";
1063
+ }
881
1064
  * {
882
1065
  -webkit-box-sizing: border-box;
883
- -moz-box-sizing: border-box;
884
- box-sizing: border-box;
1066
+ -moz-box-sizing: border-box;
1067
+ box-sizing: border-box;
885
1068
  }
886
1069
  *:before,
887
1070
  *:after {
888
1071
  -webkit-box-sizing: border-box;
889
- -moz-box-sizing: border-box;
890
- box-sizing: border-box;
1072
+ -moz-box-sizing: border-box;
1073
+ box-sizing: border-box;
891
1074
  }
892
1075
  html {
893
1076
  font-size: 10px;
894
-
895
1077
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
896
1078
  }
897
1079
  body {
898
1080
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
899
1081
  font-size: 14px;
900
1082
  line-height: 1.42857143;
901
- color: #333;
1083
+ color: #333333;
902
1084
  background-color: #fff;
903
1085
  }
904
1086
  input,
@@ -910,16 +1092,15 @@ textarea {
910
1092
  line-height: inherit;
911
1093
  }
912
1094
  a {
913
- color: #428bca;
1095
+ color: #337ab7;
914
1096
  text-decoration: none;
915
1097
  }
916
1098
  a:hover,
917
1099
  a:focus {
918
- color: #2a6496;
1100
+ color: #23527c;
919
1101
  text-decoration: underline;
920
1102
  }
921
1103
  a:focus {
922
- outline: thin dotted;
923
1104
  outline: 5px auto -webkit-focus-ring-color;
924
1105
  outline-offset: -2px;
925
1106
  }
@@ -935,7 +1116,6 @@ img {
935
1116
  .carousel-inner > .item > img,
936
1117
  .carousel-inner > .item > a > img {
937
1118
  display: block;
938
- width: 100% \9;
939
1119
  max-width: 100%;
940
1120
  height: auto;
941
1121
  }
@@ -943,18 +1123,17 @@ img {
943
1123
  border-radius: 6px;
944
1124
  }
945
1125
  .img-thumbnail {
946
- display: inline-block;
947
- width: 100% \9;
948
- max-width: 100%;
949
- height: auto;
950
1126
  padding: 4px;
951
1127
  line-height: 1.42857143;
952
1128
  background-color: #fff;
953
1129
  border: 1px solid #ddd;
954
1130
  border-radius: 4px;
955
- -webkit-transition: all .2s ease-in-out;
956
- -o-transition: all .2s ease-in-out;
957
- transition: all .2s ease-in-out;
1131
+ -webkit-transition: all 0.2s ease-in-out;
1132
+ -o-transition: all 0.2s ease-in-out;
1133
+ transition: all 0.2s ease-in-out;
1134
+ display: inline-block;
1135
+ max-width: 100%;
1136
+ height: auto;
958
1137
  }
959
1138
  .img-circle {
960
1139
  border-radius: 50%;
@@ -963,7 +1142,7 @@ hr {
963
1142
  margin-top: 20px;
964
1143
  margin-bottom: 20px;
965
1144
  border: 0;
966
- border-top: 1px solid #eee;
1145
+ border-top: 1px solid #eeeeee;
967
1146
  }
968
1147
  .sr-only {
969
1148
  position: absolute;
@@ -984,6 +1163,9 @@ hr {
984
1163
  overflow: visible;
985
1164
  clip: auto;
986
1165
  }
1166
+ [role="button"] {
1167
+ cursor: pointer;
1168
+ }
987
1169
  h1,
988
1170
  h2,
989
1171
  h3,
@@ -1025,9 +1207,9 @@ h6 .small,
1025
1207
  .h4 .small,
1026
1208
  .h5 .small,
1027
1209
  .h6 .small {
1028
- font-weight: normal;
1210
+ font-weight: 400;
1029
1211
  line-height: 1;
1030
- color: #777;
1212
+ color: #777777;
1031
1213
  }
1032
1214
  h1,
1033
1215
  .h1,
@@ -1117,12 +1299,9 @@ small,
1117
1299
  .small {
1118
1300
  font-size: 85%;
1119
1301
  }
1120
- cite {
1121
- font-style: normal;
1122
- }
1123
1302
  mark,
1124
1303
  .mark {
1125
- padding: .2em;
1304
+ padding: 0.2em;
1126
1305
  background-color: #fcf8e3;
1127
1306
  }
1128
1307
  .text-left {
@@ -1150,73 +1329,83 @@ mark,
1150
1329
  text-transform: capitalize;
1151
1330
  }
1152
1331
  .text-muted {
1153
- color: #777;
1332
+ color: #777777;
1154
1333
  }
1155
1334
  .text-primary {
1156
- color: #428bca;
1335
+ color: #337ab7;
1157
1336
  }
1158
- a.text-primary:hover {
1159
- color: #3071a9;
1337
+ a.text-primary:hover,
1338
+ a.text-primary:focus {
1339
+ color: #286090;
1160
1340
  }
1161
1341
  .text-success {
1162
1342
  color: #3c763d;
1163
1343
  }
1164
- a.text-success:hover {
1344
+ a.text-success:hover,
1345
+ a.text-success:focus {
1165
1346
  color: #2b542c;
1166
1347
  }
1167
1348
  .text-info {
1168
1349
  color: #31708f;
1169
1350
  }
1170
- a.text-info:hover {
1351
+ a.text-info:hover,
1352
+ a.text-info:focus {
1171
1353
  color: #245269;
1172
1354
  }
1173
1355
  .text-warning {
1174
1356
  color: #8a6d3b;
1175
1357
  }
1176
- a.text-warning:hover {
1358
+ a.text-warning:hover,
1359
+ a.text-warning:focus {
1177
1360
  color: #66512c;
1178
1361
  }
1179
1362
  .text-danger {
1180
1363
  color: #a94442;
1181
1364
  }
1182
- a.text-danger:hover {
1365
+ a.text-danger:hover,
1366
+ a.text-danger:focus {
1183
1367
  color: #843534;
1184
1368
  }
1185
1369
  .bg-primary {
1186
1370
  color: #fff;
1187
- background-color: #428bca;
1371
+ background-color: #337ab7;
1188
1372
  }
1189
- a.bg-primary:hover {
1190
- background-color: #3071a9;
1373
+ a.bg-primary:hover,
1374
+ a.bg-primary:focus {
1375
+ background-color: #286090;
1191
1376
  }
1192
1377
  .bg-success {
1193
1378
  background-color: #dff0d8;
1194
1379
  }
1195
- a.bg-success:hover {
1380
+ a.bg-success:hover,
1381
+ a.bg-success:focus {
1196
1382
  background-color: #c1e2b3;
1197
1383
  }
1198
1384
  .bg-info {
1199
1385
  background-color: #d9edf7;
1200
1386
  }
1201
- a.bg-info:hover {
1387
+ a.bg-info:hover,
1388
+ a.bg-info:focus {
1202
1389
  background-color: #afd9ee;
1203
1390
  }
1204
1391
  .bg-warning {
1205
1392
  background-color: #fcf8e3;
1206
1393
  }
1207
- a.bg-warning:hover {
1394
+ a.bg-warning:hover,
1395
+ a.bg-warning:focus {
1208
1396
  background-color: #f7ecb5;
1209
1397
  }
1210
1398
  .bg-danger {
1211
1399
  background-color: #f2dede;
1212
1400
  }
1213
- a.bg-danger:hover {
1401
+ a.bg-danger:hover,
1402
+ a.bg-danger:focus {
1214
1403
  background-color: #e4b9b9;
1215
1404
  }
1216
1405
  .page-header {
1217
1406
  padding-bottom: 9px;
1218
1407
  margin: 40px 0 20px;
1219
- border-bottom: 1px solid #eee;
1408
+ border-bottom: 1px solid #eeeeee;
1220
1409
  }
1221
1410
  ul,
1222
1411
  ol {
@@ -1235,8 +1424,8 @@ ol ol {
1235
1424
  }
1236
1425
  .list-inline {
1237
1426
  padding-left: 0;
1238
- margin-left: -5px;
1239
1427
  list-style: none;
1428
+ margin-left: -5px;
1240
1429
  }
1241
1430
  .list-inline > li {
1242
1431
  display: inline-block;
@@ -1252,7 +1441,7 @@ dd {
1252
1441
  line-height: 1.42857143;
1253
1442
  }
1254
1443
  dt {
1255
- font-weight: bold;
1444
+ font-weight: 700;
1256
1445
  }
1257
1446
  dd {
1258
1447
  margin-left: 0;
@@ -1261,9 +1450,9 @@ dd {
1261
1450
  .dl-horizontal dt {
1262
1451
  float: left;
1263
1452
  width: 160px;
1264
- overflow: hidden;
1265
1453
  clear: left;
1266
1454
  text-align: right;
1455
+ overflow: hidden;
1267
1456
  text-overflow: ellipsis;
1268
1457
  white-space: nowrap;
1269
1458
  }
@@ -1274,7 +1463,6 @@ dd {
1274
1463
  abbr[title],
1275
1464
  abbr[data-original-title] {
1276
1465
  cursor: help;
1277
- border-bottom: 1px dotted #777;
1278
1466
  }
1279
1467
  .initialism {
1280
1468
  font-size: 90%;
@@ -1284,7 +1472,7 @@ blockquote {
1284
1472
  padding: 10px 20px;
1285
1473
  margin: 0 0 20px;
1286
1474
  font-size: 17.5px;
1287
- border-left: 5px solid #eee;
1475
+ border-left: 5px solid #eeeeee;
1288
1476
  }
1289
1477
  blockquote p:last-child,
1290
1478
  blockquote ul:last-child,
@@ -1297,19 +1485,19 @@ blockquote .small {
1297
1485
  display: block;
1298
1486
  font-size: 80%;
1299
1487
  line-height: 1.42857143;
1300
- color: #777;
1488
+ color: #777777;
1301
1489
  }
1302
1490
  blockquote footer:before,
1303
1491
  blockquote small:before,
1304
1492
  blockquote .small:before {
1305
- content: '\2014 \00A0';
1493
+ content: "\2014 \00A0";
1306
1494
  }
1307
1495
  .blockquote-reverse,
1308
1496
  blockquote.pull-right {
1309
1497
  padding-right: 15px;
1310
1498
  padding-left: 0;
1311
1499
  text-align: right;
1312
- border-right: 5px solid #eee;
1500
+ border-right: 5px solid #eeeeee;
1313
1501
  border-left: 0;
1314
1502
  }
1315
1503
  .blockquote-reverse footer:before,
@@ -1318,7 +1506,7 @@ blockquote.pull-right footer:before,
1318
1506
  blockquote.pull-right small:before,
1319
1507
  .blockquote-reverse .small:before,
1320
1508
  blockquote.pull-right .small:before {
1321
- content: '';
1509
+ content: "";
1322
1510
  }
1323
1511
  .blockquote-reverse footer:after,
1324
1512
  blockquote.pull-right footer:after,
@@ -1326,11 +1514,7 @@ blockquote.pull-right footer:after,
1326
1514
  blockquote.pull-right small:after,
1327
1515
  .blockquote-reverse .small:after,
1328
1516
  blockquote.pull-right .small:after {
1329
- content: '\00A0 \2014';
1330
- }
1331
- blockquote:before,
1332
- blockquote:after {
1333
- content: "";
1517
+ content: "\00A0 \2014";
1334
1518
  }
1335
1519
  address {
1336
1520
  margin-bottom: 20px;
@@ -1356,14 +1540,15 @@ kbd {
1356
1540
  color: #fff;
1357
1541
  background-color: #333;
1358
1542
  border-radius: 3px;
1359
- -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
1360
- box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
1543
+ -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
1544
+ box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
1361
1545
  }
1362
1546
  kbd kbd {
1363
1547
  padding: 0;
1364
1548
  font-size: 100%;
1549
+ font-weight: 700;
1365
1550
  -webkit-box-shadow: none;
1366
- box-shadow: none;
1551
+ box-shadow: none;
1367
1552
  }
1368
1553
  pre {
1369
1554
  display: block;
@@ -1371,7 +1556,7 @@ pre {
1371
1556
  margin: 0 0 10px;
1372
1557
  font-size: 13px;
1373
1558
  line-height: 1.42857143;
1374
- color: #333;
1559
+ color: #333333;
1375
1560
  word-break: break-all;
1376
1561
  word-wrap: break-word;
1377
1562
  background-color: #f5f5f5;
@@ -1421,13 +1606,79 @@ pre code {
1421
1606
  margin-right: -15px;
1422
1607
  margin-left: -15px;
1423
1608
  }
1424
- .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
1609
+ .row-no-gutters {
1610
+ margin-right: 0;
1611
+ margin-left: 0;
1612
+ }
1613
+ .row-no-gutters [class*="col-"] {
1614
+ padding-right: 0;
1615
+ padding-left: 0;
1616
+ }
1617
+ .col-xs-1,
1618
+ .col-sm-1,
1619
+ .col-md-1,
1620
+ .col-lg-1,
1621
+ .col-xs-2,
1622
+ .col-sm-2,
1623
+ .col-md-2,
1624
+ .col-lg-2,
1625
+ .col-xs-3,
1626
+ .col-sm-3,
1627
+ .col-md-3,
1628
+ .col-lg-3,
1629
+ .col-xs-4,
1630
+ .col-sm-4,
1631
+ .col-md-4,
1632
+ .col-lg-4,
1633
+ .col-xs-5,
1634
+ .col-sm-5,
1635
+ .col-md-5,
1636
+ .col-lg-5,
1637
+ .col-xs-6,
1638
+ .col-sm-6,
1639
+ .col-md-6,
1640
+ .col-lg-6,
1641
+ .col-xs-7,
1642
+ .col-sm-7,
1643
+ .col-md-7,
1644
+ .col-lg-7,
1645
+ .col-xs-8,
1646
+ .col-sm-8,
1647
+ .col-md-8,
1648
+ .col-lg-8,
1649
+ .col-xs-9,
1650
+ .col-sm-9,
1651
+ .col-md-9,
1652
+ .col-lg-9,
1653
+ .col-xs-10,
1654
+ .col-sm-10,
1655
+ .col-md-10,
1656
+ .col-lg-10,
1657
+ .col-xs-11,
1658
+ .col-sm-11,
1659
+ .col-md-11,
1660
+ .col-lg-11,
1661
+ .col-xs-12,
1662
+ .col-sm-12,
1663
+ .col-md-12,
1664
+ .col-lg-12 {
1425
1665
  position: relative;
1426
1666
  min-height: 1px;
1427
1667
  padding-right: 15px;
1428
1668
  padding-left: 15px;
1429
1669
  }
1430
- .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
1670
+ .col-xs-1,
1671
+ .col-xs-2,
1672
+ .col-xs-3,
1673
+ .col-xs-4,
1674
+ .col-xs-5,
1675
+ .col-xs-6,
1676
+ .col-xs-7,
1677
+ .col-xs-8,
1678
+ .col-xs-9,
1679
+ .col-xs-10,
1680
+ .col-xs-11,
1681
+ .col-xs-12 {
1431
1682
  float: left;
1432
1683
  }
1433
1684
  .col-xs-12 {
@@ -1581,10 +1832,21 @@ pre code {
1581
1832
  margin-left: 8.33333333%;
1582
1833
  }
1583
1834
  .col-xs-offset-0 {
1584
- margin-left: 0;
1835
+ margin-left: 0%;
1585
1836
  }
1586
1837
  @media (min-width: 768px) {
1587
- .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
1838
+ .col-sm-1,
1839
+ .col-sm-2,
1840
+ .col-sm-3,
1841
+ .col-sm-4,
1842
+ .col-sm-5,
1843
+ .col-sm-6,
1844
+ .col-sm-7,
1845
+ .col-sm-8,
1846
+ .col-sm-9,
1847
+ .col-sm-10,
1848
+ .col-sm-11,
1849
+ .col-sm-12 {
1588
1850
  float: left;
1589
1851
  }
1590
1852
  .col-sm-12 {
@@ -1738,11 +2000,22 @@ pre code {
1738
2000
  margin-left: 8.33333333%;
1739
2001
  }
1740
2002
  .col-sm-offset-0 {
1741
- margin-left: 0;
2003
+ margin-left: 0%;
1742
2004
  }
1743
2005
  }
1744
2006
  @media (min-width: 992px) {
1745
- .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
2007
+ .col-md-1,
2008
+ .col-md-2,
2009
+ .col-md-3,
2010
+ .col-md-4,
2011
+ .col-md-5,
2012
+ .col-md-6,
2013
+ .col-md-7,
2014
+ .col-md-8,
2015
+ .col-md-9,
2016
+ .col-md-10,
2017
+ .col-md-11,
2018
+ .col-md-12 {
1746
2019
  float: left;
1747
2020
  }
1748
2021
  .col-md-12 {
@@ -1896,11 +2169,22 @@ pre code {
1896
2169
  margin-left: 8.33333333%;
1897
2170
  }
1898
2171
  .col-md-offset-0 {
1899
- margin-left: 0;
2172
+ margin-left: 0%;
1900
2173
  }
1901
2174
  }
1902
2175
  @media (min-width: 1200px) {
1903
- .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
2176
+ .col-lg-1,
2177
+ .col-lg-2,
2178
+ .col-lg-3,
2179
+ .col-lg-4,
2180
+ .col-lg-5,
2181
+ .col-lg-6,
2182
+ .col-lg-7,
2183
+ .col-lg-8,
2184
+ .col-lg-9,
2185
+ .col-lg-10,
2186
+ .col-lg-11,
2187
+ .col-lg-12 {
1904
2188
  float: left;
1905
2189
  }
1906
2190
  .col-lg-12 {
@@ -2054,12 +2338,29 @@ pre code {
2054
2338
  margin-left: 8.33333333%;
2055
2339
  }
2056
2340
  .col-lg-offset-0 {
2057
- margin-left: 0;
2341
+ margin-left: 0%;
2058
2342
  }
2059
2343
  }
2060
2344
  table {
2061
2345
  background-color: transparent;
2062
2346
  }
2347
+ table col[class*="col-"] {
2348
+ position: static;
2349
+ display: table-column;
2350
+ float: none;
2351
+ }
2352
+ table td[class*="col-"],
2353
+ table th[class*="col-"] {
2354
+ position: static;
2355
+ display: table-cell;
2356
+ float: none;
2357
+ }
2358
+ caption {
2359
+ padding-top: 8px;
2360
+ padding-bottom: 8px;
2361
+ color: #777777;
2362
+ text-align: left;
2363
+ }
2063
2364
  th {
2064
2365
  text-align: left;
2065
2366
  }
@@ -2120,25 +2421,12 @@ th {
2120
2421
  .table-bordered > thead > tr > td {
2121
2422
  border-bottom-width: 2px;
2122
2423
  }
2123
- .table-striped > tbody > tr:nth-child(odd) > td,
2124
- .table-striped > tbody > tr:nth-child(odd) > th {
2424
+ .table-striped > tbody > tr:nth-of-type(odd) {
2125
2425
  background-color: #f9f9f9;
2126
2426
  }
2127
- .table-hover > tbody > tr:hover > td,
2128
- .table-hover > tbody > tr:hover > th {
2427
+ .table-hover > tbody > tr:hover {
2129
2428
  background-color: #f5f5f5;
2130
2429
  }
2131
- table col[class*="col-"] {
2132
- position: static;
2133
- display: table-column;
2134
- float: none;
2135
- }
2136
- table td[class*="col-"],
2137
- table th[class*="col-"] {
2138
- position: static;
2139
- display: table-cell;
2140
- float: none;
2141
- }
2142
2430
  .table > thead > tr > td.active,
2143
2431
  .table > tbody > tr > td.active,
2144
2432
  .table > tfoot > tr > td.active,
@@ -2244,13 +2532,15 @@ table th[class*="col-"] {
2244
2532
  .table-hover > tbody > tr.danger:hover > th {
2245
2533
  background-color: #ebcccc;
2246
2534
  }
2535
+ .table-responsive {
2536
+ min-height: 0.01%;
2537
+ overflow-x: auto;
2538
+ }
2247
2539
  @media screen and (max-width: 767px) {
2248
2540
  .table-responsive {
2249
2541
  width: 100%;
2250
2542
  margin-bottom: 15px;
2251
- overflow-x: auto;
2252
2543
  overflow-y: hidden;
2253
- -webkit-overflow-scrolling: touch;
2254
2544
  -ms-overflow-style: -ms-autohiding-scrollbar;
2255
2545
  border: 1px solid #ddd;
2256
2546
  }
@@ -2304,7 +2594,7 @@ legend {
2304
2594
  margin-bottom: 20px;
2305
2595
  font-size: 21px;
2306
2596
  line-height: inherit;
2307
- color: #333;
2597
+ color: #333333;
2308
2598
  border: 0;
2309
2599
  border-bottom: 1px solid #e5e5e5;
2310
2600
  }
@@ -2312,12 +2602,15 @@ label {
2312
2602
  display: inline-block;
2313
2603
  max-width: 100%;
2314
2604
  margin-bottom: 5px;
2315
- font-weight: bold;
2605
+ font-weight: 700;
2316
2606
  }
2317
2607
  input[type="search"] {
2318
2608
  -webkit-box-sizing: border-box;
2319
- -moz-box-sizing: border-box;
2320
- box-sizing: border-box;
2609
+ -moz-box-sizing: border-box;
2610
+ box-sizing: border-box;
2611
+ -webkit-appearance: none;
2612
+ -moz-appearance: none;
2613
+ appearance: none;
2321
2614
  }
2322
2615
  input[type="radio"],
2323
2616
  input[type="checkbox"] {
@@ -2325,6 +2618,14 @@ input[type="checkbox"] {
2325
2618
  margin-top: 1px \9;
2326
2619
  line-height: normal;
2327
2620
  }
2621
+ input[type="radio"][disabled],
2622
+ input[type="checkbox"][disabled],
2623
+ input[type="radio"].disabled,
2624
+ input[type="checkbox"].disabled,
2625
+ fieldset[disabled] input[type="radio"],
2626
+ fieldset[disabled] input[type="checkbox"] {
2627
+ cursor: not-allowed;
2628
+ }
2328
2629
  input[type="file"] {
2329
2630
  display: block;
2330
2631
  }
@@ -2339,7 +2640,6 @@ select[size] {
2339
2640
  input[type="file"]:focus,
2340
2641
  input[type="radio"]:focus,
2341
2642
  input[type="checkbox"]:focus {
2342
- outline: thin dotted;
2343
2643
  outline: 5px auto -webkit-focus-ring-color;
2344
2644
  outline-offset: -2px;
2345
2645
  }
@@ -2348,7 +2648,7 @@ output {
2348
2648
  padding-top: 7px;
2349
2649
  font-size: 14px;
2350
2650
  line-height: 1.42857143;
2351
- color: #555;
2651
+ color: #555555;
2352
2652
  }
2353
2653
  .form-control {
2354
2654
  display: block;
@@ -2357,64 +2657,80 @@ output {
2357
2657
  padding: 6px 12px;
2358
2658
  font-size: 14px;
2359
2659
  line-height: 1.42857143;
2360
- color: #555;
2660
+ color: #555555;
2361
2661
  background-color: #fff;
2362
2662
  background-image: none;
2363
2663
  border: 1px solid #ccc;
2364
2664
  border-radius: 4px;
2365
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
2366
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
2665
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
2666
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
2667
+ -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
2668
+ -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
2367
2669
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
2368
- -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
2369
- transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
2670
+ transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
2671
+ transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
2672
+ transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
2370
2673
  }
2371
2674
  .form-control:focus {
2372
2675
  border-color: #66afe9;
2373
2676
  outline: 0;
2374
- -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
2375
- box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
2677
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
2678
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
2376
2679
  }
2377
2680
  .form-control::-moz-placeholder {
2378
- color: #777;
2681
+ color: #999;
2379
2682
  opacity: 1;
2380
2683
  }
2381
2684
  .form-control:-ms-input-placeholder {
2382
- color: #777;
2685
+ color: #999;
2383
2686
  }
2384
2687
  .form-control::-webkit-input-placeholder {
2385
- color: #777;
2688
+ color: #999;
2689
+ }
2690
+ .form-control::-ms-expand {
2691
+ background-color: transparent;
2692
+ border: 0;
2386
2693
  }
2387
2694
  .form-control[disabled],
2388
2695
  .form-control[readonly],
2389
2696
  fieldset[disabled] .form-control {
2390
- cursor: not-allowed;
2391
- background-color: #eee;
2697
+ background-color: #eeeeee;
2392
2698
  opacity: 1;
2393
2699
  }
2700
+ .form-control[disabled],
2701
+ fieldset[disabled] .form-control {
2702
+ cursor: not-allowed;
2703
+ }
2394
2704
  textarea.form-control {
2395
2705
  height: auto;
2396
2706
  }
2397
- input[type="search"] {
2398
- -webkit-appearance: none;
2399
- }
2400
- input[type="date"],
2401
- input[type="time"],
2402
- input[type="datetime-local"],
2403
- input[type="month"] {
2404
- line-height: 34px;
2405
- line-height: 1.42857143 \0;
2406
- }
2407
- input[type="date"].input-sm,
2408
- input[type="time"].input-sm,
2409
- input[type="datetime-local"].input-sm,
2410
- input[type="month"].input-sm {
2411
- line-height: 30px;
2412
- }
2413
- input[type="date"].input-lg,
2414
- input[type="time"].input-lg,
2415
- input[type="datetime-local"].input-lg,
2416
- input[type="month"].input-lg {
2417
- line-height: 46px;
2707
+ @media screen and (-webkit-min-device-pixel-ratio: 0) {
2708
+ input[type="date"].form-control,
2709
+ input[type="time"].form-control,
2710
+ input[type="datetime-local"].form-control,
2711
+ input[type="month"].form-control {
2712
+ line-height: 34px;
2713
+ }
2714
+ input[type="date"].input-sm,
2715
+ input[type="time"].input-sm,
2716
+ input[type="datetime-local"].input-sm,
2717
+ input[type="month"].input-sm,
2718
+ .input-group-sm input[type="date"],
2719
+ .input-group-sm input[type="time"],
2720
+ .input-group-sm input[type="datetime-local"],
2721
+ .input-group-sm input[type="month"] {
2722
+ line-height: 30px;
2723
+ }
2724
+ input[type="date"].input-lg,
2725
+ input[type="time"].input-lg,
2726
+ input[type="datetime-local"].input-lg,
2727
+ input[type="month"].input-lg,
2728
+ .input-group-lg input[type="date"],
2729
+ .input-group-lg input[type="time"],
2730
+ .input-group-lg input[type="datetime-local"],
2731
+ .input-group-lg input[type="month"] {
2732
+ line-height: 46px;
2733
+ }
2418
2734
  }
2419
2735
  .form-group {
2420
2736
  margin-bottom: 15px;
@@ -2423,15 +2739,21 @@ input[type="month"].input-lg {
2423
2739
  .checkbox {
2424
2740
  position: relative;
2425
2741
  display: block;
2426
- min-height: 20px;
2427
2742
  margin-top: 10px;
2428
2743
  margin-bottom: 10px;
2429
2744
  }
2745
+ .radio.disabled label,
2746
+ .checkbox.disabled label,
2747
+ fieldset[disabled] .radio label,
2748
+ fieldset[disabled] .checkbox label {
2749
+ cursor: not-allowed;
2750
+ }
2430
2751
  .radio label,
2431
2752
  .checkbox label {
2753
+ min-height: 20px;
2432
2754
  padding-left: 20px;
2433
2755
  margin-bottom: 0;
2434
- font-weight: normal;
2756
+ font-weight: 400;
2435
2757
  cursor: pointer;
2436
2758
  }
2437
2759
  .radio input[type="radio"],
@@ -2448,39 +2770,27 @@ input[type="month"].input-lg {
2448
2770
  }
2449
2771
  .radio-inline,
2450
2772
  .checkbox-inline {
2773
+ position: relative;
2451
2774
  display: inline-block;
2452
2775
  padding-left: 20px;
2453
2776
  margin-bottom: 0;
2454
- font-weight: normal;
2777
+ font-weight: 400;
2455
2778
  vertical-align: middle;
2456
2779
  cursor: pointer;
2457
2780
  }
2458
- .radio-inline + .radio-inline,
2459
- .checkbox-inline + .checkbox-inline {
2460
- margin-top: 0;
2461
- margin-left: 10px;
2462
- }
2463
- input[type="radio"][disabled],
2464
- input[type="checkbox"][disabled],
2465
- input[type="radio"].disabled,
2466
- input[type="checkbox"].disabled,
2467
- fieldset[disabled] input[type="radio"],
2468
- fieldset[disabled] input[type="checkbox"] {
2469
- cursor: not-allowed;
2470
- }
2471
2781
  .radio-inline.disabled,
2472
2782
  .checkbox-inline.disabled,
2473
2783
  fieldset[disabled] .radio-inline,
2474
2784
  fieldset[disabled] .checkbox-inline {
2475
2785
  cursor: not-allowed;
2476
2786
  }
2477
- .radio.disabled label,
2478
- .checkbox.disabled label,
2479
- fieldset[disabled] .radio label,
2480
- fieldset[disabled] .checkbox label {
2481
- cursor: not-allowed;
2787
+ .radio-inline + .radio-inline,
2788
+ .checkbox-inline + .checkbox-inline {
2789
+ margin-top: 0;
2790
+ margin-left: 10px;
2482
2791
  }
2483
2792
  .form-control-static {
2793
+ min-height: 34px;
2484
2794
  padding-top: 7px;
2485
2795
  padding-bottom: 7px;
2486
2796
  margin-bottom: 0;
@@ -2490,8 +2800,7 @@ fieldset[disabled] .checkbox label {
2490
2800
  padding-right: 0;
2491
2801
  padding-left: 0;
2492
2802
  }
2493
- .input-sm,
2494
- .form-horizontal .form-group-sm .form-control {
2803
+ .input-sm {
2495
2804
  height: 30px;
2496
2805
  padding: 5px 10px;
2497
2806
  font-size: 12px;
@@ -2506,12 +2815,33 @@ textarea.input-sm,
2506
2815
  select[multiple].input-sm {
2507
2816
  height: auto;
2508
2817
  }
2509
- .input-lg,
2510
- .form-horizontal .form-group-lg .form-control {
2818
+ .form-group-sm .form-control {
2819
+ height: 30px;
2820
+ padding: 5px 10px;
2821
+ font-size: 12px;
2822
+ line-height: 1.5;
2823
+ border-radius: 3px;
2824
+ }
2825
+ .form-group-sm select.form-control {
2826
+ height: 30px;
2827
+ line-height: 30px;
2828
+ }
2829
+ .form-group-sm textarea.form-control,
2830
+ .form-group-sm select[multiple].form-control {
2831
+ height: auto;
2832
+ }
2833
+ .form-group-sm .form-control-static {
2834
+ height: 30px;
2835
+ min-height: 32px;
2836
+ padding: 6px 10px;
2837
+ font-size: 12px;
2838
+ line-height: 1.5;
2839
+ }
2840
+ .input-lg {
2511
2841
  height: 46px;
2512
2842
  padding: 10px 16px;
2513
2843
  font-size: 18px;
2514
- line-height: 1.33;
2844
+ line-height: 1.3333333;
2515
2845
  border-radius: 6px;
2516
2846
  }
2517
2847
  select.input-lg {
@@ -2522,6 +2852,28 @@ textarea.input-lg,
2522
2852
  select[multiple].input-lg {
2523
2853
  height: auto;
2524
2854
  }
2855
+ .form-group-lg .form-control {
2856
+ height: 46px;
2857
+ padding: 10px 16px;
2858
+ font-size: 18px;
2859
+ line-height: 1.3333333;
2860
+ border-radius: 6px;
2861
+ }
2862
+ .form-group-lg select.form-control {
2863
+ height: 46px;
2864
+ line-height: 46px;
2865
+ }
2866
+ .form-group-lg textarea.form-control,
2867
+ .form-group-lg select[multiple].form-control {
2868
+ height: auto;
2869
+ }
2870
+ .form-group-lg .form-control-static {
2871
+ height: 46px;
2872
+ min-height: 38px;
2873
+ padding: 11px 16px;
2874
+ font-size: 18px;
2875
+ line-height: 1.3333333;
2876
+ }
2525
2877
  .has-feedback {
2526
2878
  position: relative;
2527
2879
  }
@@ -2530,7 +2882,7 @@ select[multiple].input-lg {
2530
2882
  }
2531
2883
  .form-control-feedback {
2532
2884
  position: absolute;
2533
- top: 25px;
2885
+ top: 0;
2534
2886
  right: 0;
2535
2887
  z-index: 2;
2536
2888
  display: block;
@@ -2538,13 +2890,18 @@ select[multiple].input-lg {
2538
2890
  height: 34px;
2539
2891
  line-height: 34px;
2540
2892
  text-align: center;
2893
+ pointer-events: none;
2541
2894
  }
2542
- .input-lg + .form-control-feedback {
2895
+ .input-lg + .form-control-feedback,
2896
+ .input-group-lg + .form-control-feedback,
2897
+ .form-group-lg .form-control + .form-control-feedback {
2543
2898
  width: 46px;
2544
2899
  height: 46px;
2545
2900
  line-height: 46px;
2546
2901
  }
2547
- .input-sm + .form-control-feedback {
2902
+ .input-sm + .form-control-feedback,
2903
+ .input-group-sm + .form-control-feedback,
2904
+ .form-group-sm .form-control + .form-control-feedback {
2548
2905
  width: 30px;
2549
2906
  height: 30px;
2550
2907
  line-height: 30px;
@@ -2554,18 +2911,22 @@ select[multiple].input-lg {
2554
2911
  .has-success .radio,
2555
2912
  .has-success .checkbox,
2556
2913
  .has-success .radio-inline,
2557
- .has-success .checkbox-inline {
2914
+ .has-success .checkbox-inline,
2915
+ .has-success.radio label,
2916
+ .has-success.checkbox label,
2917
+ .has-success.radio-inline label,
2918
+ .has-success.checkbox-inline label {
2558
2919
  color: #3c763d;
2559
2920
  }
2560
2921
  .has-success .form-control {
2561
2922
  border-color: #3c763d;
2562
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
2563
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
2923
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
2924
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
2564
2925
  }
2565
2926
  .has-success .form-control:focus {
2566
2927
  border-color: #2b542c;
2567
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
2568
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
2928
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
2929
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
2569
2930
  }
2570
2931
  .has-success .input-group-addon {
2571
2932
  color: #3c763d;
@@ -2580,18 +2941,22 @@ select[multiple].input-lg {
2580
2941
  .has-warning .radio,
2581
2942
  .has-warning .checkbox,
2582
2943
  .has-warning .radio-inline,
2583
- .has-warning .checkbox-inline {
2944
+ .has-warning .checkbox-inline,
2945
+ .has-warning.radio label,
2946
+ .has-warning.checkbox label,
2947
+ .has-warning.radio-inline label,
2948
+ .has-warning.checkbox-inline label {
2584
2949
  color: #8a6d3b;
2585
2950
  }
2586
2951
  .has-warning .form-control {
2587
2952
  border-color: #8a6d3b;
2588
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
2589
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
2953
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
2954
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
2590
2955
  }
2591
2956
  .has-warning .form-control:focus {
2592
2957
  border-color: #66512c;
2593
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
2594
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
2958
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
2959
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
2595
2960
  }
2596
2961
  .has-warning .input-group-addon {
2597
2962
  color: #8a6d3b;
@@ -2606,18 +2971,22 @@ select[multiple].input-lg {
2606
2971
  .has-error .radio,
2607
2972
  .has-error .checkbox,
2608
2973
  .has-error .radio-inline,
2609
- .has-error .checkbox-inline {
2974
+ .has-error .checkbox-inline,
2975
+ .has-error.radio label,
2976
+ .has-error.checkbox label,
2977
+ .has-error.radio-inline label,
2978
+ .has-error.checkbox-inline label {
2610
2979
  color: #a94442;
2611
2980
  }
2612
2981
  .has-error .form-control {
2613
2982
  border-color: #a94442;
2614
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
2615
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
2983
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
2984
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
2616
2985
  }
2617
2986
  .has-error .form-control:focus {
2618
2987
  border-color: #843534;
2619
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
2620
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
2988
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
2989
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
2621
2990
  }
2622
2991
  .has-error .input-group-addon {
2623
2992
  color: #a94442;
@@ -2627,6 +2996,9 @@ select[multiple].input-lg {
2627
2996
  .has-error .form-control-feedback {
2628
2997
  color: #a94442;
2629
2998
  }
2999
+ .has-feedback label ~ .form-control-feedback {
3000
+ top: 25px;
3001
+ }
2630
3002
  .has-feedback label.sr-only ~ .form-control-feedback {
2631
3003
  top: 0;
2632
3004
  }
@@ -2647,6 +3019,9 @@ select[multiple].input-lg {
2647
3019
  width: auto;
2648
3020
  vertical-align: middle;
2649
3021
  }
3022
+ .form-inline .form-control-static {
3023
+ display: inline-block;
3024
+ }
2650
3025
  .form-inline .input-group {
2651
3026
  display: inline-table;
2652
3027
  vertical-align: middle;
@@ -2707,47 +3082,53 @@ select[multiple].input-lg {
2707
3082
  }
2708
3083
  }
2709
3084
  .form-horizontal .has-feedback .form-control-feedback {
2710
- top: 0;
2711
3085
  right: 15px;
2712
3086
  }
2713
3087
  @media (min-width: 768px) {
2714
3088
  .form-horizontal .form-group-lg .control-label {
2715
- padding-top: 14.3px;
3089
+ padding-top: 11px;
3090
+ font-size: 18px;
2716
3091
  }
2717
3092
  }
2718
3093
  @media (min-width: 768px) {
2719
3094
  .form-horizontal .form-group-sm .control-label {
2720
3095
  padding-top: 6px;
3096
+ font-size: 12px;
2721
3097
  }
2722
3098
  }
2723
3099
  .btn {
2724
3100
  display: inline-block;
2725
- padding: 6px 12px;
2726
3101
  margin-bottom: 0;
2727
- font-size: 14px;
2728
3102
  font-weight: normal;
2729
- line-height: 1.42857143;
2730
3103
  text-align: center;
2731
3104
  white-space: nowrap;
2732
3105
  vertical-align: middle;
3106
+ -ms-touch-action: manipulation;
3107
+ touch-action: manipulation;
2733
3108
  cursor: pointer;
2734
- -webkit-user-select: none;
2735
- -moz-user-select: none;
2736
- -ms-user-select: none;
2737
- user-select: none;
2738
3109
  background-image: none;
2739
3110
  border: 1px solid transparent;
3111
+ padding: 6px 12px;
3112
+ font-size: 14px;
3113
+ line-height: 1.42857143;
2740
3114
  border-radius: 4px;
3115
+ -webkit-user-select: none;
3116
+ -moz-user-select: none;
3117
+ -ms-user-select: none;
3118
+ user-select: none;
2741
3119
  }
2742
3120
  .btn:focus,
2743
3121
  .btn:active:focus,
2744
- .btn.active:focus {
2745
- outline: thin dotted;
3122
+ .btn.active:focus,
3123
+ .btn.focus,
3124
+ .btn:active.focus,
3125
+ .btn.active.focus {
2746
3126
  outline: 5px auto -webkit-focus-ring-color;
2747
3127
  outline-offset: -2px;
2748
3128
  }
2749
3129
  .btn:hover,
2750
- .btn:focus {
3130
+ .btn:focus,
3131
+ .btn.focus {
2751
3132
  color: #333;
2752
3133
  text-decoration: none;
2753
3134
  }
@@ -2755,29 +3136,34 @@ select[multiple].input-lg {
2755
3136
  .btn.active {
2756
3137
  background-image: none;
2757
3138
  outline: 0;
2758
- -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
2759
- box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
3139
+ -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3140
+ box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
2760
3141
  }
2761
3142
  .btn.disabled,
2762
3143
  .btn[disabled],
2763
3144
  fieldset[disabled] .btn {
2764
- pointer-events: none;
2765
3145
  cursor: not-allowed;
2766
3146
  filter: alpha(opacity=65);
3147
+ opacity: 0.65;
2767
3148
  -webkit-box-shadow: none;
2768
- box-shadow: none;
2769
- opacity: .65;
3149
+ box-shadow: none;
3150
+ }
3151
+ a.btn.disabled,
3152
+ fieldset[disabled] a.btn {
3153
+ pointer-events: none;
2770
3154
  }
2771
3155
  .btn-default {
2772
3156
  color: #333;
2773
3157
  background-color: #fff;
2774
3158
  border-color: #ccc;
2775
3159
  }
2776
- .btn-default:hover,
2777
3160
  .btn-default:focus,
2778
- .btn-default:active,
2779
- .btn-default.active,
2780
- .open > .dropdown-toggle.btn-default {
3161
+ .btn-default.focus {
3162
+ color: #333;
3163
+ background-color: #e6e6e6;
3164
+ border-color: #8c8c8c;
3165
+ }
3166
+ .btn-default:hover {
2781
3167
  color: #333;
2782
3168
  background-color: #e6e6e6;
2783
3169
  border-color: #adadad;
@@ -2785,23 +3171,33 @@ fieldset[disabled] .btn {
2785
3171
  .btn-default:active,
2786
3172
  .btn-default.active,
2787
3173
  .open > .dropdown-toggle.btn-default {
3174
+ color: #333;
3175
+ background-color: #e6e6e6;
2788
3176
  background-image: none;
3177
+ border-color: #adadad;
3178
+ }
3179
+ .btn-default:active:hover,
3180
+ .btn-default.active:hover,
3181
+ .open > .dropdown-toggle.btn-default:hover,
3182
+ .btn-default:active:focus,
3183
+ .btn-default.active:focus,
3184
+ .open > .dropdown-toggle.btn-default:focus,
3185
+ .btn-default:active.focus,
3186
+ .btn-default.active.focus,
3187
+ .open > .dropdown-toggle.btn-default.focus {
3188
+ color: #333;
3189
+ background-color: #d4d4d4;
3190
+ border-color: #8c8c8c;
2789
3191
  }
2790
- .btn-default.disabled,
2791
- .btn-default[disabled],
2792
- fieldset[disabled] .btn-default,
2793
3192
  .btn-default.disabled:hover,
2794
3193
  .btn-default[disabled]:hover,
2795
3194
  fieldset[disabled] .btn-default:hover,
2796
3195
  .btn-default.disabled:focus,
2797
3196
  .btn-default[disabled]:focus,
2798
3197
  fieldset[disabled] .btn-default:focus,
2799
- .btn-default.disabled:active,
2800
- .btn-default[disabled]:active,
2801
- fieldset[disabled] .btn-default:active,
2802
- .btn-default.disabled.active,
2803
- .btn-default[disabled].active,
2804
- fieldset[disabled] .btn-default.active {
3198
+ .btn-default.disabled.focus,
3199
+ .btn-default[disabled].focus,
3200
+ fieldset[disabled] .btn-default.focus {
2805
3201
  background-color: #fff;
2806
3202
  border-color: #ccc;
2807
3203
  }
@@ -2811,43 +3207,55 @@ fieldset[disabled] .btn-default.active {
2811
3207
  }
2812
3208
  .btn-primary {
2813
3209
  color: #fff;
2814
- background-color: #428bca;
2815
- border-color: #357ebd;
3210
+ background-color: #337ab7;
3211
+ border-color: #2e6da4;
2816
3212
  }
2817
- .btn-primary:hover,
2818
3213
  .btn-primary:focus,
2819
- .btn-primary:active,
2820
- .btn-primary.active,
2821
- .open > .dropdown-toggle.btn-primary {
3214
+ .btn-primary.focus {
3215
+ color: #fff;
3216
+ background-color: #286090;
3217
+ border-color: #122b40;
3218
+ }
3219
+ .btn-primary:hover {
2822
3220
  color: #fff;
2823
- background-color: #3071a9;
2824
- border-color: #285e8e;
3221
+ background-color: #286090;
3222
+ border-color: #204d74;
2825
3223
  }
2826
3224
  .btn-primary:active,
2827
3225
  .btn-primary.active,
2828
3226
  .open > .dropdown-toggle.btn-primary {
3227
+ color: #fff;
3228
+ background-color: #286090;
2829
3229
  background-image: none;
3230
+ border-color: #204d74;
3231
+ }
3232
+ .btn-primary:active:hover,
3233
+ .btn-primary.active:hover,
3234
+ .open > .dropdown-toggle.btn-primary:hover,
3235
+ .btn-primary:active:focus,
3236
+ .btn-primary.active:focus,
3237
+ .open > .dropdown-toggle.btn-primary:focus,
3238
+ .btn-primary:active.focus,
3239
+ .btn-primary.active.focus,
3240
+ .open > .dropdown-toggle.btn-primary.focus {
3241
+ color: #fff;
3242
+ background-color: #204d74;
3243
+ border-color: #122b40;
2830
3244
  }
2831
- .btn-primary.disabled,
2832
- .btn-primary[disabled],
2833
- fieldset[disabled] .btn-primary,
2834
3245
  .btn-primary.disabled:hover,
2835
3246
  .btn-primary[disabled]:hover,
2836
3247
  fieldset[disabled] .btn-primary:hover,
2837
3248
  .btn-primary.disabled:focus,
2838
3249
  .btn-primary[disabled]:focus,
2839
3250
  fieldset[disabled] .btn-primary:focus,
2840
- .btn-primary.disabled:active,
2841
- .btn-primary[disabled]:active,
2842
- fieldset[disabled] .btn-primary:active,
2843
- .btn-primary.disabled.active,
2844
- .btn-primary[disabled].active,
2845
- fieldset[disabled] .btn-primary.active {
2846
- background-color: #428bca;
2847
- border-color: #357ebd;
3251
+ .btn-primary.disabled.focus,
3252
+ .btn-primary[disabled].focus,
3253
+ fieldset[disabled] .btn-primary.focus {
3254
+ background-color: #337ab7;
3255
+ border-color: #2e6da4;
2848
3256
  }
2849
3257
  .btn-primary .badge {
2850
- color: #428bca;
3258
+ color: #337ab7;
2851
3259
  background-color: #fff;
2852
3260
  }
2853
3261
  .btn-success {
@@ -2855,11 +3263,13 @@ fieldset[disabled] .btn-primary.active {
2855
3263
  background-color: #5cb85c;
2856
3264
  border-color: #4cae4c;
2857
3265
  }
2858
- .btn-success:hover,
2859
3266
  .btn-success:focus,
2860
- .btn-success:active,
2861
- .btn-success.active,
2862
- .open > .dropdown-toggle.btn-success {
3267
+ .btn-success.focus {
3268
+ color: #fff;
3269
+ background-color: #449d44;
3270
+ border-color: #255625;
3271
+ }
3272
+ .btn-success:hover {
2863
3273
  color: #fff;
2864
3274
  background-color: #449d44;
2865
3275
  border-color: #398439;
@@ -2867,23 +3277,33 @@ fieldset[disabled] .btn-primary.active {
2867
3277
  .btn-success:active,
2868
3278
  .btn-success.active,
2869
3279
  .open > .dropdown-toggle.btn-success {
3280
+ color: #fff;
3281
+ background-color: #449d44;
2870
3282
  background-image: none;
3283
+ border-color: #398439;
3284
+ }
3285
+ .btn-success:active:hover,
3286
+ .btn-success.active:hover,
3287
+ .open > .dropdown-toggle.btn-success:hover,
3288
+ .btn-success:active:focus,
3289
+ .btn-success.active:focus,
3290
+ .open > .dropdown-toggle.btn-success:focus,
3291
+ .btn-success:active.focus,
3292
+ .btn-success.active.focus,
3293
+ .open > .dropdown-toggle.btn-success.focus {
3294
+ color: #fff;
3295
+ background-color: #398439;
3296
+ border-color: #255625;
2871
3297
  }
2872
- .btn-success.disabled,
2873
- .btn-success[disabled],
2874
- fieldset[disabled] .btn-success,
2875
3298
  .btn-success.disabled:hover,
2876
3299
  .btn-success[disabled]:hover,
2877
3300
  fieldset[disabled] .btn-success:hover,
2878
3301
  .btn-success.disabled:focus,
2879
3302
  .btn-success[disabled]:focus,
2880
3303
  fieldset[disabled] .btn-success:focus,
2881
- .btn-success.disabled:active,
2882
- .btn-success[disabled]:active,
2883
- fieldset[disabled] .btn-success:active,
2884
- .btn-success.disabled.active,
2885
- .btn-success[disabled].active,
2886
- fieldset[disabled] .btn-success.active {
3304
+ .btn-success.disabled.focus,
3305
+ .btn-success[disabled].focus,
3306
+ fieldset[disabled] .btn-success.focus {
2887
3307
  background-color: #5cb85c;
2888
3308
  border-color: #4cae4c;
2889
3309
  }
@@ -2896,11 +3316,13 @@ fieldset[disabled] .btn-success.active {
2896
3316
  background-color: #5bc0de;
2897
3317
  border-color: #46b8da;
2898
3318
  }
2899
- .btn-info:hover,
2900
3319
  .btn-info:focus,
2901
- .btn-info:active,
2902
- .btn-info.active,
2903
- .open > .dropdown-toggle.btn-info {
3320
+ .btn-info.focus {
3321
+ color: #fff;
3322
+ background-color: #31b0d5;
3323
+ border-color: #1b6d85;
3324
+ }
3325
+ .btn-info:hover {
2904
3326
  color: #fff;
2905
3327
  background-color: #31b0d5;
2906
3328
  border-color: #269abc;
@@ -2908,23 +3330,33 @@ fieldset[disabled] .btn-success.active {
2908
3330
  .btn-info:active,
2909
3331
  .btn-info.active,
2910
3332
  .open > .dropdown-toggle.btn-info {
3333
+ color: #fff;
3334
+ background-color: #31b0d5;
2911
3335
  background-image: none;
3336
+ border-color: #269abc;
3337
+ }
3338
+ .btn-info:active:hover,
3339
+ .btn-info.active:hover,
3340
+ .open > .dropdown-toggle.btn-info:hover,
3341
+ .btn-info:active:focus,
3342
+ .btn-info.active:focus,
3343
+ .open > .dropdown-toggle.btn-info:focus,
3344
+ .btn-info:active.focus,
3345
+ .btn-info.active.focus,
3346
+ .open > .dropdown-toggle.btn-info.focus {
3347
+ color: #fff;
3348
+ background-color: #269abc;
3349
+ border-color: #1b6d85;
2912
3350
  }
2913
- .btn-info.disabled,
2914
- .btn-info[disabled],
2915
- fieldset[disabled] .btn-info,
2916
3351
  .btn-info.disabled:hover,
2917
3352
  .btn-info[disabled]:hover,
2918
3353
  fieldset[disabled] .btn-info:hover,
2919
3354
  .btn-info.disabled:focus,
2920
3355
  .btn-info[disabled]:focus,
2921
3356
  fieldset[disabled] .btn-info:focus,
2922
- .btn-info.disabled:active,
2923
- .btn-info[disabled]:active,
2924
- fieldset[disabled] .btn-info:active,
2925
- .btn-info.disabled.active,
2926
- .btn-info[disabled].active,
2927
- fieldset[disabled] .btn-info.active {
3357
+ .btn-info.disabled.focus,
3358
+ .btn-info[disabled].focus,
3359
+ fieldset[disabled] .btn-info.focus {
2928
3360
  background-color: #5bc0de;
2929
3361
  border-color: #46b8da;
2930
3362
  }
@@ -2937,11 +3369,13 @@ fieldset[disabled] .btn-info.active {
2937
3369
  background-color: #f0ad4e;
2938
3370
  border-color: #eea236;
2939
3371
  }
2940
- .btn-warning:hover,
2941
3372
  .btn-warning:focus,
2942
- .btn-warning:active,
2943
- .btn-warning.active,
2944
- .open > .dropdown-toggle.btn-warning {
3373
+ .btn-warning.focus {
3374
+ color: #fff;
3375
+ background-color: #ec971f;
3376
+ border-color: #985f0d;
3377
+ }
3378
+ .btn-warning:hover {
2945
3379
  color: #fff;
2946
3380
  background-color: #ec971f;
2947
3381
  border-color: #d58512;
@@ -2949,23 +3383,33 @@ fieldset[disabled] .btn-info.active {
2949
3383
  .btn-warning:active,
2950
3384
  .btn-warning.active,
2951
3385
  .open > .dropdown-toggle.btn-warning {
3386
+ color: #fff;
3387
+ background-color: #ec971f;
2952
3388
  background-image: none;
3389
+ border-color: #d58512;
3390
+ }
3391
+ .btn-warning:active:hover,
3392
+ .btn-warning.active:hover,
3393
+ .open > .dropdown-toggle.btn-warning:hover,
3394
+ .btn-warning:active:focus,
3395
+ .btn-warning.active:focus,
3396
+ .open > .dropdown-toggle.btn-warning:focus,
3397
+ .btn-warning:active.focus,
3398
+ .btn-warning.active.focus,
3399
+ .open > .dropdown-toggle.btn-warning.focus {
3400
+ color: #fff;
3401
+ background-color: #d58512;
3402
+ border-color: #985f0d;
2953
3403
  }
2954
- .btn-warning.disabled,
2955
- .btn-warning[disabled],
2956
- fieldset[disabled] .btn-warning,
2957
3404
  .btn-warning.disabled:hover,
2958
3405
  .btn-warning[disabled]:hover,
2959
3406
  fieldset[disabled] .btn-warning:hover,
2960
3407
  .btn-warning.disabled:focus,
2961
3408
  .btn-warning[disabled]:focus,
2962
3409
  fieldset[disabled] .btn-warning:focus,
2963
- .btn-warning.disabled:active,
2964
- .btn-warning[disabled]:active,
2965
- fieldset[disabled] .btn-warning:active,
2966
- .btn-warning.disabled.active,
2967
- .btn-warning[disabled].active,
2968
- fieldset[disabled] .btn-warning.active {
3410
+ .btn-warning.disabled.focus,
3411
+ .btn-warning[disabled].focus,
3412
+ fieldset[disabled] .btn-warning.focus {
2969
3413
  background-color: #f0ad4e;
2970
3414
  border-color: #eea236;
2971
3415
  }
@@ -2978,11 +3422,13 @@ fieldset[disabled] .btn-warning.active {
2978
3422
  background-color: #d9534f;
2979
3423
  border-color: #d43f3a;
2980
3424
  }
2981
- .btn-danger:hover,
2982
3425
  .btn-danger:focus,
2983
- .btn-danger:active,
2984
- .btn-danger.active,
2985
- .open > .dropdown-toggle.btn-danger {
3426
+ .btn-danger.focus {
3427
+ color: #fff;
3428
+ background-color: #c9302c;
3429
+ border-color: #761c19;
3430
+ }
3431
+ .btn-danger:hover {
2986
3432
  color: #fff;
2987
3433
  background-color: #c9302c;
2988
3434
  border-color: #ac2925;
@@ -2990,23 +3436,33 @@ fieldset[disabled] .btn-warning.active {
2990
3436
  .btn-danger:active,
2991
3437
  .btn-danger.active,
2992
3438
  .open > .dropdown-toggle.btn-danger {
3439
+ color: #fff;
3440
+ background-color: #c9302c;
2993
3441
  background-image: none;
3442
+ border-color: #ac2925;
3443
+ }
3444
+ .btn-danger:active:hover,
3445
+ .btn-danger.active:hover,
3446
+ .open > .dropdown-toggle.btn-danger:hover,
3447
+ .btn-danger:active:focus,
3448
+ .btn-danger.active:focus,
3449
+ .open > .dropdown-toggle.btn-danger:focus,
3450
+ .btn-danger:active.focus,
3451
+ .btn-danger.active.focus,
3452
+ .open > .dropdown-toggle.btn-danger.focus {
3453
+ color: #fff;
3454
+ background-color: #ac2925;
3455
+ border-color: #761c19;
2994
3456
  }
2995
- .btn-danger.disabled,
2996
- .btn-danger[disabled],
2997
- fieldset[disabled] .btn-danger,
2998
3457
  .btn-danger.disabled:hover,
2999
3458
  .btn-danger[disabled]:hover,
3000
3459
  fieldset[disabled] .btn-danger:hover,
3001
3460
  .btn-danger.disabled:focus,
3002
3461
  .btn-danger[disabled]:focus,
3003
3462
  fieldset[disabled] .btn-danger:focus,
3004
- .btn-danger.disabled:active,
3005
- .btn-danger[disabled]:active,
3006
- fieldset[disabled] .btn-danger:active,
3007
- .btn-danger.disabled.active,
3008
- .btn-danger[disabled].active,
3009
- fieldset[disabled] .btn-danger.active {
3463
+ .btn-danger.disabled.focus,
3464
+ .btn-danger[disabled].focus,
3465
+ fieldset[disabled] .btn-danger.focus {
3010
3466
  background-color: #d9534f;
3011
3467
  border-color: #d43f3a;
3012
3468
  }
@@ -3015,18 +3471,18 @@ fieldset[disabled] .btn-danger.active {
3015
3471
  background-color: #fff;
3016
3472
  }
3017
3473
  .btn-link {
3018
- font-weight: normal;
3019
- color: #428bca;
3020
- cursor: pointer;
3474
+ font-weight: 400;
3475
+ color: #337ab7;
3021
3476
  border-radius: 0;
3022
3477
  }
3023
3478
  .btn-link,
3024
3479
  .btn-link:active,
3480
+ .btn-link.active,
3025
3481
  .btn-link[disabled],
3026
3482
  fieldset[disabled] .btn-link {
3027
3483
  background-color: transparent;
3028
3484
  -webkit-box-shadow: none;
3029
- box-shadow: none;
3485
+ box-shadow: none;
3030
3486
  }
3031
3487
  .btn-link,
3032
3488
  .btn-link:hover,
@@ -3036,7 +3492,7 @@ fieldset[disabled] .btn-link {
3036
3492
  }
3037
3493
  .btn-link:hover,
3038
3494
  .btn-link:focus {
3039
- color: #2a6496;
3495
+ color: #23527c;
3040
3496
  text-decoration: underline;
3041
3497
  background-color: transparent;
3042
3498
  }
@@ -3044,14 +3500,14 @@ fieldset[disabled] .btn-link {
3044
3500
  fieldset[disabled] .btn-link:hover,
3045
3501
  .btn-link[disabled]:focus,
3046
3502
  fieldset[disabled] .btn-link:focus {
3047
- color: #777;
3503
+ color: #777777;
3048
3504
  text-decoration: none;
3049
3505
  }
3050
3506
  .btn-lg,
3051
3507
  .btn-group-lg > .btn {
3052
3508
  padding: 10px 16px;
3053
3509
  font-size: 18px;
3054
- line-height: 1.33;
3510
+ line-height: 1.3333333;
3055
3511
  border-radius: 6px;
3056
3512
  }
3057
3513
  .btn-sm,
@@ -3082,9 +3538,9 @@ input[type="button"].btn-block {
3082
3538
  }
3083
3539
  .fade {
3084
3540
  opacity: 0;
3085
- -webkit-transition: opacity .15s linear;
3086
- -o-transition: opacity .15s linear;
3087
- transition: opacity .15s linear;
3541
+ -webkit-transition: opacity 0.15s linear;
3542
+ -o-transition: opacity 0.15s linear;
3543
+ transition: opacity 0.15s linear;
3088
3544
  }
3089
3545
  .fade.in {
3090
3546
  opacity: 1;
@@ -3105,9 +3561,15 @@ tbody.collapse.in {
3105
3561
  position: relative;
3106
3562
  height: 0;
3107
3563
  overflow: hidden;
3108
- -webkit-transition: height .35s ease;
3109
- -o-transition: height .35s ease;
3110
- transition: height .35s ease;
3564
+ -webkit-transition-property: height, visibility;
3565
+ -o-transition-property: height, visibility;
3566
+ transition-property: height, visibility;
3567
+ -webkit-transition-duration: 0.35s;
3568
+ -o-transition-duration: 0.35s;
3569
+ transition-duration: 0.35s;
3570
+ -webkit-transition-timing-function: ease;
3571
+ -o-transition-timing-function: ease;
3572
+ transition-timing-function: ease;
3111
3573
  }
3112
3574
  .caret {
3113
3575
  display: inline-block;
@@ -3115,10 +3577,12 @@ tbody.collapse.in {
3115
3577
  height: 0;
3116
3578
  margin-left: 2px;
3117
3579
  vertical-align: middle;
3118
- border-top: 4px solid;
3580
+ border-top: 4px dashed;
3581
+ border-top: 4px solid \9;
3119
3582
  border-right: 4px solid transparent;
3120
3583
  border-left: 4px solid transparent;
3121
3584
  }
3585
+ .dropup,
3122
3586
  .dropdown {
3123
3587
  position: relative;
3124
3588
  }
@@ -3139,13 +3603,12 @@ tbody.collapse.in {
3139
3603
  text-align: left;
3140
3604
  list-style: none;
3141
3605
  background-color: #fff;
3142
- -webkit-background-clip: padding-box;
3143
- background-clip: padding-box;
3606
+ background-clip: padding-box;
3144
3607
  border: 1px solid #ccc;
3145
- border: 1px solid rgba(0, 0, 0, .15);
3608
+ border: 1px solid rgba(0, 0, 0, 0.15);
3146
3609
  border-radius: 4px;
3147
- -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
3148
- box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
3610
+ -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
3611
+ box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
3149
3612
  }
3150
3613
  .dropdown-menu.pull-right {
3151
3614
  right: 0;
@@ -3161,9 +3624,9 @@ tbody.collapse.in {
3161
3624
  display: block;
3162
3625
  padding: 3px 20px;
3163
3626
  clear: both;
3164
- font-weight: normal;
3627
+ font-weight: 400;
3165
3628
  line-height: 1.42857143;
3166
- color: #333;
3629
+ color: #333333;
3167
3630
  white-space: nowrap;
3168
3631
  }
3169
3632
  .dropdown-menu > li > a:hover,
@@ -3177,13 +3640,13 @@ tbody.collapse.in {
3177
3640
  .dropdown-menu > .active > a:focus {
3178
3641
  color: #fff;
3179
3642
  text-decoration: none;
3180
- background-color: #428bca;
3643
+ background-color: #337ab7;
3181
3644
  outline: 0;
3182
3645
  }
3183
3646
  .dropdown-menu > .disabled > a,
3184
3647
  .dropdown-menu > .disabled > a:hover,
3185
3648
  .dropdown-menu > .disabled > a:focus {
3186
- color: #777;
3649
+ color: #777777;
3187
3650
  }
3188
3651
  .dropdown-menu > .disabled > a:hover,
3189
3652
  .dropdown-menu > .disabled > a:focus {
@@ -3212,7 +3675,7 @@ tbody.collapse.in {
3212
3675
  padding: 3px 20px;
3213
3676
  font-size: 12px;
3214
3677
  line-height: 1.42857143;
3215
- color: #777;
3678
+ color: #777777;
3216
3679
  white-space: nowrap;
3217
3680
  }
3218
3681
  .dropdown-backdrop {
@@ -3231,13 +3694,14 @@ tbody.collapse.in {
3231
3694
  .navbar-fixed-bottom .dropdown .caret {
3232
3695
  content: "";
3233
3696
  border-top: 0;
3234
- border-bottom: 4px solid;
3697
+ border-bottom: 4px dashed;
3698
+ border-bottom: 4px solid \9;
3235
3699
  }
3236
3700
  .dropup .dropdown-menu,
3237
3701
  .navbar-fixed-bottom .dropdown .dropdown-menu {
3238
3702
  top: auto;
3239
3703
  bottom: 100%;
3240
- margin-bottom: 1px;
3704
+ margin-bottom: 2px;
3241
3705
  }
3242
3706
  @media (min-width: 768px) {
3243
3707
  .navbar-right .dropdown-menu {
@@ -3270,10 +3734,6 @@ tbody.collapse.in {
3270
3734
  .btn-group-vertical > .btn.active {
3271
3735
  z-index: 2;
3272
3736
  }
3273
- .btn-group > .btn:focus,
3274
- .btn-group-vertical > .btn:focus {
3275
- outline: 0;
3276
- }
3277
3737
  .btn-group .btn + .btn,
3278
3738
  .btn-group .btn + .btn-group,
3279
3739
  .btn-group .btn-group + .btn,
@@ -3283,6 +3743,7 @@ tbody.collapse.in {
3283
3743
  .btn-toolbar {
3284
3744
  margin-left: -5px;
3285
3745
  }
3746
+ .btn-toolbar .btn,
3286
3747
  .btn-toolbar .btn-group,
3287
3748
  .btn-toolbar .input-group {
3288
3749
  float: left;
@@ -3313,12 +3774,12 @@ tbody.collapse.in {
3313
3774
  .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
3314
3775
  border-radius: 0;
3315
3776
  }
3316
- .btn-group > .btn-group:first-child > .btn:last-child,
3317
- .btn-group > .btn-group:first-child > .dropdown-toggle {
3777
+ .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
3778
+ .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
3318
3779
  border-top-right-radius: 0;
3319
3780
  border-bottom-right-radius: 0;
3320
3781
  }
3321
- .btn-group > .btn-group:last-child > .btn:first-child {
3782
+ .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
3322
3783
  border-top-left-radius: 0;
3323
3784
  border-bottom-left-radius: 0;
3324
3785
  }
@@ -3335,12 +3796,12 @@ tbody.collapse.in {
3335
3796
  padding-left: 12px;
3336
3797
  }
3337
3798
  .btn-group.open .dropdown-toggle {
3338
- -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
3339
- box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
3799
+ -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3800
+ box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3340
3801
  }
3341
3802
  .btn-group.open .dropdown-toggle.btn-link {
3342
3803
  -webkit-box-shadow: none;
3343
- box-shadow: none;
3804
+ box-shadow: none;
3344
3805
  }
3345
3806
  .btn .caret {
3346
3807
  margin-left: 0;
@@ -3374,6 +3835,7 @@ tbody.collapse.in {
3374
3835
  border-radius: 0;
3375
3836
  }
3376
3837
  .btn-group-vertical > .btn:first-child:not(:last-child) {
3838
+ border-top-left-radius: 4px;
3377
3839
  border-top-right-radius: 4px;
3378
3840
  border-bottom-right-radius: 0;
3379
3841
  border-bottom-left-radius: 0;
@@ -3381,6 +3843,7 @@ tbody.collapse.in {
3381
3843
  .btn-group-vertical > .btn:last-child:not(:first-child) {
3382
3844
  border-top-left-radius: 0;
3383
3845
  border-top-right-radius: 0;
3846
+ border-bottom-right-radius: 4px;
3384
3847
  border-bottom-left-radius: 4px;
3385
3848
  }
3386
3849
  .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
@@ -3413,12 +3876,13 @@ tbody.collapse.in {
3413
3876
  .btn-group-justified > .btn-group .dropdown-menu {
3414
3877
  left: auto;
3415
3878
  }
3416
- [data-toggle="buttons"] > .btn > input[type="radio"],
3417
- [data-toggle="buttons"] > .btn > input[type="checkbox"] {
3879
+ [data-toggle="buttons"] > .btn input[type="radio"],
3880
+ [data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
3881
+ [data-toggle="buttons"] > .btn input[type="checkbox"],
3882
+ [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
3418
3883
  position: absolute;
3419
- z-index: -1;
3420
- filter: alpha(opacity=0);
3421
- opacity: 0;
3884
+ clip: rect(0, 0, 0, 0);
3885
+ pointer-events: none;
3422
3886
  }
3423
3887
  .input-group {
3424
3888
  position: relative;
@@ -3437,13 +3901,16 @@ tbody.collapse.in {
3437
3901
  width: 100%;
3438
3902
  margin-bottom: 0;
3439
3903
  }
3904
+ .input-group .form-control:focus {
3905
+ z-index: 3;
3906
+ }
3440
3907
  .input-group-lg > .form-control,
3441
3908
  .input-group-lg > .input-group-addon,
3442
3909
  .input-group-lg > .input-group-btn > .btn {
3443
3910
  height: 46px;
3444
3911
  padding: 10px 16px;
3445
3912
  font-size: 18px;
3446
- line-height: 1.33;
3913
+ line-height: 1.3333333;
3447
3914
  border-radius: 6px;
3448
3915
  }
3449
3916
  select.input-group-lg > .form-control,
@@ -3502,11 +3969,11 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
3502
3969
  .input-group-addon {
3503
3970
  padding: 6px 12px;
3504
3971
  font-size: 14px;
3505
- font-weight: normal;
3972
+ font-weight: 400;
3506
3973
  line-height: 1;
3507
- color: #555;
3974
+ color: #555555;
3508
3975
  text-align: center;
3509
- background-color: #eee;
3976
+ background-color: #eeeeee;
3510
3977
  border: 1px solid #ccc;
3511
3978
  border-radius: 4px;
3512
3979
  }
@@ -3572,6 +4039,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
3572
4039
  }
3573
4040
  .input-group-btn:last-child > .btn,
3574
4041
  .input-group-btn:last-child > .btn-group {
4042
+ z-index: 2;
3575
4043
  margin-left: -1px;
3576
4044
  }
3577
4045
  .nav {
@@ -3591,14 +4059,14 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
3591
4059
  .nav > li > a:hover,
3592
4060
  .nav > li > a:focus {
3593
4061
  text-decoration: none;
3594
- background-color: #eee;
4062
+ background-color: #eeeeee;
3595
4063
  }
3596
4064
  .nav > li.disabled > a {
3597
- color: #777;
4065
+ color: #777777;
3598
4066
  }
3599
4067
  .nav > li.disabled > a:hover,
3600
4068
  .nav > li.disabled > a:focus {
3601
- color: #777;
4069
+ color: #777777;
3602
4070
  text-decoration: none;
3603
4071
  cursor: not-allowed;
3604
4072
  background-color: transparent;
@@ -3606,8 +4074,8 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
3606
4074
  .nav .open > a,
3607
4075
  .nav .open > a:hover,
3608
4076
  .nav .open > a:focus {
3609
- background-color: #eee;
3610
- border-color: #428bca;
4077
+ background-color: #eeeeee;
4078
+ border-color: #337ab7;
3611
4079
  }
3612
4080
  .nav .nav-divider {
3613
4081
  height: 1px;
@@ -3632,12 +4100,12 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
3632
4100
  border-radius: 4px 4px 0 0;
3633
4101
  }
3634
4102
  .nav-tabs > li > a:hover {
3635
- border-color: #eee #eee #ddd;
4103
+ border-color: #eeeeee #eeeeee #ddd;
3636
4104
  }
3637
4105
  .nav-tabs > li.active > a,
3638
4106
  .nav-tabs > li.active > a:hover,
3639
4107
  .nav-tabs > li.active > a:focus {
3640
- color: #555;
4108
+ color: #555555;
3641
4109
  cursor: default;
3642
4110
  background-color: #fff;
3643
4111
  border: 1px solid #ddd;
@@ -3700,7 +4168,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
3700
4168
  .nav-pills > li.active > a:hover,
3701
4169
  .nav-pills > li.active > a:focus {
3702
4170
  color: #fff;
3703
- background-color: #428bca;
4171
+ background-color: #337ab7;
3704
4172
  }
3705
4173
  .nav-stacked > li {
3706
4174
  float: none;
@@ -3786,10 +4254,10 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
3786
4254
  padding-right: 15px;
3787
4255
  padding-left: 15px;
3788
4256
  overflow-x: visible;
3789
- -webkit-overflow-scrolling: touch;
3790
4257
  border-top: 1px solid transparent;
3791
- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
3792
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
4258
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
4259
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
4260
+ -webkit-overflow-scrolling: touch;
3793
4261
  }
3794
4262
  .navbar-collapse.in {
3795
4263
  overflow-y: auto;
@@ -3799,7 +4267,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
3799
4267
  width: auto;
3800
4268
  border-top: 0;
3801
4269
  -webkit-box-shadow: none;
3802
- box-shadow: none;
4270
+ box-shadow: none;
3803
4271
  }
3804
4272
  .navbar-collapse.collapse {
3805
4273
  display: block !important;
@@ -3817,16 +4285,38 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
3817
4285
  padding-left: 0;
3818
4286
  }
3819
4287
  }
4288
+ .navbar-fixed-top,
4289
+ .navbar-fixed-bottom {
4290
+ position: fixed;
4291
+ right: 0;
4292
+ left: 0;
4293
+ z-index: 1030;
4294
+ }
3820
4295
  .navbar-fixed-top .navbar-collapse,
3821
4296
  .navbar-fixed-bottom .navbar-collapse {
3822
4297
  max-height: 340px;
3823
4298
  }
3824
- @media (max-width: 480px) and (orientation: landscape) {
4299
+ @media (max-device-width: 480px) and (orientation: landscape) {
3825
4300
  .navbar-fixed-top .navbar-collapse,
3826
4301
  .navbar-fixed-bottom .navbar-collapse {
3827
4302
  max-height: 200px;
3828
4303
  }
3829
4304
  }
4305
+ @media (min-width: 768px) {
4306
+ .navbar-fixed-top,
4307
+ .navbar-fixed-bottom {
4308
+ border-radius: 0;
4309
+ }
4310
+ }
4311
+ .navbar-fixed-top {
4312
+ top: 0;
4313
+ border-width: 0 0 1px;
4314
+ }
4315
+ .navbar-fixed-bottom {
4316
+ bottom: 0;
4317
+ margin-bottom: 0;
4318
+ border-width: 1px 0 0;
4319
+ }
3830
4320
  .container > .navbar-header,
3831
4321
  .container-fluid > .navbar-header,
3832
4322
  .container > .navbar-collapse,
@@ -3852,31 +4342,6 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
3852
4342
  border-radius: 0;
3853
4343
  }
3854
4344
  }
3855
- .navbar-fixed-top,
3856
- .navbar-fixed-bottom {
3857
- position: fixed;
3858
- right: 0;
3859
- left: 0;
3860
- z-index: 1030;
3861
- -webkit-transform: translate3d(0, 0, 0);
3862
- -o-transform: translate3d(0, 0, 0);
3863
- transform: translate3d(0, 0, 0);
3864
- }
3865
- @media (min-width: 768px) {
3866
- .navbar-fixed-top,
3867
- .navbar-fixed-bottom {
3868
- border-radius: 0;
3869
- }
3870
- }
3871
- .navbar-fixed-top {
3872
- top: 0;
3873
- border-width: 0 0 1px;
3874
- }
3875
- .navbar-fixed-bottom {
3876
- bottom: 0;
3877
- margin-bottom: 0;
3878
- border-width: 1px 0 0;
3879
- }
3880
4345
  .navbar-brand {
3881
4346
  float: left;
3882
4347
  height: 50px;
@@ -3888,6 +4353,9 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
3888
4353
  .navbar-brand:focus {
3889
4354
  text-decoration: none;
3890
4355
  }
4356
+ .navbar-brand > img {
4357
+ display: block;
4358
+ }
3891
4359
  @media (min-width: 768px) {
3892
4360
  .navbar > .container .navbar-brand,
3893
4361
  .navbar > .container-fluid .navbar-brand {
@@ -3898,8 +4366,8 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
3898
4366
  position: relative;
3899
4367
  float: right;
3900
4368
  padding: 9px 10px;
3901
- margin-top: 8px;
3902
4369
  margin-right: 15px;
4370
+ margin-top: 8px;
3903
4371
  margin-bottom: 8px;
3904
4372
  background-color: transparent;
3905
4373
  background-image: none;
@@ -3940,7 +4408,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
3940
4408
  background-color: transparent;
3941
4409
  border: 0;
3942
4410
  -webkit-box-shadow: none;
3943
- box-shadow: none;
4411
+ box-shadow: none;
3944
4412
  }
3945
4413
  .navbar-nav .open .dropdown-menu > li > a,
3946
4414
  .navbar-nav .open .dropdown-menu .dropdown-header {
@@ -3966,28 +4434,17 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
3966
4434
  padding-top: 15px;
3967
4435
  padding-bottom: 15px;
3968
4436
  }
3969
- .navbar-nav.navbar-right:last-child {
3970
- margin-right: -15px;
3971
- }
3972
- }
3973
- @media (min-width: 768px) {
3974
- .navbar-left {
3975
- float: left !important;
3976
- }
3977
- .navbar-right {
3978
- float: right !important;
3979
- }
3980
4437
  }
3981
4438
  .navbar-form {
3982
4439
  padding: 10px 15px;
3983
- margin-top: 8px;
3984
4440
  margin-right: -15px;
3985
- margin-bottom: 8px;
3986
4441
  margin-left: -15px;
3987
4442
  border-top: 1px solid transparent;
3988
4443
  border-bottom: 1px solid transparent;
3989
- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
3990
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
4444
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
4445
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
4446
+ margin-top: 8px;
4447
+ margin-bottom: 8px;
3991
4448
  }
3992
4449
  @media (min-width: 768px) {
3993
4450
  .navbar-form .form-group {
@@ -4000,6 +4457,9 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
4000
4457
  width: auto;
4001
4458
  vertical-align: middle;
4002
4459
  }
4460
+ .navbar-form .form-control-static {
4461
+ display: inline-block;
4462
+ }
4003
4463
  .navbar-form .input-group {
4004
4464
  display: inline-table;
4005
4465
  vertical-align: middle;
@@ -4040,6 +4500,9 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
4040
4500
  .navbar-form .form-group {
4041
4501
  margin-bottom: 5px;
4042
4502
  }
4503
+ .navbar-form .form-group:last-child {
4504
+ margin-bottom: 0;
4505
+ }
4043
4506
  }
4044
4507
  @media (min-width: 768px) {
4045
4508
  .navbar-form {
@@ -4050,10 +4513,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
4050
4513
  margin-left: 0;
4051
4514
  border: 0;
4052
4515
  -webkit-box-shadow: none;
4053
- box-shadow: none;
4054
- }
4055
- .navbar-form.navbar-right:last-child {
4056
- margin-right: -15px;
4516
+ box-shadow: none;
4057
4517
  }
4058
4518
  }
4059
4519
  .navbar-nav > li > .dropdown-menu {
@@ -4062,6 +4522,9 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
4062
4522
  border-top-right-radius: 0;
4063
4523
  }
4064
4524
  .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
4525
+ margin-bottom: 0;
4526
+ border-top-left-radius: 4px;
4527
+ border-top-right-radius: 4px;
4065
4528
  border-bottom-right-radius: 0;
4066
4529
  border-bottom-left-radius: 0;
4067
4530
  }
@@ -4087,7 +4550,16 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
4087
4550
  margin-right: 15px;
4088
4551
  margin-left: 15px;
4089
4552
  }
4090
- .navbar-text.navbar-right:last-child {
4553
+ }
4554
+ @media (min-width: 768px) {
4555
+ .navbar-left {
4556
+ float: left !important;
4557
+ }
4558
+ .navbar-right {
4559
+ float: right !important;
4560
+ margin-right: -15px;
4561
+ }
4562
+ .navbar-right ~ .navbar-right {
4091
4563
  margin-right: 0;
4092
4564
  }
4093
4565
  }
@@ -4126,20 +4598,6 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
4126
4598
  color: #ccc;
4127
4599
  background-color: transparent;
4128
4600
  }
4129
- .navbar-default .navbar-toggle {
4130
- border-color: #ddd;
4131
- }
4132
- .navbar-default .navbar-toggle:hover,
4133
- .navbar-default .navbar-toggle:focus {
4134
- background-color: #ddd;
4135
- }
4136
- .navbar-default .navbar-toggle .icon-bar {
4137
- background-color: #888;
4138
- }
4139
- .navbar-default .navbar-collapse,
4140
- .navbar-default .navbar-form {
4141
- border-color: #e7e7e7;
4142
- }
4143
4601
  .navbar-default .navbar-nav > .open > a,
4144
4602
  .navbar-default .navbar-nav > .open > a:hover,
4145
4603
  .navbar-default .navbar-nav > .open > a:focus {
@@ -4168,6 +4626,20 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
4168
4626
  background-color: transparent;
4169
4627
  }
4170
4628
  }
4629
+ .navbar-default .navbar-toggle {
4630
+ border-color: #ddd;
4631
+ }
4632
+ .navbar-default .navbar-toggle:hover,
4633
+ .navbar-default .navbar-toggle:focus {
4634
+ background-color: #ddd;
4635
+ }
4636
+ .navbar-default .navbar-toggle .icon-bar {
4637
+ background-color: #888;
4638
+ }
4639
+ .navbar-default .navbar-collapse,
4640
+ .navbar-default .navbar-form {
4641
+ border-color: #e7e7e7;
4642
+ }
4171
4643
  .navbar-default .navbar-link {
4172
4644
  color: #777;
4173
4645
  }
@@ -4192,7 +4664,7 @@ fieldset[disabled] .navbar-default .btn-link:focus {
4192
4664
  border-color: #080808;
4193
4665
  }
4194
4666
  .navbar-inverse .navbar-brand {
4195
- color: #777;
4667
+ color: #9d9d9d;
4196
4668
  }
4197
4669
  .navbar-inverse .navbar-brand:hover,
4198
4670
  .navbar-inverse .navbar-brand:focus {
@@ -4200,10 +4672,10 @@ fieldset[disabled] .navbar-default .btn-link:focus {
4200
4672
  background-color: transparent;
4201
4673
  }
4202
4674
  .navbar-inverse .navbar-text {
4203
- color: #777;
4675
+ color: #9d9d9d;
4204
4676
  }
4205
4677
  .navbar-inverse .navbar-nav > li > a {
4206
- color: #777;
4678
+ color: #9d9d9d;
4207
4679
  }
4208
4680
  .navbar-inverse .navbar-nav > li > a:hover,
4209
4681
  .navbar-inverse .navbar-nav > li > a:focus {
@@ -4222,20 +4694,6 @@ fieldset[disabled] .navbar-default .btn-link:focus {
4222
4694
  color: #444;
4223
4695
  background-color: transparent;
4224
4696
  }
4225
- .navbar-inverse .navbar-toggle {
4226
- border-color: #333;
4227
- }
4228
- .navbar-inverse .navbar-toggle:hover,
4229
- .navbar-inverse .navbar-toggle:focus {
4230
- background-color: #333;
4231
- }
4232
- .navbar-inverse .navbar-toggle .icon-bar {
4233
- background-color: #fff;
4234
- }
4235
- .navbar-inverse .navbar-collapse,
4236
- .navbar-inverse .navbar-form {
4237
- border-color: #101010;
4238
- }
4239
4697
  .navbar-inverse .navbar-nav > .open > a,
4240
4698
  .navbar-inverse .navbar-nav > .open > a:hover,
4241
4699
  .navbar-inverse .navbar-nav > .open > a:focus {
@@ -4250,7 +4708,7 @@ fieldset[disabled] .navbar-default .btn-link:focus {
4250
4708
  background-color: #080808;
4251
4709
  }
4252
4710
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
4253
- color: #777;
4711
+ color: #9d9d9d;
4254
4712
  }
4255
4713
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
4256
4714
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
@@ -4270,14 +4728,28 @@ fieldset[disabled] .navbar-default .btn-link:focus {
4270
4728
  background-color: transparent;
4271
4729
  }
4272
4730
  }
4731
+ .navbar-inverse .navbar-toggle {
4732
+ border-color: #333;
4733
+ }
4734
+ .navbar-inverse .navbar-toggle:hover,
4735
+ .navbar-inverse .navbar-toggle:focus {
4736
+ background-color: #333;
4737
+ }
4738
+ .navbar-inverse .navbar-toggle .icon-bar {
4739
+ background-color: #fff;
4740
+ }
4741
+ .navbar-inverse .navbar-collapse,
4742
+ .navbar-inverse .navbar-form {
4743
+ border-color: #101010;
4744
+ }
4273
4745
  .navbar-inverse .navbar-link {
4274
- color: #777;
4746
+ color: #9d9d9d;
4275
4747
  }
4276
4748
  .navbar-inverse .navbar-link:hover {
4277
4749
  color: #fff;
4278
4750
  }
4279
4751
  .navbar-inverse .btn-link {
4280
- color: #777;
4752
+ color: #9d9d9d;
4281
4753
  }
4282
4754
  .navbar-inverse .btn-link:hover,
4283
4755
  .navbar-inverse .btn-link:focus {
@@ -4305,7 +4777,7 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
4305
4777
  content: "/\00a0";
4306
4778
  }
4307
4779
  .breadcrumb > .active {
4308
- color: #777;
4780
+ color: #777777;
4309
4781
  }
4310
4782
  .pagination {
4311
4783
  display: inline-block;
@@ -4323,11 +4795,20 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
4323
4795
  padding: 6px 12px;
4324
4796
  margin-left: -1px;
4325
4797
  line-height: 1.42857143;
4326
- color: #428bca;
4798
+ color: #337ab7;
4327
4799
  text-decoration: none;
4328
4800
  background-color: #fff;
4329
4801
  border: 1px solid #ddd;
4330
4802
  }
4803
+ .pagination > li > a:hover,
4804
+ .pagination > li > span:hover,
4805
+ .pagination > li > a:focus,
4806
+ .pagination > li > span:focus {
4807
+ z-index: 2;
4808
+ color: #23527c;
4809
+ background-color: #eeeeee;
4810
+ border-color: #ddd;
4811
+ }
4331
4812
  .pagination > li:first-child > a,
4332
4813
  .pagination > li:first-child > span {
4333
4814
  margin-left: 0;
@@ -4339,25 +4820,17 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
4339
4820
  border-top-right-radius: 4px;
4340
4821
  border-bottom-right-radius: 4px;
4341
4822
  }
4342
- .pagination > li > a:hover,
4343
- .pagination > li > span:hover,
4344
- .pagination > li > a:focus,
4345
- .pagination > li > span:focus {
4346
- color: #2a6496;
4347
- background-color: #eee;
4348
- border-color: #ddd;
4349
- }
4350
4823
  .pagination > .active > a,
4351
4824
  .pagination > .active > span,
4352
4825
  .pagination > .active > a:hover,
4353
4826
  .pagination > .active > span:hover,
4354
4827
  .pagination > .active > a:focus,
4355
4828
  .pagination > .active > span:focus {
4356
- z-index: 2;
4829
+ z-index: 3;
4357
4830
  color: #fff;
4358
4831
  cursor: default;
4359
- background-color: #428bca;
4360
- border-color: #428bca;
4832
+ background-color: #337ab7;
4833
+ border-color: #337ab7;
4361
4834
  }
4362
4835
  .pagination > .disabled > span,
4363
4836
  .pagination > .disabled > span:hover,
@@ -4365,7 +4838,7 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
4365
4838
  .pagination > .disabled > a,
4366
4839
  .pagination > .disabled > a:hover,
4367
4840
  .pagination > .disabled > a:focus {
4368
- color: #777;
4841
+ color: #777777;
4369
4842
  cursor: not-allowed;
4370
4843
  background-color: #fff;
4371
4844
  border-color: #ddd;
@@ -4374,6 +4847,7 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
4374
4847
  .pagination-lg > li > span {
4375
4848
  padding: 10px 16px;
4376
4849
  font-size: 18px;
4850
+ line-height: 1.3333333;
4377
4851
  }
4378
4852
  .pagination-lg > li:first-child > a,
4379
4853
  .pagination-lg > li:first-child > span {
@@ -4389,6 +4863,7 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
4389
4863
  .pagination-sm > li > span {
4390
4864
  padding: 5px 10px;
4391
4865
  font-size: 12px;
4866
+ line-height: 1.5;
4392
4867
  }
4393
4868
  .pagination-sm > li:first-child > a,
4394
4869
  .pagination-sm > li:first-child > span {
@@ -4420,7 +4895,7 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
4420
4895
  .pager li > a:hover,
4421
4896
  .pager li > a:focus {
4422
4897
  text-decoration: none;
4423
- background-color: #eee;
4898
+ background-color: #eeeeee;
4424
4899
  }
4425
4900
  .pager .next > a,
4426
4901
  .pager .next > span {
@@ -4434,21 +4909,21 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
4434
4909
  .pager .disabled > a:hover,
4435
4910
  .pager .disabled > a:focus,
4436
4911
  .pager .disabled > span {
4437
- color: #777;
4912
+ color: #777777;
4438
4913
  cursor: not-allowed;
4439
4914
  background-color: #fff;
4440
4915
  }
4441
4916
  .label {
4442
4917
  display: inline;
4443
- padding: .2em .6em .3em;
4918
+ padding: 0.2em 0.6em 0.3em;
4444
4919
  font-size: 75%;
4445
- font-weight: bold;
4920
+ font-weight: 700;
4446
4921
  line-height: 1;
4447
4922
  color: #fff;
4448
4923
  text-align: center;
4449
4924
  white-space: nowrap;
4450
4925
  vertical-align: baseline;
4451
- border-radius: .25em;
4926
+ border-radius: 0.25em;
4452
4927
  }
4453
4928
  a.label:hover,
4454
4929
  a.label:focus {
@@ -4464,18 +4939,18 @@ a.label:focus {
4464
4939
  top: -1px;
4465
4940
  }
4466
4941
  .label-default {
4467
- background-color: #777;
4942
+ background-color: #777777;
4468
4943
  }
4469
4944
  .label-default[href]:hover,
4470
4945
  .label-default[href]:focus {
4471
4946
  background-color: #5e5e5e;
4472
4947
  }
4473
4948
  .label-primary {
4474
- background-color: #428bca;
4949
+ background-color: #337ab7;
4475
4950
  }
4476
4951
  .label-primary[href]:hover,
4477
4952
  .label-primary[href]:focus {
4478
- background-color: #3071a9;
4953
+ background-color: #286090;
4479
4954
  }
4480
4955
  .label-success {
4481
4956
  background-color: #5cb85c;
@@ -4515,8 +4990,8 @@ a.label:focus {
4515
4990
  color: #fff;
4516
4991
  text-align: center;
4517
4992
  white-space: nowrap;
4518
- vertical-align: baseline;
4519
- background-color: #777;
4993
+ vertical-align: middle;
4994
+ background-color: #777777;
4520
4995
  border-radius: 10px;
4521
4996
  }
4522
4997
  .badge:empty {
@@ -4526,7 +5001,8 @@ a.label:focus {
4526
5001
  position: relative;
4527
5002
  top: -1px;
4528
5003
  }
4529
- .btn-xs .badge {
5004
+ .btn-xs .badge,
5005
+ .btn-group-xs > .btn .badge {
4530
5006
  top: 0;
4531
5007
  padding: 1px 5px;
4532
5008
  }
@@ -4536,19 +5012,26 @@ a.badge:focus {
4536
5012
  text-decoration: none;
4537
5013
  cursor: pointer;
4538
5014
  }
4539
- a.list-group-item.active > .badge,
5015
+ .list-group-item.active > .badge,
4540
5016
  .nav-pills > .active > a > .badge {
4541
- color: #428bca;
5017
+ color: #337ab7;
4542
5018
  background-color: #fff;
4543
5019
  }
5020
+ .list-group-item > .badge {
5021
+ float: right;
5022
+ }
5023
+ .list-group-item > .badge + .badge {
5024
+ margin-right: 5px;
5025
+ }
4544
5026
  .nav-pills > li > a > .badge {
4545
5027
  margin-left: 3px;
4546
5028
  }
4547
5029
  .jumbotron {
4548
- padding: 30px;
5030
+ padding-top: 30px;
5031
+ padding-bottom: 30px;
4549
5032
  margin-bottom: 30px;
4550
5033
  color: inherit;
4551
- background-color: #eee;
5034
+ background-color: #eeeeee;
4552
5035
  }
4553
5036
  .jumbotron h1,
4554
5037
  .jumbotron .h1 {
@@ -4562,7 +5045,10 @@ a.list-group-item.active > .badge,
4562
5045
  .jumbotron > hr {
4563
5046
  border-top-color: #d5d5d5;
4564
5047
  }
4565
- .container .jumbotron {
5048
+ .container .jumbotron,
5049
+ .container-fluid .jumbotron {
5050
+ padding-right: 15px;
5051
+ padding-left: 15px;
4566
5052
  border-radius: 6px;
4567
5053
  }
4568
5054
  .jumbotron .container {
@@ -4573,7 +5059,8 @@ a.list-group-item.active > .badge,
4573
5059
  padding-top: 48px;
4574
5060
  padding-bottom: 48px;
4575
5061
  }
4576
- .container .jumbotron {
5062
+ .container .jumbotron,
5063
+ .container-fluid .jumbotron {
4577
5064
  padding-right: 60px;
4578
5065
  padding-left: 60px;
4579
5066
  }
@@ -4590,9 +5077,9 @@ a.list-group-item.active > .badge,
4590
5077
  background-color: #fff;
4591
5078
  border: 1px solid #ddd;
4592
5079
  border-radius: 4px;
4593
- -webkit-transition: all .2s ease-in-out;
4594
- -o-transition: all .2s ease-in-out;
4595
- transition: all .2s ease-in-out;
5080
+ -webkit-transition: border 0.2s ease-in-out;
5081
+ -o-transition: border 0.2s ease-in-out;
5082
+ transition: border 0.2s ease-in-out;
4596
5083
  }
4597
5084
  .thumbnail > img,
4598
5085
  .thumbnail a > img {
@@ -4602,11 +5089,11 @@ a.list-group-item.active > .badge,
4602
5089
  a.thumbnail:hover,
4603
5090
  a.thumbnail:focus,
4604
5091
  a.thumbnail.active {
4605
- border-color: #428bca;
5092
+ border-color: #337ab7;
4606
5093
  }
4607
5094
  .thumbnail .caption {
4608
5095
  padding: 9px;
4609
- color: #333;
5096
+ color: #333333;
4610
5097
  }
4611
5098
  .alert {
4612
5099
  padding: 15px;
@@ -4713,105 +5200,113 @@ a.thumbnail.active {
4713
5200
  overflow: hidden;
4714
5201
  background-color: #f5f5f5;
4715
5202
  border-radius: 4px;
4716
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
4717
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
5203
+ -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
5204
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
4718
5205
  }
4719
5206
  .progress-bar {
4720
5207
  float: left;
4721
- width: 0;
5208
+ width: 0%;
4722
5209
  height: 100%;
4723
5210
  font-size: 12px;
4724
5211
  line-height: 20px;
4725
5212
  color: #fff;
4726
5213
  text-align: center;
4727
- background-color: #428bca;
4728
- -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
4729
- box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
4730
- -webkit-transition: width .6s ease;
4731
- -o-transition: width .6s ease;
4732
- transition: width .6s ease;
5214
+ background-color: #337ab7;
5215
+ -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
5216
+ box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
5217
+ -webkit-transition: width 0.6s ease;
5218
+ -o-transition: width 0.6s ease;
5219
+ transition: width 0.6s ease;
4733
5220
  }
4734
5221
  .progress-striped .progress-bar,
4735
5222
  .progress-bar-striped {
4736
- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
4737
- background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
4738
- background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
5223
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
5224
+ background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
5225
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4739
5226
  -webkit-background-size: 40px 40px;
4740
- background-size: 40px 40px;
5227
+ background-size: 40px 40px;
4741
5228
  }
4742
5229
  .progress.active .progress-bar,
4743
5230
  .progress-bar.active {
4744
5231
  -webkit-animation: progress-bar-stripes 2s linear infinite;
4745
- -o-animation: progress-bar-stripes 2s linear infinite;
4746
- animation: progress-bar-stripes 2s linear infinite;
4747
- }
4748
- .progress-bar[aria-valuenow="1"],
4749
- .progress-bar[aria-valuenow="2"] {
4750
- min-width: 30px;
4751
- }
4752
- .progress-bar[aria-valuenow="0"] {
4753
- min-width: 30px;
4754
- color: #777;
4755
- background-color: transparent;
4756
- background-image: none;
4757
- -webkit-box-shadow: none;
4758
- box-shadow: none;
5232
+ -o-animation: progress-bar-stripes 2s linear infinite;
5233
+ animation: progress-bar-stripes 2s linear infinite;
4759
5234
  }
4760
5235
  .progress-bar-success {
4761
5236
  background-color: #5cb85c;
4762
5237
  }
4763
5238
  .progress-striped .progress-bar-success {
4764
- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
4765
- background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
4766
- background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
5239
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
5240
+ background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
5241
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4767
5242
  }
4768
5243
  .progress-bar-info {
4769
5244
  background-color: #5bc0de;
4770
5245
  }
4771
5246
  .progress-striped .progress-bar-info {
4772
- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
4773
- background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
4774
- background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
5247
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
5248
+ background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
5249
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4775
5250
  }
4776
5251
  .progress-bar-warning {
4777
5252
  background-color: #f0ad4e;
4778
5253
  }
4779
5254
  .progress-striped .progress-bar-warning {
4780
- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
4781
- background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
4782
- background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
5255
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
5256
+ background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
5257
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4783
5258
  }
4784
5259
  .progress-bar-danger {
4785
5260
  background-color: #d9534f;
4786
5261
  }
4787
5262
  .progress-striped .progress-bar-danger {
4788
- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
4789
- background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
4790
- background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
5263
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
5264
+ background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
5265
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
5266
+ }
5267
+ .media {
5268
+ margin-top: 15px;
5269
+ }
5270
+ .media:first-child {
5271
+ margin-top: 0;
4791
5272
  }
4792
5273
  .media,
4793
5274
  .media-body {
4794
5275
  overflow: hidden;
4795
5276
  zoom: 1;
4796
5277
  }
4797
- .media,
4798
- .media .media {
4799
- margin-top: 15px;
4800
- }
4801
- .media:first-child {
4802
- margin-top: 0;
5278
+ .media-body {
5279
+ width: 10000px;
4803
5280
  }
4804
5281
  .media-object {
4805
5282
  display: block;
4806
5283
  }
4807
- .media-heading {
4808
- margin: 0 0 5px;
5284
+ .media-object.img-thumbnail {
5285
+ max-width: none;
4809
5286
  }
5287
+ .media-right,
5288
+ .media > .pull-right {
5289
+ padding-left: 10px;
5290
+ }
5291
+ .media-left,
4810
5292
  .media > .pull-left {
4811
- margin-right: 10px;
5293
+ padding-right: 10px;
4812
5294
  }
4813
- .media > .pull-right {
4814
- margin-left: 10px;
5295
+ .media-left,
5296
+ .media-right,
5297
+ .media-body {
5298
+ display: table-cell;
5299
+ vertical-align: top;
5300
+ }
5301
+ .media-middle {
5302
+ vertical-align: middle;
5303
+ }
5304
+ .media-bottom {
5305
+ vertical-align: bottom;
5306
+ }
5307
+ .media-heading {
5308
+ margin-top: 0;
5309
+ margin-bottom: 5px;
4815
5310
  }
4816
5311
  .media-list {
4817
5312
  padding-left: 0;
@@ -4838,29 +5333,12 @@ a.thumbnail.active {
4838
5333
  border-bottom-right-radius: 4px;
4839
5334
  border-bottom-left-radius: 4px;
4840
5335
  }
4841
- .list-group-item > .badge {
4842
- float: right;
4843
- }
4844
- .list-group-item > .badge + .badge {
4845
- margin-right: 5px;
4846
- }
4847
- a.list-group-item {
4848
- color: #555;
4849
- }
4850
- a.list-group-item .list-group-item-heading {
4851
- color: #333;
4852
- }
4853
- a.list-group-item:hover,
4854
- a.list-group-item:focus {
4855
- color: #555;
4856
- text-decoration: none;
4857
- background-color: #f5f5f5;
4858
- }
4859
5336
  .list-group-item.disabled,
4860
5337
  .list-group-item.disabled:hover,
4861
5338
  .list-group-item.disabled:focus {
4862
- color: #777;
4863
- background-color: #eee;
5339
+ color: #777777;
5340
+ cursor: not-allowed;
5341
+ background-color: #eeeeee;
4864
5342
  }
4865
5343
  .list-group-item.disabled .list-group-item-heading,
4866
5344
  .list-group-item.disabled:hover .list-group-item-heading,
@@ -4870,15 +5348,15 @@ a.list-group-item:focus {
4870
5348
  .list-group-item.disabled .list-group-item-text,
4871
5349
  .list-group-item.disabled:hover .list-group-item-text,
4872
5350
  .list-group-item.disabled:focus .list-group-item-text {
4873
- color: #777;
5351
+ color: #777777;
4874
5352
  }
4875
5353
  .list-group-item.active,
4876
5354
  .list-group-item.active:hover,
4877
5355
  .list-group-item.active:focus {
4878
5356
  z-index: 2;
4879
5357
  color: #fff;
4880
- background-color: #428bca;
4881
- border-color: #428bca;
5358
+ background-color: #337ab7;
5359
+ border-color: #337ab7;
4882
5360
  }
4883
5361
  .list-group-item.active .list-group-item-heading,
4884
5362
  .list-group-item.active:hover .list-group-item-heading,
@@ -4894,26 +5372,53 @@ a.list-group-item:focus {
4894
5372
  .list-group-item.active .list-group-item-text,
4895
5373
  .list-group-item.active:hover .list-group-item-text,
4896
5374
  .list-group-item.active:focus .list-group-item-text {
4897
- color: #e1edf7;
5375
+ color: #c7ddef;
5376
+ }
5377
+ a.list-group-item,
5378
+ button.list-group-item {
5379
+ color: #555;
5380
+ }
5381
+ a.list-group-item .list-group-item-heading,
5382
+ button.list-group-item .list-group-item-heading {
5383
+ color: #333;
5384
+ }
5385
+ a.list-group-item:hover,
5386
+ button.list-group-item:hover,
5387
+ a.list-group-item:focus,
5388
+ button.list-group-item:focus {
5389
+ color: #555;
5390
+ text-decoration: none;
5391
+ background-color: #f5f5f5;
5392
+ }
5393
+ button.list-group-item {
5394
+ width: 100%;
5395
+ text-align: left;
4898
5396
  }
4899
5397
  .list-group-item-success {
4900
5398
  color: #3c763d;
4901
5399
  background-color: #dff0d8;
4902
5400
  }
4903
- a.list-group-item-success {
5401
+ a.list-group-item-success,
5402
+ button.list-group-item-success {
4904
5403
  color: #3c763d;
4905
5404
  }
4906
- a.list-group-item-success .list-group-item-heading {
5405
+ a.list-group-item-success .list-group-item-heading,
5406
+ button.list-group-item-success .list-group-item-heading {
4907
5407
  color: inherit;
4908
5408
  }
4909
5409
  a.list-group-item-success:hover,
4910
- a.list-group-item-success:focus {
5410
+ button.list-group-item-success:hover,
5411
+ a.list-group-item-success:focus,
5412
+ button.list-group-item-success:focus {
4911
5413
  color: #3c763d;
4912
5414
  background-color: #d0e9c6;
4913
5415
  }
4914
5416
  a.list-group-item-success.active,
5417
+ button.list-group-item-success.active,
4915
5418
  a.list-group-item-success.active:hover,
4916
- a.list-group-item-success.active:focus {
5419
+ button.list-group-item-success.active:hover,
5420
+ a.list-group-item-success.active:focus,
5421
+ button.list-group-item-success.active:focus {
4917
5422
  color: #fff;
4918
5423
  background-color: #3c763d;
4919
5424
  border-color: #3c763d;
@@ -4922,20 +5427,27 @@ a.list-group-item-success.active:focus {
4922
5427
  color: #31708f;
4923
5428
  background-color: #d9edf7;
4924
5429
  }
4925
- a.list-group-item-info {
5430
+ a.list-group-item-info,
5431
+ button.list-group-item-info {
4926
5432
  color: #31708f;
4927
5433
  }
4928
- a.list-group-item-info .list-group-item-heading {
5434
+ a.list-group-item-info .list-group-item-heading,
5435
+ button.list-group-item-info .list-group-item-heading {
4929
5436
  color: inherit;
4930
5437
  }
4931
5438
  a.list-group-item-info:hover,
4932
- a.list-group-item-info:focus {
5439
+ button.list-group-item-info:hover,
5440
+ a.list-group-item-info:focus,
5441
+ button.list-group-item-info:focus {
4933
5442
  color: #31708f;
4934
5443
  background-color: #c4e3f3;
4935
5444
  }
4936
5445
  a.list-group-item-info.active,
5446
+ button.list-group-item-info.active,
4937
5447
  a.list-group-item-info.active:hover,
4938
- a.list-group-item-info.active:focus {
5448
+ button.list-group-item-info.active:hover,
5449
+ a.list-group-item-info.active:focus,
5450
+ button.list-group-item-info.active:focus {
4939
5451
  color: #fff;
4940
5452
  background-color: #31708f;
4941
5453
  border-color: #31708f;
@@ -4944,20 +5456,27 @@ a.list-group-item-info.active:focus {
4944
5456
  color: #8a6d3b;
4945
5457
  background-color: #fcf8e3;
4946
5458
  }
4947
- a.list-group-item-warning {
5459
+ a.list-group-item-warning,
5460
+ button.list-group-item-warning {
4948
5461
  color: #8a6d3b;
4949
5462
  }
4950
- a.list-group-item-warning .list-group-item-heading {
5463
+ a.list-group-item-warning .list-group-item-heading,
5464
+ button.list-group-item-warning .list-group-item-heading {
4951
5465
  color: inherit;
4952
5466
  }
4953
5467
  a.list-group-item-warning:hover,
4954
- a.list-group-item-warning:focus {
5468
+ button.list-group-item-warning:hover,
5469
+ a.list-group-item-warning:focus,
5470
+ button.list-group-item-warning:focus {
4955
5471
  color: #8a6d3b;
4956
5472
  background-color: #faf2cc;
4957
5473
  }
4958
5474
  a.list-group-item-warning.active,
5475
+ button.list-group-item-warning.active,
4959
5476
  a.list-group-item-warning.active:hover,
4960
- a.list-group-item-warning.active:focus {
5477
+ button.list-group-item-warning.active:hover,
5478
+ a.list-group-item-warning.active:focus,
5479
+ button.list-group-item-warning.active:focus {
4961
5480
  color: #fff;
4962
5481
  background-color: #8a6d3b;
4963
5482
  border-color: #8a6d3b;
@@ -4966,20 +5485,27 @@ a.list-group-item-warning.active:focus {
4966
5485
  color: #a94442;
4967
5486
  background-color: #f2dede;
4968
5487
  }
4969
- a.list-group-item-danger {
5488
+ a.list-group-item-danger,
5489
+ button.list-group-item-danger {
4970
5490
  color: #a94442;
4971
5491
  }
4972
- a.list-group-item-danger .list-group-item-heading {
5492
+ a.list-group-item-danger .list-group-item-heading,
5493
+ button.list-group-item-danger .list-group-item-heading {
4973
5494
  color: inherit;
4974
5495
  }
4975
5496
  a.list-group-item-danger:hover,
4976
- a.list-group-item-danger:focus {
5497
+ button.list-group-item-danger:hover,
5498
+ a.list-group-item-danger:focus,
5499
+ button.list-group-item-danger:focus {
4977
5500
  color: #a94442;
4978
5501
  background-color: #ebcccc;
4979
5502
  }
4980
5503
  a.list-group-item-danger.active,
5504
+ button.list-group-item-danger.active,
4981
5505
  a.list-group-item-danger.active:hover,
4982
- a.list-group-item-danger.active:focus {
5506
+ button.list-group-item-danger.active:hover,
5507
+ a.list-group-item-danger.active:focus,
5508
+ button.list-group-item-danger.active:focus {
4983
5509
  color: #fff;
4984
5510
  background-color: #a94442;
4985
5511
  border-color: #a94442;
@@ -4997,8 +5523,8 @@ a.list-group-item-danger.active:focus {
4997
5523
  background-color: #fff;
4998
5524
  border: 1px solid transparent;
4999
5525
  border-radius: 4px;
5000
- -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
5001
- box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
5526
+ -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
5527
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
5002
5528
  }
5003
5529
  .panel-body {
5004
5530
  padding: 15px;
@@ -5018,7 +5544,11 @@ a.list-group-item-danger.active:focus {
5018
5544
  font-size: 16px;
5019
5545
  color: inherit;
5020
5546
  }
5021
- .panel-title > a {
5547
+ .panel-title > a,
5548
+ .panel-title > small,
5549
+ .panel-title > .small,
5550
+ .panel-title > small > a,
5551
+ .panel-title > .small > a {
5022
5552
  color: inherit;
5023
5553
  }
5024
5554
  .panel-footer {
@@ -5028,23 +5558,31 @@ a.list-group-item-danger.active:focus {
5028
5558
  border-bottom-right-radius: 3px;
5029
5559
  border-bottom-left-radius: 3px;
5030
5560
  }
5031
- .panel > .list-group {
5561
+ .panel > .list-group,
5562
+ .panel > .panel-collapse > .list-group {
5032
5563
  margin-bottom: 0;
5033
5564
  }
5034
- .panel > .list-group .list-group-item {
5565
+ .panel > .list-group .list-group-item,
5566
+ .panel > .panel-collapse > .list-group .list-group-item {
5035
5567
  border-width: 1px 0;
5036
5568
  border-radius: 0;
5037
5569
  }
5038
- .panel > .list-group:first-child .list-group-item:first-child {
5570
+ .panel > .list-group:first-child .list-group-item:first-child,
5571
+ .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
5039
5572
  border-top: 0;
5040
5573
  border-top-left-radius: 3px;
5041
5574
  border-top-right-radius: 3px;
5042
5575
  }
5043
- .panel > .list-group:last-child .list-group-item:last-child {
5576
+ .panel > .list-group:last-child .list-group-item:last-child,
5577
+ .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
5044
5578
  border-bottom: 0;
5045
5579
  border-bottom-right-radius: 3px;
5046
5580
  border-bottom-left-radius: 3px;
5047
5581
  }
5582
+ .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
5583
+ border-top-left-radius: 0;
5584
+ border-top-right-radius: 0;
5585
+ }
5048
5586
  .panel-heading + .list-group .list-group-item:first-child {
5049
5587
  border-top-width: 0;
5050
5588
  }
@@ -5056,11 +5594,24 @@ a.list-group-item-danger.active:focus {
5056
5594
  .panel > .panel-collapse > .table {
5057
5595
  margin-bottom: 0;
5058
5596
  }
5597
+ .panel > .table caption,
5598
+ .panel > .table-responsive > .table caption,
5599
+ .panel > .panel-collapse > .table caption {
5600
+ padding-right: 15px;
5601
+ padding-left: 15px;
5602
+ }
5059
5603
  .panel > .table:first-child,
5060
5604
  .panel > .table-responsive:first-child > .table:first-child {
5061
5605
  border-top-left-radius: 3px;
5062
5606
  border-top-right-radius: 3px;
5063
5607
  }
5608
+ .panel > .table:first-child > thead:first-child > tr:first-child,
5609
+ .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
5610
+ .panel > .table:first-child > tbody:first-child > tr:first-child,
5611
+ .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
5612
+ border-top-left-radius: 3px;
5613
+ border-top-right-radius: 3px;
5614
+ }
5064
5615
  .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
5065
5616
  .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
5066
5617
  .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
@@ -5086,6 +5637,13 @@ a.list-group-item-danger.active:focus {
5086
5637
  border-bottom-right-radius: 3px;
5087
5638
  border-bottom-left-radius: 3px;
5088
5639
  }
5640
+ .panel > .table:last-child > tbody:last-child > tr:last-child,
5641
+ .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
5642
+ .panel > .table:last-child > tfoot:last-child > tr:last-child,
5643
+ .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
5644
+ border-bottom-right-radius: 3px;
5645
+ border-bottom-left-radius: 3px;
5646
+ }
5089
5647
  .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
5090
5648
  .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
5091
5649
  .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
@@ -5107,7 +5665,9 @@ a.list-group-item-danger.active:focus {
5107
5665
  border-bottom-right-radius: 3px;
5108
5666
  }
5109
5667
  .panel > .panel-body + .table,
5110
- .panel > .panel-body + .table-responsive {
5668
+ .panel > .panel-body + .table-responsive,
5669
+ .panel > .table + .panel-body,
5670
+ .panel > .table-responsive + .panel-body {
5111
5671
  border-top: 1px solid #ddd;
5112
5672
  }
5113
5673
  .panel > .table > tbody:first-child > tr:first-child th,
@@ -5183,7 +5743,8 @@ a.list-group-item-danger.active:focus {
5183
5743
  .panel-group .panel-heading {
5184
5744
  border-bottom: 0;
5185
5745
  }
5186
- .panel-group .panel-heading + .panel-collapse > .panel-body {
5746
+ .panel-group .panel-heading + .panel-collapse > .panel-body,
5747
+ .panel-group .panel-heading + .panel-collapse > .list-group {
5187
5748
  border-top: 1px solid #ddd;
5188
5749
  }
5189
5750
  .panel-group .panel-footer {
@@ -5196,7 +5757,7 @@ a.list-group-item-danger.active:focus {
5196
5757
  border-color: #ddd;
5197
5758
  }
5198
5759
  .panel-default > .panel-heading {
5199
- color: #333;
5760
+ color: #333333;
5200
5761
  background-color: #f5f5f5;
5201
5762
  border-color: #ddd;
5202
5763
  }
@@ -5205,28 +5766,28 @@ a.list-group-item-danger.active:focus {
5205
5766
  }
5206
5767
  .panel-default > .panel-heading .badge {
5207
5768
  color: #f5f5f5;
5208
- background-color: #333;
5769
+ background-color: #333333;
5209
5770
  }
5210
5771
  .panel-default > .panel-footer + .panel-collapse > .panel-body {
5211
5772
  border-bottom-color: #ddd;
5212
5773
  }
5213
5774
  .panel-primary {
5214
- border-color: #428bca;
5775
+ border-color: #337ab7;
5215
5776
  }
5216
5777
  .panel-primary > .panel-heading {
5217
5778
  color: #fff;
5218
- background-color: #428bca;
5219
- border-color: #428bca;
5779
+ background-color: #337ab7;
5780
+ border-color: #337ab7;
5220
5781
  }
5221
5782
  .panel-primary > .panel-heading + .panel-collapse > .panel-body {
5222
- border-top-color: #428bca;
5783
+ border-top-color: #337ab7;
5223
5784
  }
5224
5785
  .panel-primary > .panel-heading .badge {
5225
- color: #428bca;
5786
+ color: #337ab7;
5226
5787
  background-color: #fff;
5227
5788
  }
5228
5789
  .panel-primary > .panel-footer + .panel-collapse > .panel-body {
5229
- border-bottom-color: #428bca;
5790
+ border-bottom-color: #337ab7;
5230
5791
  }
5231
5792
  .panel-success {
5232
5793
  border-color: #d6e9c6;
@@ -5310,7 +5871,8 @@ a.list-group-item-danger.active:focus {
5310
5871
  .embed-responsive .embed-responsive-item,
5311
5872
  .embed-responsive iframe,
5312
5873
  .embed-responsive embed,
5313
- .embed-responsive object {
5874
+ .embed-responsive object,
5875
+ .embed-responsive video {
5314
5876
  position: absolute;
5315
5877
  top: 0;
5316
5878
  bottom: 0;
@@ -5319,10 +5881,10 @@ a.list-group-item-danger.active:focus {
5319
5881
  height: 100%;
5320
5882
  border: 0;
5321
5883
  }
5322
- .embed-responsive.embed-responsive-16by9 {
5884
+ .embed-responsive-16by9 {
5323
5885
  padding-bottom: 56.25%;
5324
5886
  }
5325
- .embed-responsive.embed-responsive-4by3 {
5887
+ .embed-responsive-4by3 {
5326
5888
  padding-bottom: 75%;
5327
5889
  }
5328
5890
  .well {
@@ -5332,12 +5894,12 @@ a.list-group-item-danger.active:focus {
5332
5894
  background-color: #f5f5f5;
5333
5895
  border: 1px solid #e3e3e3;
5334
5896
  border-radius: 4px;
5335
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
5336
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
5897
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
5898
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
5337
5899
  }
5338
5900
  .well blockquote {
5339
5901
  border-color: #ddd;
5340
- border-color: rgba(0, 0, 0, .15);
5902
+ border-color: rgba(0, 0, 0, 0.15);
5341
5903
  }
5342
5904
  .well-lg {
5343
5905
  padding: 24px;
@@ -5355,7 +5917,7 @@ a.list-group-item-danger.active:focus {
5355
5917
  color: #000;
5356
5918
  text-shadow: 0 1px 0 #fff;
5357
5919
  filter: alpha(opacity=20);
5358
- opacity: .2;
5920
+ opacity: 0.2;
5359
5921
  }
5360
5922
  .close:hover,
5361
5923
  .close:focus {
@@ -5363,14 +5925,16 @@ a.list-group-item-danger.active:focus {
5363
5925
  text-decoration: none;
5364
5926
  cursor: pointer;
5365
5927
  filter: alpha(opacity=50);
5366
- opacity: .5;
5928
+ opacity: 0.5;
5367
5929
  }
5368
5930
  button.close {
5369
- -webkit-appearance: none;
5370
5931
  padding: 0;
5371
5932
  cursor: pointer;
5372
5933
  background: transparent;
5373
5934
  border: 0;
5935
+ -webkit-appearance: none;
5936
+ -moz-appearance: none;
5937
+ appearance: none;
5374
5938
  }
5375
5939
  .modal-open {
5376
5940
  overflow: hidden;
@@ -5388,17 +5952,21 @@ button.close {
5388
5952
  outline: 0;
5389
5953
  }
5390
5954
  .modal.fade .modal-dialog {
5391
- -webkit-transition: -webkit-transform .3s ease-out;
5392
- -o-transition: -o-transform .3s ease-out;
5393
- transition: transform .3s ease-out;
5394
- -webkit-transform: translate3d(0, -25%, 0);
5395
- -o-transform: translate3d(0, -25%, 0);
5396
- transform: translate3d(0, -25%, 0);
5955
+ -webkit-transform: translate(0, -25%);
5956
+ -ms-transform: translate(0, -25%);
5957
+ -o-transform: translate(0, -25%);
5958
+ transform: translate(0, -25%);
5959
+ -webkit-transition: -webkit-transform 0.3s ease-out;
5960
+ -o-transition: -o-transform 0.3s ease-out;
5961
+ transition: -webkit-transform 0.3s ease-out;
5962
+ transition: transform 0.3s ease-out;
5963
+ transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out, -o-transform 0.3s ease-out;
5397
5964
  }
5398
5965
  .modal.in .modal-dialog {
5399
- -webkit-transform: translate3d(0, 0, 0);
5400
- -o-transform: translate3d(0, 0, 0);
5401
- transform: translate3d(0, 0, 0);
5966
+ -webkit-transform: translate(0, 0);
5967
+ -ms-transform: translate(0, 0);
5968
+ -o-transform: translate(0, 0);
5969
+ transform: translate(0, 0);
5402
5970
  }
5403
5971
  .modal-open .modal {
5404
5972
  overflow-x: hidden;
@@ -5412,14 +5980,13 @@ button.close {
5412
5980
  .modal-content {
5413
5981
  position: relative;
5414
5982
  background-color: #fff;
5415
- -webkit-background-clip: padding-box;
5416
- background-clip: padding-box;
5983
+ background-clip: padding-box;
5417
5984
  border: 1px solid #999;
5418
- border: 1px solid rgba(0, 0, 0, .2);
5985
+ border: 1px solid rgba(0, 0, 0, 0.2);
5419
5986
  border-radius: 6px;
5987
+ -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
5988
+ box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
5420
5989
  outline: 0;
5421
- -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
5422
- box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
5423
5990
  }
5424
5991
  .modal-backdrop {
5425
5992
  position: fixed;
@@ -5436,10 +6003,9 @@ button.close {
5436
6003
  }
5437
6004
  .modal-backdrop.in {
5438
6005
  filter: alpha(opacity=50);
5439
- opacity: .5;
6006
+ opacity: 0.5;
5440
6007
  }
5441
6008
  .modal-header {
5442
- min-height: 16.42857143px;
5443
6009
  padding: 15px;
5444
6010
  border-bottom: 1px solid #e5e5e5;
5445
6011
  }
@@ -5482,8 +6048,8 @@ button.close {
5482
6048
  margin: 30px auto;
5483
6049
  }
5484
6050
  .modal-content {
5485
- -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
5486
- box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
6051
+ -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
6052
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
5487
6053
  }
5488
6054
  .modal-sm {
5489
6055
  width: 300px;
@@ -5498,15 +6064,28 @@ button.close {
5498
6064
  position: absolute;
5499
6065
  z-index: 1070;
5500
6066
  display: block;
6067
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
6068
+ font-style: normal;
6069
+ font-weight: 400;
6070
+ line-height: 1.42857143;
6071
+ line-break: auto;
6072
+ text-align: left;
6073
+ text-align: start;
6074
+ text-decoration: none;
6075
+ text-shadow: none;
6076
+ text-transform: none;
6077
+ letter-spacing: normal;
6078
+ word-break: normal;
6079
+ word-spacing: normal;
6080
+ word-wrap: normal;
6081
+ white-space: normal;
5501
6082
  font-size: 12px;
5502
- line-height: 1.4;
5503
- visibility: visible;
5504
6083
  filter: alpha(opacity=0);
5505
6084
  opacity: 0;
5506
6085
  }
5507
6086
  .tooltip.in {
5508
6087
  filter: alpha(opacity=90);
5509
- opacity: .9;
6088
+ opacity: 0.9;
5510
6089
  }
5511
6090
  .tooltip.top {
5512
6091
  padding: 5px 0;
@@ -5524,22 +6103,6 @@ button.close {
5524
6103
  padding: 0 5px;
5525
6104
  margin-left: -3px;
5526
6105
  }
5527
- .tooltip-inner {
5528
- max-width: 200px;
5529
- padding: 3px 8px;
5530
- color: #fff;
5531
- text-align: center;
5532
- text-decoration: none;
5533
- background-color: #000;
5534
- border-radius: 4px;
5535
- }
5536
- .tooltip-arrow {
5537
- position: absolute;
5538
- width: 0;
5539
- height: 0;
5540
- border-color: transparent;
5541
- border-style: solid;
5542
- }
5543
6106
  .tooltip.top .tooltip-arrow {
5544
6107
  bottom: 0;
5545
6108
  left: 50%;
@@ -5548,14 +6111,16 @@ button.close {
5548
6111
  border-top-color: #000;
5549
6112
  }
5550
6113
  .tooltip.top-left .tooltip-arrow {
6114
+ right: 5px;
5551
6115
  bottom: 0;
5552
- left: 5px;
6116
+ margin-bottom: -5px;
5553
6117
  border-width: 5px 5px 0;
5554
6118
  border-top-color: #000;
5555
6119
  }
5556
6120
  .tooltip.top-right .tooltip-arrow {
5557
- right: 5px;
5558
6121
  bottom: 0;
6122
+ left: 5px;
6123
+ margin-bottom: -5px;
5559
6124
  border-width: 5px 5px 0;
5560
6125
  border-top-color: #000;
5561
6126
  }
@@ -5582,16 +6147,33 @@ button.close {
5582
6147
  }
5583
6148
  .tooltip.bottom-left .tooltip-arrow {
5584
6149
  top: 0;
5585
- left: 5px;
6150
+ right: 5px;
6151
+ margin-top: -5px;
5586
6152
  border-width: 0 5px 5px;
5587
6153
  border-bottom-color: #000;
5588
6154
  }
5589
6155
  .tooltip.bottom-right .tooltip-arrow {
5590
6156
  top: 0;
5591
- right: 5px;
6157
+ left: 5px;
6158
+ margin-top: -5px;
5592
6159
  border-width: 0 5px 5px;
5593
6160
  border-bottom-color: #000;
5594
6161
  }
6162
+ .tooltip-inner {
6163
+ max-width: 200px;
6164
+ padding: 3px 8px;
6165
+ color: #fff;
6166
+ text-align: center;
6167
+ background-color: #000;
6168
+ border-radius: 4px;
6169
+ }
6170
+ .tooltip-arrow {
6171
+ position: absolute;
6172
+ width: 0;
6173
+ height: 0;
6174
+ border-color: transparent;
6175
+ border-style: solid;
6176
+ }
5595
6177
  .popover {
5596
6178
  position: absolute;
5597
6179
  top: 0;
@@ -5600,16 +6182,29 @@ button.close {
5600
6182
  display: none;
5601
6183
  max-width: 276px;
5602
6184
  padding: 1px;
6185
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
6186
+ font-style: normal;
6187
+ font-weight: 400;
6188
+ line-height: 1.42857143;
6189
+ line-break: auto;
5603
6190
  text-align: left;
6191
+ text-align: start;
6192
+ text-decoration: none;
6193
+ text-shadow: none;
6194
+ text-transform: none;
6195
+ letter-spacing: normal;
6196
+ word-break: normal;
6197
+ word-spacing: normal;
6198
+ word-wrap: normal;
5604
6199
  white-space: normal;
6200
+ font-size: 14px;
5605
6201
  background-color: #fff;
5606
- -webkit-background-clip: padding-box;
5607
- background-clip: padding-box;
6202
+ background-clip: padding-box;
5608
6203
  border: 1px solid #ccc;
5609
- border: 1px solid rgba(0, 0, 0, .2);
6204
+ border: 1px solid rgba(0, 0, 0, 0.2);
5610
6205
  border-radius: 6px;
5611
- -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
5612
- box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
6206
+ -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
6207
+ box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
5613
6208
  }
5614
6209
  .popover.top {
5615
6210
  margin-top: -10px;
@@ -5623,18 +6218,8 @@ button.close {
5623
6218
  .popover.left {
5624
6219
  margin-left: -10px;
5625
6220
  }
5626
- .popover-title {
5627
- padding: 8px 14px;
5628
- margin: 0;
5629
- font-size: 14px;
5630
- font-weight: normal;
5631
- line-height: 18px;
5632
- background-color: #f7f7f7;
5633
- border-bottom: 1px solid #ebebeb;
5634
- border-radius: 5px 5px 0 0;
5635
- }
5636
- .popover-content {
5637
- padding: 9px 14px;
6221
+ .popover > .arrow {
6222
+ border-width: 11px;
5638
6223
  }
5639
6224
  .popover > .arrow,
5640
6225
  .popover > .arrow:after {
@@ -5645,9 +6230,6 @@ button.close {
5645
6230
  border-color: transparent;
5646
6231
  border-style: solid;
5647
6232
  }
5648
- .popover > .arrow {
5649
- border-width: 11px;
5650
- }
5651
6233
  .popover > .arrow:after {
5652
6234
  content: "";
5653
6235
  border-width: 10px;
@@ -5656,8 +6238,8 @@ button.close {
5656
6238
  bottom: -11px;
5657
6239
  left: 50%;
5658
6240
  margin-left: -11px;
5659
- border-top-color: #999;
5660
- border-top-color: rgba(0, 0, 0, .25);
6241
+ border-top-color: #999999;
6242
+ border-top-color: rgba(0, 0, 0, 0.25);
5661
6243
  border-bottom-width: 0;
5662
6244
  }
5663
6245
  .popover.top > .arrow:after {
@@ -5671,8 +6253,8 @@ button.close {
5671
6253
  top: 50%;
5672
6254
  left: -11px;
5673
6255
  margin-top: -11px;
5674
- border-right-color: #999;
5675
- border-right-color: rgba(0, 0, 0, .25);
6256
+ border-right-color: #999999;
6257
+ border-right-color: rgba(0, 0, 0, 0.25);
5676
6258
  border-left-width: 0;
5677
6259
  }
5678
6260
  .popover.right > .arrow:after {
@@ -5687,8 +6269,8 @@ button.close {
5687
6269
  left: 50%;
5688
6270
  margin-left: -11px;
5689
6271
  border-top-width: 0;
5690
- border-bottom-color: #999;
5691
- border-bottom-color: rgba(0, 0, 0, .25);
6272
+ border-bottom-color: #999999;
6273
+ border-bottom-color: rgba(0, 0, 0, 0.25);
5692
6274
  }
5693
6275
  .popover.bottom > .arrow:after {
5694
6276
  top: 1px;
@@ -5702,8 +6284,8 @@ button.close {
5702
6284
  right: -11px;
5703
6285
  margin-top: -11px;
5704
6286
  border-right-width: 0;
5705
- border-left-color: #999;
5706
- border-left-color: rgba(0, 0, 0, .25);
6287
+ border-left-color: #999999;
6288
+ border-left-color: rgba(0, 0, 0, 0.25);
5707
6289
  }
5708
6290
  .popover.left > .arrow:after {
5709
6291
  right: 1px;
@@ -5712,6 +6294,17 @@ button.close {
5712
6294
  border-right-width: 0;
5713
6295
  border-left-color: #fff;
5714
6296
  }
6297
+ .popover-title {
6298
+ padding: 8px 14px;
6299
+ margin: 0;
6300
+ font-size: 14px;
6301
+ background-color: #f7f7f7;
6302
+ border-bottom: 1px solid #ebebeb;
6303
+ border-radius: 5px 5px 0 0;
6304
+ }
6305
+ .popover-content {
6306
+ padding: 9px 14px;
6307
+ }
5715
6308
  .carousel {
5716
6309
  position: relative;
5717
6310
  }
@@ -5723,14 +6316,46 @@ button.close {
5723
6316
  .carousel-inner > .item {
5724
6317
  position: relative;
5725
6318
  display: none;
5726
- -webkit-transition: .6s ease-in-out left;
5727
- -o-transition: .6s ease-in-out left;
5728
- transition: .6s ease-in-out left;
6319
+ -webkit-transition: 0.6s ease-in-out left;
6320
+ -o-transition: 0.6s ease-in-out left;
6321
+ transition: 0.6s ease-in-out left;
5729
6322
  }
5730
6323
  .carousel-inner > .item > img,
5731
6324
  .carousel-inner > .item > a > img {
5732
6325
  line-height: 1;
5733
6326
  }
6327
+ @media all and (transform-3d), (-webkit-transform-3d) {
6328
+ .carousel-inner > .item {
6329
+ -webkit-transition: -webkit-transform 0.6s ease-in-out;
6330
+ -o-transition: -o-transform 0.6s ease-in-out;
6331
+ transition: -webkit-transform 0.6s ease-in-out;
6332
+ transition: transform 0.6s ease-in-out;
6333
+ transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
6334
+ -webkit-backface-visibility: hidden;
6335
+ backface-visibility: hidden;
6336
+ -webkit-perspective: 1000px;
6337
+ perspective: 1000px;
6338
+ }
6339
+ .carousel-inner > .item.next,
6340
+ .carousel-inner > .item.active.right {
6341
+ -webkit-transform: translate3d(100%, 0, 0);
6342
+ transform: translate3d(100%, 0, 0);
6343
+ left: 0;
6344
+ }
6345
+ .carousel-inner > .item.prev,
6346
+ .carousel-inner > .item.active.left {
6347
+ -webkit-transform: translate3d(-100%, 0, 0);
6348
+ transform: translate3d(-100%, 0, 0);
6349
+ left: 0;
6350
+ }
6351
+ .carousel-inner > .item.next.left,
6352
+ .carousel-inner > .item.prev.right,
6353
+ .carousel-inner > .item.active {
6354
+ -webkit-transform: translate3d(0, 0, 0);
6355
+ transform: translate3d(0, 0, 0);
6356
+ left: 0;
6357
+ }
6358
+ }
5734
6359
  .carousel-inner > .active,
5735
6360
  .carousel-inner > .next,
5736
6361
  .carousel-inner > .prev {
@@ -5770,25 +6395,26 @@ button.close {
5770
6395
  font-size: 20px;
5771
6396
  color: #fff;
5772
6397
  text-align: center;
5773
- text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
6398
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
6399
+ background-color: rgba(0, 0, 0, 0);
5774
6400
  filter: alpha(opacity=50);
5775
- opacity: .5;
6401
+ opacity: 0.5;
5776
6402
  }
5777
6403
  .carousel-control.left {
5778
- background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
5779
- background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
5780
- background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
5781
- background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
6404
+ background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
6405
+ background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
6406
+ background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
6407
+ background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
5782
6408
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
5783
6409
  background-repeat: repeat-x;
5784
6410
  }
5785
6411
  .carousel-control.right {
5786
6412
  right: 0;
5787
6413
  left: auto;
5788
- background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
5789
- background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
5790
- background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
5791
- background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
6414
+ background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
6415
+ background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
6416
+ background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
6417
+ background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
5792
6418
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
5793
6419
  background-repeat: repeat-x;
5794
6420
  }
@@ -5796,9 +6422,9 @@ button.close {
5796
6422
  .carousel-control:focus {
5797
6423
  color: #fff;
5798
6424
  text-decoration: none;
5799
- filter: alpha(opacity=90);
5800
6425
  outline: 0;
5801
- opacity: .9;
6426
+ filter: alpha(opacity=90);
6427
+ opacity: 0.9;
5802
6428
  }
5803
6429
  .carousel-control .icon-prev,
5804
6430
  .carousel-control .icon-next,
@@ -5808,6 +6434,7 @@ button.close {
5808
6434
  top: 50%;
5809
6435
  z-index: 5;
5810
6436
  display: inline-block;
6437
+ margin-top: -10px;
5811
6438
  }
5812
6439
  .carousel-control .icon-prev,
5813
6440
  .carousel-control .glyphicon-chevron-left {
@@ -5823,14 +6450,14 @@ button.close {
5823
6450
  .carousel-control .icon-next {
5824
6451
  width: 20px;
5825
6452
  height: 20px;
5826
- margin-top: -10px;
5827
6453
  font-family: serif;
6454
+ line-height: 1;
5828
6455
  }
5829
6456
  .carousel-control .icon-prev:before {
5830
- content: '\2039';
6457
+ content: "\2039";
5831
6458
  }
5832
6459
  .carousel-control .icon-next:before {
5833
- content: '\203a';
6460
+ content: "\203a";
5834
6461
  }
5835
6462
  .carousel-indicators {
5836
6463
  position: absolute;
@@ -5871,7 +6498,7 @@ button.close {
5871
6498
  padding-bottom: 20px;
5872
6499
  color: #fff;
5873
6500
  text-align: center;
5874
- text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
6501
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
5875
6502
  }
5876
6503
  .carousel-caption .btn {
5877
6504
  text-shadow: none;
@@ -5883,16 +6510,16 @@ button.close {
5883
6510
  .carousel-control .icon-next {
5884
6511
  width: 30px;
5885
6512
  height: 30px;
5886
- margin-top: -15px;
6513
+ margin-top: -10px;
5887
6514
  font-size: 30px;
5888
6515
  }
5889
6516
  .carousel-control .glyphicon-chevron-left,
5890
6517
  .carousel-control .icon-prev {
5891
- margin-left: -15px;
6518
+ margin-left: -10px;
5892
6519
  }
5893
6520
  .carousel-control .glyphicon-chevron-right,
5894
6521
  .carousel-control .icon-next {
5895
- margin-right: -15px;
6522
+ margin-right: -10px;
5896
6523
  }
5897
6524
  .carousel-caption {
5898
6525
  right: 20%;
@@ -5931,6 +6558,8 @@ button.close {
5931
6558
  .pager:after,
5932
6559
  .panel-body:before,
5933
6560
  .panel-body:after,
6561
+ .modal-header:before,
6562
+ .modal-header:after,
5934
6563
  .modal-footer:before,
5935
6564
  .modal-footer:after {
5936
6565
  display: table;
@@ -5950,6 +6579,7 @@ button.close {
5950
6579
  .navbar-collapse:after,
5951
6580
  .pager:after,
5952
6581
  .panel-body:after,
6582
+ .modal-header:after,
5953
6583
  .modal-footer:after {
5954
6584
  clear: both;
5955
6585
  }
@@ -5982,13 +6612,9 @@ button.close {
5982
6612
  }
5983
6613
  .hidden {
5984
6614
  display: none !important;
5985
- visibility: hidden !important;
5986
6615
  }
5987
6616
  .affix {
5988
6617
  position: fixed;
5989
- -webkit-transform: translate3d(0, 0, 0);
5990
- -o-transform: translate3d(0, 0, 0);
5991
- transform: translate3d(0, 0, 0);
5992
6618
  }
5993
6619
  @-ms-viewport {
5994
6620
  width: device-width;
@@ -6018,7 +6644,7 @@ button.close {
6018
6644
  display: block !important;
6019
6645
  }
6020
6646
  table.visible-xs {
6021
- display: table;
6647
+ display: table !important;
6022
6648
  }
6023
6649
  tr.visible-xs {
6024
6650
  display: table-row !important;
@@ -6048,7 +6674,7 @@ button.close {
6048
6674
  display: block !important;
6049
6675
  }
6050
6676
  table.visible-sm {
6051
- display: table;
6677
+ display: table !important;
6052
6678
  }
6053
6679
  tr.visible-sm {
6054
6680
  display: table-row !important;
@@ -6078,7 +6704,7 @@ button.close {
6078
6704
  display: block !important;
6079
6705
  }
6080
6706
  table.visible-md {
6081
- display: table;
6707
+ display: table !important;
6082
6708
  }
6083
6709
  tr.visible-md {
6084
6710
  display: table-row !important;
@@ -6108,7 +6734,7 @@ button.close {
6108
6734
  display: block !important;
6109
6735
  }
6110
6736
  table.visible-lg {
6111
- display: table;
6737
+ display: table !important;
6112
6738
  }
6113
6739
  tr.visible-lg {
6114
6740
  display: table-row !important;
@@ -6161,7 +6787,7 @@ button.close {
6161
6787
  display: block !important;
6162
6788
  }
6163
6789
  table.visible-print {
6164
- display: table;
6790
+ display: table !important;
6165
6791
  }
6166
6792
  tr.visible-print {
6167
6793
  display: table-row !important;