sql-jarvis 2.0.1 → 2.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +25 -1
- data/LICENSE.txt +1 -1
- data/README.md +153 -52
- data/app/assets/fonts/blazer/glyphicons-halflings-regular.eot +0 -0
- data/app/assets/fonts/blazer/glyphicons-halflings-regular.svg +0 -0
- data/app/assets/fonts/blazer/glyphicons-halflings-regular.ttf +0 -0
- data/app/assets/fonts/blazer/glyphicons-halflings-regular.woff +0 -0
- data/app/assets/fonts/blazer/glyphicons-halflings-regular.woff2 +0 -0
- data/app/assets/images/blazer/favicon.png +0 -0
- data/app/assets/javascripts/blazer/Chart.js +4195 -3884
- data/app/assets/javascripts/blazer/Sortable.js +1493 -1097
- data/app/assets/javascripts/blazer/ace/ace.js +21294 -4
- data/app/assets/javascripts/blazer/ace/ext-language_tools.js +1991 -3
- data/app/assets/javascripts/blazer/ace/mode-sql.js +110 -1
- data/app/assets/javascripts/blazer/ace/snippets/sql.js +40 -1
- data/app/assets/javascripts/blazer/ace/snippets/text.js +14 -1
- data/app/assets/javascripts/blazer/ace/theme-twilight.js +116 -1
- data/app/assets/javascripts/blazer/application.js +4 -3
- data/app/assets/javascripts/blazer/bootstrap.js +623 -612
- data/app/assets/javascripts/blazer/chartkick.js +1769 -1248
- data/app/assets/javascripts/blazer/daterangepicker.js +263 -115
- data/app/assets/javascripts/blazer/highlight.min.js +3 -0
- data/app/assets/javascripts/blazer/{jquery_ujs.js → jquery-ujs.js} +161 -75
- data/app/assets/javascripts/blazer/jquery.js +9506 -9450
- data/app/assets/javascripts/blazer/jquery.stickytableheaders.js +321 -259
- data/app/assets/javascripts/blazer/moment-timezone-with-data.js +1212 -0
- data/app/assets/javascripts/blazer/queries.js +1 -1
- data/app/assets/javascripts/blazer/routes.js +3 -0
- data/app/assets/javascripts/blazer/selectize.js +3828 -3604
- data/app/assets/javascripts/blazer/stupidtable.js +255 -88
- data/app/assets/javascripts/blazer/vue.js +8015 -4583
- data/app/assets/stylesheets/blazer/application.css +41 -5
- data/app/assets/stylesheets/blazer/bootstrap.css.erb +879 -325
- data/app/assets/stylesheets/blazer/daterangepicker.css +269 -0
- data/app/assets/stylesheets/blazer/selectize.default.css +26 -10
- data/app/controllers/blazer/base_controller.rb +7 -0
- data/app/controllers/blazer/checks_controller.rb +1 -1
- data/app/controllers/blazer/dashboards_controller.rb +0 -4
- data/app/controllers/blazer/queries_controller.rb +20 -12
- data/app/helpers/blazer/base_helper.rb +1 -1
- data/app/mailers/blazer/slack_notifier.rb +76 -0
- data/app/models/blazer/check.rb +9 -0
- data/app/views/blazer/_nav.html.erb +0 -1
- data/app/views/blazer/_variables.html.erb +41 -19
- data/app/views/blazer/checks/_form.html.erb +16 -8
- data/app/views/blazer/checks/edit.html.erb +2 -0
- data/app/views/blazer/checks/index.html.erb +33 -4
- data/app/views/blazer/checks/new.html.erb +2 -0
- data/app/views/blazer/dashboards/_form.html.erb +4 -4
- data/app/views/blazer/dashboards/edit.html.erb +2 -0
- data/app/views/blazer/dashboards/new.html.erb +2 -0
- data/app/views/blazer/dashboards/show.html.erb +7 -3
- data/app/views/blazer/queries/_form.html.erb +11 -6
- data/app/views/blazer/queries/docs.html.erb +131 -0
- data/app/views/blazer/queries/home.html.erb +12 -3
- data/app/views/blazer/queries/run.html.erb +36 -6
- data/app/views/blazer/queries/schema.html.erb +46 -8
- data/app/views/blazer/queries/show.html.erb +4 -4
- data/app/views/layouts/blazer/application.html.erb +3 -3
- data/config/routes.rb +5 -1
- data/lib/blazer.rb +32 -13
- data/lib/blazer/adapters/athena_adapter.rb +1 -1
- data/lib/blazer/adapters/elasticsearch_adapter.rb +14 -17
- data/lib/blazer/adapters/mongodb_adapter.rb +1 -1
- data/lib/blazer/adapters/sql_adapter.rb +7 -1
- data/lib/blazer/engine.rb +4 -0
- data/lib/blazer/result.rb +62 -29
- data/lib/blazer/run_statement_job.rb +6 -9
- data/lib/blazer/version.rb +1 -1
- data/lib/generators/blazer/templates/config.yml.tt +13 -2
- data/lib/generators/blazer/templates/install.rb.tt +1 -0
- data/lib/tasks/blazer.rake +1 -0
- metadata +33 -37
- data/.gitattributes +0 -1
- data/.github/ISSUE_TEMPLATE.md +0 -7
- data/.gitignore +0 -14
- data/Gemfile +0 -7
- data/Rakefile +0 -1
- data/app/assets/javascripts/blazer/highlight.pack.js +0 -1
- data/app/assets/javascripts/blazer/moment-timezone.js +0 -1007
- data/app/assets/stylesheets/blazer/daterangepicker-bs3.css +0 -375
- data/blazer.gemspec +0 -30
@@ -2,7 +2,7 @@
|
|
2
2
|
*= require ./bootstrap
|
3
3
|
*= require ./selectize.default
|
4
4
|
*= require ./github
|
5
|
-
*= require ./daterangepicker
|
5
|
+
*= require ./daterangepicker
|
6
6
|
*= require ./select2.min
|
7
7
|
*= require_self
|
8
8
|
*/
|
@@ -13,8 +13,8 @@ pre {
|
|
13
13
|
}
|
14
14
|
|
15
15
|
body {
|
16
|
-
padding-top:
|
17
|
-
padding-bottom:
|
16
|
+
padding-top: 15px;
|
17
|
+
padding-bottom: 15px;
|
18
18
|
}
|
19
19
|
|
20
20
|
.results-table th {
|
@@ -70,6 +70,10 @@ input.search:focus {
|
|
70
70
|
height: 160px;
|
71
71
|
}
|
72
72
|
|
73
|
+
.ace-twilight .ace_gutter {
|
74
|
+
background: transparent;
|
75
|
+
}
|
76
|
+
|
73
77
|
.ace_print-margin-layer {
|
74
78
|
display: none;
|
75
79
|
}
|
@@ -143,9 +147,10 @@ input.search:focus {
|
|
143
147
|
top: 0;
|
144
148
|
left: 0;
|
145
149
|
right: 0;
|
146
|
-
background-color: whitesmoke;
|
147
150
|
height: 60px;
|
148
151
|
z-index: 1001;
|
152
|
+
border-bottom: solid 1px whitesmoke;
|
153
|
+
background-color: #fff;
|
149
154
|
}
|
150
155
|
|
151
156
|
.glyphicon-remove {
|
@@ -182,7 +187,6 @@ input.search:focus {
|
|
182
187
|
}
|
183
188
|
|
184
189
|
.chart-container {
|
185
|
-
padding-top: 10px;
|
186
190
|
clear: both;
|
187
191
|
}
|
188
192
|
|
@@ -197,3 +201,35 @@ input.search:focus {
|
|
197
201
|
.query-error {
|
198
202
|
color: red;
|
199
203
|
}
|
204
|
+
|
205
|
+
.small-form {
|
206
|
+
margin-right: auto;
|
207
|
+
margin-left: auto;
|
208
|
+
max-width: 400px;
|
209
|
+
}
|
210
|
+
|
211
|
+
.alert {
|
212
|
+
padding-top: 8px;
|
213
|
+
padding-bottom: 8px;
|
214
|
+
}
|
215
|
+
|
216
|
+
h1, h2, h3, h4, p, hr, .table, .navbar, #header, .alert, .form-group {
|
217
|
+
margin-top: 0;
|
218
|
+
margin-bottom: 15px;
|
219
|
+
}
|
220
|
+
|
221
|
+
.double-margin, .chart-container {
|
222
|
+
margin-bottom: 30px;
|
223
|
+
}
|
224
|
+
|
225
|
+
h1 {
|
226
|
+
font-size: 24px;
|
227
|
+
}
|
228
|
+
|
229
|
+
h2 {
|
230
|
+
font-size: 20px;
|
231
|
+
}
|
232
|
+
|
233
|
+
.schema-table {
|
234
|
+
max-width: 500px;
|
235
|
+
}
|
@@ -1,10 +1,9 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap v3.
|
3
|
-
* Copyright 2011-
|
2
|
+
* Bootstrap v3.3.7 (http://getbootstrap.com)
|
3
|
+
* Copyright 2011-2016 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;
|
10
9
|
-webkit-text-size-adjust: 100%;
|
@@ -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,7 +43,7 @@ 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 {
|
@@ -187,8 +187,11 @@ td,
|
|
187
187
|
th {
|
188
188
|
padding: 0;
|
189
189
|
}
|
190
|
+
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
|
190
191
|
@media print {
|
191
|
-
|
192
|
+
*,
|
193
|
+
*:before,
|
194
|
+
*:after {
|
192
195
|
color: #000 !important;
|
193
196
|
text-shadow: none !important;
|
194
197
|
background: transparent !important;
|
@@ -205,8 +208,8 @@ th {
|
|
205
208
|
abbr[title]:after {
|
206
209
|
content: " (" attr(title) ")";
|
207
210
|
}
|
208
|
-
a[href^="
|
209
|
-
a[href^="
|
211
|
+
a[href^="#"]:after,
|
212
|
+
a[href^="javascript:"]:after {
|
210
213
|
content: "";
|
211
214
|
}
|
212
215
|
pre,
|
@@ -235,16 +238,9 @@ th {
|
|
235
238
|
h3 {
|
236
239
|
page-break-after: avoid;
|
237
240
|
}
|
238
|
-
select {
|
239
|
-
background: #fff !important;
|
240
|
-
}
|
241
241
|
.navbar {
|
242
242
|
display: none;
|
243
243
|
}
|
244
|
-
.table td,
|
245
|
-
.table th {
|
246
|
-
background-color: #fff !important;
|
247
|
-
}
|
248
244
|
.btn > .caret,
|
249
245
|
.dropup > .btn > .caret {
|
250
246
|
border-top-color: #000 !important;
|
@@ -255,6 +251,10 @@ th {
|
|
255
251
|
.table {
|
256
252
|
border-collapse: collapse !important;
|
257
253
|
}
|
254
|
+
.table td,
|
255
|
+
.table th {
|
256
|
+
background-color: #fff !important;
|
257
|
+
}
|
258
258
|
.table-bordered th,
|
259
259
|
.table-bordered td {
|
260
260
|
border: 1px solid #ddd !important;
|
@@ -264,7 +264,7 @@ th {
|
|
264
264
|
font-family: 'Glyphicons Halflings';
|
265
265
|
|
266
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');
|
267
|
+
src: url('<%= font_path("blazer/glyphicons-halflings-regular.eot?#iefix") %>') format('embedded-opentype'), url('<%= font_path("blazer/glyphicons-halflings-regular.woff2") %>') format('woff2'), 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
268
|
}
|
269
269
|
.glyphicon {
|
270
270
|
position: relative;
|
@@ -279,12 +279,13 @@ th {
|
|
279
279
|
-moz-osx-font-smoothing: grayscale;
|
280
280
|
}
|
281
281
|
.glyphicon-asterisk:before {
|
282
|
-
content: "\
|
282
|
+
content: "\002a";
|
283
283
|
}
|
284
284
|
.glyphicon-plus:before {
|
285
|
-
content: "\
|
285
|
+
content: "\002b";
|
286
286
|
}
|
287
|
-
.glyphicon-euro:before
|
287
|
+
.glyphicon-euro:before,
|
288
|
+
.glyphicon-eur:before {
|
288
289
|
content: "\20ac";
|
289
290
|
}
|
290
291
|
.glyphicon-minus:before {
|
@@ -878,6 +879,192 @@ th {
|
|
878
879
|
.glyphicon-tree-deciduous:before {
|
879
880
|
content: "\e200";
|
880
881
|
}
|
882
|
+
.glyphicon-cd:before {
|
883
|
+
content: "\e201";
|
884
|
+
}
|
885
|
+
.glyphicon-save-file:before {
|
886
|
+
content: "\e202";
|
887
|
+
}
|
888
|
+
.glyphicon-open-file:before {
|
889
|
+
content: "\e203";
|
890
|
+
}
|
891
|
+
.glyphicon-level-up:before {
|
892
|
+
content: "\e204";
|
893
|
+
}
|
894
|
+
.glyphicon-copy:before {
|
895
|
+
content: "\e205";
|
896
|
+
}
|
897
|
+
.glyphicon-paste:before {
|
898
|
+
content: "\e206";
|
899
|
+
}
|
900
|
+
.glyphicon-alert:before {
|
901
|
+
content: "\e209";
|
902
|
+
}
|
903
|
+
.glyphicon-equalizer:before {
|
904
|
+
content: "\e210";
|
905
|
+
}
|
906
|
+
.glyphicon-king:before {
|
907
|
+
content: "\e211";
|
908
|
+
}
|
909
|
+
.glyphicon-queen:before {
|
910
|
+
content: "\e212";
|
911
|
+
}
|
912
|
+
.glyphicon-pawn:before {
|
913
|
+
content: "\e213";
|
914
|
+
}
|
915
|
+
.glyphicon-bishop:before {
|
916
|
+
content: "\e214";
|
917
|
+
}
|
918
|
+
.glyphicon-knight:before {
|
919
|
+
content: "\e215";
|
920
|
+
}
|
921
|
+
.glyphicon-baby-formula:before {
|
922
|
+
content: "\e216";
|
923
|
+
}
|
924
|
+
.glyphicon-tent:before {
|
925
|
+
content: "\26fa";
|
926
|
+
}
|
927
|
+
.glyphicon-blackboard:before {
|
928
|
+
content: "\e218";
|
929
|
+
}
|
930
|
+
.glyphicon-bed:before {
|
931
|
+
content: "\e219";
|
932
|
+
}
|
933
|
+
.glyphicon-apple:before {
|
934
|
+
content: "\f8ff";
|
935
|
+
}
|
936
|
+
.glyphicon-erase:before {
|
937
|
+
content: "\e221";
|
938
|
+
}
|
939
|
+
.glyphicon-hourglass:before {
|
940
|
+
content: "\231b";
|
941
|
+
}
|
942
|
+
.glyphicon-lamp:before {
|
943
|
+
content: "\e223";
|
944
|
+
}
|
945
|
+
.glyphicon-duplicate:before {
|
946
|
+
content: "\e224";
|
947
|
+
}
|
948
|
+
.glyphicon-piggy-bank:before {
|
949
|
+
content: "\e225";
|
950
|
+
}
|
951
|
+
.glyphicon-scissors:before {
|
952
|
+
content: "\e226";
|
953
|
+
}
|
954
|
+
.glyphicon-bitcoin:before {
|
955
|
+
content: "\e227";
|
956
|
+
}
|
957
|
+
.glyphicon-btc:before {
|
958
|
+
content: "\e227";
|
959
|
+
}
|
960
|
+
.glyphicon-xbt:before {
|
961
|
+
content: "\e227";
|
962
|
+
}
|
963
|
+
.glyphicon-yen:before {
|
964
|
+
content: "\00a5";
|
965
|
+
}
|
966
|
+
.glyphicon-jpy:before {
|
967
|
+
content: "\00a5";
|
968
|
+
}
|
969
|
+
.glyphicon-ruble:before {
|
970
|
+
content: "\20bd";
|
971
|
+
}
|
972
|
+
.glyphicon-rub:before {
|
973
|
+
content: "\20bd";
|
974
|
+
}
|
975
|
+
.glyphicon-scale:before {
|
976
|
+
content: "\e230";
|
977
|
+
}
|
978
|
+
.glyphicon-ice-lolly:before {
|
979
|
+
content: "\e231";
|
980
|
+
}
|
981
|
+
.glyphicon-ice-lolly-tasted:before {
|
982
|
+
content: "\e232";
|
983
|
+
}
|
984
|
+
.glyphicon-education:before {
|
985
|
+
content: "\e233";
|
986
|
+
}
|
987
|
+
.glyphicon-option-horizontal:before {
|
988
|
+
content: "\e234";
|
989
|
+
}
|
990
|
+
.glyphicon-option-vertical:before {
|
991
|
+
content: "\e235";
|
992
|
+
}
|
993
|
+
.glyphicon-menu-hamburger:before {
|
994
|
+
content: "\e236";
|
995
|
+
}
|
996
|
+
.glyphicon-modal-window:before {
|
997
|
+
content: "\e237";
|
998
|
+
}
|
999
|
+
.glyphicon-oil:before {
|
1000
|
+
content: "\e238";
|
1001
|
+
}
|
1002
|
+
.glyphicon-grain:before {
|
1003
|
+
content: "\e239";
|
1004
|
+
}
|
1005
|
+
.glyphicon-sunglasses:before {
|
1006
|
+
content: "\e240";
|
1007
|
+
}
|
1008
|
+
.glyphicon-text-size:before {
|
1009
|
+
content: "\e241";
|
1010
|
+
}
|
1011
|
+
.glyphicon-text-color:before {
|
1012
|
+
content: "\e242";
|
1013
|
+
}
|
1014
|
+
.glyphicon-text-background:before {
|
1015
|
+
content: "\e243";
|
1016
|
+
}
|
1017
|
+
.glyphicon-object-align-top:before {
|
1018
|
+
content: "\e244";
|
1019
|
+
}
|
1020
|
+
.glyphicon-object-align-bottom:before {
|
1021
|
+
content: "\e245";
|
1022
|
+
}
|
1023
|
+
.glyphicon-object-align-horizontal:before {
|
1024
|
+
content: "\e246";
|
1025
|
+
}
|
1026
|
+
.glyphicon-object-align-left:before {
|
1027
|
+
content: "\e247";
|
1028
|
+
}
|
1029
|
+
.glyphicon-object-align-vertical:before {
|
1030
|
+
content: "\e248";
|
1031
|
+
}
|
1032
|
+
.glyphicon-object-align-right:before {
|
1033
|
+
content: "\e249";
|
1034
|
+
}
|
1035
|
+
.glyphicon-triangle-right:before {
|
1036
|
+
content: "\e250";
|
1037
|
+
}
|
1038
|
+
.glyphicon-triangle-left:before {
|
1039
|
+
content: "\e251";
|
1040
|
+
}
|
1041
|
+
.glyphicon-triangle-bottom:before {
|
1042
|
+
content: "\e252";
|
1043
|
+
}
|
1044
|
+
.glyphicon-triangle-top:before {
|
1045
|
+
content: "\e253";
|
1046
|
+
}
|
1047
|
+
.glyphicon-console:before {
|
1048
|
+
content: "\e254";
|
1049
|
+
}
|
1050
|
+
.glyphicon-superscript:before {
|
1051
|
+
content: "\e255";
|
1052
|
+
}
|
1053
|
+
.glyphicon-subscript:before {
|
1054
|
+
content: "\e256";
|
1055
|
+
}
|
1056
|
+
.glyphicon-menu-left:before {
|
1057
|
+
content: "\e257";
|
1058
|
+
}
|
1059
|
+
.glyphicon-menu-right:before {
|
1060
|
+
content: "\e258";
|
1061
|
+
}
|
1062
|
+
.glyphicon-menu-down:before {
|
1063
|
+
content: "\e259";
|
1064
|
+
}
|
1065
|
+
.glyphicon-menu-up:before {
|
1066
|
+
content: "\e260";
|
1067
|
+
}
|
881
1068
|
* {
|
882
1069
|
-webkit-box-sizing: border-box;
|
883
1070
|
-moz-box-sizing: border-box;
|
@@ -910,16 +1097,15 @@ textarea {
|
|
910
1097
|
line-height: inherit;
|
911
1098
|
}
|
912
1099
|
a {
|
913
|
-
color: #
|
1100
|
+
color: #337ab7;
|
914
1101
|
text-decoration: none;
|
915
1102
|
}
|
916
1103
|
a:hover,
|
917
1104
|
a:focus {
|
918
|
-
color: #
|
1105
|
+
color: #23527c;
|
919
1106
|
text-decoration: underline;
|
920
1107
|
}
|
921
1108
|
a:focus {
|
922
|
-
outline: thin dotted;
|
923
1109
|
outline: 5px auto -webkit-focus-ring-color;
|
924
1110
|
outline-offset: -2px;
|
925
1111
|
}
|
@@ -935,7 +1121,6 @@ img {
|
|
935
1121
|
.carousel-inner > .item > img,
|
936
1122
|
.carousel-inner > .item > a > img {
|
937
1123
|
display: block;
|
938
|
-
width: 100% \9;
|
939
1124
|
max-width: 100%;
|
940
1125
|
height: auto;
|
941
1126
|
}
|
@@ -944,7 +1129,6 @@ img {
|
|
944
1129
|
}
|
945
1130
|
.img-thumbnail {
|
946
1131
|
display: inline-block;
|
947
|
-
width: 100% \9;
|
948
1132
|
max-width: 100%;
|
949
1133
|
height: auto;
|
950
1134
|
padding: 4px;
|
@@ -984,6 +1168,9 @@ hr {
|
|
984
1168
|
overflow: visible;
|
985
1169
|
clip: auto;
|
986
1170
|
}
|
1171
|
+
[role="button"] {
|
1172
|
+
cursor: pointer;
|
1173
|
+
}
|
987
1174
|
h1,
|
988
1175
|
h2,
|
989
1176
|
h3,
|
@@ -1117,9 +1304,6 @@ small,
|
|
1117
1304
|
.small {
|
1118
1305
|
font-size: 85%;
|
1119
1306
|
}
|
1120
|
-
cite {
|
1121
|
-
font-style: normal;
|
1122
|
-
}
|
1123
1307
|
mark,
|
1124
1308
|
.mark {
|
1125
1309
|
padding: .2em;
|
@@ -1153,64 +1337,74 @@ mark,
|
|
1153
1337
|
color: #777;
|
1154
1338
|
}
|
1155
1339
|
.text-primary {
|
1156
|
-
color: #
|
1340
|
+
color: #337ab7;
|
1157
1341
|
}
|
1158
|
-
a.text-primary:hover
|
1159
|
-
|
1342
|
+
a.text-primary:hover,
|
1343
|
+
a.text-primary:focus {
|
1344
|
+
color: #286090;
|
1160
1345
|
}
|
1161
1346
|
.text-success {
|
1162
1347
|
color: #3c763d;
|
1163
1348
|
}
|
1164
|
-
a.text-success:hover
|
1349
|
+
a.text-success:hover,
|
1350
|
+
a.text-success:focus {
|
1165
1351
|
color: #2b542c;
|
1166
1352
|
}
|
1167
1353
|
.text-info {
|
1168
1354
|
color: #31708f;
|
1169
1355
|
}
|
1170
|
-
a.text-info:hover
|
1356
|
+
a.text-info:hover,
|
1357
|
+
a.text-info:focus {
|
1171
1358
|
color: #245269;
|
1172
1359
|
}
|
1173
1360
|
.text-warning {
|
1174
1361
|
color: #8a6d3b;
|
1175
1362
|
}
|
1176
|
-
a.text-warning:hover
|
1363
|
+
a.text-warning:hover,
|
1364
|
+
a.text-warning:focus {
|
1177
1365
|
color: #66512c;
|
1178
1366
|
}
|
1179
1367
|
.text-danger {
|
1180
1368
|
color: #a94442;
|
1181
1369
|
}
|
1182
|
-
a.text-danger:hover
|
1370
|
+
a.text-danger:hover,
|
1371
|
+
a.text-danger:focus {
|
1183
1372
|
color: #843534;
|
1184
1373
|
}
|
1185
1374
|
.bg-primary {
|
1186
1375
|
color: #fff;
|
1187
|
-
background-color: #
|
1376
|
+
background-color: #337ab7;
|
1188
1377
|
}
|
1189
|
-
a.bg-primary:hover
|
1190
|
-
|
1378
|
+
a.bg-primary:hover,
|
1379
|
+
a.bg-primary:focus {
|
1380
|
+
background-color: #286090;
|
1191
1381
|
}
|
1192
1382
|
.bg-success {
|
1193
1383
|
background-color: #dff0d8;
|
1194
1384
|
}
|
1195
|
-
a.bg-success:hover
|
1385
|
+
a.bg-success:hover,
|
1386
|
+
a.bg-success:focus {
|
1196
1387
|
background-color: #c1e2b3;
|
1197
1388
|
}
|
1198
1389
|
.bg-info {
|
1199
1390
|
background-color: #d9edf7;
|
1200
1391
|
}
|
1201
|
-
a.bg-info:hover
|
1392
|
+
a.bg-info:hover,
|
1393
|
+
a.bg-info:focus {
|
1202
1394
|
background-color: #afd9ee;
|
1203
1395
|
}
|
1204
1396
|
.bg-warning {
|
1205
1397
|
background-color: #fcf8e3;
|
1206
1398
|
}
|
1207
|
-
a.bg-warning:hover
|
1399
|
+
a.bg-warning:hover,
|
1400
|
+
a.bg-warning:focus {
|
1208
1401
|
background-color: #f7ecb5;
|
1209
1402
|
}
|
1210
1403
|
.bg-danger {
|
1211
1404
|
background-color: #f2dede;
|
1212
1405
|
}
|
1213
|
-
a.bg-danger:hover
|
1406
|
+
a.bg-danger:hover,
|
1407
|
+
a.bg-danger:focus {
|
1214
1408
|
background-color: #e4b9b9;
|
1215
1409
|
}
|
1216
1410
|
.page-header {
|
@@ -1328,10 +1522,6 @@ blockquote.pull-right small:after,
|
|
1328
1522
|
blockquote.pull-right .small:after {
|
1329
1523
|
content: '\00A0 \2014';
|
1330
1524
|
}
|
1331
|
-
blockquote:before,
|
1332
|
-
blockquote:after {
|
1333
|
-
content: "";
|
1334
|
-
}
|
1335
1525
|
address {
|
1336
1526
|
margin-bottom: 20px;
|
1337
1527
|
font-style: normal;
|
@@ -1362,6 +1552,7 @@ kbd {
|
|
1362
1552
|
kbd kbd {
|
1363
1553
|
padding: 0;
|
1364
1554
|
font-size: 100%;
|
1555
|
+
font-weight: bold;
|
1365
1556
|
-webkit-box-shadow: none;
|
1366
1557
|
box-shadow: none;
|
1367
1558
|
}
|
@@ -2060,6 +2251,12 @@ pre code {
|
|
2060
2251
|
table {
|
2061
2252
|
background-color: transparent;
|
2062
2253
|
}
|
2254
|
+
caption {
|
2255
|
+
padding-top: 8px;
|
2256
|
+
padding-bottom: 8px;
|
2257
|
+
color: #777;
|
2258
|
+
text-align: left;
|
2259
|
+
}
|
2063
2260
|
th {
|
2064
2261
|
text-align: left;
|
2065
2262
|
}
|
@@ -2120,12 +2317,10 @@ th {
|
|
2120
2317
|
.table-bordered > thead > tr > td {
|
2121
2318
|
border-bottom-width: 2px;
|
2122
2319
|
}
|
2123
|
-
.table-striped > tbody > tr:nth-
|
2124
|
-
.table-striped > tbody > tr:nth-child(odd) > th {
|
2320
|
+
.table-striped > tbody > tr:nth-of-type(odd) {
|
2125
2321
|
background-color: #f9f9f9;
|
2126
2322
|
}
|
2127
|
-
.table-hover > tbody > tr:hover
|
2128
|
-
.table-hover > tbody > tr:hover > th {
|
2323
|
+
.table-hover > tbody > tr:hover {
|
2129
2324
|
background-color: #f5f5f5;
|
2130
2325
|
}
|
2131
2326
|
table col[class*="col-"] {
|
@@ -2244,13 +2439,15 @@ table th[class*="col-"] {
|
|
2244
2439
|
.table-hover > tbody > tr.danger:hover > th {
|
2245
2440
|
background-color: #ebcccc;
|
2246
2441
|
}
|
2442
|
+
.table-responsive {
|
2443
|
+
min-height: .01%;
|
2444
|
+
overflow-x: auto;
|
2445
|
+
}
|
2247
2446
|
@media screen and (max-width: 767px) {
|
2248
2447
|
.table-responsive {
|
2249
2448
|
width: 100%;
|
2250
2449
|
margin-bottom: 15px;
|
2251
|
-
overflow-x: auto;
|
2252
2450
|
overflow-y: hidden;
|
2253
|
-
-webkit-overflow-scrolling: touch;
|
2254
2451
|
-ms-overflow-style: -ms-autohiding-scrollbar;
|
2255
2452
|
border: 1px solid #ddd;
|
2256
2453
|
}
|
@@ -2339,7 +2536,6 @@ select[size] {
|
|
2339
2536
|
input[type="file"]:focus,
|
2340
2537
|
input[type="radio"]:focus,
|
2341
2538
|
input[type="checkbox"]:focus {
|
2342
|
-
outline: thin dotted;
|
2343
2539
|
outline: 5px auto -webkit-focus-ring-color;
|
2344
2540
|
outline-offset: -2px;
|
2345
2541
|
}
|
@@ -2375,46 +2571,62 @@ output {
|
|
2375
2571
|
box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
|
2376
2572
|
}
|
2377
2573
|
.form-control::-moz-placeholder {
|
2378
|
-
color: #
|
2574
|
+
color: #999;
|
2379
2575
|
opacity: 1;
|
2380
2576
|
}
|
2381
2577
|
.form-control:-ms-input-placeholder {
|
2382
|
-
color: #
|
2578
|
+
color: #999;
|
2383
2579
|
}
|
2384
2580
|
.form-control::-webkit-input-placeholder {
|
2385
|
-
color: #
|
2581
|
+
color: #999;
|
2582
|
+
}
|
2583
|
+
.form-control::-ms-expand {
|
2584
|
+
background-color: transparent;
|
2585
|
+
border: 0;
|
2386
2586
|
}
|
2387
2587
|
.form-control[disabled],
|
2388
2588
|
.form-control[readonly],
|
2389
2589
|
fieldset[disabled] .form-control {
|
2390
|
-
cursor: not-allowed;
|
2391
2590
|
background-color: #eee;
|
2392
2591
|
opacity: 1;
|
2393
2592
|
}
|
2593
|
+
.form-control[disabled],
|
2594
|
+
fieldset[disabled] .form-control {
|
2595
|
+
cursor: not-allowed;
|
2596
|
+
}
|
2394
2597
|
textarea.form-control {
|
2395
2598
|
height: auto;
|
2396
2599
|
}
|
2397
2600
|
input[type="search"] {
|
2398
2601
|
-webkit-appearance: none;
|
2399
2602
|
}
|
2400
|
-
|
2401
|
-
input[type="
|
2402
|
-
input[type="
|
2403
|
-
input[type="
|
2404
|
-
|
2405
|
-
|
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
|
-
|
2412
|
-
|
2413
|
-
input[type="
|
2414
|
-
input[type="
|
2415
|
-
|
2416
|
-
|
2417
|
-
|
2603
|
+
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
2604
|
+
input[type="date"].form-control,
|
2605
|
+
input[type="time"].form-control,
|
2606
|
+
input[type="datetime-local"].form-control,
|
2607
|
+
input[type="month"].form-control {
|
2608
|
+
line-height: 34px;
|
2609
|
+
}
|
2610
|
+
input[type="date"].input-sm,
|
2611
|
+
input[type="time"].input-sm,
|
2612
|
+
input[type="datetime-local"].input-sm,
|
2613
|
+
input[type="month"].input-sm,
|
2614
|
+
.input-group-sm input[type="date"],
|
2615
|
+
.input-group-sm input[type="time"],
|
2616
|
+
.input-group-sm input[type="datetime-local"],
|
2617
|
+
.input-group-sm input[type="month"] {
|
2618
|
+
line-height: 30px;
|
2619
|
+
}
|
2620
|
+
input[type="date"].input-lg,
|
2621
|
+
input[type="time"].input-lg,
|
2622
|
+
input[type="datetime-local"].input-lg,
|
2623
|
+
input[type="month"].input-lg,
|
2624
|
+
.input-group-lg input[type="date"],
|
2625
|
+
.input-group-lg input[type="time"],
|
2626
|
+
.input-group-lg input[type="datetime-local"],
|
2627
|
+
.input-group-lg input[type="month"] {
|
2628
|
+
line-height: 46px;
|
2629
|
+
}
|
2418
2630
|
}
|
2419
2631
|
.form-group {
|
2420
2632
|
margin-bottom: 15px;
|
@@ -2423,12 +2635,12 @@ input[type="month"].input-lg {
|
|
2423
2635
|
.checkbox {
|
2424
2636
|
position: relative;
|
2425
2637
|
display: block;
|
2426
|
-
min-height: 20px;
|
2427
2638
|
margin-top: 10px;
|
2428
2639
|
margin-bottom: 10px;
|
2429
2640
|
}
|
2430
2641
|
.radio label,
|
2431
2642
|
.checkbox label {
|
2643
|
+
min-height: 20px;
|
2432
2644
|
padding-left: 20px;
|
2433
2645
|
margin-bottom: 0;
|
2434
2646
|
font-weight: normal;
|
@@ -2448,6 +2660,7 @@ input[type="month"].input-lg {
|
|
2448
2660
|
}
|
2449
2661
|
.radio-inline,
|
2450
2662
|
.checkbox-inline {
|
2663
|
+
position: relative;
|
2451
2664
|
display: inline-block;
|
2452
2665
|
padding-left: 20px;
|
2453
2666
|
margin-bottom: 0;
|
@@ -2481,6 +2694,7 @@ fieldset[disabled] .checkbox label {
|
|
2481
2694
|
cursor: not-allowed;
|
2482
2695
|
}
|
2483
2696
|
.form-control-static {
|
2697
|
+
min-height: 34px;
|
2484
2698
|
padding-top: 7px;
|
2485
2699
|
padding-bottom: 7px;
|
2486
2700
|
margin-bottom: 0;
|
@@ -2490,8 +2704,7 @@ fieldset[disabled] .checkbox label {
|
|
2490
2704
|
padding-right: 0;
|
2491
2705
|
padding-left: 0;
|
2492
2706
|
}
|
2493
|
-
.input-sm
|
2494
|
-
.form-horizontal .form-group-sm .form-control {
|
2707
|
+
.input-sm {
|
2495
2708
|
height: 30px;
|
2496
2709
|
padding: 5px 10px;
|
2497
2710
|
font-size: 12px;
|
@@ -2506,12 +2719,33 @@ textarea.input-sm,
|
|
2506
2719
|
select[multiple].input-sm {
|
2507
2720
|
height: auto;
|
2508
2721
|
}
|
2509
|
-
.
|
2510
|
-
|
2722
|
+
.form-group-sm .form-control {
|
2723
|
+
height: 30px;
|
2724
|
+
padding: 5px 10px;
|
2725
|
+
font-size: 12px;
|
2726
|
+
line-height: 1.5;
|
2727
|
+
border-radius: 3px;
|
2728
|
+
}
|
2729
|
+
.form-group-sm select.form-control {
|
2730
|
+
height: 30px;
|
2731
|
+
line-height: 30px;
|
2732
|
+
}
|
2733
|
+
.form-group-sm textarea.form-control,
|
2734
|
+
.form-group-sm select[multiple].form-control {
|
2735
|
+
height: auto;
|
2736
|
+
}
|
2737
|
+
.form-group-sm .form-control-static {
|
2738
|
+
height: 30px;
|
2739
|
+
min-height: 32px;
|
2740
|
+
padding: 6px 10px;
|
2741
|
+
font-size: 12px;
|
2742
|
+
line-height: 1.5;
|
2743
|
+
}
|
2744
|
+
.input-lg {
|
2511
2745
|
height: 46px;
|
2512
2746
|
padding: 10px 16px;
|
2513
2747
|
font-size: 18px;
|
2514
|
-
line-height: 1.
|
2748
|
+
line-height: 1.3333333;
|
2515
2749
|
border-radius: 6px;
|
2516
2750
|
}
|
2517
2751
|
select.input-lg {
|
@@ -2522,6 +2756,28 @@ textarea.input-lg,
|
|
2522
2756
|
select[multiple].input-lg {
|
2523
2757
|
height: auto;
|
2524
2758
|
}
|
2759
|
+
.form-group-lg .form-control {
|
2760
|
+
height: 46px;
|
2761
|
+
padding: 10px 16px;
|
2762
|
+
font-size: 18px;
|
2763
|
+
line-height: 1.3333333;
|
2764
|
+
border-radius: 6px;
|
2765
|
+
}
|
2766
|
+
.form-group-lg select.form-control {
|
2767
|
+
height: 46px;
|
2768
|
+
line-height: 46px;
|
2769
|
+
}
|
2770
|
+
.form-group-lg textarea.form-control,
|
2771
|
+
.form-group-lg select[multiple].form-control {
|
2772
|
+
height: auto;
|
2773
|
+
}
|
2774
|
+
.form-group-lg .form-control-static {
|
2775
|
+
height: 46px;
|
2776
|
+
min-height: 38px;
|
2777
|
+
padding: 11px 16px;
|
2778
|
+
font-size: 18px;
|
2779
|
+
line-height: 1.3333333;
|
2780
|
+
}
|
2525
2781
|
.has-feedback {
|
2526
2782
|
position: relative;
|
2527
2783
|
}
|
@@ -2530,7 +2786,7 @@ select[multiple].input-lg {
|
|
2530
2786
|
}
|
2531
2787
|
.form-control-feedback {
|
2532
2788
|
position: absolute;
|
2533
|
-
top:
|
2789
|
+
top: 0;
|
2534
2790
|
right: 0;
|
2535
2791
|
z-index: 2;
|
2536
2792
|
display: block;
|
@@ -2538,13 +2794,18 @@ select[multiple].input-lg {
|
|
2538
2794
|
height: 34px;
|
2539
2795
|
line-height: 34px;
|
2540
2796
|
text-align: center;
|
2797
|
+
pointer-events: none;
|
2541
2798
|
}
|
2542
|
-
.input-lg + .form-control-feedback
|
2799
|
+
.input-lg + .form-control-feedback,
|
2800
|
+
.input-group-lg + .form-control-feedback,
|
2801
|
+
.form-group-lg .form-control + .form-control-feedback {
|
2543
2802
|
width: 46px;
|
2544
2803
|
height: 46px;
|
2545
2804
|
line-height: 46px;
|
2546
2805
|
}
|
2547
|
-
.input-sm + .form-control-feedback
|
2806
|
+
.input-sm + .form-control-feedback,
|
2807
|
+
.input-group-sm + .form-control-feedback,
|
2808
|
+
.form-group-sm .form-control + .form-control-feedback {
|
2548
2809
|
width: 30px;
|
2549
2810
|
height: 30px;
|
2550
2811
|
line-height: 30px;
|
@@ -2554,7 +2815,11 @@ select[multiple].input-lg {
|
|
2554
2815
|
.has-success .radio,
|
2555
2816
|
.has-success .checkbox,
|
2556
2817
|
.has-success .radio-inline,
|
2557
|
-
.has-success .checkbox-inline
|
2818
|
+
.has-success .checkbox-inline,
|
2819
|
+
.has-success.radio label,
|
2820
|
+
.has-success.checkbox label,
|
2821
|
+
.has-success.radio-inline label,
|
2822
|
+
.has-success.checkbox-inline label {
|
2558
2823
|
color: #3c763d;
|
2559
2824
|
}
|
2560
2825
|
.has-success .form-control {
|
@@ -2580,7 +2845,11 @@ select[multiple].input-lg {
|
|
2580
2845
|
.has-warning .radio,
|
2581
2846
|
.has-warning .checkbox,
|
2582
2847
|
.has-warning .radio-inline,
|
2583
|
-
.has-warning .checkbox-inline
|
2848
|
+
.has-warning .checkbox-inline,
|
2849
|
+
.has-warning.radio label,
|
2850
|
+
.has-warning.checkbox label,
|
2851
|
+
.has-warning.radio-inline label,
|
2852
|
+
.has-warning.checkbox-inline label {
|
2584
2853
|
color: #8a6d3b;
|
2585
2854
|
}
|
2586
2855
|
.has-warning .form-control {
|
@@ -2606,7 +2875,11 @@ select[multiple].input-lg {
|
|
2606
2875
|
.has-error .radio,
|
2607
2876
|
.has-error .checkbox,
|
2608
2877
|
.has-error .radio-inline,
|
2609
|
-
.has-error .checkbox-inline
|
2878
|
+
.has-error .checkbox-inline,
|
2879
|
+
.has-error.radio label,
|
2880
|
+
.has-error.checkbox label,
|
2881
|
+
.has-error.radio-inline label,
|
2882
|
+
.has-error.checkbox-inline label {
|
2610
2883
|
color: #a94442;
|
2611
2884
|
}
|
2612
2885
|
.has-error .form-control {
|
@@ -2627,6 +2900,9 @@ select[multiple].input-lg {
|
|
2627
2900
|
.has-error .form-control-feedback {
|
2628
2901
|
color: #a94442;
|
2629
2902
|
}
|
2903
|
+
.has-feedback label ~ .form-control-feedback {
|
2904
|
+
top: 25px;
|
2905
|
+
}
|
2630
2906
|
.has-feedback label.sr-only ~ .form-control-feedback {
|
2631
2907
|
top: 0;
|
2632
2908
|
}
|
@@ -2647,6 +2923,9 @@ select[multiple].input-lg {
|
|
2647
2923
|
width: auto;
|
2648
2924
|
vertical-align: middle;
|
2649
2925
|
}
|
2926
|
+
.form-inline .form-control-static {
|
2927
|
+
display: inline-block;
|
2928
|
+
}
|
2650
2929
|
.form-inline .input-group {
|
2651
2930
|
display: inline-table;
|
2652
2931
|
vertical-align: middle;
|
@@ -2707,17 +2986,18 @@ select[multiple].input-lg {
|
|
2707
2986
|
}
|
2708
2987
|
}
|
2709
2988
|
.form-horizontal .has-feedback .form-control-feedback {
|
2710
|
-
top: 0;
|
2711
2989
|
right: 15px;
|
2712
2990
|
}
|
2713
2991
|
@media (min-width: 768px) {
|
2714
2992
|
.form-horizontal .form-group-lg .control-label {
|
2715
|
-
padding-top:
|
2993
|
+
padding-top: 11px;
|
2994
|
+
font-size: 18px;
|
2716
2995
|
}
|
2717
2996
|
}
|
2718
2997
|
@media (min-width: 768px) {
|
2719
2998
|
.form-horizontal .form-group-sm .control-label {
|
2720
2999
|
padding-top: 6px;
|
3000
|
+
font-size: 12px;
|
2721
3001
|
}
|
2722
3002
|
}
|
2723
3003
|
.btn {
|
@@ -2730,6 +3010,8 @@ select[multiple].input-lg {
|
|
2730
3010
|
text-align: center;
|
2731
3011
|
white-space: nowrap;
|
2732
3012
|
vertical-align: middle;
|
3013
|
+
-ms-touch-action: manipulation;
|
3014
|
+
touch-action: manipulation;
|
2733
3015
|
cursor: pointer;
|
2734
3016
|
-webkit-user-select: none;
|
2735
3017
|
-moz-user-select: none;
|
@@ -2741,13 +3023,16 @@ select[multiple].input-lg {
|
|
2741
3023
|
}
|
2742
3024
|
.btn:focus,
|
2743
3025
|
.btn:active:focus,
|
2744
|
-
.btn.active:focus
|
2745
|
-
|
3026
|
+
.btn.active:focus,
|
3027
|
+
.btn.focus,
|
3028
|
+
.btn:active.focus,
|
3029
|
+
.btn.active.focus {
|
2746
3030
|
outline: 5px auto -webkit-focus-ring-color;
|
2747
3031
|
outline-offset: -2px;
|
2748
3032
|
}
|
2749
3033
|
.btn:hover,
|
2750
|
-
.btn:focus
|
3034
|
+
.btn:focus,
|
3035
|
+
.btn.focus {
|
2751
3036
|
color: #333;
|
2752
3037
|
text-decoration: none;
|
2753
3038
|
}
|
@@ -2761,20 +3046,32 @@ select[multiple].input-lg {
|
|
2761
3046
|
.btn.disabled,
|
2762
3047
|
.btn[disabled],
|
2763
3048
|
fieldset[disabled] .btn {
|
2764
|
-
pointer-events: none;
|
2765
3049
|
cursor: not-allowed;
|
2766
3050
|
filter: alpha(opacity=65);
|
2767
3051
|
-webkit-box-shadow: none;
|
2768
3052
|
box-shadow: none;
|
2769
3053
|
opacity: .65;
|
2770
3054
|
}
|
3055
|
+
a.btn.disabled,
|
3056
|
+
fieldset[disabled] a.btn {
|
3057
|
+
pointer-events: none;
|
3058
|
+
}
|
2771
3059
|
.btn-default {
|
2772
3060
|
color: #333;
|
2773
3061
|
background-color: #fff;
|
2774
3062
|
border-color: #ccc;
|
2775
3063
|
}
|
2776
|
-
.btn-default:hover,
|
2777
3064
|
.btn-default:focus,
|
3065
|
+
.btn-default.focus {
|
3066
|
+
color: #333;
|
3067
|
+
background-color: #e6e6e6;
|
3068
|
+
border-color: #8c8c8c;
|
3069
|
+
}
|
3070
|
+
.btn-default:hover {
|
3071
|
+
color: #333;
|
3072
|
+
background-color: #e6e6e6;
|
3073
|
+
border-color: #adadad;
|
3074
|
+
}
|
2778
3075
|
.btn-default:active,
|
2779
3076
|
.btn-default.active,
|
2780
3077
|
.open > .dropdown-toggle.btn-default {
|
@@ -2782,26 +3079,33 @@ fieldset[disabled] .btn {
|
|
2782
3079
|
background-color: #e6e6e6;
|
2783
3080
|
border-color: #adadad;
|
2784
3081
|
}
|
3082
|
+
.btn-default:active:hover,
|
3083
|
+
.btn-default.active:hover,
|
3084
|
+
.open > .dropdown-toggle.btn-default:hover,
|
3085
|
+
.btn-default:active:focus,
|
3086
|
+
.btn-default.active:focus,
|
3087
|
+
.open > .dropdown-toggle.btn-default:focus,
|
3088
|
+
.btn-default:active.focus,
|
3089
|
+
.btn-default.active.focus,
|
3090
|
+
.open > .dropdown-toggle.btn-default.focus {
|
3091
|
+
color: #333;
|
3092
|
+
background-color: #d4d4d4;
|
3093
|
+
border-color: #8c8c8c;
|
3094
|
+
}
|
2785
3095
|
.btn-default:active,
|
2786
3096
|
.btn-default.active,
|
2787
3097
|
.open > .dropdown-toggle.btn-default {
|
2788
3098
|
background-image: none;
|
2789
3099
|
}
|
2790
|
-
.btn-default.disabled,
|
2791
|
-
.btn-default[disabled],
|
2792
|
-
fieldset[disabled] .btn-default,
|
2793
3100
|
.btn-default.disabled:hover,
|
2794
3101
|
.btn-default[disabled]:hover,
|
2795
3102
|
fieldset[disabled] .btn-default:hover,
|
2796
3103
|
.btn-default.disabled:focus,
|
2797
3104
|
.btn-default[disabled]:focus,
|
2798
3105
|
fieldset[disabled] .btn-default:focus,
|
2799
|
-
.btn-default.disabled
|
2800
|
-
.btn-default[disabled]
|
2801
|
-
fieldset[disabled] .btn-default
|
2802
|
-
.btn-default.disabled.active,
|
2803
|
-
.btn-default[disabled].active,
|
2804
|
-
fieldset[disabled] .btn-default.active {
|
3106
|
+
.btn-default.disabled.focus,
|
3107
|
+
.btn-default[disabled].focus,
|
3108
|
+
fieldset[disabled] .btn-default.focus {
|
2805
3109
|
background-color: #fff;
|
2806
3110
|
border-color: #ccc;
|
2807
3111
|
}
|
@@ -2811,43 +3115,59 @@ fieldset[disabled] .btn-default.active {
|
|
2811
3115
|
}
|
2812
3116
|
.btn-primary {
|
2813
3117
|
color: #fff;
|
2814
|
-
background-color: #
|
2815
|
-
border-color: #
|
3118
|
+
background-color: #337ab7;
|
3119
|
+
border-color: #2e6da4;
|
2816
3120
|
}
|
2817
|
-
.btn-primary:hover,
|
2818
3121
|
.btn-primary:focus,
|
3122
|
+
.btn-primary.focus {
|
3123
|
+
color: #fff;
|
3124
|
+
background-color: #286090;
|
3125
|
+
border-color: #122b40;
|
3126
|
+
}
|
3127
|
+
.btn-primary:hover {
|
3128
|
+
color: #fff;
|
3129
|
+
background-color: #286090;
|
3130
|
+
border-color: #204d74;
|
3131
|
+
}
|
2819
3132
|
.btn-primary:active,
|
2820
3133
|
.btn-primary.active,
|
2821
3134
|
.open > .dropdown-toggle.btn-primary {
|
2822
3135
|
color: #fff;
|
2823
|
-
background-color: #
|
2824
|
-
border-color: #
|
3136
|
+
background-color: #286090;
|
3137
|
+
border-color: #204d74;
|
3138
|
+
}
|
3139
|
+
.btn-primary:active:hover,
|
3140
|
+
.btn-primary.active:hover,
|
3141
|
+
.open > .dropdown-toggle.btn-primary:hover,
|
3142
|
+
.btn-primary:active:focus,
|
3143
|
+
.btn-primary.active:focus,
|
3144
|
+
.open > .dropdown-toggle.btn-primary:focus,
|
3145
|
+
.btn-primary:active.focus,
|
3146
|
+
.btn-primary.active.focus,
|
3147
|
+
.open > .dropdown-toggle.btn-primary.focus {
|
3148
|
+
color: #fff;
|
3149
|
+
background-color: #204d74;
|
3150
|
+
border-color: #122b40;
|
2825
3151
|
}
|
2826
3152
|
.btn-primary:active,
|
2827
3153
|
.btn-primary.active,
|
2828
3154
|
.open > .dropdown-toggle.btn-primary {
|
2829
3155
|
background-image: none;
|
2830
3156
|
}
|
2831
|
-
.btn-primary.disabled,
|
2832
|
-
.btn-primary[disabled],
|
2833
|
-
fieldset[disabled] .btn-primary,
|
2834
3157
|
.btn-primary.disabled:hover,
|
2835
3158
|
.btn-primary[disabled]:hover,
|
2836
3159
|
fieldset[disabled] .btn-primary:hover,
|
2837
3160
|
.btn-primary.disabled:focus,
|
2838
3161
|
.btn-primary[disabled]:focus,
|
2839
3162
|
fieldset[disabled] .btn-primary:focus,
|
2840
|
-
.btn-primary.disabled
|
2841
|
-
.btn-primary[disabled]
|
2842
|
-
fieldset[disabled] .btn-primary
|
2843
|
-
|
2844
|
-
|
2845
|
-
fieldset[disabled] .btn-primary.active {
|
2846
|
-
background-color: #428bca;
|
2847
|
-
border-color: #357ebd;
|
3163
|
+
.btn-primary.disabled.focus,
|
3164
|
+
.btn-primary[disabled].focus,
|
3165
|
+
fieldset[disabled] .btn-primary.focus {
|
3166
|
+
background-color: #337ab7;
|
3167
|
+
border-color: #2e6da4;
|
2848
3168
|
}
|
2849
3169
|
.btn-primary .badge {
|
2850
|
-
color: #
|
3170
|
+
color: #337ab7;
|
2851
3171
|
background-color: #fff;
|
2852
3172
|
}
|
2853
3173
|
.btn-success {
|
@@ -2855,8 +3175,17 @@ fieldset[disabled] .btn-primary.active {
|
|
2855
3175
|
background-color: #5cb85c;
|
2856
3176
|
border-color: #4cae4c;
|
2857
3177
|
}
|
2858
|
-
.btn-success:hover,
|
2859
3178
|
.btn-success:focus,
|
3179
|
+
.btn-success.focus {
|
3180
|
+
color: #fff;
|
3181
|
+
background-color: #449d44;
|
3182
|
+
border-color: #255625;
|
3183
|
+
}
|
3184
|
+
.btn-success:hover {
|
3185
|
+
color: #fff;
|
3186
|
+
background-color: #449d44;
|
3187
|
+
border-color: #398439;
|
3188
|
+
}
|
2860
3189
|
.btn-success:active,
|
2861
3190
|
.btn-success.active,
|
2862
3191
|
.open > .dropdown-toggle.btn-success {
|
@@ -2864,26 +3193,33 @@ fieldset[disabled] .btn-primary.active {
|
|
2864
3193
|
background-color: #449d44;
|
2865
3194
|
border-color: #398439;
|
2866
3195
|
}
|
3196
|
+
.btn-success:active:hover,
|
3197
|
+
.btn-success.active:hover,
|
3198
|
+
.open > .dropdown-toggle.btn-success:hover,
|
3199
|
+
.btn-success:active:focus,
|
3200
|
+
.btn-success.active:focus,
|
3201
|
+
.open > .dropdown-toggle.btn-success:focus,
|
3202
|
+
.btn-success:active.focus,
|
3203
|
+
.btn-success.active.focus,
|
3204
|
+
.open > .dropdown-toggle.btn-success.focus {
|
3205
|
+
color: #fff;
|
3206
|
+
background-color: #398439;
|
3207
|
+
border-color: #255625;
|
3208
|
+
}
|
2867
3209
|
.btn-success:active,
|
2868
3210
|
.btn-success.active,
|
2869
3211
|
.open > .dropdown-toggle.btn-success {
|
2870
3212
|
background-image: none;
|
2871
3213
|
}
|
2872
|
-
.btn-success.disabled,
|
2873
|
-
.btn-success[disabled],
|
2874
|
-
fieldset[disabled] .btn-success,
|
2875
3214
|
.btn-success.disabled:hover,
|
2876
3215
|
.btn-success[disabled]:hover,
|
2877
3216
|
fieldset[disabled] .btn-success:hover,
|
2878
3217
|
.btn-success.disabled:focus,
|
2879
3218
|
.btn-success[disabled]:focus,
|
2880
3219
|
fieldset[disabled] .btn-success:focus,
|
2881
|
-
.btn-success.disabled
|
2882
|
-
.btn-success[disabled]
|
2883
|
-
fieldset[disabled] .btn-success
|
2884
|
-
.btn-success.disabled.active,
|
2885
|
-
.btn-success[disabled].active,
|
2886
|
-
fieldset[disabled] .btn-success.active {
|
3220
|
+
.btn-success.disabled.focus,
|
3221
|
+
.btn-success[disabled].focus,
|
3222
|
+
fieldset[disabled] .btn-success.focus {
|
2887
3223
|
background-color: #5cb85c;
|
2888
3224
|
border-color: #4cae4c;
|
2889
3225
|
}
|
@@ -2896,8 +3232,17 @@ fieldset[disabled] .btn-success.active {
|
|
2896
3232
|
background-color: #5bc0de;
|
2897
3233
|
border-color: #46b8da;
|
2898
3234
|
}
|
2899
|
-
.btn-info:hover,
|
2900
3235
|
.btn-info:focus,
|
3236
|
+
.btn-info.focus {
|
3237
|
+
color: #fff;
|
3238
|
+
background-color: #31b0d5;
|
3239
|
+
border-color: #1b6d85;
|
3240
|
+
}
|
3241
|
+
.btn-info:hover {
|
3242
|
+
color: #fff;
|
3243
|
+
background-color: #31b0d5;
|
3244
|
+
border-color: #269abc;
|
3245
|
+
}
|
2901
3246
|
.btn-info:active,
|
2902
3247
|
.btn-info.active,
|
2903
3248
|
.open > .dropdown-toggle.btn-info {
|
@@ -2905,26 +3250,33 @@ fieldset[disabled] .btn-success.active {
|
|
2905
3250
|
background-color: #31b0d5;
|
2906
3251
|
border-color: #269abc;
|
2907
3252
|
}
|
3253
|
+
.btn-info:active:hover,
|
3254
|
+
.btn-info.active:hover,
|
3255
|
+
.open > .dropdown-toggle.btn-info:hover,
|
3256
|
+
.btn-info:active:focus,
|
3257
|
+
.btn-info.active:focus,
|
3258
|
+
.open > .dropdown-toggle.btn-info:focus,
|
3259
|
+
.btn-info:active.focus,
|
3260
|
+
.btn-info.active.focus,
|
3261
|
+
.open > .dropdown-toggle.btn-info.focus {
|
3262
|
+
color: #fff;
|
3263
|
+
background-color: #269abc;
|
3264
|
+
border-color: #1b6d85;
|
3265
|
+
}
|
2908
3266
|
.btn-info:active,
|
2909
3267
|
.btn-info.active,
|
2910
3268
|
.open > .dropdown-toggle.btn-info {
|
2911
3269
|
background-image: none;
|
2912
3270
|
}
|
2913
|
-
.btn-info.disabled,
|
2914
|
-
.btn-info[disabled],
|
2915
|
-
fieldset[disabled] .btn-info,
|
2916
3271
|
.btn-info.disabled:hover,
|
2917
3272
|
.btn-info[disabled]:hover,
|
2918
3273
|
fieldset[disabled] .btn-info:hover,
|
2919
3274
|
.btn-info.disabled:focus,
|
2920
3275
|
.btn-info[disabled]:focus,
|
2921
3276
|
fieldset[disabled] .btn-info:focus,
|
2922
|
-
.btn-info.disabled
|
2923
|
-
.btn-info[disabled]
|
2924
|
-
fieldset[disabled] .btn-info
|
2925
|
-
.btn-info.disabled.active,
|
2926
|
-
.btn-info[disabled].active,
|
2927
|
-
fieldset[disabled] .btn-info.active {
|
3277
|
+
.btn-info.disabled.focus,
|
3278
|
+
.btn-info[disabled].focus,
|
3279
|
+
fieldset[disabled] .btn-info.focus {
|
2928
3280
|
background-color: #5bc0de;
|
2929
3281
|
border-color: #46b8da;
|
2930
3282
|
}
|
@@ -2937,8 +3289,17 @@ fieldset[disabled] .btn-info.active {
|
|
2937
3289
|
background-color: #f0ad4e;
|
2938
3290
|
border-color: #eea236;
|
2939
3291
|
}
|
2940
|
-
.btn-warning:hover,
|
2941
3292
|
.btn-warning:focus,
|
3293
|
+
.btn-warning.focus {
|
3294
|
+
color: #fff;
|
3295
|
+
background-color: #ec971f;
|
3296
|
+
border-color: #985f0d;
|
3297
|
+
}
|
3298
|
+
.btn-warning:hover {
|
3299
|
+
color: #fff;
|
3300
|
+
background-color: #ec971f;
|
3301
|
+
border-color: #d58512;
|
3302
|
+
}
|
2942
3303
|
.btn-warning:active,
|
2943
3304
|
.btn-warning.active,
|
2944
3305
|
.open > .dropdown-toggle.btn-warning {
|
@@ -2946,26 +3307,33 @@ fieldset[disabled] .btn-info.active {
|
|
2946
3307
|
background-color: #ec971f;
|
2947
3308
|
border-color: #d58512;
|
2948
3309
|
}
|
3310
|
+
.btn-warning:active:hover,
|
3311
|
+
.btn-warning.active:hover,
|
3312
|
+
.open > .dropdown-toggle.btn-warning:hover,
|
3313
|
+
.btn-warning:active:focus,
|
3314
|
+
.btn-warning.active:focus,
|
3315
|
+
.open > .dropdown-toggle.btn-warning:focus,
|
3316
|
+
.btn-warning:active.focus,
|
3317
|
+
.btn-warning.active.focus,
|
3318
|
+
.open > .dropdown-toggle.btn-warning.focus {
|
3319
|
+
color: #fff;
|
3320
|
+
background-color: #d58512;
|
3321
|
+
border-color: #985f0d;
|
3322
|
+
}
|
2949
3323
|
.btn-warning:active,
|
2950
3324
|
.btn-warning.active,
|
2951
3325
|
.open > .dropdown-toggle.btn-warning {
|
2952
3326
|
background-image: none;
|
2953
3327
|
}
|
2954
|
-
.btn-warning.disabled,
|
2955
|
-
.btn-warning[disabled],
|
2956
|
-
fieldset[disabled] .btn-warning,
|
2957
3328
|
.btn-warning.disabled:hover,
|
2958
3329
|
.btn-warning[disabled]:hover,
|
2959
3330
|
fieldset[disabled] .btn-warning:hover,
|
2960
3331
|
.btn-warning.disabled:focus,
|
2961
3332
|
.btn-warning[disabled]:focus,
|
2962
3333
|
fieldset[disabled] .btn-warning:focus,
|
2963
|
-
.btn-warning.disabled
|
2964
|
-
.btn-warning[disabled]
|
2965
|
-
fieldset[disabled] .btn-warning
|
2966
|
-
.btn-warning.disabled.active,
|
2967
|
-
.btn-warning[disabled].active,
|
2968
|
-
fieldset[disabled] .btn-warning.active {
|
3334
|
+
.btn-warning.disabled.focus,
|
3335
|
+
.btn-warning[disabled].focus,
|
3336
|
+
fieldset[disabled] .btn-warning.focus {
|
2969
3337
|
background-color: #f0ad4e;
|
2970
3338
|
border-color: #eea236;
|
2971
3339
|
}
|
@@ -2978,8 +3346,17 @@ fieldset[disabled] .btn-warning.active {
|
|
2978
3346
|
background-color: #d9534f;
|
2979
3347
|
border-color: #d43f3a;
|
2980
3348
|
}
|
2981
|
-
.btn-danger:hover,
|
2982
3349
|
.btn-danger:focus,
|
3350
|
+
.btn-danger.focus {
|
3351
|
+
color: #fff;
|
3352
|
+
background-color: #c9302c;
|
3353
|
+
border-color: #761c19;
|
3354
|
+
}
|
3355
|
+
.btn-danger:hover {
|
3356
|
+
color: #fff;
|
3357
|
+
background-color: #c9302c;
|
3358
|
+
border-color: #ac2925;
|
3359
|
+
}
|
2983
3360
|
.btn-danger:active,
|
2984
3361
|
.btn-danger.active,
|
2985
3362
|
.open > .dropdown-toggle.btn-danger {
|
@@ -2987,26 +3364,33 @@ fieldset[disabled] .btn-warning.active {
|
|
2987
3364
|
background-color: #c9302c;
|
2988
3365
|
border-color: #ac2925;
|
2989
3366
|
}
|
3367
|
+
.btn-danger:active:hover,
|
3368
|
+
.btn-danger.active:hover,
|
3369
|
+
.open > .dropdown-toggle.btn-danger:hover,
|
3370
|
+
.btn-danger:active:focus,
|
3371
|
+
.btn-danger.active:focus,
|
3372
|
+
.open > .dropdown-toggle.btn-danger:focus,
|
3373
|
+
.btn-danger:active.focus,
|
3374
|
+
.btn-danger.active.focus,
|
3375
|
+
.open > .dropdown-toggle.btn-danger.focus {
|
3376
|
+
color: #fff;
|
3377
|
+
background-color: #ac2925;
|
3378
|
+
border-color: #761c19;
|
3379
|
+
}
|
2990
3380
|
.btn-danger:active,
|
2991
3381
|
.btn-danger.active,
|
2992
3382
|
.open > .dropdown-toggle.btn-danger {
|
2993
3383
|
background-image: none;
|
2994
3384
|
}
|
2995
|
-
.btn-danger.disabled,
|
2996
|
-
.btn-danger[disabled],
|
2997
|
-
fieldset[disabled] .btn-danger,
|
2998
3385
|
.btn-danger.disabled:hover,
|
2999
3386
|
.btn-danger[disabled]:hover,
|
3000
3387
|
fieldset[disabled] .btn-danger:hover,
|
3001
3388
|
.btn-danger.disabled:focus,
|
3002
3389
|
.btn-danger[disabled]:focus,
|
3003
3390
|
fieldset[disabled] .btn-danger:focus,
|
3004
|
-
.btn-danger.disabled
|
3005
|
-
.btn-danger[disabled]
|
3006
|
-
fieldset[disabled] .btn-danger
|
3007
|
-
.btn-danger.disabled.active,
|
3008
|
-
.btn-danger[disabled].active,
|
3009
|
-
fieldset[disabled] .btn-danger.active {
|
3391
|
+
.btn-danger.disabled.focus,
|
3392
|
+
.btn-danger[disabled].focus,
|
3393
|
+
fieldset[disabled] .btn-danger.focus {
|
3010
3394
|
background-color: #d9534f;
|
3011
3395
|
border-color: #d43f3a;
|
3012
3396
|
}
|
@@ -3016,12 +3400,12 @@ fieldset[disabled] .btn-danger.active {
|
|
3016
3400
|
}
|
3017
3401
|
.btn-link {
|
3018
3402
|
font-weight: normal;
|
3019
|
-
color: #
|
3020
|
-
cursor: pointer;
|
3403
|
+
color: #337ab7;
|
3021
3404
|
border-radius: 0;
|
3022
3405
|
}
|
3023
3406
|
.btn-link,
|
3024
3407
|
.btn-link:active,
|
3408
|
+
.btn-link.active,
|
3025
3409
|
.btn-link[disabled],
|
3026
3410
|
fieldset[disabled] .btn-link {
|
3027
3411
|
background-color: transparent;
|
@@ -3036,7 +3420,7 @@ fieldset[disabled] .btn-link {
|
|
3036
3420
|
}
|
3037
3421
|
.btn-link:hover,
|
3038
3422
|
.btn-link:focus {
|
3039
|
-
color: #
|
3423
|
+
color: #23527c;
|
3040
3424
|
text-decoration: underline;
|
3041
3425
|
background-color: transparent;
|
3042
3426
|
}
|
@@ -3051,7 +3435,7 @@ fieldset[disabled] .btn-link:focus {
|
|
3051
3435
|
.btn-group-lg > .btn {
|
3052
3436
|
padding: 10px 16px;
|
3053
3437
|
font-size: 18px;
|
3054
|
-
line-height: 1.
|
3438
|
+
line-height: 1.3333333;
|
3055
3439
|
border-radius: 6px;
|
3056
3440
|
}
|
3057
3441
|
.btn-sm,
|
@@ -3105,9 +3489,15 @@ tbody.collapse.in {
|
|
3105
3489
|
position: relative;
|
3106
3490
|
height: 0;
|
3107
3491
|
overflow: hidden;
|
3108
|
-
-webkit-transition:
|
3109
|
-
-o-transition:
|
3110
|
-
transition:
|
3492
|
+
-webkit-transition-timing-function: ease;
|
3493
|
+
-o-transition-timing-function: ease;
|
3494
|
+
transition-timing-function: ease;
|
3495
|
+
-webkit-transition-duration: .35s;
|
3496
|
+
-o-transition-duration: .35s;
|
3497
|
+
transition-duration: .35s;
|
3498
|
+
-webkit-transition-property: height, visibility;
|
3499
|
+
-o-transition-property: height, visibility;
|
3500
|
+
transition-property: height, visibility;
|
3111
3501
|
}
|
3112
3502
|
.caret {
|
3113
3503
|
display: inline-block;
|
@@ -3115,10 +3505,12 @@ tbody.collapse.in {
|
|
3115
3505
|
height: 0;
|
3116
3506
|
margin-left: 2px;
|
3117
3507
|
vertical-align: middle;
|
3118
|
-
border-top: 4px
|
3508
|
+
border-top: 4px dashed;
|
3509
|
+
border-top: 4px solid \9;
|
3119
3510
|
border-right: 4px solid transparent;
|
3120
3511
|
border-left: 4px solid transparent;
|
3121
3512
|
}
|
3513
|
+
.dropup,
|
3122
3514
|
.dropdown {
|
3123
3515
|
position: relative;
|
3124
3516
|
}
|
@@ -3177,7 +3569,7 @@ tbody.collapse.in {
|
|
3177
3569
|
.dropdown-menu > .active > a:focus {
|
3178
3570
|
color: #fff;
|
3179
3571
|
text-decoration: none;
|
3180
|
-
background-color: #
|
3572
|
+
background-color: #337ab7;
|
3181
3573
|
outline: 0;
|
3182
3574
|
}
|
3183
3575
|
.dropdown-menu > .disabled > a,
|
@@ -3231,13 +3623,14 @@ tbody.collapse.in {
|
|
3231
3623
|
.navbar-fixed-bottom .dropdown .caret {
|
3232
3624
|
content: "";
|
3233
3625
|
border-top: 0;
|
3234
|
-
border-bottom: 4px
|
3626
|
+
border-bottom: 4px dashed;
|
3627
|
+
border-bottom: 4px solid \9;
|
3235
3628
|
}
|
3236
3629
|
.dropup .dropdown-menu,
|
3237
3630
|
.navbar-fixed-bottom .dropdown .dropdown-menu {
|
3238
3631
|
top: auto;
|
3239
3632
|
bottom: 100%;
|
3240
|
-
margin-bottom:
|
3633
|
+
margin-bottom: 2px;
|
3241
3634
|
}
|
3242
3635
|
@media (min-width: 768px) {
|
3243
3636
|
.navbar-right .dropdown-menu {
|
@@ -3270,10 +3663,6 @@ tbody.collapse.in {
|
|
3270
3663
|
.btn-group-vertical > .btn.active {
|
3271
3664
|
z-index: 2;
|
3272
3665
|
}
|
3273
|
-
.btn-group > .btn:focus,
|
3274
|
-
.btn-group-vertical > .btn:focus {
|
3275
|
-
outline: 0;
|
3276
|
-
}
|
3277
3666
|
.btn-group .btn + .btn,
|
3278
3667
|
.btn-group .btn + .btn-group,
|
3279
3668
|
.btn-group .btn-group + .btn,
|
@@ -3283,6 +3672,7 @@ tbody.collapse.in {
|
|
3283
3672
|
.btn-toolbar {
|
3284
3673
|
margin-left: -5px;
|
3285
3674
|
}
|
3675
|
+
.btn-toolbar .btn,
|
3286
3676
|
.btn-toolbar .btn-group,
|
3287
3677
|
.btn-toolbar .input-group {
|
3288
3678
|
float: left;
|
@@ -3313,12 +3703,12 @@ tbody.collapse.in {
|
|
3313
3703
|
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
|
3314
3704
|
border-radius: 0;
|
3315
3705
|
}
|
3316
|
-
.btn-group > .btn-group:first-child > .btn:last-child,
|
3317
|
-
.btn-group > .btn-group:first-child > .dropdown-toggle {
|
3706
|
+
.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
|
3707
|
+
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
|
3318
3708
|
border-top-right-radius: 0;
|
3319
3709
|
border-bottom-right-radius: 0;
|
3320
3710
|
}
|
3321
|
-
.btn-group > .btn-group:last-child > .btn:first-child {
|
3711
|
+
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
|
3322
3712
|
border-top-left-radius: 0;
|
3323
3713
|
border-bottom-left-radius: 0;
|
3324
3714
|
}
|
@@ -3374,6 +3764,7 @@ tbody.collapse.in {
|
|
3374
3764
|
border-radius: 0;
|
3375
3765
|
}
|
3376
3766
|
.btn-group-vertical > .btn:first-child:not(:last-child) {
|
3767
|
+
border-top-left-radius: 4px;
|
3377
3768
|
border-top-right-radius: 4px;
|
3378
3769
|
border-bottom-right-radius: 0;
|
3379
3770
|
border-bottom-left-radius: 0;
|
@@ -3381,6 +3772,7 @@ tbody.collapse.in {
|
|
3381
3772
|
.btn-group-vertical > .btn:last-child:not(:first-child) {
|
3382
3773
|
border-top-left-radius: 0;
|
3383
3774
|
border-top-right-radius: 0;
|
3775
|
+
border-bottom-right-radius: 4px;
|
3384
3776
|
border-bottom-left-radius: 4px;
|
3385
3777
|
}
|
3386
3778
|
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
|
@@ -3413,12 +3805,13 @@ tbody.collapse.in {
|
|
3413
3805
|
.btn-group-justified > .btn-group .dropdown-menu {
|
3414
3806
|
left: auto;
|
3415
3807
|
}
|
3416
|
-
[data-toggle="buttons"] > .btn
|
3417
|
-
[data-toggle="buttons"] > .btn > input[type="
|
3808
|
+
[data-toggle="buttons"] > .btn input[type="radio"],
|
3809
|
+
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
|
3810
|
+
[data-toggle="buttons"] > .btn input[type="checkbox"],
|
3811
|
+
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
|
3418
3812
|
position: absolute;
|
3419
|
-
|
3420
|
-
|
3421
|
-
opacity: 0;
|
3813
|
+
clip: rect(0, 0, 0, 0);
|
3814
|
+
pointer-events: none;
|
3422
3815
|
}
|
3423
3816
|
.input-group {
|
3424
3817
|
position: relative;
|
@@ -3437,13 +3830,16 @@ tbody.collapse.in {
|
|
3437
3830
|
width: 100%;
|
3438
3831
|
margin-bottom: 0;
|
3439
3832
|
}
|
3833
|
+
.input-group .form-control:focus {
|
3834
|
+
z-index: 3;
|
3835
|
+
}
|
3440
3836
|
.input-group-lg > .form-control,
|
3441
3837
|
.input-group-lg > .input-group-addon,
|
3442
3838
|
.input-group-lg > .input-group-btn > .btn {
|
3443
3839
|
height: 46px;
|
3444
3840
|
padding: 10px 16px;
|
3445
3841
|
font-size: 18px;
|
3446
|
-
line-height: 1.
|
3842
|
+
line-height: 1.3333333;
|
3447
3843
|
border-radius: 6px;
|
3448
3844
|
}
|
3449
3845
|
select.input-group-lg > .form-control,
|
@@ -3572,6 +3968,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
3572
3968
|
}
|
3573
3969
|
.input-group-btn:last-child > .btn,
|
3574
3970
|
.input-group-btn:last-child > .btn-group {
|
3971
|
+
z-index: 2;
|
3575
3972
|
margin-left: -1px;
|
3576
3973
|
}
|
3577
3974
|
.nav {
|
@@ -3607,7 +4004,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
3607
4004
|
.nav .open > a:hover,
|
3608
4005
|
.nav .open > a:focus {
|
3609
4006
|
background-color: #eee;
|
3610
|
-
border-color: #
|
4007
|
+
border-color: #337ab7;
|
3611
4008
|
}
|
3612
4009
|
.nav .nav-divider {
|
3613
4010
|
height: 1px;
|
@@ -3700,7 +4097,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
3700
4097
|
.nav-pills > li.active > a:hover,
|
3701
4098
|
.nav-pills > li.active > a:focus {
|
3702
4099
|
color: #fff;
|
3703
|
-
background-color: #
|
4100
|
+
background-color: #337ab7;
|
3704
4101
|
}
|
3705
4102
|
.nav-stacked > li {
|
3706
4103
|
float: none;
|
@@ -3821,7 +4218,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
3821
4218
|
.navbar-fixed-bottom .navbar-collapse {
|
3822
4219
|
max-height: 340px;
|
3823
4220
|
}
|
3824
|
-
@media (max-width: 480px) and (orientation: landscape) {
|
4221
|
+
@media (max-device-width: 480px) and (orientation: landscape) {
|
3825
4222
|
.navbar-fixed-top .navbar-collapse,
|
3826
4223
|
.navbar-fixed-bottom .navbar-collapse {
|
3827
4224
|
max-height: 200px;
|
@@ -3858,9 +4255,6 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
3858
4255
|
right: 0;
|
3859
4256
|
left: 0;
|
3860
4257
|
z-index: 1030;
|
3861
|
-
-webkit-transform: translate3d(0, 0, 0);
|
3862
|
-
-o-transform: translate3d(0, 0, 0);
|
3863
|
-
transform: translate3d(0, 0, 0);
|
3864
4258
|
}
|
3865
4259
|
@media (min-width: 768px) {
|
3866
4260
|
.navbar-fixed-top,
|
@@ -3888,6 +4282,9 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
3888
4282
|
.navbar-brand:focus {
|
3889
4283
|
text-decoration: none;
|
3890
4284
|
}
|
4285
|
+
.navbar-brand > img {
|
4286
|
+
display: block;
|
4287
|
+
}
|
3891
4288
|
@media (min-width: 768px) {
|
3892
4289
|
.navbar > .container .navbar-brand,
|
3893
4290
|
.navbar > .container-fluid .navbar-brand {
|
@@ -3966,17 +4363,6 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
3966
4363
|
padding-top: 15px;
|
3967
4364
|
padding-bottom: 15px;
|
3968
4365
|
}
|
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
4366
|
}
|
3981
4367
|
.navbar-form {
|
3982
4368
|
padding: 10px 15px;
|
@@ -4000,6 +4386,9 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
4000
4386
|
width: auto;
|
4001
4387
|
vertical-align: middle;
|
4002
4388
|
}
|
4389
|
+
.navbar-form .form-control-static {
|
4390
|
+
display: inline-block;
|
4391
|
+
}
|
4003
4392
|
.navbar-form .input-group {
|
4004
4393
|
display: inline-table;
|
4005
4394
|
vertical-align: middle;
|
@@ -4040,6 +4429,9 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
4040
4429
|
.navbar-form .form-group {
|
4041
4430
|
margin-bottom: 5px;
|
4042
4431
|
}
|
4432
|
+
.navbar-form .form-group:last-child {
|
4433
|
+
margin-bottom: 0;
|
4434
|
+
}
|
4043
4435
|
}
|
4044
4436
|
@media (min-width: 768px) {
|
4045
4437
|
.navbar-form {
|
@@ -4052,9 +4444,6 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
4052
4444
|
-webkit-box-shadow: none;
|
4053
4445
|
box-shadow: none;
|
4054
4446
|
}
|
4055
|
-
.navbar-form.navbar-right:last-child {
|
4056
|
-
margin-right: -15px;
|
4057
|
-
}
|
4058
4447
|
}
|
4059
4448
|
.navbar-nav > li > .dropdown-menu {
|
4060
4449
|
margin-top: 0;
|
@@ -4062,6 +4451,9 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
4062
4451
|
border-top-right-radius: 0;
|
4063
4452
|
}
|
4064
4453
|
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
|
4454
|
+
margin-bottom: 0;
|
4455
|
+
border-top-left-radius: 4px;
|
4456
|
+
border-top-right-radius: 4px;
|
4065
4457
|
border-bottom-right-radius: 0;
|
4066
4458
|
border-bottom-left-radius: 0;
|
4067
4459
|
}
|
@@ -4087,7 +4479,16 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
4087
4479
|
margin-right: 15px;
|
4088
4480
|
margin-left: 15px;
|
4089
4481
|
}
|
4090
|
-
|
4482
|
+
}
|
4483
|
+
@media (min-width: 768px) {
|
4484
|
+
.navbar-left {
|
4485
|
+
float: left !important;
|
4486
|
+
}
|
4487
|
+
.navbar-right {
|
4488
|
+
float: right !important;
|
4489
|
+
margin-right: -15px;
|
4490
|
+
}
|
4491
|
+
.navbar-right ~ .navbar-right {
|
4091
4492
|
margin-right: 0;
|
4092
4493
|
}
|
4093
4494
|
}
|
@@ -4192,7 +4593,7 @@ fieldset[disabled] .navbar-default .btn-link:focus {
|
|
4192
4593
|
border-color: #080808;
|
4193
4594
|
}
|
4194
4595
|
.navbar-inverse .navbar-brand {
|
4195
|
-
color: #
|
4596
|
+
color: #9d9d9d;
|
4196
4597
|
}
|
4197
4598
|
.navbar-inverse .navbar-brand:hover,
|
4198
4599
|
.navbar-inverse .navbar-brand:focus {
|
@@ -4200,10 +4601,10 @@ fieldset[disabled] .navbar-default .btn-link:focus {
|
|
4200
4601
|
background-color: transparent;
|
4201
4602
|
}
|
4202
4603
|
.navbar-inverse .navbar-text {
|
4203
|
-
color: #
|
4604
|
+
color: #9d9d9d;
|
4204
4605
|
}
|
4205
4606
|
.navbar-inverse .navbar-nav > li > a {
|
4206
|
-
color: #
|
4607
|
+
color: #9d9d9d;
|
4207
4608
|
}
|
4208
4609
|
.navbar-inverse .navbar-nav > li > a:hover,
|
4209
4610
|
.navbar-inverse .navbar-nav > li > a:focus {
|
@@ -4250,7 +4651,7 @@ fieldset[disabled] .navbar-default .btn-link:focus {
|
|
4250
4651
|
background-color: #080808;
|
4251
4652
|
}
|
4252
4653
|
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
|
4253
|
-
color: #
|
4654
|
+
color: #9d9d9d;
|
4254
4655
|
}
|
4255
4656
|
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
|
4256
4657
|
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
|
@@ -4271,13 +4672,13 @@ fieldset[disabled] .navbar-default .btn-link:focus {
|
|
4271
4672
|
}
|
4272
4673
|
}
|
4273
4674
|
.navbar-inverse .navbar-link {
|
4274
|
-
color: #
|
4675
|
+
color: #9d9d9d;
|
4275
4676
|
}
|
4276
4677
|
.navbar-inverse .navbar-link:hover {
|
4277
4678
|
color: #fff;
|
4278
4679
|
}
|
4279
4680
|
.navbar-inverse .btn-link {
|
4280
|
-
color: #
|
4681
|
+
color: #9d9d9d;
|
4281
4682
|
}
|
4282
4683
|
.navbar-inverse .btn-link:hover,
|
4283
4684
|
.navbar-inverse .btn-link:focus {
|
@@ -4323,7 +4724,7 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
|
|
4323
4724
|
padding: 6px 12px;
|
4324
4725
|
margin-left: -1px;
|
4325
4726
|
line-height: 1.42857143;
|
4326
|
-
color: #
|
4727
|
+
color: #337ab7;
|
4327
4728
|
text-decoration: none;
|
4328
4729
|
background-color: #fff;
|
4329
4730
|
border: 1px solid #ddd;
|
@@ -4343,7 +4744,8 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
|
|
4343
4744
|
.pagination > li > span:hover,
|
4344
4745
|
.pagination > li > a:focus,
|
4345
4746
|
.pagination > li > span:focus {
|
4346
|
-
|
4747
|
+
z-index: 2;
|
4748
|
+
color: #23527c;
|
4347
4749
|
background-color: #eee;
|
4348
4750
|
border-color: #ddd;
|
4349
4751
|
}
|
@@ -4353,11 +4755,11 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
|
|
4353
4755
|
.pagination > .active > span:hover,
|
4354
4756
|
.pagination > .active > a:focus,
|
4355
4757
|
.pagination > .active > span:focus {
|
4356
|
-
z-index:
|
4758
|
+
z-index: 3;
|
4357
4759
|
color: #fff;
|
4358
4760
|
cursor: default;
|
4359
|
-
background-color: #
|
4360
|
-
border-color: #
|
4761
|
+
background-color: #337ab7;
|
4762
|
+
border-color: #337ab7;
|
4361
4763
|
}
|
4362
4764
|
.pagination > .disabled > span,
|
4363
4765
|
.pagination > .disabled > span:hover,
|
@@ -4374,6 +4776,7 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
|
|
4374
4776
|
.pagination-lg > li > span {
|
4375
4777
|
padding: 10px 16px;
|
4376
4778
|
font-size: 18px;
|
4779
|
+
line-height: 1.3333333;
|
4377
4780
|
}
|
4378
4781
|
.pagination-lg > li:first-child > a,
|
4379
4782
|
.pagination-lg > li:first-child > span {
|
@@ -4389,6 +4792,7 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
|
|
4389
4792
|
.pagination-sm > li > span {
|
4390
4793
|
padding: 5px 10px;
|
4391
4794
|
font-size: 12px;
|
4795
|
+
line-height: 1.5;
|
4392
4796
|
}
|
4393
4797
|
.pagination-sm > li:first-child > a,
|
4394
4798
|
.pagination-sm > li:first-child > span {
|
@@ -4471,11 +4875,11 @@ a.label:focus {
|
|
4471
4875
|
background-color: #5e5e5e;
|
4472
4876
|
}
|
4473
4877
|
.label-primary {
|
4474
|
-
background-color: #
|
4878
|
+
background-color: #337ab7;
|
4475
4879
|
}
|
4476
4880
|
.label-primary[href]:hover,
|
4477
4881
|
.label-primary[href]:focus {
|
4478
|
-
background-color: #
|
4882
|
+
background-color: #286090;
|
4479
4883
|
}
|
4480
4884
|
.label-success {
|
4481
4885
|
background-color: #5cb85c;
|
@@ -4515,7 +4919,7 @@ a.label:focus {
|
|
4515
4919
|
color: #fff;
|
4516
4920
|
text-align: center;
|
4517
4921
|
white-space: nowrap;
|
4518
|
-
vertical-align:
|
4922
|
+
vertical-align: middle;
|
4519
4923
|
background-color: #777;
|
4520
4924
|
border-radius: 10px;
|
4521
4925
|
}
|
@@ -4526,7 +4930,8 @@ a.label:focus {
|
|
4526
4930
|
position: relative;
|
4527
4931
|
top: -1px;
|
4528
4932
|
}
|
4529
|
-
.btn-xs .badge
|
4933
|
+
.btn-xs .badge,
|
4934
|
+
.btn-group-xs > .btn .badge {
|
4530
4935
|
top: 0;
|
4531
4936
|
padding: 1px 5px;
|
4532
4937
|
}
|
@@ -4536,16 +4941,23 @@ a.badge:focus {
|
|
4536
4941
|
text-decoration: none;
|
4537
4942
|
cursor: pointer;
|
4538
4943
|
}
|
4539
|
-
|
4944
|
+
.list-group-item.active > .badge,
|
4540
4945
|
.nav-pills > .active > a > .badge {
|
4541
|
-
color: #
|
4946
|
+
color: #337ab7;
|
4542
4947
|
background-color: #fff;
|
4543
4948
|
}
|
4949
|
+
.list-group-item > .badge {
|
4950
|
+
float: right;
|
4951
|
+
}
|
4952
|
+
.list-group-item > .badge + .badge {
|
4953
|
+
margin-right: 5px;
|
4954
|
+
}
|
4544
4955
|
.nav-pills > li > a > .badge {
|
4545
4956
|
margin-left: 3px;
|
4546
4957
|
}
|
4547
4958
|
.jumbotron {
|
4548
|
-
padding: 30px;
|
4959
|
+
padding-top: 30px;
|
4960
|
+
padding-bottom: 30px;
|
4549
4961
|
margin-bottom: 30px;
|
4550
4962
|
color: inherit;
|
4551
4963
|
background-color: #eee;
|
@@ -4562,7 +4974,10 @@ a.list-group-item.active > .badge,
|
|
4562
4974
|
.jumbotron > hr {
|
4563
4975
|
border-top-color: #d5d5d5;
|
4564
4976
|
}
|
4565
|
-
.container .jumbotron
|
4977
|
+
.container .jumbotron,
|
4978
|
+
.container-fluid .jumbotron {
|
4979
|
+
padding-right: 15px;
|
4980
|
+
padding-left: 15px;
|
4566
4981
|
border-radius: 6px;
|
4567
4982
|
}
|
4568
4983
|
.jumbotron .container {
|
@@ -4573,7 +4988,8 @@ a.list-group-item.active > .badge,
|
|
4573
4988
|
padding-top: 48px;
|
4574
4989
|
padding-bottom: 48px;
|
4575
4990
|
}
|
4576
|
-
.container .jumbotron
|
4991
|
+
.container .jumbotron,
|
4992
|
+
.container-fluid .jumbotron {
|
4577
4993
|
padding-right: 60px;
|
4578
4994
|
padding-left: 60px;
|
4579
4995
|
}
|
@@ -4590,9 +5006,9 @@ a.list-group-item.active > .badge,
|
|
4590
5006
|
background-color: #fff;
|
4591
5007
|
border: 1px solid #ddd;
|
4592
5008
|
border-radius: 4px;
|
4593
|
-
-webkit-transition:
|
4594
|
-
-o-transition:
|
4595
|
-
transition:
|
5009
|
+
-webkit-transition: border .2s ease-in-out;
|
5010
|
+
-o-transition: border .2s ease-in-out;
|
5011
|
+
transition: border .2s ease-in-out;
|
4596
5012
|
}
|
4597
5013
|
.thumbnail > img,
|
4598
5014
|
.thumbnail a > img {
|
@@ -4602,7 +5018,7 @@ a.list-group-item.active > .badge,
|
|
4602
5018
|
a.thumbnail:hover,
|
4603
5019
|
a.thumbnail:focus,
|
4604
5020
|
a.thumbnail.active {
|
4605
|
-
border-color: #
|
5021
|
+
border-color: #337ab7;
|
4606
5022
|
}
|
4607
5023
|
.thumbnail .caption {
|
4608
5024
|
padding: 9px;
|
@@ -4724,7 +5140,7 @@ a.thumbnail.active {
|
|
4724
5140
|
line-height: 20px;
|
4725
5141
|
color: #fff;
|
4726
5142
|
text-align: center;
|
4727
|
-
background-color: #
|
5143
|
+
background-color: #337ab7;
|
4728
5144
|
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
|
4729
5145
|
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
|
4730
5146
|
-webkit-transition: width .6s ease;
|
@@ -4745,18 +5161,6 @@ a.thumbnail.active {
|
|
4745
5161
|
-o-animation: progress-bar-stripes 2s linear infinite;
|
4746
5162
|
animation: progress-bar-stripes 2s linear infinite;
|
4747
5163
|
}
|
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;
|
4759
|
-
}
|
4760
5164
|
.progress-bar-success {
|
4761
5165
|
background-color: #5cb85c;
|
4762
5166
|
}
|
@@ -4789,29 +5193,49 @@ a.thumbnail.active {
|
|
4789
5193
|
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
5194
|
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);
|
4791
5195
|
}
|
5196
|
+
.media {
|
5197
|
+
margin-top: 15px;
|
5198
|
+
}
|
5199
|
+
.media:first-child {
|
5200
|
+
margin-top: 0;
|
5201
|
+
}
|
4792
5202
|
.media,
|
4793
5203
|
.media-body {
|
4794
5204
|
overflow: hidden;
|
4795
5205
|
zoom: 1;
|
4796
5206
|
}
|
4797
|
-
.media
|
4798
|
-
|
4799
|
-
margin-top: 15px;
|
4800
|
-
}
|
4801
|
-
.media:first-child {
|
4802
|
-
margin-top: 0;
|
5207
|
+
.media-body {
|
5208
|
+
width: 10000px;
|
4803
5209
|
}
|
4804
5210
|
.media-object {
|
4805
5211
|
display: block;
|
4806
5212
|
}
|
4807
|
-
.media-
|
4808
|
-
|
5213
|
+
.media-object.img-thumbnail {
|
5214
|
+
max-width: none;
|
4809
5215
|
}
|
5216
|
+
.media-right,
|
5217
|
+
.media > .pull-right {
|
5218
|
+
padding-left: 10px;
|
5219
|
+
}
|
5220
|
+
.media-left,
|
4810
5221
|
.media > .pull-left {
|
4811
|
-
|
5222
|
+
padding-right: 10px;
|
4812
5223
|
}
|
4813
|
-
.media
|
4814
|
-
|
5224
|
+
.media-left,
|
5225
|
+
.media-right,
|
5226
|
+
.media-body {
|
5227
|
+
display: table-cell;
|
5228
|
+
vertical-align: top;
|
5229
|
+
}
|
5230
|
+
.media-middle {
|
5231
|
+
vertical-align: middle;
|
5232
|
+
}
|
5233
|
+
.media-bottom {
|
5234
|
+
vertical-align: bottom;
|
5235
|
+
}
|
5236
|
+
.media-heading {
|
5237
|
+
margin-top: 0;
|
5238
|
+
margin-bottom: 5px;
|
4815
5239
|
}
|
4816
5240
|
.media-list {
|
4817
5241
|
padding-left: 0;
|
@@ -4838,28 +5262,31 @@ a.thumbnail.active {
|
|
4838
5262
|
border-bottom-right-radius: 4px;
|
4839
5263
|
border-bottom-left-radius: 4px;
|
4840
5264
|
}
|
4841
|
-
.list-group-item
|
4842
|
-
|
4843
|
-
}
|
4844
|
-
.list-group-item > .badge + .badge {
|
4845
|
-
margin-right: 5px;
|
4846
|
-
}
|
4847
|
-
a.list-group-item {
|
5265
|
+
a.list-group-item,
|
5266
|
+
button.list-group-item {
|
4848
5267
|
color: #555;
|
4849
5268
|
}
|
4850
|
-
a.list-group-item .list-group-item-heading
|
5269
|
+
a.list-group-item .list-group-item-heading,
|
5270
|
+
button.list-group-item .list-group-item-heading {
|
4851
5271
|
color: #333;
|
4852
5272
|
}
|
4853
5273
|
a.list-group-item:hover,
|
4854
|
-
|
5274
|
+
button.list-group-item:hover,
|
5275
|
+
a.list-group-item:focus,
|
5276
|
+
button.list-group-item:focus {
|
4855
5277
|
color: #555;
|
4856
5278
|
text-decoration: none;
|
4857
5279
|
background-color: #f5f5f5;
|
4858
5280
|
}
|
5281
|
+
button.list-group-item {
|
5282
|
+
width: 100%;
|
5283
|
+
text-align: left;
|
5284
|
+
}
|
4859
5285
|
.list-group-item.disabled,
|
4860
5286
|
.list-group-item.disabled:hover,
|
4861
5287
|
.list-group-item.disabled:focus {
|
4862
5288
|
color: #777;
|
5289
|
+
cursor: not-allowed;
|
4863
5290
|
background-color: #eee;
|
4864
5291
|
}
|
4865
5292
|
.list-group-item.disabled .list-group-item-heading,
|
@@ -4877,8 +5304,8 @@ a.list-group-item:focus {
|
|
4877
5304
|
.list-group-item.active:focus {
|
4878
5305
|
z-index: 2;
|
4879
5306
|
color: #fff;
|
4880
|
-
background-color: #
|
4881
|
-
border-color: #
|
5307
|
+
background-color: #337ab7;
|
5308
|
+
border-color: #337ab7;
|
4882
5309
|
}
|
4883
5310
|
.list-group-item.active .list-group-item-heading,
|
4884
5311
|
.list-group-item.active:hover .list-group-item-heading,
|
@@ -4894,26 +5321,33 @@ a.list-group-item:focus {
|
|
4894
5321
|
.list-group-item.active .list-group-item-text,
|
4895
5322
|
.list-group-item.active:hover .list-group-item-text,
|
4896
5323
|
.list-group-item.active:focus .list-group-item-text {
|
4897
|
-
color: #
|
5324
|
+
color: #c7ddef;
|
4898
5325
|
}
|
4899
5326
|
.list-group-item-success {
|
4900
5327
|
color: #3c763d;
|
4901
5328
|
background-color: #dff0d8;
|
4902
5329
|
}
|
4903
|
-
a.list-group-item-success
|
5330
|
+
a.list-group-item-success,
|
5331
|
+
button.list-group-item-success {
|
4904
5332
|
color: #3c763d;
|
4905
5333
|
}
|
4906
|
-
a.list-group-item-success .list-group-item-heading
|
5334
|
+
a.list-group-item-success .list-group-item-heading,
|
5335
|
+
button.list-group-item-success .list-group-item-heading {
|
4907
5336
|
color: inherit;
|
4908
5337
|
}
|
4909
5338
|
a.list-group-item-success:hover,
|
4910
|
-
|
5339
|
+
button.list-group-item-success:hover,
|
5340
|
+
a.list-group-item-success:focus,
|
5341
|
+
button.list-group-item-success:focus {
|
4911
5342
|
color: #3c763d;
|
4912
5343
|
background-color: #d0e9c6;
|
4913
5344
|
}
|
4914
5345
|
a.list-group-item-success.active,
|
5346
|
+
button.list-group-item-success.active,
|
4915
5347
|
a.list-group-item-success.active:hover,
|
4916
|
-
|
5348
|
+
button.list-group-item-success.active:hover,
|
5349
|
+
a.list-group-item-success.active:focus,
|
5350
|
+
button.list-group-item-success.active:focus {
|
4917
5351
|
color: #fff;
|
4918
5352
|
background-color: #3c763d;
|
4919
5353
|
border-color: #3c763d;
|
@@ -4922,20 +5356,27 @@ a.list-group-item-success.active:focus {
|
|
4922
5356
|
color: #31708f;
|
4923
5357
|
background-color: #d9edf7;
|
4924
5358
|
}
|
4925
|
-
a.list-group-item-info
|
5359
|
+
a.list-group-item-info,
|
5360
|
+
button.list-group-item-info {
|
4926
5361
|
color: #31708f;
|
4927
5362
|
}
|
4928
|
-
a.list-group-item-info .list-group-item-heading
|
5363
|
+
a.list-group-item-info .list-group-item-heading,
|
5364
|
+
button.list-group-item-info .list-group-item-heading {
|
4929
5365
|
color: inherit;
|
4930
5366
|
}
|
4931
5367
|
a.list-group-item-info:hover,
|
4932
|
-
|
5368
|
+
button.list-group-item-info:hover,
|
5369
|
+
a.list-group-item-info:focus,
|
5370
|
+
button.list-group-item-info:focus {
|
4933
5371
|
color: #31708f;
|
4934
5372
|
background-color: #c4e3f3;
|
4935
5373
|
}
|
4936
5374
|
a.list-group-item-info.active,
|
5375
|
+
button.list-group-item-info.active,
|
4937
5376
|
a.list-group-item-info.active:hover,
|
4938
|
-
|
5377
|
+
button.list-group-item-info.active:hover,
|
5378
|
+
a.list-group-item-info.active:focus,
|
5379
|
+
button.list-group-item-info.active:focus {
|
4939
5380
|
color: #fff;
|
4940
5381
|
background-color: #31708f;
|
4941
5382
|
border-color: #31708f;
|
@@ -4944,20 +5385,27 @@ a.list-group-item-info.active:focus {
|
|
4944
5385
|
color: #8a6d3b;
|
4945
5386
|
background-color: #fcf8e3;
|
4946
5387
|
}
|
4947
|
-
a.list-group-item-warning
|
5388
|
+
a.list-group-item-warning,
|
5389
|
+
button.list-group-item-warning {
|
4948
5390
|
color: #8a6d3b;
|
4949
5391
|
}
|
4950
|
-
a.list-group-item-warning .list-group-item-heading
|
5392
|
+
a.list-group-item-warning .list-group-item-heading,
|
5393
|
+
button.list-group-item-warning .list-group-item-heading {
|
4951
5394
|
color: inherit;
|
4952
5395
|
}
|
4953
5396
|
a.list-group-item-warning:hover,
|
4954
|
-
|
5397
|
+
button.list-group-item-warning:hover,
|
5398
|
+
a.list-group-item-warning:focus,
|
5399
|
+
button.list-group-item-warning:focus {
|
4955
5400
|
color: #8a6d3b;
|
4956
5401
|
background-color: #faf2cc;
|
4957
5402
|
}
|
4958
5403
|
a.list-group-item-warning.active,
|
5404
|
+
button.list-group-item-warning.active,
|
4959
5405
|
a.list-group-item-warning.active:hover,
|
4960
|
-
|
5406
|
+
button.list-group-item-warning.active:hover,
|
5407
|
+
a.list-group-item-warning.active:focus,
|
5408
|
+
button.list-group-item-warning.active:focus {
|
4961
5409
|
color: #fff;
|
4962
5410
|
background-color: #8a6d3b;
|
4963
5411
|
border-color: #8a6d3b;
|
@@ -4966,20 +5414,27 @@ a.list-group-item-warning.active:focus {
|
|
4966
5414
|
color: #a94442;
|
4967
5415
|
background-color: #f2dede;
|
4968
5416
|
}
|
4969
|
-
a.list-group-item-danger
|
5417
|
+
a.list-group-item-danger,
|
5418
|
+
button.list-group-item-danger {
|
4970
5419
|
color: #a94442;
|
4971
5420
|
}
|
4972
|
-
a.list-group-item-danger .list-group-item-heading
|
5421
|
+
a.list-group-item-danger .list-group-item-heading,
|
5422
|
+
button.list-group-item-danger .list-group-item-heading {
|
4973
5423
|
color: inherit;
|
4974
5424
|
}
|
4975
5425
|
a.list-group-item-danger:hover,
|
4976
|
-
|
5426
|
+
button.list-group-item-danger:hover,
|
5427
|
+
a.list-group-item-danger:focus,
|
5428
|
+
button.list-group-item-danger:focus {
|
4977
5429
|
color: #a94442;
|
4978
5430
|
background-color: #ebcccc;
|
4979
5431
|
}
|
4980
5432
|
a.list-group-item-danger.active,
|
5433
|
+
button.list-group-item-danger.active,
|
4981
5434
|
a.list-group-item-danger.active:hover,
|
4982
|
-
|
5435
|
+
button.list-group-item-danger.active:hover,
|
5436
|
+
a.list-group-item-danger.active:focus,
|
5437
|
+
button.list-group-item-danger.active:focus {
|
4983
5438
|
color: #fff;
|
4984
5439
|
background-color: #a94442;
|
4985
5440
|
border-color: #a94442;
|
@@ -5018,7 +5473,11 @@ a.list-group-item-danger.active:focus {
|
|
5018
5473
|
font-size: 16px;
|
5019
5474
|
color: inherit;
|
5020
5475
|
}
|
5021
|
-
.panel-title > a
|
5476
|
+
.panel-title > a,
|
5477
|
+
.panel-title > small,
|
5478
|
+
.panel-title > .small,
|
5479
|
+
.panel-title > small > a,
|
5480
|
+
.panel-title > .small > a {
|
5022
5481
|
color: inherit;
|
5023
5482
|
}
|
5024
5483
|
.panel-footer {
|
@@ -5028,23 +5487,31 @@ a.list-group-item-danger.active:focus {
|
|
5028
5487
|
border-bottom-right-radius: 3px;
|
5029
5488
|
border-bottom-left-radius: 3px;
|
5030
5489
|
}
|
5031
|
-
.panel > .list-group
|
5490
|
+
.panel > .list-group,
|
5491
|
+
.panel > .panel-collapse > .list-group {
|
5032
5492
|
margin-bottom: 0;
|
5033
5493
|
}
|
5034
|
-
.panel > .list-group .list-group-item
|
5494
|
+
.panel > .list-group .list-group-item,
|
5495
|
+
.panel > .panel-collapse > .list-group .list-group-item {
|
5035
5496
|
border-width: 1px 0;
|
5036
5497
|
border-radius: 0;
|
5037
5498
|
}
|
5038
|
-
.panel > .list-group:first-child .list-group-item:first-child
|
5499
|
+
.panel > .list-group:first-child .list-group-item:first-child,
|
5500
|
+
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
|
5039
5501
|
border-top: 0;
|
5040
5502
|
border-top-left-radius: 3px;
|
5041
5503
|
border-top-right-radius: 3px;
|
5042
5504
|
}
|
5043
|
-
.panel > .list-group:last-child .list-group-item:last-child
|
5505
|
+
.panel > .list-group:last-child .list-group-item:last-child,
|
5506
|
+
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
|
5044
5507
|
border-bottom: 0;
|
5045
5508
|
border-bottom-right-radius: 3px;
|
5046
5509
|
border-bottom-left-radius: 3px;
|
5047
5510
|
}
|
5511
|
+
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
|
5512
|
+
border-top-left-radius: 0;
|
5513
|
+
border-top-right-radius: 0;
|
5514
|
+
}
|
5048
5515
|
.panel-heading + .list-group .list-group-item:first-child {
|
5049
5516
|
border-top-width: 0;
|
5050
5517
|
}
|
@@ -5056,11 +5523,24 @@ a.list-group-item-danger.active:focus {
|
|
5056
5523
|
.panel > .panel-collapse > .table {
|
5057
5524
|
margin-bottom: 0;
|
5058
5525
|
}
|
5526
|
+
.panel > .table caption,
|
5527
|
+
.panel > .table-responsive > .table caption,
|
5528
|
+
.panel > .panel-collapse > .table caption {
|
5529
|
+
padding-right: 15px;
|
5530
|
+
padding-left: 15px;
|
5531
|
+
}
|
5059
5532
|
.panel > .table:first-child,
|
5060
5533
|
.panel > .table-responsive:first-child > .table:first-child {
|
5061
5534
|
border-top-left-radius: 3px;
|
5062
5535
|
border-top-right-radius: 3px;
|
5063
5536
|
}
|
5537
|
+
.panel > .table:first-child > thead:first-child > tr:first-child,
|
5538
|
+
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
|
5539
|
+
.panel > .table:first-child > tbody:first-child > tr:first-child,
|
5540
|
+
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
|
5541
|
+
border-top-left-radius: 3px;
|
5542
|
+
border-top-right-radius: 3px;
|
5543
|
+
}
|
5064
5544
|
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
|
5065
5545
|
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
|
5066
5546
|
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
|
@@ -5086,6 +5566,13 @@ a.list-group-item-danger.active:focus {
|
|
5086
5566
|
border-bottom-right-radius: 3px;
|
5087
5567
|
border-bottom-left-radius: 3px;
|
5088
5568
|
}
|
5569
|
+
.panel > .table:last-child > tbody:last-child > tr:last-child,
|
5570
|
+
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
|
5571
|
+
.panel > .table:last-child > tfoot:last-child > tr:last-child,
|
5572
|
+
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
|
5573
|
+
border-bottom-right-radius: 3px;
|
5574
|
+
border-bottom-left-radius: 3px;
|
5575
|
+
}
|
5089
5576
|
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
|
5090
5577
|
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
|
5091
5578
|
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
|
@@ -5107,7 +5594,9 @@ a.list-group-item-danger.active:focus {
|
|
5107
5594
|
border-bottom-right-radius: 3px;
|
5108
5595
|
}
|
5109
5596
|
.panel > .panel-body + .table,
|
5110
|
-
.panel > .panel-body + .table-responsive
|
5597
|
+
.panel > .panel-body + .table-responsive,
|
5598
|
+
.panel > .table + .panel-body,
|
5599
|
+
.panel > .table-responsive + .panel-body {
|
5111
5600
|
border-top: 1px solid #ddd;
|
5112
5601
|
}
|
5113
5602
|
.panel > .table > tbody:first-child > tr:first-child th,
|
@@ -5183,7 +5672,8 @@ a.list-group-item-danger.active:focus {
|
|
5183
5672
|
.panel-group .panel-heading {
|
5184
5673
|
border-bottom: 0;
|
5185
5674
|
}
|
5186
|
-
.panel-group .panel-heading + .panel-collapse > .panel-body
|
5675
|
+
.panel-group .panel-heading + .panel-collapse > .panel-body,
|
5676
|
+
.panel-group .panel-heading + .panel-collapse > .list-group {
|
5187
5677
|
border-top: 1px solid #ddd;
|
5188
5678
|
}
|
5189
5679
|
.panel-group .panel-footer {
|
@@ -5211,22 +5701,22 @@ a.list-group-item-danger.active:focus {
|
|
5211
5701
|
border-bottom-color: #ddd;
|
5212
5702
|
}
|
5213
5703
|
.panel-primary {
|
5214
|
-
border-color: #
|
5704
|
+
border-color: #337ab7;
|
5215
5705
|
}
|
5216
5706
|
.panel-primary > .panel-heading {
|
5217
5707
|
color: #fff;
|
5218
|
-
background-color: #
|
5219
|
-
border-color: #
|
5708
|
+
background-color: #337ab7;
|
5709
|
+
border-color: #337ab7;
|
5220
5710
|
}
|
5221
5711
|
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
|
5222
|
-
border-top-color: #
|
5712
|
+
border-top-color: #337ab7;
|
5223
5713
|
}
|
5224
5714
|
.panel-primary > .panel-heading .badge {
|
5225
|
-
color: #
|
5715
|
+
color: #337ab7;
|
5226
5716
|
background-color: #fff;
|
5227
5717
|
}
|
5228
5718
|
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
|
5229
|
-
border-bottom-color: #
|
5719
|
+
border-bottom-color: #337ab7;
|
5230
5720
|
}
|
5231
5721
|
.panel-success {
|
5232
5722
|
border-color: #d6e9c6;
|
@@ -5310,7 +5800,8 @@ a.list-group-item-danger.active:focus {
|
|
5310
5800
|
.embed-responsive .embed-responsive-item,
|
5311
5801
|
.embed-responsive iframe,
|
5312
5802
|
.embed-responsive embed,
|
5313
|
-
.embed-responsive object
|
5803
|
+
.embed-responsive object,
|
5804
|
+
.embed-responsive video {
|
5314
5805
|
position: absolute;
|
5315
5806
|
top: 0;
|
5316
5807
|
bottom: 0;
|
@@ -5319,10 +5810,10 @@ a.list-group-item-danger.active:focus {
|
|
5319
5810
|
height: 100%;
|
5320
5811
|
border: 0;
|
5321
5812
|
}
|
5322
|
-
.embed-responsive
|
5813
|
+
.embed-responsive-16by9 {
|
5323
5814
|
padding-bottom: 56.25%;
|
5324
5815
|
}
|
5325
|
-
.embed-responsive
|
5816
|
+
.embed-responsive-4by3 {
|
5326
5817
|
padding-bottom: 75%;
|
5327
5818
|
}
|
5328
5819
|
.well {
|
@@ -5391,14 +5882,16 @@ button.close {
|
|
5391
5882
|
-webkit-transition: -webkit-transform .3s ease-out;
|
5392
5883
|
-o-transition: -o-transform .3s ease-out;
|
5393
5884
|
transition: transform .3s ease-out;
|
5394
|
-
-webkit-transform:
|
5395
|
-
|
5396
|
-
|
5885
|
+
-webkit-transform: translate(0, -25%);
|
5886
|
+
-ms-transform: translate(0, -25%);
|
5887
|
+
-o-transform: translate(0, -25%);
|
5888
|
+
transform: translate(0, -25%);
|
5397
5889
|
}
|
5398
5890
|
.modal.in .modal-dialog {
|
5399
|
-
-webkit-transform:
|
5400
|
-
|
5401
|
-
|
5891
|
+
-webkit-transform: translate(0, 0);
|
5892
|
+
-ms-transform: translate(0, 0);
|
5893
|
+
-o-transform: translate(0, 0);
|
5894
|
+
transform: translate(0, 0);
|
5402
5895
|
}
|
5403
5896
|
.modal-open .modal {
|
5404
5897
|
overflow-x: hidden;
|
@@ -5439,7 +5932,6 @@ button.close {
|
|
5439
5932
|
opacity: .5;
|
5440
5933
|
}
|
5441
5934
|
.modal-header {
|
5442
|
-
min-height: 16.42857143px;
|
5443
5935
|
padding: 15px;
|
5444
5936
|
border-bottom: 1px solid #e5e5e5;
|
5445
5937
|
}
|
@@ -5498,11 +5990,25 @@ button.close {
|
|
5498
5990
|
position: absolute;
|
5499
5991
|
z-index: 1070;
|
5500
5992
|
display: block;
|
5993
|
+
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
5501
5994
|
font-size: 12px;
|
5502
|
-
|
5503
|
-
|
5995
|
+
font-style: normal;
|
5996
|
+
font-weight: normal;
|
5997
|
+
line-height: 1.42857143;
|
5998
|
+
text-align: left;
|
5999
|
+
text-align: start;
|
6000
|
+
text-decoration: none;
|
6001
|
+
text-shadow: none;
|
6002
|
+
text-transform: none;
|
6003
|
+
letter-spacing: normal;
|
6004
|
+
word-break: normal;
|
6005
|
+
word-spacing: normal;
|
6006
|
+
word-wrap: normal;
|
6007
|
+
white-space: normal;
|
5504
6008
|
filter: alpha(opacity=0);
|
5505
6009
|
opacity: 0;
|
6010
|
+
|
6011
|
+
line-break: auto;
|
5506
6012
|
}
|
5507
6013
|
.tooltip.in {
|
5508
6014
|
filter: alpha(opacity=90);
|
@@ -5529,7 +6035,6 @@ button.close {
|
|
5529
6035
|
padding: 3px 8px;
|
5530
6036
|
color: #fff;
|
5531
6037
|
text-align: center;
|
5532
|
-
text-decoration: none;
|
5533
6038
|
background-color: #000;
|
5534
6039
|
border-radius: 4px;
|
5535
6040
|
}
|
@@ -5548,14 +6053,16 @@ button.close {
|
|
5548
6053
|
border-top-color: #000;
|
5549
6054
|
}
|
5550
6055
|
.tooltip.top-left .tooltip-arrow {
|
6056
|
+
right: 5px;
|
5551
6057
|
bottom: 0;
|
5552
|
-
|
6058
|
+
margin-bottom: -5px;
|
5553
6059
|
border-width: 5px 5px 0;
|
5554
6060
|
border-top-color: #000;
|
5555
6061
|
}
|
5556
6062
|
.tooltip.top-right .tooltip-arrow {
|
5557
|
-
right: 5px;
|
5558
6063
|
bottom: 0;
|
6064
|
+
left: 5px;
|
6065
|
+
margin-bottom: -5px;
|
5559
6066
|
border-width: 5px 5px 0;
|
5560
6067
|
border-top-color: #000;
|
5561
6068
|
}
|
@@ -5582,13 +6089,15 @@ button.close {
|
|
5582
6089
|
}
|
5583
6090
|
.tooltip.bottom-left .tooltip-arrow {
|
5584
6091
|
top: 0;
|
5585
|
-
|
6092
|
+
right: 5px;
|
6093
|
+
margin-top: -5px;
|
5586
6094
|
border-width: 0 5px 5px;
|
5587
6095
|
border-bottom-color: #000;
|
5588
6096
|
}
|
5589
6097
|
.tooltip.bottom-right .tooltip-arrow {
|
5590
6098
|
top: 0;
|
5591
|
-
|
6099
|
+
left: 5px;
|
6100
|
+
margin-top: -5px;
|
5592
6101
|
border-width: 0 5px 5px;
|
5593
6102
|
border-bottom-color: #000;
|
5594
6103
|
}
|
@@ -5600,7 +6109,20 @@ button.close {
|
|
5600
6109
|
display: none;
|
5601
6110
|
max-width: 276px;
|
5602
6111
|
padding: 1px;
|
6112
|
+
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
6113
|
+
font-size: 14px;
|
6114
|
+
font-style: normal;
|
6115
|
+
font-weight: normal;
|
6116
|
+
line-height: 1.42857143;
|
5603
6117
|
text-align: left;
|
6118
|
+
text-align: start;
|
6119
|
+
text-decoration: none;
|
6120
|
+
text-shadow: none;
|
6121
|
+
text-transform: none;
|
6122
|
+
letter-spacing: normal;
|
6123
|
+
word-break: normal;
|
6124
|
+
word-spacing: normal;
|
6125
|
+
word-wrap: normal;
|
5604
6126
|
white-space: normal;
|
5605
6127
|
background-color: #fff;
|
5606
6128
|
-webkit-background-clip: padding-box;
|
@@ -5610,6 +6132,8 @@ button.close {
|
|
5610
6132
|
border-radius: 6px;
|
5611
6133
|
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
|
5612
6134
|
box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
|
6135
|
+
|
6136
|
+
line-break: auto;
|
5613
6137
|
}
|
5614
6138
|
.popover.top {
|
5615
6139
|
margin-top: -10px;
|
@@ -5627,8 +6151,6 @@ button.close {
|
|
5627
6151
|
padding: 8px 14px;
|
5628
6152
|
margin: 0;
|
5629
6153
|
font-size: 14px;
|
5630
|
-
font-weight: normal;
|
5631
|
-
line-height: 18px;
|
5632
6154
|
background-color: #f7f7f7;
|
5633
6155
|
border-bottom: 1px solid #ebebeb;
|
5634
6156
|
border-radius: 5px 5px 0 0;
|
@@ -5731,6 +6253,37 @@ button.close {
|
|
5731
6253
|
.carousel-inner > .item > a > img {
|
5732
6254
|
line-height: 1;
|
5733
6255
|
}
|
6256
|
+
@media all and (transform-3d), (-webkit-transform-3d) {
|
6257
|
+
.carousel-inner > .item {
|
6258
|
+
-webkit-transition: -webkit-transform .6s ease-in-out;
|
6259
|
+
-o-transition: -o-transform .6s ease-in-out;
|
6260
|
+
transition: transform .6s ease-in-out;
|
6261
|
+
|
6262
|
+
-webkit-backface-visibility: hidden;
|
6263
|
+
backface-visibility: hidden;
|
6264
|
+
-webkit-perspective: 1000px;
|
6265
|
+
perspective: 1000px;
|
6266
|
+
}
|
6267
|
+
.carousel-inner > .item.next,
|
6268
|
+
.carousel-inner > .item.active.right {
|
6269
|
+
left: 0;
|
6270
|
+
-webkit-transform: translate3d(100%, 0, 0);
|
6271
|
+
transform: translate3d(100%, 0, 0);
|
6272
|
+
}
|
6273
|
+
.carousel-inner > .item.prev,
|
6274
|
+
.carousel-inner > .item.active.left {
|
6275
|
+
left: 0;
|
6276
|
+
-webkit-transform: translate3d(-100%, 0, 0);
|
6277
|
+
transform: translate3d(-100%, 0, 0);
|
6278
|
+
}
|
6279
|
+
.carousel-inner > .item.next.left,
|
6280
|
+
.carousel-inner > .item.prev.right,
|
6281
|
+
.carousel-inner > .item.active {
|
6282
|
+
left: 0;
|
6283
|
+
-webkit-transform: translate3d(0, 0, 0);
|
6284
|
+
transform: translate3d(0, 0, 0);
|
6285
|
+
}
|
6286
|
+
}
|
5734
6287
|
.carousel-inner > .active,
|
5735
6288
|
.carousel-inner > .next,
|
5736
6289
|
.carousel-inner > .prev {
|
@@ -5771,6 +6324,7 @@ button.close {
|
|
5771
6324
|
color: #fff;
|
5772
6325
|
text-align: center;
|
5773
6326
|
text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
|
6327
|
+
background-color: rgba(0, 0, 0, 0);
|
5774
6328
|
filter: alpha(opacity=50);
|
5775
6329
|
opacity: .5;
|
5776
6330
|
}
|
@@ -5808,6 +6362,7 @@ button.close {
|
|
5808
6362
|
top: 50%;
|
5809
6363
|
z-index: 5;
|
5810
6364
|
display: inline-block;
|
6365
|
+
margin-top: -10px;
|
5811
6366
|
}
|
5812
6367
|
.carousel-control .icon-prev,
|
5813
6368
|
.carousel-control .glyphicon-chevron-left {
|
@@ -5823,8 +6378,8 @@ button.close {
|
|
5823
6378
|
.carousel-control .icon-next {
|
5824
6379
|
width: 20px;
|
5825
6380
|
height: 20px;
|
5826
|
-
margin-top: -10px;
|
5827
6381
|
font-family: serif;
|
6382
|
+
line-height: 1;
|
5828
6383
|
}
|
5829
6384
|
.carousel-control .icon-prev:before {
|
5830
6385
|
content: '\2039';
|
@@ -5883,16 +6438,16 @@ button.close {
|
|
5883
6438
|
.carousel-control .icon-next {
|
5884
6439
|
width: 30px;
|
5885
6440
|
height: 30px;
|
5886
|
-
margin-top: -
|
6441
|
+
margin-top: -10px;
|
5887
6442
|
font-size: 30px;
|
5888
6443
|
}
|
5889
6444
|
.carousel-control .glyphicon-chevron-left,
|
5890
6445
|
.carousel-control .icon-prev {
|
5891
|
-
margin-left: -
|
6446
|
+
margin-left: -10px;
|
5892
6447
|
}
|
5893
6448
|
.carousel-control .glyphicon-chevron-right,
|
5894
6449
|
.carousel-control .icon-next {
|
5895
|
-
margin-right: -
|
6450
|
+
margin-right: -10px;
|
5896
6451
|
}
|
5897
6452
|
.carousel-caption {
|
5898
6453
|
right: 20%;
|
@@ -5931,6 +6486,8 @@ button.close {
|
|
5931
6486
|
.pager:after,
|
5932
6487
|
.panel-body:before,
|
5933
6488
|
.panel-body:after,
|
6489
|
+
.modal-header:before,
|
6490
|
+
.modal-header:after,
|
5934
6491
|
.modal-footer:before,
|
5935
6492
|
.modal-footer:after {
|
5936
6493
|
display: table;
|
@@ -5950,6 +6507,7 @@ button.close {
|
|
5950
6507
|
.navbar-collapse:after,
|
5951
6508
|
.pager:after,
|
5952
6509
|
.panel-body:after,
|
6510
|
+
.modal-header:after,
|
5953
6511
|
.modal-footer:after {
|
5954
6512
|
clear: both;
|
5955
6513
|
}
|
@@ -5982,13 +6540,9 @@ button.close {
|
|
5982
6540
|
}
|
5983
6541
|
.hidden {
|
5984
6542
|
display: none !important;
|
5985
|
-
visibility: hidden !important;
|
5986
6543
|
}
|
5987
6544
|
.affix {
|
5988
6545
|
position: fixed;
|
5989
|
-
-webkit-transform: translate3d(0, 0, 0);
|
5990
|
-
-o-transform: translate3d(0, 0, 0);
|
5991
|
-
transform: translate3d(0, 0, 0);
|
5992
6546
|
}
|
5993
6547
|
@-ms-viewport {
|
5994
6548
|
width: device-width;
|
@@ -6018,7 +6572,7 @@ button.close {
|
|
6018
6572
|
display: block !important;
|
6019
6573
|
}
|
6020
6574
|
table.visible-xs {
|
6021
|
-
display: table;
|
6575
|
+
display: table !important;
|
6022
6576
|
}
|
6023
6577
|
tr.visible-xs {
|
6024
6578
|
display: table-row !important;
|
@@ -6048,7 +6602,7 @@ button.close {
|
|
6048
6602
|
display: block !important;
|
6049
6603
|
}
|
6050
6604
|
table.visible-sm {
|
6051
|
-
display: table;
|
6605
|
+
display: table !important;
|
6052
6606
|
}
|
6053
6607
|
tr.visible-sm {
|
6054
6608
|
display: table-row !important;
|
@@ -6078,7 +6632,7 @@ button.close {
|
|
6078
6632
|
display: block !important;
|
6079
6633
|
}
|
6080
6634
|
table.visible-md {
|
6081
|
-
display: table;
|
6635
|
+
display: table !important;
|
6082
6636
|
}
|
6083
6637
|
tr.visible-md {
|
6084
6638
|
display: table-row !important;
|
@@ -6108,7 +6662,7 @@ button.close {
|
|
6108
6662
|
display: block !important;
|
6109
6663
|
}
|
6110
6664
|
table.visible-lg {
|
6111
|
-
display: table;
|
6665
|
+
display: table !important;
|
6112
6666
|
}
|
6113
6667
|
tr.visible-lg {
|
6114
6668
|
display: table-row !important;
|
@@ -6161,7 +6715,7 @@ button.close {
|
|
6161
6715
|
display: block !important;
|
6162
6716
|
}
|
6163
6717
|
table.visible-print {
|
6164
|
-
display: table;
|
6718
|
+
display: table !important;
|
6165
6719
|
}
|
6166
6720
|
tr.visible-print {
|
6167
6721
|
display: table-row !important;
|