Version Description
- Now it is possible to set domain manually.
Download this release
Release Info
Developer | audriusd |
Plugin | Google Universal Analytics |
Version | 2.3.1 |
Comparing to | |
See all releases |
Code changes from version 2.2 to 2.3.1
- assets/gua-main.css +37 -6
- assets/gua-main.js +18 -370
- bootstrap/css/bootstrap-theme.css +0 -347
- bootstrap/css/bootstrap-theme.css.map +0 -1
- bootstrap/css/bootstrap-theme.min.css +0 -7
- bootstrap/css/bootstrap.css +0 -5785
- bootstrap/css/bootstrap.css.map +0 -1
- classic/classic-analytics.php +60 -62
- classic/custom-analytics.php +60 -62
- googleanalytics.php +114 -196
- options.php +26 -7
- readme.txt +20 -4
- tracking-code.php +5 -13
- woo_code.php +44 -0
assets/gua-main.css
CHANGED
@@ -1,7 +1,38 @@
|
|
1 |
-
@charset "utf-8";
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
}
|
1 |
+
@charset "utf-8";
|
2 |
+
|
3 |
+
/* CSS Document */
|
4 |
+
|
5 |
+
|
6 |
+
|
7 |
+
.form-horizontal{
|
8 |
+
font-size:14px;
|
9 |
+
}
|
10 |
+
.form-horizontal .alert{
|
11 |
+
margin-left:10px;
|
12 |
+
padding:8px;
|
13 |
+
|
14 |
+
}
|
15 |
+
.form-horizontal input[type="text"]{
|
16 |
+
border: solid 1px #ddd;
|
17 |
+
box-shadow: inset 0 1px 2px rgba(0,0,0,.07);
|
18 |
+
background-color: #fff;
|
19 |
+
color: #333;
|
20 |
+
height: 34px;
|
21 |
+
padding: 6px 12px;
|
22 |
+
font-size: 14px;
|
23 |
+
line-height: 1.42857143;
|
24 |
+
width:350px;
|
25 |
+
border-radius:5px;
|
26 |
+
-webkit-border-radius:5px;
|
27 |
+
-moz-border-radius:5px;
|
28 |
+
}
|
29 |
+
.form-group{
|
30 |
+
margin:15px 0;
|
31 |
+
}
|
32 |
+
.error{
|
33 |
+
color:#F00;
|
34 |
+
display:block;
|
35 |
+
}
|
36 |
+
.hide{
|
37 |
+
display:none;
|
38 |
}
|
assets/gua-main.js
CHANGED
@@ -1,392 +1,40 @@
|
|
1 |
jQuery(document).ready(function(e) {
|
2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
|
4 |
|
5 |
jQuery('#classic_plugin_switch').bootstrapSwitch('size', 'small');
|
6 |
-
|
7 |
jQuery('#classic_plugin_switch').bootstrapSwitch('onColor', 'success');
|
8 |
-
|
9 |
jQuery('#classic_plugin_switch').bootstrapSwitch('offColor', 'danger');
|
10 |
|
11 |
|
12 |
|
13 |
jQuery('#plugin_switch').bootstrapSwitch('size', 'small');
|
14 |
-
|
15 |
jQuery('#plugin_switch').bootstrapSwitch('onColor', 'success');
|
16 |
-
|
17 |
jQuery('#plugin_switch').bootstrapSwitch('offColor', 'danger');
|
18 |
|
19 |
|
20 |
|
21 |
jQuery('#custom_plugin_switch').bootstrapSwitch('size', 'small');
|
22 |
-
|
23 |
jQuery('#custom_plugin_switch').bootstrapSwitch('onColor', 'success');
|
24 |
-
|
25 |
jQuery('#custom_plugin_switch').bootstrapSwitch('offColor', 'danger');
|
26 |
|
27 |
-
|
28 |
-
|
29 |
-
jQuery(function() {
|
30 |
-
|
31 |
-
jQuery('#save-gua-settings').click(function(e) {
|
32 |
-
|
33 |
-
var property_id = jQuery('#web_property_id').val();
|
34 |
-
|
35 |
-
var tracking_off_for_this_role = jQuery('#tracking_off_for_this_role').val();
|
36 |
-
|
37 |
-
var ajax_url = jQuery('#ajax_url').val();
|
38 |
-
|
39 |
-
if(jQuery('#in_footer').is(':checked')){
|
40 |
-
|
41 |
-
var in_footer = 'on';
|
42 |
-
|
43 |
-
}else{
|
44 |
-
|
45 |
-
var in_footer = 'off';
|
46 |
-
|
47 |
-
}
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
if(jQuery('#plugin_switch').is(':checked')){
|
52 |
-
|
53 |
-
var plugin_switch = 'on';
|
54 |
-
|
55 |
-
}else{
|
56 |
-
|
57 |
-
var plugin_switch = 'off';
|
58 |
-
|
59 |
-
}
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
if(jQuery('#track_links').is(':checked')){
|
64 |
-
|
65 |
-
var track_links = 'on';
|
66 |
-
|
67 |
-
}else{
|
68 |
-
|
69 |
-
var track_links = 'off';
|
70 |
-
|
71 |
-
}
|
72 |
-
|
73 |
-
if(jQuery('#enable_display').is(':checked')){
|
74 |
-
|
75 |
-
var enable_display = 'on';
|
76 |
-
|
77 |
-
}else{
|
78 |
-
|
79 |
-
var enable_display = 'off';
|
80 |
-
|
81 |
-
}
|
82 |
-
|
83 |
-
if(jQuery('#anonymize_ip').is(':checked')){
|
84 |
-
|
85 |
-
var anonymize_ip = 'on';
|
86 |
-
|
87 |
-
}else{
|
88 |
-
|
89 |
-
var anonymize_ip = 'off';
|
90 |
-
|
91 |
-
}
|
92 |
-
|
93 |
-
if(jQuery('#tracking_off_for_role').is(':checked')){
|
94 |
-
|
95 |
-
var tracking_off_for_role = 'on';
|
96 |
-
|
97 |
-
}else{
|
98 |
-
|
99 |
-
var tracking_off_for_role = 'off';
|
100 |
-
|
101 |
-
}
|
102 |
-
|
103 |
-
if(property_id.indexOf('UA-') == -1){
|
104 |
-
|
105 |
-
jQuery('#web_property_id').parent('.col-sm-9').addClass('has-error');
|
106 |
-
|
107 |
-
jQuery('.error').css('color', '#F00').removeClass('hide');
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
}else{
|
112 |
-
|
113 |
-
//alert('ok proceed on ajax');
|
114 |
-
|
115 |
-
jQuery.ajax({
|
116 |
-
|
117 |
-
url: ajax_url,
|
118 |
-
|
119 |
-
data: {
|
120 |
-
|
121 |
-
'action':'save_google_universal_analytics_settings',
|
122 |
-
|
123 |
-
'plugin_switch' : plugin_switch,
|
124 |
-
|
125 |
-
'in_footer' : in_footer,
|
126 |
-
|
127 |
-
'property_id' : property_id,
|
128 |
-
|
129 |
-
'track_links' : track_links,
|
130 |
-
|
131 |
-
'enable_display' : enable_display,
|
132 |
-
|
133 |
-
'anonymize_ip' : anonymize_ip,
|
134 |
-
|
135 |
-
'tracking_off_for_role' : tracking_off_for_role,
|
136 |
-
|
137 |
-
'tracking_off_for_this_role' : tracking_off_for_this_role
|
138 |
-
|
139 |
-
},
|
140 |
-
|
141 |
-
success:function(data) {
|
142 |
-
|
143 |
-
jQuery('#web_property_id').parent('.has-error').removeClass('has-error');
|
144 |
-
|
145 |
-
jQuery('.error').addClass('hide');
|
146 |
-
|
147 |
-
jQuery('.form-horizontal .alert').fadeIn().removeClass('hide');
|
148 |
-
|
149 |
-
jQuery('.form-horizontal .alert').delay(3000).fadeOut(500);
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
},
|
154 |
-
|
155 |
-
error: function(errorThrown){
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
}
|
160 |
-
|
161 |
-
});
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
}
|
168 |
-
|
169 |
-
});
|
170 |
-
|
171 |
-
});
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
jQuery(function() {
|
178 |
-
|
179 |
-
jQuery('#save-custom-settings').click(function(e) {
|
180 |
-
|
181 |
-
var custom_web_property_id = jQuery('#custom_web_property_id').val();
|
182 |
-
|
183 |
-
var custom_tracking_off_for_this_role = jQuery('#custom_tracking_off_for_this_role').val();
|
184 |
-
|
185 |
-
var ajax_url = jQuery('#ajax_url').val();
|
186 |
-
|
187 |
-
if(jQuery('#custom_in_footer').is(':checked')){
|
188 |
-
|
189 |
-
var custom_in_footer = 'on';
|
190 |
-
|
191 |
-
}else{
|
192 |
-
|
193 |
-
var custom_in_footer = 'off';
|
194 |
-
|
195 |
-
}
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
if(jQuery('#custom_plugin_switch').is(':checked')){
|
200 |
-
|
201 |
-
var custom_plugin_switch = 'on';
|
202 |
-
|
203 |
-
}else{
|
204 |
-
|
205 |
-
var custom_plugin_switch = 'off';
|
206 |
-
|
207 |
-
}
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
if(jQuery('#custom_tracking_off_for_role').is(':checked')){
|
212 |
-
|
213 |
-
var custom_tracking_off_for_role = 'on';
|
214 |
-
|
215 |
-
}else{
|
216 |
-
|
217 |
-
var custom_tracking_off_for_role = 'off';
|
218 |
-
|
219 |
-
}
|
220 |
-
|
221 |
-
//alert('ok proceed on ajax');
|
222 |
-
|
223 |
-
jQuery.ajax({
|
224 |
-
|
225 |
-
url: ajax_url,
|
226 |
-
|
227 |
-
data: {
|
228 |
-
|
229 |
-
'action':'save_google_custom_analytics_settings',
|
230 |
-
|
231 |
-
'custom_in_footer' : custom_in_footer,
|
232 |
-
|
233 |
-
'custom_plugin_switch' : custom_plugin_switch,
|
234 |
-
|
235 |
-
'custom_web_property_id' : custom_web_property_id,
|
236 |
-
|
237 |
-
'custom_tracking_off_for_role' : custom_tracking_off_for_role,
|
238 |
-
|
239 |
-
'custom_tracking_off_for_this_role' : custom_tracking_off_for_this_role
|
240 |
-
|
241 |
-
},
|
242 |
-
|
243 |
-
success:function(data) {
|
244 |
-
|
245 |
-
jQuery('.form-horizontal .alert').fadeIn().removeClass('hide');
|
246 |
-
|
247 |
-
jQuery('.form-horizontal .alert').delay(3000).fadeOut(500);
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
},
|
252 |
-
|
253 |
-
error: function(errorThrown){
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
}
|
258 |
-
|
259 |
-
});
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
});
|
268 |
-
|
269 |
-
});
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
jQuery(function(){
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
//classic settings event
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
jQuery('#save-classic-settings').click(function(e) {
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
var classic_property_id = jQuery('#classic_web_property_id').val();
|
286 |
-
|
287 |
-
var classic_tracking_off_for_this_role = jQuery('#classic_tracking_off_for_this_role').val();
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
var ajax_url = jQuery('#ajax_url').val();
|
292 |
-
|
293 |
-
if(jQuery('#classic_in_footer').is(':checked')){
|
294 |
-
|
295 |
-
var classic_in_footer = 'on';
|
296 |
-
|
297 |
-
}else{
|
298 |
-
|
299 |
-
var classic_in_footer = 'off';
|
300 |
-
|
301 |
-
}
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
if(jQuery('#classic_plugin_switch').is(':checked')){
|
306 |
-
|
307 |
-
var classic_plugin_switch = 'on';
|
308 |
-
|
309 |
-
}else{
|
310 |
-
|
311 |
-
var classic_plugin_switch = 'off';
|
312 |
-
|
313 |
-
}
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
if(jQuery('#classic_tracking_off_for_role').is(':checked')){
|
318 |
-
|
319 |
-
var classic_tracking_off_for_role = 'on';
|
320 |
-
|
321 |
-
}else{
|
322 |
-
|
323 |
-
var classic_tracking_off_for_role = 'off';
|
324 |
-
|
325 |
-
}
|
326 |
-
|
327 |
-
if(classic_property_id.indexOf('UA-') == -1){
|
328 |
-
|
329 |
-
jQuery('#classic_web_property_id').parent('.col-sm-9').addClass('has-error');
|
330 |
-
|
331 |
-
jQuery('.error').css('color', '#F00').removeClass('hide');
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
}else{
|
336 |
-
|
337 |
-
//alert('ok proceed on ajax');
|
338 |
-
|
339 |
-
jQuery.ajax({
|
340 |
-
|
341 |
-
url: ajax_url,
|
342 |
-
|
343 |
-
data: {
|
344 |
-
|
345 |
-
'action':'save_google_classic_analytics_settings',
|
346 |
-
|
347 |
-
'classic_plugin_switch' : classic_plugin_switch,
|
348 |
-
|
349 |
-
'classic_in_footer' : classic_in_footer,
|
350 |
-
|
351 |
-
'classic_property_id' : classic_property_id,
|
352 |
-
|
353 |
-
'classic_tracking_off_for_role' : classic_tracking_off_for_role,
|
354 |
-
|
355 |
-
'classic_tracking_off_for_this_role' : classic_tracking_off_for_this_role
|
356 |
-
|
357 |
-
},
|
358 |
-
|
359 |
-
success:function(data) {
|
360 |
-
|
361 |
-
jQuery('#classic_web_property_id').parent('.has-error').removeClass('has-error');
|
362 |
-
|
363 |
-
jQuery('.error').addClass('hide');
|
364 |
-
|
365 |
-
jQuery('.form-horizontal .alert').fadeIn().removeClass('hide');
|
366 |
-
|
367 |
-
jQuery('.form-horizontal .alert').delay(3000).fadeOut(500);
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
},
|
372 |
-
|
373 |
-
error: function(errorThrown){
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
}
|
378 |
-
|
379 |
-
});
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
}
|
386 |
-
|
387 |
-
});
|
388 |
-
|
389 |
-
});
|
390 |
|
391 |
|
392 |
|
1 |
jQuery(document).ready(function(e) {
|
2 |
+
jQuery( "#google-universal-options" ).submit(function( event ) {
|
3 |
+
|
4 |
+
var property_id = jQuery('#web_property_id').val();
|
5 |
+
if(property_id.length > 0){
|
6 |
+
if(property_id.indexOf('UA')==-1){
|
7 |
+
jQuery('#code-error').removeClass('hide');
|
8 |
+
event.preventDefault();
|
9 |
+
}
|
10 |
+
}else{
|
11 |
+
jQuery('#code-error').removeClass('hide');
|
12 |
+
//alert('dont proceed');
|
13 |
+
event.preventDefault(); //
|
14 |
+
}
|
15 |
+
|
16 |
+
|
17 |
+
|
18 |
+
|
19 |
+
});
|
20 |
|
21 |
|
22 |
jQuery('#classic_plugin_switch').bootstrapSwitch('size', 'small');
|
|
|
23 |
jQuery('#classic_plugin_switch').bootstrapSwitch('onColor', 'success');
|
|
|
24 |
jQuery('#classic_plugin_switch').bootstrapSwitch('offColor', 'danger');
|
25 |
|
26 |
|
27 |
|
28 |
jQuery('#plugin_switch').bootstrapSwitch('size', 'small');
|
|
|
29 |
jQuery('#plugin_switch').bootstrapSwitch('onColor', 'success');
|
|
|
30 |
jQuery('#plugin_switch').bootstrapSwitch('offColor', 'danger');
|
31 |
|
32 |
|
33 |
|
34 |
jQuery('#custom_plugin_switch').bootstrapSwitch('size', 'small');
|
|
|
35 |
jQuery('#custom_plugin_switch').bootstrapSwitch('onColor', 'success');
|
|
|
36 |
jQuery('#custom_plugin_switch').bootstrapSwitch('offColor', 'danger');
|
37 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
|
39 |
|
40 |
|
bootstrap/css/bootstrap-theme.css
DELETED
@@ -1,347 +0,0 @@
|
|
1 |
-
/*!
|
2 |
-
* Bootstrap v3.1.1 (http://getbootstrap.com)
|
3 |
-
* Copyright 2011-2014 Twitter, Inc.
|
4 |
-
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
5 |
-
*/
|
6 |
-
|
7 |
-
.btn-default,
|
8 |
-
.btn-primary,
|
9 |
-
.btn-success,
|
10 |
-
.btn-info,
|
11 |
-
.btn-warning,
|
12 |
-
.btn-danger {
|
13 |
-
text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
|
14 |
-
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
|
15 |
-
box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
|
16 |
-
}
|
17 |
-
.btn-default:active,
|
18 |
-
.btn-primary:active,
|
19 |
-
.btn-success:active,
|
20 |
-
.btn-info:active,
|
21 |
-
.btn-warning:active,
|
22 |
-
.btn-danger:active,
|
23 |
-
.btn-default.active,
|
24 |
-
.btn-primary.active,
|
25 |
-
.btn-success.active,
|
26 |
-
.btn-info.active,
|
27 |
-
.btn-warning.active,
|
28 |
-
.btn-danger.active {
|
29 |
-
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
|
30 |
-
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
|
31 |
-
}
|
32 |
-
.btn:active,
|
33 |
-
.btn.active {
|
34 |
-
background-image: none;
|
35 |
-
}
|
36 |
-
.btn-default {
|
37 |
-
text-shadow: 0 1px 0 #fff;
|
38 |
-
background-image: -webkit-linear-gradient(top, #fff 0%, #e0e0e0 100%);
|
39 |
-
background-image: linear-gradient(to bottom, #fff 0%, #e0e0e0 100%);
|
40 |
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);
|
41 |
-
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
42 |
-
background-repeat: repeat-x;
|
43 |
-
border-color: #dbdbdb;
|
44 |
-
border-color: #ccc;
|
45 |
-
}
|
46 |
-
.btn-default:hover,
|
47 |
-
.btn-default:focus {
|
48 |
-
background-color: #e0e0e0;
|
49 |
-
background-position: 0 -15px;
|
50 |
-
}
|
51 |
-
.btn-default:active,
|
52 |
-
.btn-default.active {
|
53 |
-
background-color: #e0e0e0;
|
54 |
-
border-color: #dbdbdb;
|
55 |
-
}
|
56 |
-
.btn-primary {
|
57 |
-
background-image: -webkit-linear-gradient(top, #428bca 0%, #2d6ca2 100%);
|
58 |
-
background-image: linear-gradient(to bottom, #428bca 0%, #2d6ca2 100%);
|
59 |
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff2d6ca2', GradientType=0);
|
60 |
-
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
61 |
-
background-repeat: repeat-x;
|
62 |
-
border-color: #2b669a;
|
63 |
-
}
|
64 |
-
.btn-primary:hover,
|
65 |
-
.btn-primary:focus {
|
66 |
-
background-color: #2d6ca2;
|
67 |
-
background-position: 0 -15px;
|
68 |
-
}
|
69 |
-
.btn-primary:active,
|
70 |
-
.btn-primary.active {
|
71 |
-
background-color: #2d6ca2;
|
72 |
-
border-color: #2b669a;
|
73 |
-
}
|
74 |
-
.btn-success {
|
75 |
-
background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%);
|
76 |
-
background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%);
|
77 |
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);
|
78 |
-
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
79 |
-
background-repeat: repeat-x;
|
80 |
-
border-color: #3e8f3e;
|
81 |
-
}
|
82 |
-
.btn-success:hover,
|
83 |
-
.btn-success:focus {
|
84 |
-
background-color: #419641;
|
85 |
-
background-position: 0 -15px;
|
86 |
-
}
|
87 |
-
.btn-success:active,
|
88 |
-
.btn-success.active {
|
89 |
-
background-color: #419641;
|
90 |
-
border-color: #3e8f3e;
|
91 |
-
}
|
92 |
-
.btn-info {
|
93 |
-
background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
|
94 |
-
background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%);
|
95 |
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);
|
96 |
-
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
97 |
-
background-repeat: repeat-x;
|
98 |
-
border-color: #28a4c9;
|
99 |
-
}
|
100 |
-
.btn-info:hover,
|
101 |
-
.btn-info:focus {
|
102 |
-
background-color: #2aabd2;
|
103 |
-
background-position: 0 -15px;
|
104 |
-
}
|
105 |
-
.btn-info:active,
|
106 |
-
.btn-info.active {
|
107 |
-
background-color: #2aabd2;
|
108 |
-
border-color: #28a4c9;
|
109 |
-
}
|
110 |
-
.btn-warning {
|
111 |
-
background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
|
112 |
-
background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%);
|
113 |
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);
|
114 |
-
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
115 |
-
background-repeat: repeat-x;
|
116 |
-
border-color: #e38d13;
|
117 |
-
}
|
118 |
-
.btn-warning:hover,
|
119 |
-
.btn-warning:focus {
|
120 |
-
background-color: #eb9316;
|
121 |
-
background-position: 0 -15px;
|
122 |
-
}
|
123 |
-
.btn-warning:active,
|
124 |
-
.btn-warning.active {
|
125 |
-
background-color: #eb9316;
|
126 |
-
border-color: #e38d13;
|
127 |
-
}
|
128 |
-
.btn-danger {
|
129 |
-
background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
|
130 |
-
background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%);
|
131 |
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);
|
132 |
-
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
133 |
-
background-repeat: repeat-x;
|
134 |
-
border-color: #b92c28;
|
135 |
-
}
|
136 |
-
.btn-danger:hover,
|
137 |
-
.btn-danger:focus {
|
138 |
-
background-color: #c12e2a;
|
139 |
-
background-position: 0 -15px;
|
140 |
-
}
|
141 |
-
.btn-danger:active,
|
142 |
-
.btn-danger.active {
|
143 |
-
background-color: #c12e2a;
|
144 |
-
border-color: #b92c28;
|
145 |
-
}
|
146 |
-
.thumbnail,
|
147 |
-
.img-thumbnail {
|
148 |
-
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
|
149 |
-
box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
|
150 |
-
}
|
151 |
-
.dropdown-menu > li > a:hover,
|
152 |
-
.dropdown-menu > li > a:focus {
|
153 |
-
background-color: #e8e8e8;
|
154 |
-
background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
|
155 |
-
background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
|
156 |
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
|
157 |
-
background-repeat: repeat-x;
|
158 |
-
}
|
159 |
-
.dropdown-menu > .active > a,
|
160 |
-
.dropdown-menu > .active > a:hover,
|
161 |
-
.dropdown-menu > .active > a:focus {
|
162 |
-
background-color: #357ebd;
|
163 |
-
background-image: -webkit-linear-gradient(top, #428bca 0%, #357ebd 100%);
|
164 |
-
background-image: linear-gradient(to bottom, #428bca 0%, #357ebd 100%);
|
165 |
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0);
|
166 |
-
background-repeat: repeat-x;
|
167 |
-
}
|
168 |
-
.navbar-default {
|
169 |
-
background-image: -webkit-linear-gradient(top, #fff 0%, #f8f8f8 100%);
|
170 |
-
background-image: linear-gradient(to bottom, #fff 0%, #f8f8f8 100%);
|
171 |
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);
|
172 |
-
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
173 |
-
background-repeat: repeat-x;
|
174 |
-
border-radius: 4px;
|
175 |
-
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075);
|
176 |
-
box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075);
|
177 |
-
}
|
178 |
-
.navbar-default .navbar-nav > .active > a {
|
179 |
-
background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f3f3f3 100%);
|
180 |
-
background-image: linear-gradient(to bottom, #ebebeb 0%, #f3f3f3 100%);
|
181 |
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff3f3f3', GradientType=0);
|
182 |
-
background-repeat: repeat-x;
|
183 |
-
-webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075);
|
184 |
-
box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075);
|
185 |
-
}
|
186 |
-
.navbar-brand,
|
187 |
-
.navbar-nav > li > a {
|
188 |
-
text-shadow: 0 1px 0 rgba(255, 255, 255, .25);
|
189 |
-
}
|
190 |
-
.navbar-inverse {
|
191 |
-
background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222 100%);
|
192 |
-
background-image: linear-gradient(to bottom, #3c3c3c 0%, #222 100%);
|
193 |
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);
|
194 |
-
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
195 |
-
background-repeat: repeat-x;
|
196 |
-
}
|
197 |
-
.navbar-inverse .navbar-nav > .active > a {
|
198 |
-
background-image: -webkit-linear-gradient(top, #222 0%, #282828 100%);
|
199 |
-
background-image: linear-gradient(to bottom, #222 0%, #282828 100%);
|
200 |
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff282828', GradientType=0);
|
201 |
-
background-repeat: repeat-x;
|
202 |
-
-webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25);
|
203 |
-
box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25);
|
204 |
-
}
|
205 |
-
.navbar-inverse .navbar-brand,
|
206 |
-
.navbar-inverse .navbar-nav > li > a {
|
207 |
-
text-shadow: 0 -1px 0 rgba(0, 0, 0, .25);
|
208 |
-
}
|
209 |
-
.navbar-static-top,
|
210 |
-
.navbar-fixed-top,
|
211 |
-
.navbar-fixed-bottom {
|
212 |
-
border-radius: 0;
|
213 |
-
}
|
214 |
-
.alert {
|
215 |
-
text-shadow: 0 1px 0 rgba(255, 255, 255, .2);
|
216 |
-
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05);
|
217 |
-
box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05);
|
218 |
-
}
|
219 |
-
.alert-success {
|
220 |
-
background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
|
221 |
-
background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);
|
222 |
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);
|
223 |
-
background-repeat: repeat-x;
|
224 |
-
border-color: #b2dba1;
|
225 |
-
}
|
226 |
-
.alert-info {
|
227 |
-
background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
|
228 |
-
background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);
|
229 |
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);
|
230 |
-
background-repeat: repeat-x;
|
231 |
-
border-color: #9acfea;
|
232 |
-
}
|
233 |
-
.alert-warning {
|
234 |
-
background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
|
235 |
-
background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);
|
236 |
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);
|
237 |
-
background-repeat: repeat-x;
|
238 |
-
border-color: #f5e79e;
|
239 |
-
}
|
240 |
-
.alert-danger {
|
241 |
-
background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
|
242 |
-
background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%);
|
243 |
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);
|
244 |
-
background-repeat: repeat-x;
|
245 |
-
border-color: #dca7a7;
|
246 |
-
}
|
247 |
-
.progress {
|
248 |
-
background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
|
249 |
-
background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%);
|
250 |
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);
|
251 |
-
background-repeat: repeat-x;
|
252 |
-
}
|
253 |
-
.progress-bar {
|
254 |
-
background-image: -webkit-linear-gradient(top, #428bca 0%, #3071a9 100%);
|
255 |
-
background-image: linear-gradient(to bottom, #428bca 0%, #3071a9 100%);
|
256 |
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff3071a9', GradientType=0);
|
257 |
-
background-repeat: repeat-x;
|
258 |
-
}
|
259 |
-
.progress-bar-success {
|
260 |
-
background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%);
|
261 |
-
background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);
|
262 |
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);
|
263 |
-
background-repeat: repeat-x;
|
264 |
-
}
|
265 |
-
.progress-bar-info {
|
266 |
-
background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
|
267 |
-
background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);
|
268 |
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);
|
269 |
-
background-repeat: repeat-x;
|
270 |
-
}
|
271 |
-
.progress-bar-warning {
|
272 |
-
background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
|
273 |
-
background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);
|
274 |
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);
|
275 |
-
background-repeat: repeat-x;
|
276 |
-
}
|
277 |
-
.progress-bar-danger {
|
278 |
-
background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%);
|
279 |
-
background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);
|
280 |
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);
|
281 |
-
background-repeat: repeat-x;
|
282 |
-
}
|
283 |
-
.list-group {
|
284 |
-
border-radius: 4px;
|
285 |
-
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
|
286 |
-
box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
|
287 |
-
}
|
288 |
-
.list-group-item.active,
|
289 |
-
.list-group-item.active:hover,
|
290 |
-
.list-group-item.active:focus {
|
291 |
-
text-shadow: 0 -1px 0 #3071a9;
|
292 |
-
background-image: -webkit-linear-gradient(top, #428bca 0%, #3278b3 100%);
|
293 |
-
background-image: linear-gradient(to bottom, #428bca 0%, #3278b3 100%);
|
294 |
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff3278b3', GradientType=0);
|
295 |
-
background-repeat: repeat-x;
|
296 |
-
border-color: #3278b3;
|
297 |
-
}
|
298 |
-
.panel {
|
299 |
-
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
|
300 |
-
box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
|
301 |
-
}
|
302 |
-
.panel-default > .panel-heading {
|
303 |
-
background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
|
304 |
-
background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
|
305 |
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
|
306 |
-
background-repeat: repeat-x;
|
307 |
-
}
|
308 |
-
.panel-primary > .panel-heading {
|
309 |
-
background-image: -webkit-linear-gradient(top, #428bca 0%, #357ebd 100%);
|
310 |
-
background-image: linear-gradient(to bottom, #428bca 0%, #357ebd 100%);
|
311 |
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0);
|
312 |
-
background-repeat: repeat-x;
|
313 |
-
}
|
314 |
-
.panel-success > .panel-heading {
|
315 |
-
background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);
|
316 |
-
background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%);
|
317 |
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);
|
318 |
-
background-repeat: repeat-x;
|
319 |
-
}
|
320 |
-
.panel-info > .panel-heading {
|
321 |
-
background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);
|
322 |
-
background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%);
|
323 |
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);
|
324 |
-
background-repeat: repeat-x;
|
325 |
-
}
|
326 |
-
.panel-warning > .panel-heading {
|
327 |
-
background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);
|
328 |
-
background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%);
|
329 |
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);
|
330 |
-
background-repeat: repeat-x;
|
331 |
-
}
|
332 |
-
.panel-danger > .panel-heading {
|
333 |
-
background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
|
334 |
-
background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%);
|
335 |
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);
|
336 |
-
background-repeat: repeat-x;
|
337 |
-
}
|
338 |
-
.well {
|
339 |
-
background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);
|
340 |
-
background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%);
|
341 |
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);
|
342 |
-
background-repeat: repeat-x;
|
343 |
-
border-color: #dcdcdc;
|
344 |
-
-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1);
|
345 |
-
box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1);
|
346 |
-
}
|
347 |
-
/*# sourceMappingURL=bootstrap-theme.css.map */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bootstrap/css/bootstrap-theme.css.map
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
{"version":3,"sources":["less/theme.less","less/mixins.less"],"names":[],"mappings":"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","sourcesContent":["\n//\n// Load core variables and mixins\n// --------------------------------------------------\n\n@import \"variables.less\";\n@import \"mixins.less\";\n\n\n\n//\n// Buttons\n// --------------------------------------------------\n\n// Common styles\n.btn-default,\n.btn-primary,\n.btn-success,\n.btn-info,\n.btn-warning,\n.btn-danger {\n text-shadow: 0 -1px 0 rgba(0,0,0,.2);\n @shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 1px rgba(0,0,0,.075);\n .box-shadow(@shadow);\n\n // Reset the shadow\n &:active,\n &.active {\n .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n }\n}\n\n// Mixin for generating new styles\n.btn-styles(@btn-color: #555) {\n #gradient > .vertical(@start-color: @btn-color; @end-color: darken(@btn-color, 12%));\n .reset-filter(); // Disable gradients for IE9 because filter bleeds through rounded corners\n background-repeat: repeat-x;\n border-color: darken(@btn-color, 14%);\n\n &:hover,\n &:focus {\n background-color: darken(@btn-color, 12%);\n background-position: 0 -15px;\n }\n\n &:active,\n &.active {\n background-color: darken(@btn-color, 12%);\n border-color: darken(@btn-color, 14%);\n }\n}\n\n// Common styles\n.btn {\n // Remove the gradient for the pressed/active state\n &:active,\n &.active {\n background-image: none;\n }\n}\n\n// Apply the mixin to the buttons\n.btn-default { .btn-styles(@btn-default-bg); text-shadow: 0 1px 0 #fff; border-color: #ccc; }\n.btn-primary { .btn-styles(@btn-primary-bg); }\n.btn-success { .btn-styles(@btn-success-bg); }\n.btn-info { .btn-styles(@btn-info-bg); }\n.btn-warning { .btn-styles(@btn-warning-bg); }\n.btn-danger { .btn-styles(@btn-danger-bg); }\n\n\n\n//\n// Images\n// --------------------------------------------------\n\n.thumbnail,\n.img-thumbnail {\n .box-shadow(0 1px 2px rgba(0,0,0,.075));\n}\n\n\n\n//\n// Dropdowns\n// --------------------------------------------------\n\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n #gradient > .vertical(@start-color: @dropdown-link-hover-bg; @end-color: darken(@dropdown-link-hover-bg, 5%));\n background-color: darken(@dropdown-link-hover-bg, 5%);\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n #gradient > .vertical(@start-color: @dropdown-link-active-bg; @end-color: darken(@dropdown-link-active-bg, 5%));\n background-color: darken(@dropdown-link-active-bg, 5%);\n}\n\n\n\n//\n// Navbar\n// --------------------------------------------------\n\n// Default navbar\n.navbar-default {\n #gradient > .vertical(@start-color: lighten(@navbar-default-bg, 10%); @end-color: @navbar-default-bg);\n .reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered\n border-radius: @navbar-border-radius;\n @shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 5px rgba(0,0,0,.075);\n .box-shadow(@shadow);\n\n .navbar-nav > .active > a {\n #gradient > .vertical(@start-color: darken(@navbar-default-bg, 5%); @end-color: darken(@navbar-default-bg, 2%));\n .box-shadow(inset 0 3px 9px rgba(0,0,0,.075));\n }\n}\n.navbar-brand,\n.navbar-nav > li > a {\n text-shadow: 0 1px 0 rgba(255,255,255,.25);\n}\n\n// Inverted navbar\n.navbar-inverse {\n #gradient > .vertical(@start-color: lighten(@navbar-inverse-bg, 10%); @end-color: @navbar-inverse-bg);\n .reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered\n\n .navbar-nav > .active > a {\n #gradient > .vertical(@start-color: @navbar-inverse-bg; @end-color: lighten(@navbar-inverse-bg, 2.5%));\n .box-shadow(inset 0 3px 9px rgba(0,0,0,.25));\n }\n\n .navbar-brand,\n .navbar-nav > li > a {\n text-shadow: 0 -1px 0 rgba(0,0,0,.25);\n }\n}\n\n// Undo rounded corners in static and fixed navbars\n.navbar-static-top,\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n border-radius: 0;\n}\n\n\n\n//\n// Alerts\n// --------------------------------------------------\n\n// Common styles\n.alert {\n text-shadow: 0 1px 0 rgba(255,255,255,.2);\n @shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 1px 2px rgba(0,0,0,.05);\n .box-shadow(@shadow);\n}\n\n// Mixin for generating new styles\n.alert-styles(@color) {\n #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 7.5%));\n border-color: darken(@color, 15%);\n}\n\n// Apply the mixin to the alerts\n.alert-success { .alert-styles(@alert-success-bg); }\n.alert-info { .alert-styles(@alert-info-bg); }\n.alert-warning { .alert-styles(@alert-warning-bg); }\n.alert-danger { .alert-styles(@alert-danger-bg); }\n\n\n\n//\n// Progress bars\n// --------------------------------------------------\n\n// Give the progress background some depth\n.progress {\n #gradient > .vertical(@start-color: darken(@progress-bg, 4%); @end-color: @progress-bg)\n}\n\n// Mixin for generating new styles\n.progress-bar-styles(@color) {\n #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 10%));\n}\n\n// Apply the mixin to the progress bars\n.progress-bar { .progress-bar-styles(@progress-bar-bg); }\n.progress-bar-success { .progress-bar-styles(@progress-bar-success-bg); }\n.progress-bar-info { .progress-bar-styles(@progress-bar-info-bg); }\n.progress-bar-warning { .progress-bar-styles(@progress-bar-warning-bg); }\n.progress-bar-danger { .progress-bar-styles(@progress-bar-danger-bg); }\n\n\n\n//\n// List groups\n// --------------------------------------------------\n\n.list-group {\n border-radius: @border-radius-base;\n .box-shadow(0 1px 2px rgba(0,0,0,.075));\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n text-shadow: 0 -1px 0 darken(@list-group-active-bg, 10%);\n #gradient > .vertical(@start-color: @list-group-active-bg; @end-color: darken(@list-group-active-bg, 7.5%));\n border-color: darken(@list-group-active-border, 7.5%);\n}\n\n\n\n//\n// Panels\n// --------------------------------------------------\n\n// Common styles\n.panel {\n .box-shadow(0 1px 2px rgba(0,0,0,.05));\n}\n\n// Mixin for generating new styles\n.panel-heading-styles(@color) {\n #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 5%));\n}\n\n// Apply the mixin to the panel headings only\n.panel-default > .panel-heading { .panel-heading-styles(@panel-default-heading-bg); }\n.panel-primary > .panel-heading { .panel-heading-styles(@panel-primary-heading-bg); }\n.panel-success > .panel-heading { .panel-heading-styles(@panel-success-heading-bg); }\n.panel-info > .panel-heading { .panel-heading-styles(@panel-info-heading-bg); }\n.panel-warning > .panel-heading { .panel-heading-styles(@panel-warning-heading-bg); }\n.panel-danger > .panel-heading { .panel-heading-styles(@panel-danger-heading-bg); }\n\n\n\n//\n// Wells\n// --------------------------------------------------\n\n.well {\n #gradient > .vertical(@start-color: darken(@well-bg, 5%); @end-color: @well-bg);\n border-color: darken(@well-bg, 10%);\n @shadow: inset 0 1px 3px rgba(0,0,0,.05), 0 1px 0 rgba(255,255,255,.1);\n .box-shadow(@shadow);\n}\n","//\n// Mixins\n// --------------------------------------------------\n\n\n// Utilities\n// -------------------------\n\n// Clearfix\n// Source: http://nicolasgallagher.com/micro-clearfix-hack/\n//\n// For modern browsers\n// 1. The space content is one way to avoid an Opera bug when the\n// contenteditable attribute is included anywhere else in the document.\n// Otherwise it causes space to appear at the top and bottom of elements\n// that are clearfixed.\n// 2. The use of `table` rather than `block` is only necessary if using\n// `:before` to contain the top-margins of child elements.\n.clearfix() {\n &:before,\n &:after {\n content: \" \"; // 1\n display: table; // 2\n }\n &:after {\n clear: both;\n }\n}\n\n// WebKit-style focus\n.tab-focus() {\n // Default\n outline: thin dotted;\n // WebKit\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\n\n// Center-align a block level element\n.center-block() {\n display: block;\n margin-left: auto;\n margin-right: auto;\n}\n\n// Sizing shortcuts\n.size(@width; @height) {\n width: @width;\n height: @height;\n}\n.square(@size) {\n .size(@size; @size);\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n &::-moz-placeholder { color: @color; // Firefox\n opacity: 1; } // See https://github.com/twbs/bootstrap/pull/11526\n &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+\n &::-webkit-input-placeholder { color: @color; } // Safari and Chrome\n}\n\n// Text overflow\n// Requires inline-block or block for proper styling\n.text-overflow() {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n// CSS image replacement\n//\n// Heads up! v3 launched with with only `.hide-text()`, but per our pattern for\n// mixins being reused as classes with the same name, this doesn't hold up. As\n// of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`. Note\n// that we cannot chain the mixins together in Less, so they are repeated.\n//\n// Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757\n\n// Deprecated as of v3.0.1 (will be removed in v4)\n.hide-text() {\n font: ~\"0/0\" a;\n color: transparent;\n text-shadow: none;\n background-color: transparent;\n border: 0;\n}\n// New mixin to use as of v3.0.1\n.text-hide() {\n .hide-text();\n}\n\n\n\n// CSS3 PROPERTIES\n// --------------------------------------------------\n\n// Single side border-radius\n.border-top-radius(@radius) {\n border-top-right-radius: @radius;\n border-top-left-radius: @radius;\n}\n.border-right-radius(@radius) {\n border-bottom-right-radius: @radius;\n border-top-right-radius: @radius;\n}\n.border-bottom-radius(@radius) {\n border-bottom-right-radius: @radius;\n border-bottom-left-radius: @radius;\n}\n.border-left-radius(@radius) {\n border-bottom-left-radius: @radius;\n border-top-left-radius: @radius;\n}\n\n// Drop shadows\n//\n// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's\n// supported browsers that have box shadow capabilities now support the\n// standard `box-shadow` property.\n.box-shadow(@shadow) {\n -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n box-shadow: @shadow;\n}\n\n// Transitions\n.transition(@transition) {\n -webkit-transition: @transition;\n transition: @transition;\n}\n.transition-property(@transition-property) {\n -webkit-transition-property: @transition-property;\n transition-property: @transition-property;\n}\n.transition-delay(@transition-delay) {\n -webkit-transition-delay: @transition-delay;\n transition-delay: @transition-delay;\n}\n.transition-duration(@transition-duration) {\n -webkit-transition-duration: @transition-duration;\n transition-duration: @transition-duration;\n}\n.transition-transform(@transition) {\n -webkit-transition: -webkit-transform @transition;\n -moz-transition: -moz-transform @transition;\n -o-transition: -o-transform @transition;\n transition: transform @transition;\n}\n\n// Transformations\n.rotate(@degrees) {\n -webkit-transform: rotate(@degrees);\n -ms-transform: rotate(@degrees); // IE9 only\n transform: rotate(@degrees);\n}\n.scale(@ratio; @ratio-y...) {\n -webkit-transform: scale(@ratio, @ratio-y);\n -ms-transform: scale(@ratio, @ratio-y); // IE9 only\n transform: scale(@ratio, @ratio-y);\n}\n.translate(@x; @y) {\n -webkit-transform: translate(@x, @y);\n -ms-transform: translate(@x, @y); // IE9 only\n transform: translate(@x, @y);\n}\n.skew(@x; @y) {\n -webkit-transform: skew(@x, @y);\n -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+\n transform: skew(@x, @y);\n}\n.translate3d(@x; @y; @z) {\n -webkit-transform: translate3d(@x, @y, @z);\n transform: translate3d(@x, @y, @z);\n}\n\n.rotateX(@degrees) {\n -webkit-transform: rotateX(@degrees);\n -ms-transform: rotateX(@degrees); // IE9 only\n transform: rotateX(@degrees);\n}\n.rotateY(@degrees) {\n -webkit-transform: rotateY(@degrees);\n -ms-transform: rotateY(@degrees); // IE9 only\n transform: rotateY(@degrees);\n}\n.perspective(@perspective) {\n -webkit-perspective: @perspective;\n -moz-perspective: @perspective;\n perspective: @perspective;\n}\n.perspective-origin(@perspective) {\n -webkit-perspective-origin: @perspective;\n -moz-perspective-origin: @perspective;\n perspective-origin: @perspective;\n}\n.transform-origin(@origin) {\n -webkit-transform-origin: @origin;\n -moz-transform-origin: @origin;\n -ms-transform-origin: @origin; // IE9 only\n transform-origin: @origin;\n}\n\n// Animations\n.animation(@animation) {\n -webkit-animation: @animation;\n animation: @animation;\n}\n.animation-name(@name) {\n -webkit-animation-name: @name;\n animation-name: @name;\n}\n.animation-duration(@duration) {\n -webkit-animation-duration: @duration;\n animation-duration: @duration;\n}\n.animation-timing-function(@timing-function) {\n -webkit-animation-timing-function: @timing-function;\n animation-timing-function: @timing-function;\n}\n.animation-delay(@delay) {\n -webkit-animation-delay: @delay;\n animation-delay: @delay;\n}\n.animation-iteration-count(@iteration-count) {\n -webkit-animation-iteration-count: @iteration-count;\n animation-iteration-count: @iteration-count;\n}\n.animation-direction(@direction) {\n -webkit-animation-direction: @direction;\n animation-direction: @direction;\n}\n\n// Backface visibility\n// Prevent browsers from flickering when using CSS 3D transforms.\n// Default value is `visible`, but can be changed to `hidden`\n.backface-visibility(@visibility){\n -webkit-backface-visibility: @visibility;\n -moz-backface-visibility: @visibility;\n backface-visibility: @visibility;\n}\n\n// Box sizing\n.box-sizing(@boxmodel) {\n -webkit-box-sizing: @boxmodel;\n -moz-box-sizing: @boxmodel;\n box-sizing: @boxmodel;\n}\n\n// User select\n// For selecting text on the page\n.user-select(@select) {\n -webkit-user-select: @select;\n -moz-user-select: @select;\n -ms-user-select: @select; // IE10+\n user-select: @select;\n}\n\n// Resize anything\n.resizable(@direction) {\n resize: @direction; // Options: horizontal, vertical, both\n overflow: auto; // Safari fix\n}\n\n// CSS3 Content Columns\n.content-columns(@column-count; @column-gap: @grid-gutter-width) {\n -webkit-column-count: @column-count;\n -moz-column-count: @column-count;\n column-count: @column-count;\n -webkit-column-gap: @column-gap;\n -moz-column-gap: @column-gap;\n column-gap: @column-gap;\n}\n\n// Optional hyphenation\n.hyphens(@mode: auto) {\n word-wrap: break-word;\n -webkit-hyphens: @mode;\n -moz-hyphens: @mode;\n -ms-hyphens: @mode; // IE10+\n -o-hyphens: @mode;\n hyphens: @mode;\n}\n\n// Opacity\n.opacity(@opacity) {\n opacity: @opacity;\n // IE8 filter\n @opacity-ie: (@opacity * 100);\n filter: ~\"alpha(opacity=@{opacity-ie})\";\n}\n\n\n\n// GRADIENTS\n// --------------------------------------------------\n\n#gradient {\n\n // Horizontal gradient, from left to right\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(left, color-stop(@start-color @start-percent), color-stop(@end-color @end-percent)); // Safari 5.1-6, Chrome 10+\n background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n // Vertical gradient, from top to bottom\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {\n background-repeat: repeat-x;\n background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+\n background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n }\n .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .radial(@inner-color: #555; @outer-color: #333) {\n background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);\n background-image: radial-gradient(circle, @inner-color, @outer-color);\n background-repeat: no-repeat;\n }\n .striped(@color: rgba(255,255,255,.15); @angle: 45deg) {\n background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n }\n}\n\n// Reset filters for IE\n//\n// When you need to remove a gradient background, do not forget to use this to reset\n// the IE filter for IE9 and below.\n.reset-filter() {\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(enabled = false)\"));\n}\n\n\n\n// Retina images\n//\n// Short retina mixin for setting background-image and -size\n\n.img-retina(@file-1x; @file-2x; @width-1x; @height-1x) {\n background-image: url(\"@{file-1x}\");\n\n @media\n only screen and (-webkit-min-device-pixel-ratio: 2),\n only screen and ( min--moz-device-pixel-ratio: 2),\n only screen and ( -o-min-device-pixel-ratio: 2/1),\n only screen and ( min-device-pixel-ratio: 2),\n only screen and ( min-resolution: 192dpi),\n only screen and ( min-resolution: 2dppx) {\n background-image: url(\"@{file-2x}\");\n background-size: @width-1x @height-1x;\n }\n}\n\n\n// Responsive image\n//\n// Keep images from scaling beyond the width of their parents.\n\n.img-responsive(@display: block) {\n display: @display;\n max-width: 100%; // Part 1: Set a maximum relative to the parent\n height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching\n}\n\n\n// COMPONENT MIXINS\n// --------------------------------------------------\n\n// Horizontal dividers\n// -------------------------\n// Dividers (basically an hr) within dropdowns and nav lists\n.nav-divider(@color: #e5e5e5) {\n height: 1px;\n margin: ((@line-height-computed / 2) - 1) 0;\n overflow: hidden;\n background-color: @color;\n}\n\n// Panels\n// -------------------------\n.panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) {\n border-color: @border;\n\n & > .panel-heading {\n color: @heading-text-color;\n background-color: @heading-bg-color;\n border-color: @heading-border;\n\n + .panel-collapse .panel-body {\n border-top-color: @border;\n }\n }\n & > .panel-footer {\n + .panel-collapse .panel-body {\n border-bottom-color: @border;\n }\n }\n}\n\n// Alerts\n// -------------------------\n.alert-variant(@background; @border; @text-color) {\n background-color: @background;\n border-color: @border;\n color: @text-color;\n\n hr {\n border-top-color: darken(@border, 5%);\n }\n .alert-link {\n color: darken(@text-color, 10%);\n }\n}\n\n// Tables\n// -------------------------\n.table-row-variant(@state; @background) {\n // Exact selectors below required to override `.table-striped` and prevent\n // inheritance to nested tables.\n .table > thead > tr,\n .table > tbody > tr,\n .table > tfoot > tr {\n > td.@{state},\n > th.@{state},\n &.@{state} > td,\n &.@{state} > th {\n background-color: @background;\n }\n }\n\n // Hover states for `.table-hover`\n // Note: this is not available for cells or rows within `thead` or `tfoot`.\n .table-hover > tbody > tr {\n > td.@{state}:hover,\n > th.@{state}:hover,\n &.@{state}:hover > td,\n &.@{state}:hover > th {\n background-color: darken(@background, 5%);\n }\n }\n}\n\n// List Groups\n// -------------------------\n.list-group-item-variant(@state; @background; @color) {\n .list-group-item-@{state} {\n color: @color;\n background-color: @background;\n\n a& {\n color: @color;\n\n .list-group-item-heading { color: inherit; }\n\n &:hover,\n &:focus {\n color: @color;\n background-color: darken(@background, 5%);\n }\n &.active,\n &.active:hover,\n &.active:focus {\n color: #fff;\n background-color: @color;\n border-color: @color;\n }\n }\n }\n}\n\n// Button variants\n// -------------------------\n// Easily pump out default styles, as well as :hover, :focus, :active,\n// and disabled options for all buttons\n.button-variant(@color; @background; @border) {\n color: @color;\n background-color: @background;\n border-color: @border;\n\n &:hover,\n &:focus,\n &:active,\n &.active,\n .open .dropdown-toggle& {\n color: @color;\n background-color: darken(@background, 8%);\n border-color: darken(@border, 12%);\n }\n &:active,\n &.active,\n .open .dropdown-toggle& {\n background-image: none;\n }\n &.disabled,\n &[disabled],\n fieldset[disabled] & {\n &,\n &:hover,\n &:focus,\n &:active,\n &.active {\n background-color: @background;\n border-color: @border;\n }\n }\n\n .badge {\n color: @background;\n background-color: @color;\n }\n}\n\n// Button sizes\n// -------------------------\n.button-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n padding: @padding-vertical @padding-horizontal;\n font-size: @font-size;\n line-height: @line-height;\n border-radius: @border-radius;\n}\n\n// Pagination\n// -------------------------\n.pagination-size(@padding-vertical; @padding-horizontal; @font-size; @border-radius) {\n > li {\n > a,\n > span {\n padding: @padding-vertical @padding-horizontal;\n font-size: @font-size;\n }\n &:first-child {\n > a,\n > span {\n .border-left-radius(@border-radius);\n }\n }\n &:last-child {\n > a,\n > span {\n .border-right-radius(@border-radius);\n }\n }\n }\n}\n\n// Labels\n// -------------------------\n.label-variant(@color) {\n background-color: @color;\n &[href] {\n &:hover,\n &:focus {\n background-color: darken(@color, 10%);\n }\n }\n}\n\n// Contextual backgrounds\n// -------------------------\n.bg-variant(@color) {\n background-color: @color;\n a&:hover {\n background-color: darken(@color, 10%);\n }\n}\n\n// Typography\n// -------------------------\n.text-emphasis-variant(@color) {\n color: @color;\n a&:hover {\n color: darken(@color, 10%);\n }\n}\n\n// Navbar vertical align\n// -------------------------\n// Vertically center elements in the navbar.\n// Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin.\n.navbar-vertical-align(@element-height) {\n margin-top: ((@navbar-height - @element-height) / 2);\n margin-bottom: ((@navbar-height - @element-height) / 2);\n}\n\n// Progress bars\n// -------------------------\n.progress-bar-variant(@color) {\n background-color: @color;\n .progress-striped & {\n #gradient > .striped();\n }\n}\n\n// Responsive utilities\n// -------------------------\n// More easily include all the states for responsive-utilities.less.\n.responsive-visibility() {\n display: block !important;\n table& { display: table; }\n tr& { display: table-row !important; }\n th&,\n td& { display: table-cell !important; }\n}\n\n.responsive-invisibility() {\n display: none !important;\n}\n\n\n// Grid System\n// -----------\n\n// Centered container element\n.container-fixed() {\n margin-right: auto;\n margin-left: auto;\n padding-left: (@grid-gutter-width / 2);\n padding-right: (@grid-gutter-width / 2);\n &:extend(.clearfix all);\n}\n\n// Creates a wrapper for a series of columns\n.make-row(@gutter: @grid-gutter-width) {\n margin-left: (@gutter / -2);\n margin-right: (@gutter / -2);\n &:extend(.clearfix all);\n}\n\n// Generate the extra small columns\n.make-xs-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n float: left;\n width: percentage((@columns / @grid-columns));\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n}\n.make-xs-column-offset(@columns) {\n @media (min-width: @screen-xs-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-xs-column-push(@columns) {\n @media (min-width: @screen-xs-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-xs-column-pull(@columns) {\n @media (min-width: @screen-xs-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n\n// Generate the small columns\n.make-sm-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @screen-sm-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-offset(@columns) {\n @media (min-width: @screen-sm-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-push(@columns) {\n @media (min-width: @screen-sm-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-pull(@columns) {\n @media (min-width: @screen-sm-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n\n// Generate the medium columns\n.make-md-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @screen-md-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-offset(@columns) {\n @media (min-width: @screen-md-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-push(@columns) {\n @media (min-width: @screen-md-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-pull(@columns) {\n @media (min-width: @screen-md-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n\n// Generate the large columns\n.make-lg-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @screen-lg-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-offset(@columns) {\n @media (min-width: @screen-lg-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-push(@columns) {\n @media (min-width: @screen-lg-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-pull(@columns) {\n @media (min-width: @screen-lg-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n\n// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `@grid-columns`.\n\n.make-grid-columns() {\n // Common styles for all sizes of grid columns, widths 1-12\n .col(@index) when (@index = 1) { // initial\n @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n .col((@index + 1), @item);\n }\n .col(@index, @list) when (@index =< @grid-columns) { // general; \"=<\" isn't a typo\n @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n .col((@index + 1), ~\"@{list}, @{item}\");\n }\n .col(@index, @list) when (@index > @grid-columns) { // terminal\n @{list} {\n position: relative;\n // Prevent columns from collapsing when empty\n min-height: 1px;\n // Inner gutter via padding\n padding-left: (@grid-gutter-width / 2);\n padding-right: (@grid-gutter-width / 2);\n }\n }\n .col(1); // kickstart it\n}\n\n.float-grid-columns(@class) {\n .col(@index) when (@index = 1) { // initial\n @item: ~\".col-@{class}-@{index}\";\n .col((@index + 1), @item);\n }\n .col(@index, @list) when (@index =< @grid-columns) { // general\n @item: ~\".col-@{class}-@{index}\";\n .col((@index + 1), ~\"@{list}, @{item}\");\n }\n .col(@index, @list) when (@index > @grid-columns) { // terminal\n @{list} {\n float: left;\n }\n }\n .col(1); // kickstart it\n}\n\n.calc-grid-column(@index, @class, @type) when (@type = width) and (@index > 0) {\n .col-@{class}-@{index} {\n width: percentage((@index / @grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = push) {\n .col-@{class}-push-@{index} {\n left: percentage((@index / @grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = pull) {\n .col-@{class}-pull-@{index} {\n right: percentage((@index / @grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = offset) {\n .col-@{class}-offset-@{index} {\n margin-left: percentage((@index / @grid-columns));\n }\n}\n\n// Basic looping in LESS\n.loop-grid-columns(@index, @class, @type) when (@index >= 0) {\n .calc-grid-column(@index, @class, @type);\n // next iteration\n .loop-grid-columns((@index - 1), @class, @type);\n}\n\n// Create grid for specific class\n.make-grid(@class) {\n .float-grid-columns(@class);\n .loop-grid-columns(@grid-columns, @class, width);\n .loop-grid-columns(@grid-columns, @class, pull);\n .loop-grid-columns(@grid-columns, @class, push);\n .loop-grid-columns(@grid-columns, @class, offset);\n}\n\n// Form validation states\n//\n// Used in forms.less to generate the form validation CSS for warnings, errors,\n// and successes.\n\n.form-control-validation(@text-color: #555; @border-color: #ccc; @background-color: #f5f5f5) {\n // Color the label and help text\n .help-block,\n .control-label,\n .radio,\n .checkbox,\n .radio-inline,\n .checkbox-inline {\n color: @text-color;\n }\n // Set the border and box shadow on specific inputs to match\n .form-control {\n border-color: @border-color;\n .box-shadow(inset 0 1px 1px rgba(0,0,0,.075)); // Redeclare so transitions work\n &:focus {\n border-color: darken(@border-color, 10%);\n @shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px lighten(@border-color, 20%);\n .box-shadow(@shadow);\n }\n }\n // Set validation states also for addons\n .input-group-addon {\n color: @text-color;\n border-color: @border-color;\n background-color: @background-color;\n }\n // Optional feedback icon\n .form-control-feedback {\n color: @text-color;\n }\n}\n\n// Form control focus state\n//\n// Generate a customized focus state and for any input with the specified color,\n// which defaults to the `@input-focus-border` variable.\n//\n// We highly encourage you to not customize the default value, but instead use\n// this to tweak colors on an as-needed basis. This aesthetic change is based on\n// WebKit's default styles, but applicable to a wider range of browsers. Its\n// usability and accessibility should be taken into account with any change.\n//\n// Example usage: change the default blue border and shadow to white for better\n// contrast against a dark gray background.\n\n.form-control-focus(@color: @input-border-focus) {\n @color-rgba: rgba(red(@color), green(@color), blue(@color), .6);\n &:focus {\n border-color: @color;\n outline: 0;\n .box-shadow(~\"inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px @{color-rgba}\");\n }\n}\n\n// Form control sizing\n//\n// Relative text size, padding, and border-radii changes for form controls. For\n// horizontal sizing, wrap controls in the predefined grid classes. `<select>`\n// element gets special love because it's special, and that's a fact!\n\n.input-size(@input-height; @padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n height: @input-height;\n padding: @padding-vertical @padding-horizontal;\n font-size: @font-size;\n line-height: @line-height;\n border-radius: @border-radius;\n\n select& {\n height: @input-height;\n line-height: @input-height;\n }\n\n textarea&,\n select[multiple]& {\n height: auto;\n }\n}\n"]}
|
|
bootstrap/css/bootstrap-theme.min.css
DELETED
@@ -1,7 +0,0 @@
|
|
1 |
-
/*!
|
2 |
-
* Bootstrap v3.1.1 (http://getbootstrap.com)
|
3 |
-
* Copyright 2011-2014 Twitter, Inc.
|
4 |
-
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
5 |
-
*/
|
6 |
-
|
7 |
-
.btn-default,.btn-primary,.btn-success,.btn-info,.btn-warning,.btn-danger{text-shadow:0 -1px 0 rgba(0,0,0,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-default:active,.btn-primary:active,.btn-success:active,.btn-info:active,.btn-warning:active,.btn-danger:active,.btn-default.active,.btn-primary.active,.btn-success.active,.btn-info.active,.btn-warning.active,.btn-danger.active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn:active,.btn.active{background-image:none}.btn-default{background-image:-webkit-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:linear-gradient(to bottom,#fff 0,#e0e0e0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#dbdbdb;text-shadow:0 1px 0 #fff;border-color:#ccc}.btn-default:hover,.btn-default:focus{background-color:#e0e0e0;background-position:0 -15px}.btn-default:active,.btn-default.active{background-color:#e0e0e0;border-color:#dbdbdb}.btn-primary{background-image:-webkit-linear-gradient(top,#428bca 0,#2d6ca2 100%);background-image:linear-gradient(to bottom,#428bca 0,#2d6ca2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff2d6ca2', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#2b669a}.btn-primary:hover,.btn-primary:focus{background-color:#2d6ca2;background-position:0 -15px}.btn-primary:active,.btn-primary.active{background-color:#2d6ca2;border-color:#2b669a}.btn-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:linear-gradient(to bottom,#5cb85c 0,#419641 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#3e8f3e}.btn-success:hover,.btn-success:focus{background-color:#419641;background-position:0 -15px}.btn-success:active,.btn-success.active{background-color:#419641;border-color:#3e8f3e}.btn-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:linear-gradient(to bottom,#5bc0de 0,#2aabd2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#28a4c9}.btn-info:hover,.btn-info:focus{background-color:#2aabd2;background-position:0 -15px}.btn-info:active,.btn-info.active{background-color:#2aabd2;border-color:#28a4c9}.btn-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:linear-gradient(to bottom,#f0ad4e 0,#eb9316 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#e38d13}.btn-warning:hover,.btn-warning:focus{background-color:#eb9316;background-position:0 -15px}.btn-warning:active,.btn-warning.active{background-color:#eb9316;border-color:#e38d13}.btn-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:linear-gradient(to bottom,#d9534f 0,#c12e2a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#b92c28}.btn-danger:hover,.btn-danger:focus{background-color:#c12e2a;background-position:0 -15px}.btn-danger:active,.btn-danger.active{background-color:#c12e2a;border-color:#b92c28}.thumbnail,.img-thumbnail{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-color:#e8e8e8}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{background-image:-webkit-linear-gradient(top,#428bca 0,#357ebd 100%);background-image:linear-gradient(to bottom,#428bca 0,#357ebd 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0);background-color:#357ebd}.navbar-default{background-image:-webkit-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:linear-gradient(to bottom,#fff 0,#f8f8f8 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075)}.navbar-default .navbar-nav>.active>a{background-image:-webkit-linear-gradient(top,#ebebeb 0,#f3f3f3 100%);background-image:linear-gradient(to bottom,#ebebeb 0,#f3f3f3 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff3f3f3', GradientType=0);-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.075);box-shadow:inset 0 3px 9px rgba(0,0,0,.075)}.navbar-brand,.navbar-nav>li>a{text-shadow:0 1px 0 rgba(255,255,255,.25)}.navbar-inverse{background-image:-webkit-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:linear-gradient(to bottom,#3c3c3c 0,#222 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.navbar-inverse .navbar-nav>.active>a{background-image:-webkit-linear-gradient(top,#222 0,#282828 100%);background-image:linear-gradient(to bottom,#222 0,#282828 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff282828', GradientType=0);-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.25);box-shadow:inset 0 3px 9px rgba(0,0,0,.25)}.navbar-inverse .navbar-brand,.navbar-inverse .navbar-nav>li>a{text-shadow:0 -1px 0 rgba(0,0,0,.25)}.navbar-static-top,.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}.alert{text-shadow:0 1px 0 rgba(255,255,255,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05)}.alert-success{background-image:-webkit-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:linear-gradient(to bottom,#dff0d8 0,#c8e5bc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);border-color:#b2dba1}.alert-info{background-image:-webkit-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:linear-gradient(to bottom,#d9edf7 0,#b9def0 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);border-color:#9acfea}.alert-warning{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:linear-gradient(to bottom,#fcf8e3 0,#f8efc0 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);border-color:#f5e79e}.alert-danger{background-image:-webkit-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:linear-gradient(to bottom,#f2dede 0,#e7c3c3 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);border-color:#dca7a7}.progress{background-image:-webkit-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:linear-gradient(to bottom,#ebebeb 0,#f5f5f5 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0)}.progress-bar{background-image:-webkit-linear-gradient(top,#428bca 0,#3071a9 100%);background-image:linear-gradient(to bottom,#428bca 0,#3071a9 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff3071a9', GradientType=0)}.progress-bar-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:linear-gradient(to bottom,#5cb85c 0,#449d44 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0)}.progress-bar-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:linear-gradient(to bottom,#5bc0de 0,#31b0d5 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0)}.progress-bar-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:linear-gradient(to bottom,#f0ad4e 0,#ec971f 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0)}.progress-bar-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:linear-gradient(to bottom,#d9534f 0,#c9302c 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0)}.list-group{border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{text-shadow:0 -1px 0 #3071a9;background-image:-webkit-linear-gradient(top,#428bca 0,#3278b3 100%);background-image:linear-gradient(to bottom,#428bca 0,#3278b3 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff3278b3', GradientType=0);border-color:#3278b3}.panel{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.05);box-shadow:0 1px 2px rgba(0,0,0,.05)}.panel-default>.panel-heading{background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0)}.panel-primary>.panel-heading{background-image:-webkit-linear-gradient(top,#428bca 0,#357ebd 100%);background-image:linear-gradient(to bottom,#428bca 0,#357ebd 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0)}.panel-success>.panel-heading{background-image:-webkit-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:linear-gradient(to bottom,#dff0d8 0,#d0e9c6 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0)}.panel-info>.panel-heading{background-image:-webkit-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:linear-gradient(to bottom,#d9edf7 0,#c4e3f3 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0)}.panel-warning>.panel-heading{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:linear-gradient(to bottom,#fcf8e3 0,#faf2cc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0)}.panel-danger>.panel-heading{background-image:-webkit-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:linear-gradient(to bottom,#f2dede 0,#ebcccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0)}.well{background-image:-webkit-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:linear-gradient(to bottom,#e8e8e8 0,#f5f5f5 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);border-color:#dcdcdc;-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1)}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bootstrap/css/bootstrap.css
DELETED
@@ -1,5785 +0,0 @@
|
|
1 |
-
/*!
|
2 |
-
* Bootstrap v3.1.1 (http://getbootstrap.com)
|
3 |
-
* Copyright 2011-2014 Twitter, Inc.
|
4 |
-
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
5 |
-
*/
|
6 |
-
|
7 |
-
/*! normalize.css v3.0.0 | MIT License | git.io/normalize */
|
8 |
-
html {
|
9 |
-
font-family: sans-serif;
|
10 |
-
-webkit-text-size-adjust: 100%;
|
11 |
-
-ms-text-size-adjust: 100%;
|
12 |
-
}
|
13 |
-
body {
|
14 |
-
margin: 0;
|
15 |
-
}
|
16 |
-
article,
|
17 |
-
aside,
|
18 |
-
details,
|
19 |
-
figcaption,
|
20 |
-
figure,
|
21 |
-
footer,
|
22 |
-
header,
|
23 |
-
hgroup,
|
24 |
-
main,
|
25 |
-
nav,
|
26 |
-
section,
|
27 |
-
summary {
|
28 |
-
display: block;
|
29 |
-
}
|
30 |
-
audio,
|
31 |
-
canvas,
|
32 |
-
progress,
|
33 |
-
video {
|
34 |
-
display: inline-block;
|
35 |
-
vertical-align: baseline;
|
36 |
-
}
|
37 |
-
audio:not([controls]) {
|
38 |
-
display: none;
|
39 |
-
height: 0;
|
40 |
-
}
|
41 |
-
[hidden],
|
42 |
-
template {
|
43 |
-
display: none;
|
44 |
-
}
|
45 |
-
a {
|
46 |
-
background: transparent;
|
47 |
-
}
|
48 |
-
a:active,
|
49 |
-
a:hover {
|
50 |
-
outline: 0;
|
51 |
-
}
|
52 |
-
abbr[title] {
|
53 |
-
border-bottom: 1px dotted;
|
54 |
-
}
|
55 |
-
b,
|
56 |
-
strong {
|
57 |
-
font-weight: bold;
|
58 |
-
}
|
59 |
-
dfn {
|
60 |
-
font-style: italic;
|
61 |
-
}
|
62 |
-
h1 {
|
63 |
-
margin: .67em 0;
|
64 |
-
font-size: 2em;
|
65 |
-
}
|
66 |
-
mark {
|
67 |
-
color: #000;
|
68 |
-
background: #ff0;
|
69 |
-
}
|
70 |
-
small {
|
71 |
-
font-size: 80%;
|
72 |
-
}
|
73 |
-
sub,
|
74 |
-
sup {
|
75 |
-
position: relative;
|
76 |
-
font-size: 75%;
|
77 |
-
line-height: 0;
|
78 |
-
vertical-align: baseline;
|
79 |
-
}
|
80 |
-
sup {
|
81 |
-
top: -.5em;
|
82 |
-
}
|
83 |
-
sub {
|
84 |
-
bottom: -.25em;
|
85 |
-
}
|
86 |
-
img {
|
87 |
-
border: 0;
|
88 |
-
}
|
89 |
-
svg:not(:root) {
|
90 |
-
overflow: hidden;
|
91 |
-
}
|
92 |
-
figure {
|
93 |
-
margin: 1em 40px;
|
94 |
-
}
|
95 |
-
hr {
|
96 |
-
height: 0;
|
97 |
-
-moz-box-sizing: content-box;
|
98 |
-
box-sizing: content-box;
|
99 |
-
}
|
100 |
-
pre {
|
101 |
-
overflow: auto;
|
102 |
-
}
|
103 |
-
code,
|
104 |
-
kbd,
|
105 |
-
pre,
|
106 |
-
samp {
|
107 |
-
font-family: monospace, monospace;
|
108 |
-
font-size: 1em;
|
109 |
-
}
|
110 |
-
button,
|
111 |
-
input,
|
112 |
-
optgroup,
|
113 |
-
select,
|
114 |
-
textarea {
|
115 |
-
margin: 0;
|
116 |
-
font: inherit;
|
117 |
-
color: inherit;
|
118 |
-
}
|
119 |
-
button {
|
120 |
-
overflow: visible;
|
121 |
-
}
|
122 |
-
button,
|
123 |
-
select {
|
124 |
-
text-transform: none;
|
125 |
-
}
|
126 |
-
button,
|
127 |
-
html input[type="button"],
|
128 |
-
input[type="reset"],
|
129 |
-
input[type="submit"] {
|
130 |
-
-webkit-appearance: button;
|
131 |
-
cursor: pointer;
|
132 |
-
}
|
133 |
-
button[disabled],
|
134 |
-
html input[disabled] {
|
135 |
-
cursor: default;
|
136 |
-
}
|
137 |
-
button::-moz-focus-inner,
|
138 |
-
input::-moz-focus-inner {
|
139 |
-
padding: 0;
|
140 |
-
border: 0;
|
141 |
-
}
|
142 |
-
input {
|
143 |
-
line-height: normal;
|
144 |
-
}
|
145 |
-
input[type="checkbox"],
|
146 |
-
input[type="radio"] {
|
147 |
-
box-sizing: border-box;
|
148 |
-
padding: 0;
|
149 |
-
}
|
150 |
-
input[type="number"]::-webkit-inner-spin-button,
|
151 |
-
input[type="number"]::-webkit-outer-spin-button {
|
152 |
-
height: auto;
|
153 |
-
}
|
154 |
-
input[type="search"] {
|
155 |
-
-webkit-box-sizing: content-box;
|
156 |
-
-moz-box-sizing: content-box;
|
157 |
-
box-sizing: content-box;
|
158 |
-
-webkit-appearance: textfield;
|
159 |
-
}
|
160 |
-
input[type="search"]::-webkit-search-cancel-button,
|
161 |
-
input[type="search"]::-webkit-search-decoration {
|
162 |
-
-webkit-appearance: none;
|
163 |
-
}
|
164 |
-
fieldset {
|
165 |
-
padding: .35em .625em .75em;
|
166 |
-
margin: 0 2px;
|
167 |
-
border: 1px solid #c0c0c0;
|
168 |
-
}
|
169 |
-
legend {
|
170 |
-
padding: 0;
|
171 |
-
border: 0;
|
172 |
-
}
|
173 |
-
textarea {
|
174 |
-
overflow: auto;
|
175 |
-
}
|
176 |
-
optgroup {
|
177 |
-
font-weight: bold;
|
178 |
-
}
|
179 |
-
table {
|
180 |
-
border-spacing: 0;
|
181 |
-
border-collapse: collapse;
|
182 |
-
}
|
183 |
-
td,
|
184 |
-
th {
|
185 |
-
padding: 0;
|
186 |
-
}
|
187 |
-
@media print {
|
188 |
-
* {
|
189 |
-
color: #000 !important;
|
190 |
-
text-shadow: none !important;
|
191 |
-
background: transparent !important;
|
192 |
-
box-shadow: none !important;
|
193 |
-
}
|
194 |
-
a,
|
195 |
-
a:visited {
|
196 |
-
text-decoration: underline;
|
197 |
-
}
|
198 |
-
a[href]:after {
|
199 |
-
content: " (" attr(href) ")";
|
200 |
-
}
|
201 |
-
abbr[title]:after {
|
202 |
-
content: " (" attr(title) ")";
|
203 |
-
}
|
204 |
-
a[href^="javascript:"]:after,
|
205 |
-
a[href^="#"]:after {
|
206 |
-
content: "";
|
207 |
-
}
|
208 |
-
pre,
|
209 |
-
blockquote {
|
210 |
-
border: 1px solid #999;
|
211 |
-
|
212 |
-
page-break-inside: avoid;
|
213 |
-
}
|
214 |
-
thead {
|
215 |
-
display: table-header-group;
|
216 |
-
}
|
217 |
-
tr,
|
218 |
-
img {
|
219 |
-
page-break-inside: avoid;
|
220 |
-
}
|
221 |
-
img {
|
222 |
-
max-width: 100% !important;
|
223 |
-
}
|
224 |
-
p,
|
225 |
-
h2,
|
226 |
-
h3 {
|
227 |
-
orphans: 3;
|
228 |
-
widows: 3;
|
229 |
-
}
|
230 |
-
h2,
|
231 |
-
h3 {
|
232 |
-
page-break-after: avoid;
|
233 |
-
}
|
234 |
-
select {
|
235 |
-
background: #fff !important;
|
236 |
-
}
|
237 |
-
.navbar {
|
238 |
-
display: none;
|
239 |
-
}
|
240 |
-
.table td,
|
241 |
-
.table th {
|
242 |
-
background-color: #fff !important;
|
243 |
-
}
|
244 |
-
.btn > .caret,
|
245 |
-
.dropup > .btn > .caret {
|
246 |
-
border-top-color: #000 !important;
|
247 |
-
}
|
248 |
-
.label {
|
249 |
-
border: 1px solid #000;
|
250 |
-
}
|
251 |
-
.table {
|
252 |
-
border-collapse: collapse !important;
|
253 |
-
}
|
254 |
-
.table-bordered th,
|
255 |
-
.table-bordered td {
|
256 |
-
border: 1px solid #ddd !important;
|
257 |
-
}
|
258 |
-
}
|
259 |
-
* {
|
260 |
-
-webkit-box-sizing: border-box;
|
261 |
-
-moz-box-sizing: border-box;
|
262 |
-
box-sizing: border-box;
|
263 |
-
}
|
264 |
-
*:before,
|
265 |
-
*:after {
|
266 |
-
-webkit-box-sizing: border-box;
|
267 |
-
-moz-box-sizing: border-box;
|
268 |
-
box-sizing: border-box;
|
269 |
-
}
|
270 |
-
html {
|
271 |
-
font-size: 62.5%;
|
272 |
-
|
273 |
-
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
274 |
-
}
|
275 |
-
body {
|
276 |
-
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
277 |
-
font-size: 14px;
|
278 |
-
line-height: 1.42857143;
|
279 |
-
color: #333;
|
280 |
-
background-color: #fff;
|
281 |
-
}
|
282 |
-
input,
|
283 |
-
button,
|
284 |
-
select,
|
285 |
-
textarea {
|
286 |
-
font-family: inherit;
|
287 |
-
font-size: inherit;
|
288 |
-
line-height: inherit;
|
289 |
-
}
|
290 |
-
a {
|
291 |
-
color: #428bca;
|
292 |
-
text-decoration: none;
|
293 |
-
}
|
294 |
-
a:hover,
|
295 |
-
a:focus {
|
296 |
-
color: #2a6496;
|
297 |
-
text-decoration: underline;
|
298 |
-
}
|
299 |
-
a:focus {
|
300 |
-
outline: thin dotted;
|
301 |
-
outline: 5px auto -webkit-focus-ring-color;
|
302 |
-
outline-offset: -2px;
|
303 |
-
}
|
304 |
-
figure {
|
305 |
-
margin: 0;
|
306 |
-
}
|
307 |
-
img {
|
308 |
-
vertical-align: middle;
|
309 |
-
}
|
310 |
-
.img-responsive,
|
311 |
-
.thumbnail > img,
|
312 |
-
.thumbnail a > img,
|
313 |
-
.carousel-inner > .item > img,
|
314 |
-
.carousel-inner > .item > a > img {
|
315 |
-
display: block;
|
316 |
-
max-width: 100%;
|
317 |
-
height: auto;
|
318 |
-
}
|
319 |
-
.img-rounded {
|
320 |
-
border-radius: 6px;
|
321 |
-
}
|
322 |
-
.img-thumbnail {
|
323 |
-
display: inline-block;
|
324 |
-
max-width: 100%;
|
325 |
-
height: auto;
|
326 |
-
padding: 4px;
|
327 |
-
line-height: 1.42857143;
|
328 |
-
background-color: #fff;
|
329 |
-
border: 1px solid #ddd;
|
330 |
-
border-radius: 4px;
|
331 |
-
-webkit-transition: all .2s ease-in-out;
|
332 |
-
transition: all .2s ease-in-out;
|
333 |
-
}
|
334 |
-
.img-circle {
|
335 |
-
border-radius: 50%;
|
336 |
-
}
|
337 |
-
hr {
|
338 |
-
margin-top: 20px;
|
339 |
-
margin-bottom: 20px;
|
340 |
-
border: 0;
|
341 |
-
border-top: 1px solid #eee;
|
342 |
-
}
|
343 |
-
.sr-only {
|
344 |
-
position: absolute;
|
345 |
-
width: 1px;
|
346 |
-
height: 1px;
|
347 |
-
padding: 0;
|
348 |
-
margin: -1px;
|
349 |
-
overflow: hidden;
|
350 |
-
clip: rect(0, 0, 0, 0);
|
351 |
-
border: 0;
|
352 |
-
}
|
353 |
-
h1,
|
354 |
-
h2,
|
355 |
-
h3,
|
356 |
-
h4,
|
357 |
-
h5,
|
358 |
-
h6,
|
359 |
-
.h1,
|
360 |
-
.h2,
|
361 |
-
.h3,
|
362 |
-
.h4,
|
363 |
-
.h5,
|
364 |
-
.h6 {
|
365 |
-
font-family: inherit;
|
366 |
-
font-weight: 500;
|
367 |
-
line-height: 1.1;
|
368 |
-
color: inherit;
|
369 |
-
}
|
370 |
-
h1 small,
|
371 |
-
h2 small,
|
372 |
-
h3 small,
|
373 |
-
h4 small,
|
374 |
-
h5 small,
|
375 |
-
h6 small,
|
376 |
-
.h1 small,
|
377 |
-
.h2 small,
|
378 |
-
.h3 small,
|
379 |
-
.h4 small,
|
380 |
-
.h5 small,
|
381 |
-
.h6 small,
|
382 |
-
h1 .small,
|
383 |
-
h2 .small,
|
384 |
-
h3 .small,
|
385 |
-
h4 .small,
|
386 |
-
h5 .small,
|
387 |
-
h6 .small,
|
388 |
-
.h1 .small,
|
389 |
-
.h2 .small,
|
390 |
-
.h3 .small,
|
391 |
-
.h4 .small,
|
392 |
-
.h5 .small,
|
393 |
-
.h6 .small {
|
394 |
-
font-weight: normal;
|
395 |
-
line-height: 1;
|
396 |
-
color: #999;
|
397 |
-
}
|
398 |
-
h1,
|
399 |
-
.h1,
|
400 |
-
h2,
|
401 |
-
.h2,
|
402 |
-
h3,
|
403 |
-
.h3 {
|
404 |
-
margin-top: 20px;
|
405 |
-
margin-bottom: 10px;
|
406 |
-
}
|
407 |
-
h1 small,
|
408 |
-
.h1 small,
|
409 |
-
h2 small,
|
410 |
-
.h2 small,
|
411 |
-
h3 small,
|
412 |
-
.h3 small,
|
413 |
-
h1 .small,
|
414 |
-
.h1 .small,
|
415 |
-
h2 .small,
|
416 |
-
.h2 .small,
|
417 |
-
h3 .small,
|
418 |
-
.h3 .small {
|
419 |
-
font-size: 65%;
|
420 |
-
}
|
421 |
-
h4,
|
422 |
-
.h4,
|
423 |
-
h5,
|
424 |
-
.h5,
|
425 |
-
h6,
|
426 |
-
.h6 {
|
427 |
-
margin-top: 10px;
|
428 |
-
margin-bottom: 10px;
|
429 |
-
}
|
430 |
-
h4 small,
|
431 |
-
.h4 small,
|
432 |
-
h5 small,
|
433 |
-
.h5 small,
|
434 |
-
h6 small,
|
435 |
-
.h6 small,
|
436 |
-
h4 .small,
|
437 |
-
.h4 .small,
|
438 |
-
h5 .small,
|
439 |
-
.h5 .small,
|
440 |
-
h6 .small,
|
441 |
-
.h6 .small {
|
442 |
-
font-size: 75%;
|
443 |
-
}
|
444 |
-
h1,
|
445 |
-
.h1 {
|
446 |
-
font-size: 36px;
|
447 |
-
}
|
448 |
-
h2,
|
449 |
-
.h2 {
|
450 |
-
font-size: 30px;
|
451 |
-
}
|
452 |
-
h3,
|
453 |
-
.h3 {
|
454 |
-
font-size: 24px;
|
455 |
-
}
|
456 |
-
h4,
|
457 |
-
.h4 {
|
458 |
-
font-size: 18px;
|
459 |
-
}
|
460 |
-
h5,
|
461 |
-
.h5 {
|
462 |
-
font-size: 14px;
|
463 |
-
}
|
464 |
-
h6,
|
465 |
-
.h6 {
|
466 |
-
font-size: 12px;
|
467 |
-
}
|
468 |
-
p {
|
469 |
-
margin: 0 0 10px;
|
470 |
-
}
|
471 |
-
.lead {
|
472 |
-
margin-bottom: 20px;
|
473 |
-
font-size: 16px;
|
474 |
-
font-weight: 200;
|
475 |
-
line-height: 1.4;
|
476 |
-
}
|
477 |
-
@media (min-width: 768px) {
|
478 |
-
.lead {
|
479 |
-
font-size: 21px;
|
480 |
-
}
|
481 |
-
}
|
482 |
-
small,
|
483 |
-
.small {
|
484 |
-
font-size: 85%;
|
485 |
-
}
|
486 |
-
cite {
|
487 |
-
font-style: normal;
|
488 |
-
}
|
489 |
-
.text-left {
|
490 |
-
text-align: left;
|
491 |
-
}
|
492 |
-
.text-right {
|
493 |
-
text-align: right;
|
494 |
-
}
|
495 |
-
.text-center {
|
496 |
-
text-align: center;
|
497 |
-
}
|
498 |
-
.text-justify {
|
499 |
-
text-align: justify;
|
500 |
-
}
|
501 |
-
.text-muted {
|
502 |
-
color: #999;
|
503 |
-
}
|
504 |
-
.text-primary {
|
505 |
-
color: #428bca;
|
506 |
-
}
|
507 |
-
a.text-primary:hover {
|
508 |
-
color: #3071a9;
|
509 |
-
}
|
510 |
-
.text-success {
|
511 |
-
color: #3c763d;
|
512 |
-
}
|
513 |
-
a.text-success:hover {
|
514 |
-
color: #2b542c;
|
515 |
-
}
|
516 |
-
.text-info {
|
517 |
-
color: #31708f;
|
518 |
-
}
|
519 |
-
a.text-info:hover {
|
520 |
-
color: #245269;
|
521 |
-
}
|
522 |
-
.text-warning {
|
523 |
-
color: #8a6d3b;
|
524 |
-
}
|
525 |
-
a.text-warning:hover {
|
526 |
-
color: #66512c;
|
527 |
-
}
|
528 |
-
.text-danger {
|
529 |
-
color: #a94442;
|
530 |
-
}
|
531 |
-
a.text-danger:hover {
|
532 |
-
color: #843534;
|
533 |
-
}
|
534 |
-
.bg-primary {
|
535 |
-
color: #fff;
|
536 |
-
background-color: #428bca;
|
537 |
-
}
|
538 |
-
a.bg-primary:hover {
|
539 |
-
background-color: #3071a9;
|
540 |
-
}
|
541 |
-
.bg-success {
|
542 |
-
background-color: #dff0d8;
|
543 |
-
}
|
544 |
-
a.bg-success:hover {
|
545 |
-
background-color: #c1e2b3;
|
546 |
-
}
|
547 |
-
.bg-info {
|
548 |
-
background-color: #d9edf7;
|
549 |
-
}
|
550 |
-
a.bg-info:hover {
|
551 |
-
background-color: #afd9ee;
|
552 |
-
}
|
553 |
-
.bg-warning {
|
554 |
-
background-color: #fcf8e3;
|
555 |
-
}
|
556 |
-
a.bg-warning:hover {
|
557 |
-
background-color: #f7ecb5;
|
558 |
-
}
|
559 |
-
.bg-danger {
|
560 |
-
background-color: #f2dede;
|
561 |
-
}
|
562 |
-
a.bg-danger:hover {
|
563 |
-
background-color: #e4b9b9;
|
564 |
-
}
|
565 |
-
.page-header {
|
566 |
-
padding-bottom: 9px;
|
567 |
-
margin: 40px 0 20px;
|
568 |
-
border-bottom: 1px solid #eee;
|
569 |
-
}
|
570 |
-
ul,
|
571 |
-
ol {
|
572 |
-
margin-top: 0;
|
573 |
-
margin-bottom: 10px;
|
574 |
-
}
|
575 |
-
ul ul,
|
576 |
-
ol ul,
|
577 |
-
ul ol,
|
578 |
-
ol ol {
|
579 |
-
margin-bottom: 0;
|
580 |
-
}
|
581 |
-
.list-unstyled {
|
582 |
-
padding-left: 0;
|
583 |
-
list-style: none;
|
584 |
-
}
|
585 |
-
.list-inline {
|
586 |
-
padding-left: 0;
|
587 |
-
margin-left: -5px;
|
588 |
-
list-style: none;
|
589 |
-
}
|
590 |
-
.list-inline > li {
|
591 |
-
display: inline-block;
|
592 |
-
padding-right: 5px;
|
593 |
-
padding-left: 5px;
|
594 |
-
}
|
595 |
-
dl {
|
596 |
-
margin-top: 0;
|
597 |
-
margin-bottom: 20px;
|
598 |
-
}
|
599 |
-
dt,
|
600 |
-
dd {
|
601 |
-
line-height: 1.42857143;
|
602 |
-
}
|
603 |
-
dt {
|
604 |
-
font-weight: bold;
|
605 |
-
}
|
606 |
-
dd {
|
607 |
-
margin-left: 0;
|
608 |
-
}
|
609 |
-
@media (min-width: 768px) {
|
610 |
-
.dl-horizontal dt {
|
611 |
-
float: left;
|
612 |
-
width: 160px;
|
613 |
-
overflow: hidden;
|
614 |
-
clear: left;
|
615 |
-
text-align: right;
|
616 |
-
text-overflow: ellipsis;
|
617 |
-
white-space: nowrap;
|
618 |
-
}
|
619 |
-
.dl-horizontal dd {
|
620 |
-
margin-left: 180px;
|
621 |
-
}
|
622 |
-
}
|
623 |
-
abbr[title],
|
624 |
-
abbr[data-original-title] {
|
625 |
-
cursor: help;
|
626 |
-
border-bottom: 1px dotted #999;
|
627 |
-
}
|
628 |
-
.initialism {
|
629 |
-
font-size: 90%;
|
630 |
-
text-transform: uppercase;
|
631 |
-
}
|
632 |
-
blockquote {
|
633 |
-
padding: 10px 20px;
|
634 |
-
margin: 0 0 20px;
|
635 |
-
font-size: 17.5px;
|
636 |
-
border-left: 5px solid #eee;
|
637 |
-
}
|
638 |
-
blockquote p:last-child,
|
639 |
-
blockquote ul:last-child,
|
640 |
-
blockquote ol:last-child {
|
641 |
-
margin-bottom: 0;
|
642 |
-
}
|
643 |
-
blockquote footer,
|
644 |
-
blockquote small,
|
645 |
-
blockquote .small {
|
646 |
-
display: block;
|
647 |
-
font-size: 80%;
|
648 |
-
line-height: 1.42857143;
|
649 |
-
color: #999;
|
650 |
-
}
|
651 |
-
blockquote footer:before,
|
652 |
-
blockquote small:before,
|
653 |
-
blockquote .small:before {
|
654 |
-
content: '\2014 \00A0';
|
655 |
-
}
|
656 |
-
.blockquote-reverse,
|
657 |
-
blockquote.pull-right {
|
658 |
-
padding-right: 15px;
|
659 |
-
padding-left: 0;
|
660 |
-
text-align: right;
|
661 |
-
border-right: 5px solid #eee;
|
662 |
-
border-left: 0;
|
663 |
-
}
|
664 |
-
.blockquote-reverse footer:before,
|
665 |
-
blockquote.pull-right footer:before,
|
666 |
-
.blockquote-reverse small:before,
|
667 |
-
blockquote.pull-right small:before,
|
668 |
-
.blockquote-reverse .small:before,
|
669 |
-
blockquote.pull-right .small:before {
|
670 |
-
content: '';
|
671 |
-
}
|
672 |
-
.blockquote-reverse footer:after,
|
673 |
-
blockquote.pull-right footer:after,
|
674 |
-
.blockquote-reverse small:after,
|
675 |
-
blockquote.pull-right small:after,
|
676 |
-
.blockquote-reverse .small:after,
|
677 |
-
blockquote.pull-right .small:after {
|
678 |
-
content: '\00A0 \2014';
|
679 |
-
}
|
680 |
-
blockquote:before,
|
681 |
-
blockquote:after {
|
682 |
-
content: "";
|
683 |
-
}
|
684 |
-
address {
|
685 |
-
margin-bottom: 20px;
|
686 |
-
font-style: normal;
|
687 |
-
line-height: 1.42857143;
|
688 |
-
}
|
689 |
-
code,
|
690 |
-
kbd,
|
691 |
-
pre,
|
692 |
-
samp {
|
693 |
-
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
|
694 |
-
}
|
695 |
-
code {
|
696 |
-
padding: 2px 4px;
|
697 |
-
font-size: 90%;
|
698 |
-
color: #c7254e;
|
699 |
-
white-space: nowrap;
|
700 |
-
background-color: #f9f2f4;
|
701 |
-
border-radius: 4px;
|
702 |
-
}
|
703 |
-
kbd {
|
704 |
-
padding: 2px 4px;
|
705 |
-
font-size: 90%;
|
706 |
-
color: #fff;
|
707 |
-
background-color: #333;
|
708 |
-
border-radius: 3px;
|
709 |
-
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
|
710 |
-
}
|
711 |
-
pre {
|
712 |
-
display: block;
|
713 |
-
padding: 9.5px;
|
714 |
-
margin: 0 0 10px;
|
715 |
-
font-size: 13px;
|
716 |
-
line-height: 1.42857143;
|
717 |
-
color: #333;
|
718 |
-
word-break: break-all;
|
719 |
-
word-wrap: break-word;
|
720 |
-
background-color: #f5f5f5;
|
721 |
-
border: 1px solid #ccc;
|
722 |
-
border-radius: 4px;
|
723 |
-
}
|
724 |
-
pre code {
|
725 |
-
padding: 0;
|
726 |
-
font-size: inherit;
|
727 |
-
color: inherit;
|
728 |
-
white-space: pre-wrap;
|
729 |
-
background-color: transparent;
|
730 |
-
border-radius: 0;
|
731 |
-
}
|
732 |
-
.pre-scrollable {
|
733 |
-
max-height: 340px;
|
734 |
-
overflow-y: scroll;
|
735 |
-
}
|
736 |
-
.container {
|
737 |
-
padding-right: 15px;
|
738 |
-
padding-left: 15px;
|
739 |
-
margin-right: auto;
|
740 |
-
margin-left: auto;
|
741 |
-
}
|
742 |
-
@media (min-width: 768px) {
|
743 |
-
.container {
|
744 |
-
width: 750px;
|
745 |
-
}
|
746 |
-
}
|
747 |
-
@media (min-width: 992px) {
|
748 |
-
.container {
|
749 |
-
width: 970px;
|
750 |
-
}
|
751 |
-
}
|
752 |
-
@media (min-width: 1200px) {
|
753 |
-
.container {
|
754 |
-
width: 1170px;
|
755 |
-
}
|
756 |
-
}
|
757 |
-
.container-fluid {
|
758 |
-
padding-right: 15px;
|
759 |
-
padding-left: 15px;
|
760 |
-
margin-right: auto;
|
761 |
-
margin-left: auto;
|
762 |
-
}
|
763 |
-
.row {
|
764 |
-
margin-right: -15px;
|
765 |
-
margin-left: -15px;
|
766 |
-
}
|
767 |
-
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
|
768 |
-
position: relative;
|
769 |
-
min-height: 1px;
|
770 |
-
padding-right: 15px;
|
771 |
-
padding-left: 15px;
|
772 |
-
}
|
773 |
-
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
|
774 |
-
float: left;
|
775 |
-
}
|
776 |
-
.col-xs-12 {
|
777 |
-
width: 100%;
|
778 |
-
}
|
779 |
-
.col-xs-11 {
|
780 |
-
width: 91.66666667%;
|
781 |
-
}
|
782 |
-
.col-xs-10 {
|
783 |
-
width: 83.33333333%;
|
784 |
-
}
|
785 |
-
.col-xs-9 {
|
786 |
-
width: 75%;
|
787 |
-
}
|
788 |
-
.col-xs-8 {
|
789 |
-
width: 66.66666667%;
|
790 |
-
}
|
791 |
-
.col-xs-7 {
|
792 |
-
width: 58.33333333%;
|
793 |
-
}
|
794 |
-
.col-xs-6 {
|
795 |
-
width: 50%;
|
796 |
-
}
|
797 |
-
.col-xs-5 {
|
798 |
-
width: 41.66666667%;
|
799 |
-
}
|
800 |
-
.col-xs-4 {
|
801 |
-
width: 33.33333333%;
|
802 |
-
}
|
803 |
-
.col-xs-3 {
|
804 |
-
width: 25%;
|
805 |
-
}
|
806 |
-
.col-xs-2 {
|
807 |
-
width: 16.66666667%;
|
808 |
-
}
|
809 |
-
.col-xs-1 {
|
810 |
-
width: 8.33333333%;
|
811 |
-
}
|
812 |
-
.col-xs-pull-12 {
|
813 |
-
right: 100%;
|
814 |
-
}
|
815 |
-
.col-xs-pull-11 {
|
816 |
-
right: 91.66666667%;
|
817 |
-
}
|
818 |
-
.col-xs-pull-10 {
|
819 |
-
right: 83.33333333%;
|
820 |
-
}
|
821 |
-
.col-xs-pull-9 {
|
822 |
-
right: 75%;
|
823 |
-
}
|
824 |
-
.col-xs-pull-8 {
|
825 |
-
right: 66.66666667%;
|
826 |
-
}
|
827 |
-
.col-xs-pull-7 {
|
828 |
-
right: 58.33333333%;
|
829 |
-
}
|
830 |
-
.col-xs-pull-6 {
|
831 |
-
right: 50%;
|
832 |
-
}
|
833 |
-
.col-xs-pull-5 {
|
834 |
-
right: 41.66666667%;
|
835 |
-
}
|
836 |
-
.col-xs-pull-4 {
|
837 |
-
right: 33.33333333%;
|
838 |
-
}
|
839 |
-
.col-xs-pull-3 {
|
840 |
-
right: 25%;
|
841 |
-
}
|
842 |
-
.col-xs-pull-2 {
|
843 |
-
right: 16.66666667%;
|
844 |
-
}
|
845 |
-
.col-xs-pull-1 {
|
846 |
-
right: 8.33333333%;
|
847 |
-
}
|
848 |
-
.col-xs-pull-0 {
|
849 |
-
right: 0;
|
850 |
-
}
|
851 |
-
.col-xs-push-12 {
|
852 |
-
left: 100%;
|
853 |
-
}
|
854 |
-
.col-xs-push-11 {
|
855 |
-
left: 91.66666667%;
|
856 |
-
}
|
857 |
-
.col-xs-push-10 {
|
858 |
-
left: 83.33333333%;
|
859 |
-
}
|
860 |
-
.col-xs-push-9 {
|
861 |
-
left: 75%;
|
862 |
-
}
|
863 |
-
.col-xs-push-8 {
|
864 |
-
left: 66.66666667%;
|
865 |
-
}
|
866 |
-
.col-xs-push-7 {
|
867 |
-
left: 58.33333333%;
|
868 |
-
}
|
869 |
-
.col-xs-push-6 {
|
870 |
-
left: 50%;
|
871 |
-
}
|
872 |
-
.col-xs-push-5 {
|
873 |
-
left: 41.66666667%;
|
874 |
-
}
|
875 |
-
.col-xs-push-4 {
|
876 |
-
left: 33.33333333%;
|
877 |
-
}
|
878 |
-
.col-xs-push-3 {
|
879 |
-
left: 25%;
|
880 |
-
}
|
881 |
-
.col-xs-push-2 {
|
882 |
-
left: 16.66666667%;
|
883 |
-
}
|
884 |
-
.col-xs-push-1 {
|
885 |
-
left: 8.33333333%;
|
886 |
-
}
|
887 |
-
.col-xs-push-0 {
|
888 |
-
left: 0;
|
889 |
-
}
|
890 |
-
.col-xs-offset-12 {
|
891 |
-
margin-left: 100%;
|
892 |
-
}
|
893 |
-
.col-xs-offset-11 {
|
894 |
-
margin-left: 91.66666667%;
|
895 |
-
}
|
896 |
-
.col-xs-offset-10 {
|
897 |
-
margin-left: 83.33333333%;
|
898 |
-
}
|
899 |
-
.col-xs-offset-9 {
|
900 |
-
margin-left: 75%;
|
901 |
-
}
|
902 |
-
.col-xs-offset-8 {
|
903 |
-
margin-left: 66.66666667%;
|
904 |
-
}
|
905 |
-
.col-xs-offset-7 {
|
906 |
-
margin-left: 58.33333333%;
|
907 |
-
}
|
908 |
-
.col-xs-offset-6 {
|
909 |
-
margin-left: 50%;
|
910 |
-
}
|
911 |
-
.col-xs-offset-5 {
|
912 |
-
margin-left: 41.66666667%;
|
913 |
-
}
|
914 |
-
.col-xs-offset-4 {
|
915 |
-
margin-left: 33.33333333%;
|
916 |
-
}
|
917 |
-
.col-xs-offset-3 {
|
918 |
-
margin-left: 25%;
|
919 |
-
}
|
920 |
-
.col-xs-offset-2 {
|
921 |
-
margin-left: 16.66666667%;
|
922 |
-
}
|
923 |
-
.col-xs-offset-1 {
|
924 |
-
margin-left: 8.33333333%;
|
925 |
-
}
|
926 |
-
.col-xs-offset-0 {
|
927 |
-
margin-left: 0;
|
928 |
-
}
|
929 |
-
@media (min-width: 768px) {
|
930 |
-
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
|
931 |
-
float: left;
|
932 |
-
}
|
933 |
-
.col-sm-12 {
|
934 |
-
width: 100%;
|
935 |
-
}
|
936 |
-
.col-sm-11 {
|
937 |
-
width: 91.66666667%;
|
938 |
-
}
|
939 |
-
.col-sm-10 {
|
940 |
-
width: 83.33333333%;
|
941 |
-
}
|
942 |
-
.col-sm-9 {
|
943 |
-
width: 75%;
|
944 |
-
}
|
945 |
-
.col-sm-8 {
|
946 |
-
width: 66.66666667%;
|
947 |
-
}
|
948 |
-
.col-sm-7 {
|
949 |
-
width: 58.33333333%;
|
950 |
-
}
|
951 |
-
.col-sm-6 {
|
952 |
-
width: 50%;
|
953 |
-
}
|
954 |
-
.col-sm-5 {
|
955 |
-
width: 41.66666667%;
|
956 |
-
}
|
957 |
-
.col-sm-4 {
|
958 |
-
width: 33.33333333%;
|
959 |
-
}
|
960 |
-
.col-sm-3 {
|
961 |
-
width: 25%;
|
962 |
-
}
|
963 |
-
.col-sm-2 {
|
964 |
-
width: 16.66666667%;
|
965 |
-
}
|
966 |
-
.col-sm-1 {
|
967 |
-
width: 8.33333333%;
|
968 |
-
}
|
969 |
-
.col-sm-pull-12 {
|
970 |
-
right: 100%;
|
971 |
-
}
|
972 |
-
.col-sm-pull-11 {
|
973 |
-
right: 91.66666667%;
|
974 |
-
}
|
975 |
-
.col-sm-pull-10 {
|
976 |
-
right: 83.33333333%;
|
977 |
-
}
|
978 |
-
.col-sm-pull-9 {
|
979 |
-
right: 75%;
|
980 |
-
}
|
981 |
-
.col-sm-pull-8 {
|
982 |
-
right: 66.66666667%;
|
983 |
-
}
|
984 |
-
.col-sm-pull-7 {
|
985 |
-
right: 58.33333333%;
|
986 |
-
}
|
987 |
-
.col-sm-pull-6 {
|
988 |
-
right: 50%;
|
989 |
-
}
|
990 |
-
.col-sm-pull-5 {
|
991 |
-
right: 41.66666667%;
|
992 |
-
}
|
993 |
-
.col-sm-pull-4 {
|
994 |
-
right: 33.33333333%;
|
995 |
-
}
|
996 |
-
.col-sm-pull-3 {
|
997 |
-
right: 25%;
|
998 |
-
}
|
999 |
-
.col-sm-pull-2 {
|
1000 |
-
right: 16.66666667%;
|
1001 |
-
}
|
1002 |
-
.col-sm-pull-1 {
|
1003 |
-
right: 8.33333333%;
|
1004 |
-
}
|
1005 |
-
.col-sm-pull-0 {
|
1006 |
-
right: 0;
|
1007 |
-
}
|
1008 |
-
.col-sm-push-12 {
|
1009 |
-
left: 100%;
|
1010 |
-
}
|
1011 |
-
.col-sm-push-11 {
|
1012 |
-
left: 91.66666667%;
|
1013 |
-
}
|
1014 |
-
.col-sm-push-10 {
|
1015 |
-
left: 83.33333333%;
|
1016 |
-
}
|
1017 |
-
.col-sm-push-9 {
|
1018 |
-
left: 75%;
|
1019 |
-
}
|
1020 |
-
.col-sm-push-8 {
|
1021 |
-
left: 66.66666667%;
|
1022 |
-
}
|
1023 |
-
.col-sm-push-7 {
|
1024 |
-
left: 58.33333333%;
|
1025 |
-
}
|
1026 |
-
.col-sm-push-6 {
|
1027 |
-
left: 50%;
|
1028 |
-
}
|
1029 |
-
.col-sm-push-5 {
|
1030 |
-
left: 41.66666667%;
|
1031 |
-
}
|
1032 |
-
.col-sm-push-4 {
|
1033 |
-
left: 33.33333333%;
|
1034 |
-
}
|
1035 |
-
.col-sm-push-3 {
|
1036 |
-
left: 25%;
|
1037 |
-
}
|
1038 |
-
.col-sm-push-2 {
|
1039 |
-
left: 16.66666667%;
|
1040 |
-
}
|
1041 |
-
.col-sm-push-1 {
|
1042 |
-
left: 8.33333333%;
|
1043 |
-
}
|
1044 |
-
.col-sm-push-0 {
|
1045 |
-
left: 0;
|
1046 |
-
}
|
1047 |
-
.col-sm-offset-12 {
|
1048 |
-
margin-left: 100%;
|
1049 |
-
}
|
1050 |
-
.col-sm-offset-11 {
|
1051 |
-
margin-left: 91.66666667%;
|
1052 |
-
}
|
1053 |
-
.col-sm-offset-10 {
|
1054 |
-
margin-left: 83.33333333%;
|
1055 |
-
}
|
1056 |
-
.col-sm-offset-9 {
|
1057 |
-
margin-left: 75%;
|
1058 |
-
}
|
1059 |
-
.col-sm-offset-8 {
|
1060 |
-
margin-left: 66.66666667%;
|
1061 |
-
}
|
1062 |
-
.col-sm-offset-7 {
|
1063 |
-
margin-left: 58.33333333%;
|
1064 |
-
}
|
1065 |
-
.col-sm-offset-6 {
|
1066 |
-
margin-left: 50%;
|
1067 |
-
}
|
1068 |
-
.col-sm-offset-5 {
|
1069 |
-
margin-left: 41.66666667%;
|
1070 |
-
}
|
1071 |
-
.col-sm-offset-4 {
|
1072 |
-
margin-left: 33.33333333%;
|
1073 |
-
}
|
1074 |
-
.col-sm-offset-3 {
|
1075 |
-
margin-left: 25%;
|
1076 |
-
}
|
1077 |
-
.col-sm-offset-2 {
|
1078 |
-
margin-left: 16.66666667%;
|
1079 |
-
}
|
1080 |
-
.col-sm-offset-1 {
|
1081 |
-
margin-left: 8.33333333%;
|
1082 |
-
}
|
1083 |
-
.col-sm-offset-0 {
|
1084 |
-
margin-left: 0;
|
1085 |
-
}
|
1086 |
-
}
|
1087 |
-
@media (min-width: 992px) {
|
1088 |
-
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
|
1089 |
-
float: left;
|
1090 |
-
}
|
1091 |
-
.col-md-12 {
|
1092 |
-
width: 100%;
|
1093 |
-
}
|
1094 |
-
.col-md-11 {
|
1095 |
-
width: 91.66666667%;
|
1096 |
-
}
|
1097 |
-
.col-md-10 {
|
1098 |
-
width: 83.33333333%;
|
1099 |
-
}
|
1100 |
-
.col-md-9 {
|
1101 |
-
width: 75%;
|
1102 |
-
}
|
1103 |
-
.col-md-8 {
|
1104 |
-
width: 66.66666667%;
|
1105 |
-
}
|
1106 |
-
.col-md-7 {
|
1107 |
-
width: 58.33333333%;
|
1108 |
-
}
|
1109 |
-
.col-md-6 {
|
1110 |
-
width: 50%;
|
1111 |
-
}
|
1112 |
-
.col-md-5 {
|
1113 |
-
width: 41.66666667%;
|
1114 |
-
}
|
1115 |
-
.col-md-4 {
|
1116 |
-
width: 33.33333333%;
|
1117 |
-
}
|
1118 |
-
.col-md-3 {
|
1119 |
-
width: 25%;
|
1120 |
-
}
|
1121 |
-
.col-md-2 {
|
1122 |
-
width: 16.66666667%;
|
1123 |
-
}
|
1124 |
-
.col-md-1 {
|
1125 |
-
width: 8.33333333%;
|
1126 |
-
}
|
1127 |
-
.col-md-pull-12 {
|
1128 |
-
right: 100%;
|
1129 |
-
}
|
1130 |
-
.col-md-pull-11 {
|
1131 |
-
right: 91.66666667%;
|
1132 |
-
}
|
1133 |
-
.col-md-pull-10 {
|
1134 |
-
right: 83.33333333%;
|
1135 |
-
}
|
1136 |
-
.col-md-pull-9 {
|
1137 |
-
right: 75%;
|
1138 |
-
}
|
1139 |
-
.col-md-pull-8 {
|
1140 |
-
right: 66.66666667%;
|
1141 |
-
}
|
1142 |
-
.col-md-pull-7 {
|
1143 |
-
right: 58.33333333%;
|
1144 |
-
}
|
1145 |
-
.col-md-pull-6 {
|
1146 |
-
right: 50%;
|
1147 |
-
}
|
1148 |
-
.col-md-pull-5 {
|
1149 |
-
right: 41.66666667%;
|
1150 |
-
}
|
1151 |
-
.col-md-pull-4 {
|
1152 |
-
right: 33.33333333%;
|
1153 |
-
}
|
1154 |
-
.col-md-pull-3 {
|
1155 |
-
right: 25%;
|
1156 |
-
}
|
1157 |
-
.col-md-pull-2 {
|
1158 |
-
right: 16.66666667%;
|
1159 |
-
}
|
1160 |
-
.col-md-pull-1 {
|
1161 |
-
right: 8.33333333%;
|
1162 |
-
}
|
1163 |
-
.col-md-pull-0 {
|
1164 |
-
right: 0;
|
1165 |
-
}
|
1166 |
-
.col-md-push-12 {
|
1167 |
-
left: 100%;
|
1168 |
-
}
|
1169 |
-
.col-md-push-11 {
|
1170 |
-
left: 91.66666667%;
|
1171 |
-
}
|
1172 |
-
.col-md-push-10 {
|
1173 |
-
left: 83.33333333%;
|
1174 |
-
}
|
1175 |
-
.col-md-push-9 {
|
1176 |
-
left: 75%;
|
1177 |
-
}
|
1178 |
-
.col-md-push-8 {
|
1179 |
-
left: 66.66666667%;
|
1180 |
-
}
|
1181 |
-
.col-md-push-7 {
|
1182 |
-
left: 58.33333333%;
|
1183 |
-
}
|
1184 |
-
.col-md-push-6 {
|
1185 |
-
left: 50%;
|
1186 |
-
}
|
1187 |
-
.col-md-push-5 {
|
1188 |
-
left: 41.66666667%;
|
1189 |
-
}
|
1190 |
-
.col-md-push-4 {
|
1191 |
-
left: 33.33333333%;
|
1192 |
-
}
|
1193 |
-
.col-md-push-3 {
|
1194 |
-
left: 25%;
|
1195 |
-
}
|
1196 |
-
.col-md-push-2 {
|
1197 |
-
left: 16.66666667%;
|
1198 |
-
}
|
1199 |
-
.col-md-push-1 {
|
1200 |
-
left: 8.33333333%;
|
1201 |
-
}
|
1202 |
-
.col-md-push-0 {
|
1203 |
-
left: 0;
|
1204 |
-
}
|
1205 |
-
.col-md-offset-12 {
|
1206 |
-
margin-left: 100%;
|
1207 |
-
}
|
1208 |
-
.col-md-offset-11 {
|
1209 |
-
margin-left: 91.66666667%;
|
1210 |
-
}
|
1211 |
-
.col-md-offset-10 {
|
1212 |
-
margin-left: 83.33333333%;
|
1213 |
-
}
|
1214 |
-
.col-md-offset-9 {
|
1215 |
-
margin-left: 75%;
|
1216 |
-
}
|
1217 |
-
.col-md-offset-8 {
|
1218 |
-
margin-left: 66.66666667%;
|
1219 |
-
}
|
1220 |
-
.col-md-offset-7 {
|
1221 |
-
margin-left: 58.33333333%;
|
1222 |
-
}
|
1223 |
-
.col-md-offset-6 {
|
1224 |
-
margin-left: 50%;
|
1225 |
-
}
|
1226 |
-
.col-md-offset-5 {
|
1227 |
-
margin-left: 41.66666667%;
|
1228 |
-
}
|
1229 |
-
.col-md-offset-4 {
|
1230 |
-
margin-left: 33.33333333%;
|
1231 |
-
}
|
1232 |
-
.col-md-offset-3 {
|
1233 |
-
margin-left: 25%;
|
1234 |
-
}
|
1235 |
-
.col-md-offset-2 {
|
1236 |
-
margin-left: 16.66666667%;
|
1237 |
-
}
|
1238 |
-
.col-md-offset-1 {
|
1239 |
-
margin-left: 8.33333333%;
|
1240 |
-
}
|
1241 |
-
.col-md-offset-0 {
|
1242 |
-
margin-left: 0;
|
1243 |
-
}
|
1244 |
-
}
|
1245 |
-
@media (min-width: 1200px) {
|
1246 |
-
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
|
1247 |
-
float: left;
|
1248 |
-
}
|
1249 |
-
.col-lg-12 {
|
1250 |
-
width: 100%;
|
1251 |
-
}
|
1252 |
-
.col-lg-11 {
|
1253 |
-
width: 91.66666667%;
|
1254 |
-
}
|
1255 |
-
.col-lg-10 {
|
1256 |
-
width: 83.33333333%;
|
1257 |
-
}
|
1258 |
-
.col-lg-9 {
|
1259 |
-
width: 75%;
|
1260 |
-
}
|
1261 |
-
.col-lg-8 {
|
1262 |
-
width: 66.66666667%;
|
1263 |
-
}
|
1264 |
-
.col-lg-7 {
|
1265 |
-
width: 58.33333333%;
|
1266 |
-
}
|
1267 |
-
.col-lg-6 {
|
1268 |
-
width: 50%;
|
1269 |
-
}
|
1270 |
-
.col-lg-5 {
|
1271 |
-
width: 41.66666667%;
|
1272 |
-
}
|
1273 |
-
.col-lg-4 {
|
1274 |
-
width: 33.33333333%;
|
1275 |
-
}
|
1276 |
-
.col-lg-3 {
|
1277 |
-
width: 25%;
|
1278 |
-
}
|
1279 |
-
.col-lg-2 {
|
1280 |
-
width: 16.66666667%;
|
1281 |
-
}
|
1282 |
-
.col-lg-1 {
|
1283 |
-
width: 8.33333333%;
|
1284 |
-
}
|
1285 |
-
.col-lg-pull-12 {
|
1286 |
-
right: 100%;
|
1287 |
-
}
|
1288 |
-
.col-lg-pull-11 {
|
1289 |
-
right: 91.66666667%;
|
1290 |
-
}
|
1291 |
-
.col-lg-pull-10 {
|
1292 |
-
right: 83.33333333%;
|
1293 |
-
}
|
1294 |
-
.col-lg-pull-9 {
|
1295 |
-
right: 75%;
|
1296 |
-
}
|
1297 |
-
.col-lg-pull-8 {
|
1298 |
-
right: 66.66666667%;
|
1299 |
-
}
|
1300 |
-
.col-lg-pull-7 {
|
1301 |
-
right: 58.33333333%;
|
1302 |
-
}
|
1303 |
-
.col-lg-pull-6 {
|
1304 |
-
right: 50%;
|
1305 |
-
}
|
1306 |
-
.col-lg-pull-5 {
|
1307 |
-
right: 41.66666667%;
|
1308 |
-
}
|
1309 |
-
.col-lg-pull-4 {
|
1310 |
-
right: 33.33333333%;
|
1311 |
-
}
|
1312 |
-
.col-lg-pull-3 {
|
1313 |
-
right: 25%;
|
1314 |
-
}
|
1315 |
-
.col-lg-pull-2 {
|
1316 |
-
right: 16.66666667%;
|
1317 |
-
}
|
1318 |
-
.col-lg-pull-1 {
|
1319 |
-
right: 8.33333333%;
|
1320 |
-
}
|
1321 |
-
.col-lg-pull-0 {
|
1322 |
-
right: 0;
|
1323 |
-
}
|
1324 |
-
.col-lg-push-12 {
|
1325 |
-
left: 100%;
|
1326 |
-
}
|
1327 |
-
.col-lg-push-11 {
|
1328 |
-
left: 91.66666667%;
|
1329 |
-
}
|
1330 |
-
.col-lg-push-10 {
|
1331 |
-
left: 83.33333333%;
|
1332 |
-
}
|
1333 |
-
.col-lg-push-9 {
|
1334 |
-
left: 75%;
|
1335 |
-
}
|
1336 |
-
.col-lg-push-8 {
|
1337 |
-
left: 66.66666667%;
|
1338 |
-
}
|
1339 |
-
.col-lg-push-7 {
|
1340 |
-
left: 58.33333333%;
|
1341 |
-
}
|
1342 |
-
.col-lg-push-6 {
|
1343 |
-
left: 50%;
|
1344 |
-
}
|
1345 |
-
.col-lg-push-5 {
|
1346 |
-
left: 41.66666667%;
|
1347 |
-
}
|
1348 |
-
.col-lg-push-4 {
|
1349 |
-
left: 33.33333333%;
|
1350 |
-
}
|
1351 |
-
.col-lg-push-3 {
|
1352 |
-
left: 25%;
|
1353 |
-
}
|
1354 |
-
.col-lg-push-2 {
|
1355 |
-
left: 16.66666667%;
|
1356 |
-
}
|
1357 |
-
.col-lg-push-1 {
|
1358 |
-
left: 8.33333333%;
|
1359 |
-
}
|
1360 |
-
.col-lg-push-0 {
|
1361 |
-
left: 0;
|
1362 |
-
}
|
1363 |
-
.col-lg-offset-12 {
|
1364 |
-
margin-left: 100%;
|
1365 |
-
}
|
1366 |
-
.col-lg-offset-11 {
|
1367 |
-
margin-left: 91.66666667%;
|
1368 |
-
}
|
1369 |
-
.col-lg-offset-10 {
|
1370 |
-
margin-left: 83.33333333%;
|
1371 |
-
}
|
1372 |
-
.col-lg-offset-9 {
|
1373 |
-
margin-left: 75%;
|
1374 |
-
}
|
1375 |
-
.col-lg-offset-8 {
|
1376 |
-
margin-left: 66.66666667%;
|
1377 |
-
}
|
1378 |
-
.col-lg-offset-7 {
|
1379 |
-
margin-left: 58.33333333%;
|
1380 |
-
}
|
1381 |
-
.col-lg-offset-6 {
|
1382 |
-
margin-left: 50%;
|
1383 |
-
}
|
1384 |
-
.col-lg-offset-5 {
|
1385 |
-
margin-left: 41.66666667%;
|
1386 |
-
}
|
1387 |
-
.col-lg-offset-4 {
|
1388 |
-
margin-left: 33.33333333%;
|
1389 |
-
}
|
1390 |
-
.col-lg-offset-3 {
|
1391 |
-
margin-left: 25%;
|
1392 |
-
}
|
1393 |
-
.col-lg-offset-2 {
|
1394 |
-
margin-left: 16.66666667%;
|
1395 |
-
}
|
1396 |
-
.col-lg-offset-1 {
|
1397 |
-
margin-left: 8.33333333%;
|
1398 |
-
}
|
1399 |
-
.col-lg-offset-0 {
|
1400 |
-
margin-left: 0;
|
1401 |
-
}
|
1402 |
-
}
|
1403 |
-
table {
|
1404 |
-
max-width: 100%;
|
1405 |
-
background-color: transparent;
|
1406 |
-
}
|
1407 |
-
th {
|
1408 |
-
text-align: left;
|
1409 |
-
}
|
1410 |
-
.table {
|
1411 |
-
width: 100%;
|
1412 |
-
margin-bottom: 20px;
|
1413 |
-
}
|
1414 |
-
.table > thead > tr > th,
|
1415 |
-
.table > tbody > tr > th,
|
1416 |
-
.table > tfoot > tr > th,
|
1417 |
-
.table > thead > tr > td,
|
1418 |
-
.table > tbody > tr > td,
|
1419 |
-
.table > tfoot > tr > td {
|
1420 |
-
padding: 8px;
|
1421 |
-
line-height: 1.42857143;
|
1422 |
-
vertical-align: top;
|
1423 |
-
border-top: 1px solid #ddd;
|
1424 |
-
}
|
1425 |
-
.table > thead > tr > th {
|
1426 |
-
vertical-align: bottom;
|
1427 |
-
border-bottom: 2px solid #ddd;
|
1428 |
-
}
|
1429 |
-
.table > caption + thead > tr:first-child > th,
|
1430 |
-
.table > colgroup + thead > tr:first-child > th,
|
1431 |
-
.table > thead:first-child > tr:first-child > th,
|
1432 |
-
.table > caption + thead > tr:first-child > td,
|
1433 |
-
.table > colgroup + thead > tr:first-child > td,
|
1434 |
-
.table > thead:first-child > tr:first-child > td {
|
1435 |
-
border-top: 0;
|
1436 |
-
}
|
1437 |
-
.table > tbody + tbody {
|
1438 |
-
border-top: 2px solid #ddd;
|
1439 |
-
}
|
1440 |
-
.table .table {
|
1441 |
-
background-color: #fff;
|
1442 |
-
}
|
1443 |
-
.table-condensed > thead > tr > th,
|
1444 |
-
.table-condensed > tbody > tr > th,
|
1445 |
-
.table-condensed > tfoot > tr > th,
|
1446 |
-
.table-condensed > thead > tr > td,
|
1447 |
-
.table-condensed > tbody > tr > td,
|
1448 |
-
.table-condensed > tfoot > tr > td {
|
1449 |
-
padding: 5px;
|
1450 |
-
}
|
1451 |
-
.table-bordered {
|
1452 |
-
border: 1px solid #ddd;
|
1453 |
-
}
|
1454 |
-
.table-bordered > thead > tr > th,
|
1455 |
-
.table-bordered > tbody > tr > th,
|
1456 |
-
.table-bordered > tfoot > tr > th,
|
1457 |
-
.table-bordered > thead > tr > td,
|
1458 |
-
.table-bordered > tbody > tr > td,
|
1459 |
-
.table-bordered > tfoot > tr > td {
|
1460 |
-
border: 1px solid #ddd;
|
1461 |
-
}
|
1462 |
-
.table-bordered > thead > tr > th,
|
1463 |
-
.table-bordered > thead > tr > td {
|
1464 |
-
border-bottom-width: 2px;
|
1465 |
-
}
|
1466 |
-
.table-striped > tbody > tr:nth-child(odd) > td,
|
1467 |
-
.table-striped > tbody > tr:nth-child(odd) > th {
|
1468 |
-
background-color: #f9f9f9;
|
1469 |
-
}
|
1470 |
-
.table-hover > tbody > tr:hover > td,
|
1471 |
-
.table-hover > tbody > tr:hover > th {
|
1472 |
-
background-color: #f5f5f5;
|
1473 |
-
}
|
1474 |
-
table col[class*="col-"] {
|
1475 |
-
position: static;
|
1476 |
-
display: table-column;
|
1477 |
-
float: none;
|
1478 |
-
}
|
1479 |
-
table td[class*="col-"],
|
1480 |
-
table th[class*="col-"] {
|
1481 |
-
position: static;
|
1482 |
-
display: table-cell;
|
1483 |
-
float: none;
|
1484 |
-
}
|
1485 |
-
.table > thead > tr > td.active,
|
1486 |
-
.table > tbody > tr > td.active,
|
1487 |
-
.table > tfoot > tr > td.active,
|
1488 |
-
.table > thead > tr > th.active,
|
1489 |
-
.table > tbody > tr > th.active,
|
1490 |
-
.table > tfoot > tr > th.active,
|
1491 |
-
.table > thead > tr.active > td,
|
1492 |
-
.table > tbody > tr.active > td,
|
1493 |
-
.table > tfoot > tr.active > td,
|
1494 |
-
.table > thead > tr.active > th,
|
1495 |
-
.table > tbody > tr.active > th,
|
1496 |
-
.table > tfoot > tr.active > th {
|
1497 |
-
background-color: #f5f5f5;
|
1498 |
-
}
|
1499 |
-
.table-hover > tbody > tr > td.active:hover,
|
1500 |
-
.table-hover > tbody > tr > th.active:hover,
|
1501 |
-
.table-hover > tbody > tr.active:hover > td,
|
1502 |
-
.table-hover > tbody > tr.active:hover > th {
|
1503 |
-
background-color: #e8e8e8;
|
1504 |
-
}
|
1505 |
-
.table > thead > tr > td.success,
|
1506 |
-
.table > tbody > tr > td.success,
|
1507 |
-
.table > tfoot > tr > td.success,
|
1508 |
-
.table > thead > tr > th.success,
|
1509 |
-
.table > tbody > tr > th.success,
|
1510 |
-
.table > tfoot > tr > th.success,
|
1511 |
-
.table > thead > tr.success > td,
|
1512 |
-
.table > tbody > tr.success > td,
|
1513 |
-
.table > tfoot > tr.success > td,
|
1514 |
-
.table > thead > tr.success > th,
|
1515 |
-
.table > tbody > tr.success > th,
|
1516 |
-
.table > tfoot > tr.success > th {
|
1517 |
-
background-color: #dff0d8;
|
1518 |
-
}
|
1519 |
-
.table-hover > tbody > tr > td.success:hover,
|
1520 |
-
.table-hover > tbody > tr > th.success:hover,
|
1521 |
-
.table-hover > tbody > tr.success:hover > td,
|
1522 |
-
.table-hover > tbody > tr.success:hover > th {
|
1523 |
-
background-color: #d0e9c6;
|
1524 |
-
}
|
1525 |
-
.table > thead > tr > td.info,
|
1526 |
-
.table > tbody > tr > td.info,
|
1527 |
-
.table > tfoot > tr > td.info,
|
1528 |
-
.table > thead > tr > th.info,
|
1529 |
-
.table > tbody > tr > th.info,
|
1530 |
-
.table > tfoot > tr > th.info,
|
1531 |
-
.table > thead > tr.info > td,
|
1532 |
-
.table > tbody > tr.info > td,
|
1533 |
-
.table > tfoot > tr.info > td,
|
1534 |
-
.table > thead > tr.info > th,
|
1535 |
-
.table > tbody > tr.info > th,
|
1536 |
-
.table > tfoot > tr.info > th {
|
1537 |
-
background-color: #d9edf7;
|
1538 |
-
}
|
1539 |
-
.table-hover > tbody > tr > td.info:hover,
|
1540 |
-
.table-hover > tbody > tr > th.info:hover,
|
1541 |
-
.table-hover > tbody > tr.info:hover > td,
|
1542 |
-
.table-hover > tbody > tr.info:hover > th {
|
1543 |
-
background-color: #c4e3f3;
|
1544 |
-
}
|
1545 |
-
.table > thead > tr > td.warning,
|
1546 |
-
.table > tbody > tr > td.warning,
|
1547 |
-
.table > tfoot > tr > td.warning,
|
1548 |
-
.table > thead > tr > th.warning,
|
1549 |
-
.table > tbody > tr > th.warning,
|
1550 |
-
.table > tfoot > tr > th.warning,
|
1551 |
-
.table > thead > tr.warning > td,
|
1552 |
-
.table > tbody > tr.warning > td,
|
1553 |
-
.table > tfoot > tr.warning > td,
|
1554 |
-
.table > thead > tr.warning > th,
|
1555 |
-
.table > tbody > tr.warning > th,
|
1556 |
-
.table > tfoot > tr.warning > th {
|
1557 |
-
background-color: #fcf8e3;
|
1558 |
-
}
|
1559 |
-
.table-hover > tbody > tr > td.warning:hover,
|
1560 |
-
.table-hover > tbody > tr > th.warning:hover,
|
1561 |
-
.table-hover > tbody > tr.warning:hover > td,
|
1562 |
-
.table-hover > tbody > tr.warning:hover > th {
|
1563 |
-
background-color: #faf2cc;
|
1564 |
-
}
|
1565 |
-
.table > thead > tr > td.danger,
|
1566 |
-
.table > tbody > tr > td.danger,
|
1567 |
-
.table > tfoot > tr > td.danger,
|
1568 |
-
.table > thead > tr > th.danger,
|
1569 |
-
.table > tbody > tr > th.danger,
|
1570 |
-
.table > tfoot > tr > th.danger,
|
1571 |
-
.table > thead > tr.danger > td,
|
1572 |
-
.table > tbody > tr.danger > td,
|
1573 |
-
.table > tfoot > tr.danger > td,
|
1574 |
-
.table > thead > tr.danger > th,
|
1575 |
-
.table > tbody > tr.danger > th,
|
1576 |
-
.table > tfoot > tr.danger > th {
|
1577 |
-
background-color: #f2dede;
|
1578 |
-
}
|
1579 |
-
.table-hover > tbody > tr > td.danger:hover,
|
1580 |
-
.table-hover > tbody > tr > th.danger:hover,
|
1581 |
-
.table-hover > tbody > tr.danger:hover > td,
|
1582 |
-
.table-hover > tbody > tr.danger:hover > th {
|
1583 |
-
background-color: #ebcccc;
|
1584 |
-
}
|
1585 |
-
@media (max-width: 767px) {
|
1586 |
-
.table-responsive {
|
1587 |
-
width: 100%;
|
1588 |
-
margin-bottom: 15px;
|
1589 |
-
overflow-x: scroll;
|
1590 |
-
overflow-y: hidden;
|
1591 |
-
-webkit-overflow-scrolling: touch;
|
1592 |
-
-ms-overflow-style: -ms-autohiding-scrollbar;
|
1593 |
-
border: 1px solid #ddd;
|
1594 |
-
}
|
1595 |
-
.table-responsive > .table {
|
1596 |
-
margin-bottom: 0;
|
1597 |
-
}
|
1598 |
-
.table-responsive > .table > thead > tr > th,
|
1599 |
-
.table-responsive > .table > tbody > tr > th,
|
1600 |
-
.table-responsive > .table > tfoot > tr > th,
|
1601 |
-
.table-responsive > .table > thead > tr > td,
|
1602 |
-
.table-responsive > .table > tbody > tr > td,
|
1603 |
-
.table-responsive > .table > tfoot > tr > td {
|
1604 |
-
white-space: nowrap;
|
1605 |
-
}
|
1606 |
-
.table-responsive > .table-bordered {
|
1607 |
-
border: 0;
|
1608 |
-
}
|
1609 |
-
.table-responsive > .table-bordered > thead > tr > th:first-child,
|
1610 |
-
.table-responsive > .table-bordered > tbody > tr > th:first-child,
|
1611 |
-
.table-responsive > .table-bordered > tfoot > tr > th:first-child,
|
1612 |
-
.table-responsive > .table-bordered > thead > tr > td:first-child,
|
1613 |
-
.table-responsive > .table-bordered > tbody > tr > td:first-child,
|
1614 |
-
.table-responsive > .table-bordered > tfoot > tr > td:first-child {
|
1615 |
-
border-left: 0;
|
1616 |
-
}
|
1617 |
-
.table-responsive > .table-bordered > thead > tr > th:last-child,
|
1618 |
-
.table-responsive > .table-bordered > tbody > tr > th:last-child,
|
1619 |
-
.table-responsive > .table-bordered > tfoot > tr > th:last-child,
|
1620 |
-
.table-responsive > .table-bordered > thead > tr > td:last-child,
|
1621 |
-
.table-responsive > .table-bordered > tbody > tr > td:last-child,
|
1622 |
-
.table-responsive > .table-bordered > tfoot > tr > td:last-child {
|
1623 |
-
border-right: 0;
|
1624 |
-
}
|
1625 |
-
.table-responsive > .table-bordered > tbody > tr:last-child > th,
|
1626 |
-
.table-responsive > .table-bordered > tfoot > tr:last-child > th,
|
1627 |
-
.table-responsive > .table-bordered > tbody > tr:last-child > td,
|
1628 |
-
.table-responsive > .table-bordered > tfoot > tr:last-child > td {
|
1629 |
-
border-bottom: 0;
|
1630 |
-
}
|
1631 |
-
}
|
1632 |
-
fieldset {
|
1633 |
-
min-width: 0;
|
1634 |
-
padding: 0;
|
1635 |
-
margin: 0;
|
1636 |
-
border: 0;
|
1637 |
-
}
|
1638 |
-
legend {
|
1639 |
-
display: block;
|
1640 |
-
width: 100%;
|
1641 |
-
padding: 0;
|
1642 |
-
margin-bottom: 20px;
|
1643 |
-
font-size: 21px;
|
1644 |
-
line-height: inherit;
|
1645 |
-
color: #333;
|
1646 |
-
border: 0;
|
1647 |
-
border-bottom: 1px solid #e5e5e5;
|
1648 |
-
}
|
1649 |
-
label {
|
1650 |
-
display: inline-block;
|
1651 |
-
margin-bottom: 5px;
|
1652 |
-
font-weight: bold;
|
1653 |
-
}
|
1654 |
-
input[type="search"] {
|
1655 |
-
-webkit-box-sizing: border-box;
|
1656 |
-
-moz-box-sizing: border-box;
|
1657 |
-
box-sizing: border-box;
|
1658 |
-
}
|
1659 |
-
input[type="radio"],
|
1660 |
-
input[type="checkbox"] {
|
1661 |
-
margin: 4px 0 0;
|
1662 |
-
margin-top: 1px \9;
|
1663 |
-
/* IE8-9 */
|
1664 |
-
line-height: normal;
|
1665 |
-
}
|
1666 |
-
input[type="file"] {
|
1667 |
-
display: block;
|
1668 |
-
}
|
1669 |
-
input[type="range"] {
|
1670 |
-
display: block;
|
1671 |
-
width: 100%;
|
1672 |
-
}
|
1673 |
-
select[multiple],
|
1674 |
-
select[size] {
|
1675 |
-
height: auto;
|
1676 |
-
}
|
1677 |
-
input[type="file"]:focus,
|
1678 |
-
input[type="radio"]:focus,
|
1679 |
-
input[type="checkbox"]:focus {
|
1680 |
-
outline: thin dotted;
|
1681 |
-
outline: 5px auto -webkit-focus-ring-color;
|
1682 |
-
outline-offset: -2px;
|
1683 |
-
}
|
1684 |
-
output {
|
1685 |
-
display: block;
|
1686 |
-
padding-top: 7px;
|
1687 |
-
font-size: 14px;
|
1688 |
-
line-height: 1.42857143;
|
1689 |
-
color: #555;
|
1690 |
-
}
|
1691 |
-
.form-control {
|
1692 |
-
display: block;
|
1693 |
-
width: 100%;
|
1694 |
-
height: 34px;
|
1695 |
-
padding: 6px 12px;
|
1696 |
-
font-size: 14px;
|
1697 |
-
line-height: 1.42857143;
|
1698 |
-
color: #555;
|
1699 |
-
background-color: #fff;
|
1700 |
-
background-image: none;
|
1701 |
-
border: 1px solid #ccc;
|
1702 |
-
border-radius: 4px;
|
1703 |
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
1704 |
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
1705 |
-
-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
1706 |
-
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
1707 |
-
}
|
1708 |
-
.form-control:focus {
|
1709 |
-
border-color: #66afe9;
|
1710 |
-
outline: 0;
|
1711 |
-
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
|
1712 |
-
box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
|
1713 |
-
}
|
1714 |
-
.form-control::-moz-placeholder {
|
1715 |
-
color: #999;
|
1716 |
-
opacity: 1;
|
1717 |
-
}
|
1718 |
-
.form-control:-ms-input-placeholder {
|
1719 |
-
color: #999;
|
1720 |
-
}
|
1721 |
-
.form-control::-webkit-input-placeholder {
|
1722 |
-
color: #999;
|
1723 |
-
}
|
1724 |
-
.form-control[disabled],
|
1725 |
-
.form-control[readonly],
|
1726 |
-
fieldset[disabled] .form-control {
|
1727 |
-
cursor: not-allowed;
|
1728 |
-
background-color: #eee;
|
1729 |
-
opacity: 1;
|
1730 |
-
}
|
1731 |
-
textarea.form-control {
|
1732 |
-
height: auto;
|
1733 |
-
}
|
1734 |
-
input[type="search"] {
|
1735 |
-
-webkit-appearance: none;
|
1736 |
-
}
|
1737 |
-
input[type="date"] {
|
1738 |
-
line-height: 34px;
|
1739 |
-
}
|
1740 |
-
.form-group {
|
1741 |
-
margin-bottom: 15px;
|
1742 |
-
}
|
1743 |
-
.radio,
|
1744 |
-
.checkbox {
|
1745 |
-
display: block;
|
1746 |
-
min-height: 20px;
|
1747 |
-
padding-left: 20px;
|
1748 |
-
margin-top: 10px;
|
1749 |
-
margin-bottom: 10px;
|
1750 |
-
}
|
1751 |
-
.radio label,
|
1752 |
-
.checkbox label {
|
1753 |
-
display: inline;
|
1754 |
-
font-weight: normal;
|
1755 |
-
cursor: pointer;
|
1756 |
-
}
|
1757 |
-
.radio input[type="radio"],
|
1758 |
-
.radio-inline input[type="radio"],
|
1759 |
-
.checkbox input[type="checkbox"],
|
1760 |
-
.checkbox-inline input[type="checkbox"] {
|
1761 |
-
float: left;
|
1762 |
-
margin-left: -20px;
|
1763 |
-
}
|
1764 |
-
.radio + .radio,
|
1765 |
-
.checkbox + .checkbox {
|
1766 |
-
margin-top: -5px;
|
1767 |
-
}
|
1768 |
-
.radio-inline,
|
1769 |
-
.checkbox-inline {
|
1770 |
-
display: inline-block;
|
1771 |
-
padding-left: 20px;
|
1772 |
-
margin-bottom: 0;
|
1773 |
-
font-weight: normal;
|
1774 |
-
vertical-align: middle;
|
1775 |
-
cursor: pointer;
|
1776 |
-
}
|
1777 |
-
.radio-inline + .radio-inline,
|
1778 |
-
.checkbox-inline + .checkbox-inline {
|
1779 |
-
margin-top: 0;
|
1780 |
-
margin-left: 10px;
|
1781 |
-
}
|
1782 |
-
input[type="radio"][disabled],
|
1783 |
-
input[type="checkbox"][disabled],
|
1784 |
-
.radio[disabled],
|
1785 |
-
.radio-inline[disabled],
|
1786 |
-
.checkbox[disabled],
|
1787 |
-
.checkbox-inline[disabled],
|
1788 |
-
fieldset[disabled] input[type="radio"],
|
1789 |
-
fieldset[disabled] input[type="checkbox"],
|
1790 |
-
fieldset[disabled] .radio,
|
1791 |
-
fieldset[disabled] .radio-inline,
|
1792 |
-
fieldset[disabled] .checkbox,
|
1793 |
-
fieldset[disabled] .checkbox-inline {
|
1794 |
-
cursor: not-allowed;
|
1795 |
-
}
|
1796 |
-
.input-sm {
|
1797 |
-
height: 30px;
|
1798 |
-
padding: 5px 10px;
|
1799 |
-
font-size: 12px;
|
1800 |
-
line-height: 1.5;
|
1801 |
-
border-radius: 3px;
|
1802 |
-
}
|
1803 |
-
select.input-sm {
|
1804 |
-
height: 30px;
|
1805 |
-
line-height: 30px;
|
1806 |
-
}
|
1807 |
-
textarea.input-sm,
|
1808 |
-
select[multiple].input-sm {
|
1809 |
-
height: auto;
|
1810 |
-
}
|
1811 |
-
.input-lg {
|
1812 |
-
height: 46px;
|
1813 |
-
padding: 10px 16px;
|
1814 |
-
font-size: 18px;
|
1815 |
-
line-height: 1.33;
|
1816 |
-
border-radius: 6px;
|
1817 |
-
}
|
1818 |
-
select.input-lg {
|
1819 |
-
height: 46px;
|
1820 |
-
line-height: 46px;
|
1821 |
-
}
|
1822 |
-
textarea.input-lg,
|
1823 |
-
select[multiple].input-lg {
|
1824 |
-
height: auto;
|
1825 |
-
}
|
1826 |
-
.has-feedback {
|
1827 |
-
position: relative;
|
1828 |
-
}
|
1829 |
-
.has-feedback .form-control {
|
1830 |
-
padding-right: 42.5px;
|
1831 |
-
}
|
1832 |
-
.has-feedback .form-control-feedback {
|
1833 |
-
position: absolute;
|
1834 |
-
top: 25px;
|
1835 |
-
right: 0;
|
1836 |
-
display: block;
|
1837 |
-
width: 34px;
|
1838 |
-
height: 34px;
|
1839 |
-
line-height: 34px;
|
1840 |
-
text-align: center;
|
1841 |
-
}
|
1842 |
-
.has-success .help-block,
|
1843 |
-
.has-success .control-label,
|
1844 |
-
.has-success .radio,
|
1845 |
-
.has-success .checkbox,
|
1846 |
-
.has-success .radio-inline,
|
1847 |
-
.has-success .checkbox-inline {
|
1848 |
-
color: #3c763d;
|
1849 |
-
}
|
1850 |
-
.has-success .form-control {
|
1851 |
-
border-color: #3c763d;
|
1852 |
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
1853 |
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
1854 |
-
}
|
1855 |
-
.has-success .form-control:focus {
|
1856 |
-
border-color: #2b542c;
|
1857 |
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
|
1858 |
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
|
1859 |
-
}
|
1860 |
-
.has-success .input-group-addon {
|
1861 |
-
color: #3c763d;
|
1862 |
-
background-color: #dff0d8;
|
1863 |
-
border-color: #3c763d;
|
1864 |
-
}
|
1865 |
-
.has-success .form-control-feedback {
|
1866 |
-
color: #3c763d;
|
1867 |
-
}
|
1868 |
-
.has-warning .help-block,
|
1869 |
-
.has-warning .control-label,
|
1870 |
-
.has-warning .radio,
|
1871 |
-
.has-warning .checkbox,
|
1872 |
-
.has-warning .radio-inline,
|
1873 |
-
.has-warning .checkbox-inline {
|
1874 |
-
color: #8a6d3b;
|
1875 |
-
}
|
1876 |
-
.has-warning .form-control {
|
1877 |
-
border-color: #8a6d3b;
|
1878 |
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
1879 |
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
1880 |
-
}
|
1881 |
-
.has-warning .form-control:focus {
|
1882 |
-
border-color: #66512c;
|
1883 |
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
|
1884 |
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
|
1885 |
-
}
|
1886 |
-
.has-warning .input-group-addon {
|
1887 |
-
color: #8a6d3b;
|
1888 |
-
background-color: #fcf8e3;
|
1889 |
-
border-color: #8a6d3b;
|
1890 |
-
}
|
1891 |
-
.has-warning .form-control-feedback {
|
1892 |
-
color: #8a6d3b;
|
1893 |
-
}
|
1894 |
-
.has-error .help-block,
|
1895 |
-
.has-error .control-label,
|
1896 |
-
.has-error .radio,
|
1897 |
-
.has-error .checkbox,
|
1898 |
-
.has-error .radio-inline,
|
1899 |
-
.has-error .checkbox-inline {
|
1900 |
-
color: #a94442;
|
1901 |
-
}
|
1902 |
-
.has-error .form-control {
|
1903 |
-
border-color: #a94442;
|
1904 |
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
1905 |
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
1906 |
-
}
|
1907 |
-
.has-error .form-control:focus {
|
1908 |
-
border-color: #843534;
|
1909 |
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
|
1910 |
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
|
1911 |
-
}
|
1912 |
-
.has-error .input-group-addon {
|
1913 |
-
color: #a94442;
|
1914 |
-
background-color: #f2dede;
|
1915 |
-
border-color: #a94442;
|
1916 |
-
}
|
1917 |
-
.has-error .form-control-feedback {
|
1918 |
-
color: #a94442;
|
1919 |
-
}
|
1920 |
-
.form-control-static {
|
1921 |
-
margin-bottom: 0;
|
1922 |
-
}
|
1923 |
-
.help-block {
|
1924 |
-
display: block;
|
1925 |
-
margin-top: 5px;
|
1926 |
-
margin-bottom: 10px;
|
1927 |
-
color: #737373;
|
1928 |
-
}
|
1929 |
-
@media (min-width: 768px) {
|
1930 |
-
.form-inline .form-group {
|
1931 |
-
display: inline-block;
|
1932 |
-
margin-bottom: 0;
|
1933 |
-
vertical-align: middle;
|
1934 |
-
}
|
1935 |
-
.form-inline .form-control {
|
1936 |
-
display: inline-block;
|
1937 |
-
width: auto;
|
1938 |
-
vertical-align: middle;
|
1939 |
-
}
|
1940 |
-
.form-inline .input-group > .form-control {
|
1941 |
-
width: 100%;
|
1942 |
-
}
|
1943 |
-
.form-inline .control-label {
|
1944 |
-
margin-bottom: 0;
|
1945 |
-
vertical-align: middle;
|
1946 |
-
}
|
1947 |
-
.form-inline .radio,
|
1948 |
-
.form-inline .checkbox {
|
1949 |
-
display: inline-block;
|
1950 |
-
padding-left: 0;
|
1951 |
-
margin-top: 0;
|
1952 |
-
margin-bottom: 0;
|
1953 |
-
vertical-align: middle;
|
1954 |
-
}
|
1955 |
-
.form-inline .radio input[type="radio"],
|
1956 |
-
.form-inline .checkbox input[type="checkbox"] {
|
1957 |
-
float: none;
|
1958 |
-
margin-left: 0;
|
1959 |
-
}
|
1960 |
-
.form-inline .has-feedback .form-control-feedback {
|
1961 |
-
top: 0;
|
1962 |
-
}
|
1963 |
-
}
|
1964 |
-
.form-horizontal .control-label,
|
1965 |
-
.form-horizontal .radio,
|
1966 |
-
.form-horizontal .checkbox,
|
1967 |
-
.form-horizontal .radio-inline,
|
1968 |
-
.form-horizontal .checkbox-inline {
|
1969 |
-
padding-top: 7px;
|
1970 |
-
margin-top: 0;
|
1971 |
-
margin-bottom: 0;
|
1972 |
-
}
|
1973 |
-
.form-horizontal .radio,
|
1974 |
-
.form-horizontal .checkbox {
|
1975 |
-
min-height: 27px;
|
1976 |
-
}
|
1977 |
-
.form-horizontal .form-group {
|
1978 |
-
margin-right: -15px;
|
1979 |
-
margin-left: -15px;
|
1980 |
-
}
|
1981 |
-
.form-horizontal .form-control-static {
|
1982 |
-
padding-top: 7px;
|
1983 |
-
}
|
1984 |
-
@media (min-width: 768px) {
|
1985 |
-
.form-horizontal .control-label {
|
1986 |
-
text-align: right;
|
1987 |
-
}
|
1988 |
-
}
|
1989 |
-
.form-horizontal .has-feedback .form-control-feedback {
|
1990 |
-
top: 0;
|
1991 |
-
right: 15px;
|
1992 |
-
}
|
1993 |
-
.btn {
|
1994 |
-
display: inline-block;
|
1995 |
-
padding: 6px 12px;
|
1996 |
-
margin-bottom: 0;
|
1997 |
-
font-size: 14px;
|
1998 |
-
font-weight: normal;
|
1999 |
-
line-height: 1.42857143;
|
2000 |
-
text-align: center;
|
2001 |
-
white-space: nowrap;
|
2002 |
-
vertical-align: middle;
|
2003 |
-
cursor: pointer;
|
2004 |
-
-webkit-user-select: none;
|
2005 |
-
-moz-user-select: none;
|
2006 |
-
-ms-user-select: none;
|
2007 |
-
user-select: none;
|
2008 |
-
background-image: none;
|
2009 |
-
border: 1px solid transparent;
|
2010 |
-
border-radius: 4px;
|
2011 |
-
}
|
2012 |
-
.btn:focus,
|
2013 |
-
.btn:active:focus,
|
2014 |
-
.btn.active:focus {
|
2015 |
-
outline: thin dotted;
|
2016 |
-
outline: 5px auto -webkit-focus-ring-color;
|
2017 |
-
outline-offset: -2px;
|
2018 |
-
}
|
2019 |
-
.btn:hover,
|
2020 |
-
.btn:focus {
|
2021 |
-
color: #333;
|
2022 |
-
text-decoration: none;
|
2023 |
-
}
|
2024 |
-
.btn:active,
|
2025 |
-
.btn.active {
|
2026 |
-
background-image: none;
|
2027 |
-
outline: 0;
|
2028 |
-
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
|
2029 |
-
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
|
2030 |
-
}
|
2031 |
-
.btn.disabled,
|
2032 |
-
.btn[disabled],
|
2033 |
-
fieldset[disabled] .btn {
|
2034 |
-
pointer-events: none;
|
2035 |
-
cursor: not-allowed;
|
2036 |
-
filter: alpha(opacity=65);
|
2037 |
-
-webkit-box-shadow: none;
|
2038 |
-
box-shadow: none;
|
2039 |
-
opacity: .65;
|
2040 |
-
}
|
2041 |
-
.btn-default {
|
2042 |
-
color: #333;
|
2043 |
-
background-color: #fff;
|
2044 |
-
border-color: #ccc;
|
2045 |
-
}
|
2046 |
-
.btn-default:hover,
|
2047 |
-
.btn-default:focus,
|
2048 |
-
.btn-default:active,
|
2049 |
-
.btn-default.active,
|
2050 |
-
.open .dropdown-toggle.btn-default {
|
2051 |
-
color: #333;
|
2052 |
-
background-color: #ebebeb;
|
2053 |
-
border-color: #adadad;
|
2054 |
-
}
|
2055 |
-
.btn-default:active,
|
2056 |
-
.btn-default.active,
|
2057 |
-
.open .dropdown-toggle.btn-default {
|
2058 |
-
background-image: none;
|
2059 |
-
}
|
2060 |
-
.btn-default.disabled,
|
2061 |
-
.btn-default[disabled],
|
2062 |
-
fieldset[disabled] .btn-default,
|
2063 |
-
.btn-default.disabled:hover,
|
2064 |
-
.btn-default[disabled]:hover,
|
2065 |
-
fieldset[disabled] .btn-default:hover,
|
2066 |
-
.btn-default.disabled:focus,
|
2067 |
-
.btn-default[disabled]:focus,
|
2068 |
-
fieldset[disabled] .btn-default:focus,
|
2069 |
-
.btn-default.disabled:active,
|
2070 |
-
.btn-default[disabled]:active,
|
2071 |
-
fieldset[disabled] .btn-default:active,
|
2072 |
-
.btn-default.disabled.active,
|
2073 |
-
.btn-default[disabled].active,
|
2074 |
-
fieldset[disabled] .btn-default.active {
|
2075 |
-
background-color: #fff;
|
2076 |
-
border-color: #ccc;
|
2077 |
-
}
|
2078 |
-
.btn-default .badge {
|
2079 |
-
color: #fff;
|
2080 |
-
background-color: #333;
|
2081 |
-
}
|
2082 |
-
.btn-primary {
|
2083 |
-
color: #fff;
|
2084 |
-
background-color: #428bca;
|
2085 |
-
border-color: #357ebd;
|
2086 |
-
}
|
2087 |
-
.btn-primary:hover,
|
2088 |
-
.btn-primary:focus,
|
2089 |
-
.btn-primary:active,
|
2090 |
-
.btn-primary.active,
|
2091 |
-
.open .dropdown-toggle.btn-primary {
|
2092 |
-
color: #fff;
|
2093 |
-
background-color: #3276b1;
|
2094 |
-
border-color: #285e8e;
|
2095 |
-
}
|
2096 |
-
.btn-primary:active,
|
2097 |
-
.btn-primary.active,
|
2098 |
-
.open .dropdown-toggle.btn-primary {
|
2099 |
-
background-image: none;
|
2100 |
-
}
|
2101 |
-
.btn-primary.disabled,
|
2102 |
-
.btn-primary[disabled],
|
2103 |
-
fieldset[disabled] .btn-primary,
|
2104 |
-
.btn-primary.disabled:hover,
|
2105 |
-
.btn-primary[disabled]:hover,
|
2106 |
-
fieldset[disabled] .btn-primary:hover,
|
2107 |
-
.btn-primary.disabled:focus,
|
2108 |
-
.btn-primary[disabled]:focus,
|
2109 |
-
fieldset[disabled] .btn-primary:focus,
|
2110 |
-
.btn-primary.disabled:active,
|
2111 |
-
.btn-primary[disabled]:active,
|
2112 |
-
fieldset[disabled] .btn-primary:active,
|
2113 |
-
.btn-primary.disabled.active,
|
2114 |
-
.btn-primary[disabled].active,
|
2115 |
-
fieldset[disabled] .btn-primary.active {
|
2116 |
-
background-color: #428bca;
|
2117 |
-
border-color: #357ebd;
|
2118 |
-
}
|
2119 |
-
.btn-primary .badge {
|
2120 |
-
color: #428bca;
|
2121 |
-
background-color: #fff;
|
2122 |
-
}
|
2123 |
-
.btn-success {
|
2124 |
-
color: #fff;
|
2125 |
-
background-color: #5cb85c;
|
2126 |
-
border-color: #4cae4c;
|
2127 |
-
}
|
2128 |
-
.btn-success:hover,
|
2129 |
-
.btn-success:focus,
|
2130 |
-
.btn-success:active,
|
2131 |
-
.btn-success.active,
|
2132 |
-
.open .dropdown-toggle.btn-success {
|
2133 |
-
color: #fff;
|
2134 |
-
background-color: #47a447;
|
2135 |
-
border-color: #398439;
|
2136 |
-
}
|
2137 |
-
.btn-success:active,
|
2138 |
-
.btn-success.active,
|
2139 |
-
.open .dropdown-toggle.btn-success {
|
2140 |
-
background-image: none;
|
2141 |
-
}
|
2142 |
-
.btn-success.disabled,
|
2143 |
-
.btn-success[disabled],
|
2144 |
-
fieldset[disabled] .btn-success,
|
2145 |
-
.btn-success.disabled:hover,
|
2146 |
-
.btn-success[disabled]:hover,
|
2147 |
-
fieldset[disabled] .btn-success:hover,
|
2148 |
-
.btn-success.disabled:focus,
|
2149 |
-
.btn-success[disabled]:focus,
|
2150 |
-
fieldset[disabled] .btn-success:focus,
|
2151 |
-
.btn-success.disabled:active,
|
2152 |
-
.btn-success[disabled]:active,
|
2153 |
-
fieldset[disabled] .btn-success:active,
|
2154 |
-
.btn-success.disabled.active,
|
2155 |
-
.btn-success[disabled].active,
|
2156 |
-
fieldset[disabled] .btn-success.active {
|
2157 |
-
background-color: #5cb85c;
|
2158 |
-
border-color: #4cae4c;
|
2159 |
-
}
|
2160 |
-
.btn-success .badge {
|
2161 |
-
color: #5cb85c;
|
2162 |
-
background-color: #fff;
|
2163 |
-
}
|
2164 |
-
.btn-info {
|
2165 |
-
color: #fff;
|
2166 |
-
background-color: #5bc0de;
|
2167 |
-
border-color: #46b8da;
|
2168 |
-
}
|
2169 |
-
.btn-info:hover,
|
2170 |
-
.btn-info:focus,
|
2171 |
-
.btn-info:active,
|
2172 |
-
.btn-info.active,
|
2173 |
-
.open .dropdown-toggle.btn-info {
|
2174 |
-
color: #fff;
|
2175 |
-
background-color: #39b3d7;
|
2176 |
-
border-color: #269abc;
|
2177 |
-
}
|
2178 |
-
.btn-info:active,
|
2179 |
-
.btn-info.active,
|
2180 |
-
.open .dropdown-toggle.btn-info {
|
2181 |
-
background-image: none;
|
2182 |
-
}
|
2183 |
-
.btn-info.disabled,
|
2184 |
-
.btn-info[disabled],
|
2185 |
-
fieldset[disabled] .btn-info,
|
2186 |
-
.btn-info.disabled:hover,
|
2187 |
-
.btn-info[disabled]:hover,
|
2188 |
-
fieldset[disabled] .btn-info:hover,
|
2189 |
-
.btn-info.disabled:focus,
|
2190 |
-
.btn-info[disabled]:focus,
|
2191 |
-
fieldset[disabled] .btn-info:focus,
|
2192 |
-
.btn-info.disabled:active,
|
2193 |
-
.btn-info[disabled]:active,
|
2194 |
-
fieldset[disabled] .btn-info:active,
|
2195 |
-
.btn-info.disabled.active,
|
2196 |
-
.btn-info[disabled].active,
|
2197 |
-
fieldset[disabled] .btn-info.active {
|
2198 |
-
background-color: #5bc0de;
|
2199 |
-
border-color: #46b8da;
|
2200 |
-
}
|
2201 |
-
.btn-info .badge {
|
2202 |
-
color: #5bc0de;
|
2203 |
-
background-color: #fff;
|
2204 |
-
}
|
2205 |
-
.btn-warning {
|
2206 |
-
color: #fff;
|
2207 |
-
background-color: #f0ad4e;
|
2208 |
-
border-color: #eea236;
|
2209 |
-
}
|
2210 |
-
.btn-warning:hover,
|
2211 |
-
.btn-warning:focus,
|
2212 |
-
.btn-warning:active,
|
2213 |
-
.btn-warning.active,
|
2214 |
-
.open .dropdown-toggle.btn-warning {
|
2215 |
-
color: #fff;
|
2216 |
-
background-color: #ed9c28;
|
2217 |
-
border-color: #d58512;
|
2218 |
-
}
|
2219 |
-
.btn-warning:active,
|
2220 |
-
.btn-warning.active,
|
2221 |
-
.open .dropdown-toggle.btn-warning {
|
2222 |
-
background-image: none;
|
2223 |
-
}
|
2224 |
-
.btn-warning.disabled,
|
2225 |
-
.btn-warning[disabled],
|
2226 |
-
fieldset[disabled] .btn-warning,
|
2227 |
-
.btn-warning.disabled:hover,
|
2228 |
-
.btn-warning[disabled]:hover,
|
2229 |
-
fieldset[disabled] .btn-warning:hover,
|
2230 |
-
.btn-warning.disabled:focus,
|
2231 |
-
.btn-warning[disabled]:focus,
|
2232 |
-
fieldset[disabled] .btn-warning:focus,
|
2233 |
-
.btn-warning.disabled:active,
|
2234 |
-
.btn-warning[disabled]:active,
|
2235 |
-
fieldset[disabled] .btn-warning:active,
|
2236 |
-
.btn-warning.disabled.active,
|
2237 |
-
.btn-warning[disabled].active,
|
2238 |
-
fieldset[disabled] .btn-warning.active {
|
2239 |
-
background-color: #f0ad4e;
|
2240 |
-
border-color: #eea236;
|
2241 |
-
}
|
2242 |
-
.btn-warning .badge {
|
2243 |
-
color: #f0ad4e;
|
2244 |
-
background-color: #fff;
|
2245 |
-
}
|
2246 |
-
.btn-danger {
|
2247 |
-
color: #fff;
|
2248 |
-
background-color: #d9534f;
|
2249 |
-
border-color: #d43f3a;
|
2250 |
-
}
|
2251 |
-
.btn-danger:hover,
|
2252 |
-
.btn-danger:focus,
|
2253 |
-
.btn-danger:active,
|
2254 |
-
.btn-danger.active,
|
2255 |
-
.open .dropdown-toggle.btn-danger {
|
2256 |
-
color: #fff;
|
2257 |
-
background-color: #d2322d;
|
2258 |
-
border-color: #ac2925;
|
2259 |
-
}
|
2260 |
-
.btn-danger:active,
|
2261 |
-
.btn-danger.active,
|
2262 |
-
.open .dropdown-toggle.btn-danger {
|
2263 |
-
background-image: none;
|
2264 |
-
}
|
2265 |
-
.btn-danger.disabled,
|
2266 |
-
.btn-danger[disabled],
|
2267 |
-
fieldset[disabled] .btn-danger,
|
2268 |
-
.btn-danger.disabled:hover,
|
2269 |
-
.btn-danger[disabled]:hover,
|
2270 |
-
fieldset[disabled] .btn-danger:hover,
|
2271 |
-
.btn-danger.disabled:focus,
|
2272 |
-
.btn-danger[disabled]:focus,
|
2273 |
-
fieldset[disabled] .btn-danger:focus,
|
2274 |
-
.btn-danger.disabled:active,
|
2275 |
-
.btn-danger[disabled]:active,
|
2276 |
-
fieldset[disabled] .btn-danger:active,
|
2277 |
-
.btn-danger.disabled.active,
|
2278 |
-
.btn-danger[disabled].active,
|
2279 |
-
fieldset[disabled] .btn-danger.active {
|
2280 |
-
background-color: #d9534f;
|
2281 |
-
border-color: #d43f3a;
|
2282 |
-
}
|
2283 |
-
.btn-danger .badge {
|
2284 |
-
color: #d9534f;
|
2285 |
-
background-color: #fff;
|
2286 |
-
}
|
2287 |
-
.btn-link {
|
2288 |
-
font-weight: normal;
|
2289 |
-
color: #428bca;
|
2290 |
-
cursor: pointer;
|
2291 |
-
border-radius: 0;
|
2292 |
-
}
|
2293 |
-
.btn-link,
|
2294 |
-
.btn-link:active,
|
2295 |
-
.btn-link[disabled],
|
2296 |
-
fieldset[disabled] .btn-link {
|
2297 |
-
background-color: transparent;
|
2298 |
-
-webkit-box-shadow: none;
|
2299 |
-
box-shadow: none;
|
2300 |
-
}
|
2301 |
-
.btn-link,
|
2302 |
-
.btn-link:hover,
|
2303 |
-
.btn-link:focus,
|
2304 |
-
.btn-link:active {
|
2305 |
-
border-color: transparent;
|
2306 |
-
}
|
2307 |
-
.btn-link:hover,
|
2308 |
-
.btn-link:focus {
|
2309 |
-
color: #2a6496;
|
2310 |
-
text-decoration: underline;
|
2311 |
-
background-color: transparent;
|
2312 |
-
}
|
2313 |
-
.btn-link[disabled]:hover,
|
2314 |
-
fieldset[disabled] .btn-link:hover,
|
2315 |
-
.btn-link[disabled]:focus,
|
2316 |
-
fieldset[disabled] .btn-link:focus {
|
2317 |
-
color: #999;
|
2318 |
-
text-decoration: none;
|
2319 |
-
}
|
2320 |
-
.btn-lg,
|
2321 |
-
.btn-group-lg > .btn {
|
2322 |
-
padding: 10px 16px;
|
2323 |
-
font-size: 18px;
|
2324 |
-
line-height: 1.33;
|
2325 |
-
border-radius: 6px;
|
2326 |
-
}
|
2327 |
-
.btn-sm,
|
2328 |
-
.btn-group-sm > .btn {
|
2329 |
-
padding: 5px 10px;
|
2330 |
-
font-size: 12px;
|
2331 |
-
line-height: 1.5;
|
2332 |
-
border-radius: 3px;
|
2333 |
-
}
|
2334 |
-
.btn-xs,
|
2335 |
-
.btn-group-xs > .btn {
|
2336 |
-
padding: 1px 5px;
|
2337 |
-
font-size: 12px;
|
2338 |
-
line-height: 1.5;
|
2339 |
-
border-radius: 3px;
|
2340 |
-
}
|
2341 |
-
.btn-block {
|
2342 |
-
display: block;
|
2343 |
-
width: 100%;
|
2344 |
-
padding-right: 0;
|
2345 |
-
padding-left: 0;
|
2346 |
-
}
|
2347 |
-
.btn-block + .btn-block {
|
2348 |
-
margin-top: 5px;
|
2349 |
-
}
|
2350 |
-
input[type="submit"].btn-block,
|
2351 |
-
input[type="reset"].btn-block,
|
2352 |
-
input[type="button"].btn-block {
|
2353 |
-
width: 100%;
|
2354 |
-
}
|
2355 |
-
.fade {
|
2356 |
-
opacity: 0;
|
2357 |
-
-webkit-transition: opacity .15s linear;
|
2358 |
-
transition: opacity .15s linear;
|
2359 |
-
}
|
2360 |
-
.fade.in {
|
2361 |
-
opacity: 1;
|
2362 |
-
}
|
2363 |
-
.collapse {
|
2364 |
-
display: none;
|
2365 |
-
}
|
2366 |
-
.collapse.in {
|
2367 |
-
display: block;
|
2368 |
-
}
|
2369 |
-
.collapsing {
|
2370 |
-
position: relative;
|
2371 |
-
height: 0;
|
2372 |
-
overflow: hidden;
|
2373 |
-
-webkit-transition: height .35s ease;
|
2374 |
-
transition: height .35s ease;
|
2375 |
-
}
|
2376 |
-
@font-face {
|
2377 |
-
font-family: 'Glyphicons Halflings';
|
2378 |
-
|
2379 |
-
src: url('../fonts/glyphicons-halflings-regular.eot');
|
2380 |
-
src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
|
2381 |
-
}
|
2382 |
-
.glyphicon {
|
2383 |
-
position: relative;
|
2384 |
-
top: 1px;
|
2385 |
-
display: inline-block;
|
2386 |
-
font-family: 'Glyphicons Halflings';
|
2387 |
-
font-style: normal;
|
2388 |
-
font-weight: normal;
|
2389 |
-
line-height: 1;
|
2390 |
-
|
2391 |
-
-webkit-font-smoothing: antialiased;
|
2392 |
-
-moz-osx-font-smoothing: grayscale;
|
2393 |
-
}
|
2394 |
-
.glyphicon-asterisk:before {
|
2395 |
-
content: "\2a";
|
2396 |
-
}
|
2397 |
-
.glyphicon-plus:before {
|
2398 |
-
content: "\2b";
|
2399 |
-
}
|
2400 |
-
.glyphicon-euro:before {
|
2401 |
-
content: "\20ac";
|
2402 |
-
}
|
2403 |
-
.glyphicon-minus:before {
|
2404 |
-
content: "\2212";
|
2405 |
-
}
|
2406 |
-
.glyphicon-cloud:before {
|
2407 |
-
content: "\2601";
|
2408 |
-
}
|
2409 |
-
.glyphicon-envelope:before {
|
2410 |
-
content: "\2709";
|
2411 |
-
}
|
2412 |
-
.glyphicon-pencil:before {
|
2413 |
-
content: "\270f";
|
2414 |
-
}
|
2415 |
-
.glyphicon-glass:before {
|
2416 |
-
content: "\e001";
|
2417 |
-
}
|
2418 |
-
.glyphicon-music:before {
|
2419 |
-
content: "\e002";
|
2420 |
-
}
|
2421 |
-
.glyphicon-search:before {
|
2422 |
-
content: "\e003";
|
2423 |
-
}
|
2424 |
-
.glyphicon-heart:before {
|
2425 |
-
content: "\e005";
|
2426 |
-
}
|
2427 |
-
.glyphicon-star:before {
|
2428 |
-
content: "\e006";
|
2429 |
-
}
|
2430 |
-
.glyphicon-star-empty:before {
|
2431 |
-
content: "\e007";
|
2432 |
-
}
|
2433 |
-
.glyphicon-user:before {
|
2434 |
-
content: "\e008";
|
2435 |
-
}
|
2436 |
-
.glyphicon-film:before {
|
2437 |
-
content: "\e009";
|
2438 |
-
}
|
2439 |
-
.glyphicon-th-large:before {
|
2440 |
-
content: "\e010";
|
2441 |
-
}
|
2442 |
-
.glyphicon-th:before {
|
2443 |
-
content: "\e011";
|
2444 |
-
}
|
2445 |
-
.glyphicon-th-list:before {
|
2446 |
-
content: "\e012";
|
2447 |
-
}
|
2448 |
-
.glyphicon-ok:before {
|
2449 |
-
content: "\e013";
|
2450 |
-
}
|
2451 |
-
.glyphicon-remove:before {
|
2452 |
-
content: "\e014";
|
2453 |
-
}
|
2454 |
-
.glyphicon-zoom-in:before {
|
2455 |
-
content: "\e015";
|
2456 |
-
}
|
2457 |
-
.glyphicon-zoom-out:before {
|
2458 |
-
content: "\e016";
|
2459 |
-
}
|
2460 |
-
.glyphicon-off:before {
|
2461 |
-
content: "\e017";
|
2462 |
-
}
|
2463 |
-
.glyphicon-signal:before {
|
2464 |
-
content: "\e018";
|
2465 |
-
}
|
2466 |
-
.glyphicon-cog:before {
|
2467 |
-
content: "\e019";
|
2468 |
-
}
|
2469 |
-
.glyphicon-trash:before {
|
2470 |
-
content: "\e020";
|
2471 |
-
}
|
2472 |
-
.glyphicon-home:before {
|
2473 |
-
content: "\e021";
|
2474 |
-
}
|
2475 |
-
.glyphicon-file:before {
|
2476 |
-
content: "\e022";
|
2477 |
-
}
|
2478 |
-
.glyphicon-time:before {
|
2479 |
-
content: "\e023";
|
2480 |
-
}
|
2481 |
-
.glyphicon-road:before {
|
2482 |
-
content: "\e024";
|
2483 |
-
}
|
2484 |
-
.glyphicon-download-alt:before {
|
2485 |
-
content: "\e025";
|
2486 |
-
}
|
2487 |
-
.glyphicon-download:before {
|
2488 |
-
content: "\e026";
|
2489 |
-
}
|
2490 |
-
.glyphicon-upload:before {
|
2491 |
-
content: "\e027";
|
2492 |
-
}
|
2493 |
-
.glyphicon-inbox:before {
|
2494 |
-
content: "\e028";
|
2495 |
-
}
|
2496 |
-
.glyphicon-play-circle:before {
|
2497 |
-
content: "\e029";
|
2498 |
-
}
|
2499 |
-
.glyphicon-repeat:before {
|
2500 |
-
content: "\e030";
|
2501 |
-
}
|
2502 |
-
.glyphicon-refresh:before {
|
2503 |
-
content: "\e031";
|
2504 |
-
}
|
2505 |
-
.glyphicon-list-alt:before {
|
2506 |
-
content: "\e032";
|
2507 |
-
}
|
2508 |
-
.glyphicon-lock:before {
|
2509 |
-
content: "\e033";
|
2510 |
-
}
|
2511 |
-
.glyphicon-flag:before {
|
2512 |
-
content: "\e034";
|
2513 |
-
}
|
2514 |
-
.glyphicon-headphones:before {
|
2515 |
-
content: "\e035";
|
2516 |
-
}
|
2517 |
-
.glyphicon-volume-off:before {
|
2518 |
-
content: "\e036";
|
2519 |
-
}
|
2520 |
-
.glyphicon-volume-down:before {
|
2521 |
-
content: "\e037";
|
2522 |
-
}
|
2523 |
-
.glyphicon-volume-up:before {
|
2524 |
-
content: "\e038";
|
2525 |
-
}
|
2526 |
-
.glyphicon-qrcode:before {
|
2527 |
-
content: "\e039";
|
2528 |
-
}
|
2529 |
-
.glyphicon-barcode:before {
|
2530 |
-
content: "\e040";
|
2531 |
-
}
|
2532 |
-
.glyphicon-tag:before {
|
2533 |
-
content: "\e041";
|
2534 |
-
}
|
2535 |
-
.glyphicon-tags:before {
|
2536 |
-
content: "\e042";
|
2537 |
-
}
|
2538 |
-
.glyphicon-book:before {
|
2539 |
-
content: "\e043";
|
2540 |
-
}
|
2541 |
-
.glyphicon-bookmark:before {
|
2542 |
-
content: "\e044";
|
2543 |
-
}
|
2544 |
-
.glyphicon-print:before {
|
2545 |
-
content: "\e045";
|
2546 |
-
}
|
2547 |
-
.glyphicon-camera:before {
|
2548 |
-
content: "\e046";
|
2549 |
-
}
|
2550 |
-
.glyphicon-font:before {
|
2551 |
-
content: "\e047";
|
2552 |
-
}
|
2553 |
-
.glyphicon-bold:before {
|
2554 |
-
content: "\e048";
|
2555 |
-
}
|
2556 |
-
.glyphicon-italic:before {
|
2557 |
-
content: "\e049";
|
2558 |
-
}
|
2559 |
-
.glyphicon-text-height:before {
|
2560 |
-
content: "\e050";
|
2561 |
-
}
|
2562 |
-
.glyphicon-text-width:before {
|
2563 |
-
content: "\e051";
|
2564 |
-
}
|
2565 |
-
.glyphicon-align-left:before {
|
2566 |
-
content: "\e052";
|
2567 |
-
}
|
2568 |
-
.glyphicon-align-center:before {
|
2569 |
-
content: "\e053";
|
2570 |
-
}
|
2571 |
-
.glyphicon-align-right:before {
|
2572 |
-
content: "\e054";
|
2573 |
-
}
|
2574 |
-
.glyphicon-align-justify:before {
|
2575 |
-
content: "\e055";
|
2576 |
-
}
|
2577 |
-
.glyphicon-list:before {
|
2578 |
-
content: "\e056";
|
2579 |
-
}
|
2580 |
-
.glyphicon-indent-left:before {
|
2581 |
-
content: "\e057";
|
2582 |
-
}
|
2583 |
-
.glyphicon-indent-right:before {
|
2584 |
-
content: "\e058";
|
2585 |
-
}
|
2586 |
-
.glyphicon-facetime-video:before {
|
2587 |
-
content: "\e059";
|
2588 |
-
}
|
2589 |
-
.glyphicon-picture:before {
|
2590 |
-
content: "\e060";
|
2591 |
-
}
|
2592 |
-
.glyphicon-map-marker:before {
|
2593 |
-
content: "\e062";
|
2594 |
-
}
|
2595 |
-
.glyphicon-adjust:before {
|
2596 |
-
content: "\e063";
|
2597 |
-
}
|
2598 |
-
.glyphicon-tint:before {
|
2599 |
-
content: "\e064";
|
2600 |
-
}
|
2601 |
-
.glyphicon-edit:before {
|
2602 |
-
content: "\e065";
|
2603 |
-
}
|
2604 |
-
.glyphicon-share:before {
|
2605 |
-
content: "\e066";
|
2606 |
-
}
|
2607 |
-
.glyphicon-check:before {
|
2608 |
-
content: "\e067";
|
2609 |
-
}
|
2610 |
-
.glyphicon-move:before {
|
2611 |
-
content: "\e068";
|
2612 |
-
}
|
2613 |
-
.glyphicon-step-backward:before {
|
2614 |
-
content: "\e069";
|
2615 |
-
}
|
2616 |
-
.glyphicon-fast-backward:before {
|
2617 |
-
content: "\e070";
|
2618 |
-
}
|
2619 |
-
.glyphicon-backward:before {
|
2620 |
-
content: "\e071";
|
2621 |
-
}
|
2622 |
-
.glyphicon-play:before {
|
2623 |
-
content: "\e072";
|
2624 |
-
}
|
2625 |
-
.glyphicon-pause:before {
|
2626 |
-
content: "\e073";
|
2627 |
-
}
|
2628 |
-
.glyphicon-stop:before {
|
2629 |
-
content: "\e074";
|
2630 |
-
}
|
2631 |
-
.glyphicon-forward:before {
|
2632 |
-
content: "\e075";
|
2633 |
-
}
|
2634 |
-
.glyphicon-fast-forward:before {
|
2635 |
-
content: "\e076";
|
2636 |
-
}
|
2637 |
-
.glyphicon-step-forward:before {
|
2638 |
-
content: "\e077";
|
2639 |
-
}
|
2640 |
-
.glyphicon-eject:before {
|
2641 |
-
content: "\e078";
|
2642 |
-
}
|
2643 |
-
.glyphicon-chevron-left:before {
|
2644 |
-
content: "\e079";
|
2645 |
-
}
|
2646 |
-
.glyphicon-chevron-right:before {
|
2647 |
-
content: "\e080";
|
2648 |
-
}
|
2649 |
-
.glyphicon-plus-sign:before {
|
2650 |
-
content: "\e081";
|
2651 |
-
}
|
2652 |
-
.glyphicon-minus-sign:before {
|
2653 |
-
content: "\e082";
|
2654 |
-
}
|
2655 |
-
.glyphicon-remove-sign:before {
|
2656 |
-
content: "\e083";
|
2657 |
-
}
|
2658 |
-
.glyphicon-ok-sign:before {
|
2659 |
-
content: "\e084";
|
2660 |
-
}
|
2661 |
-
.glyphicon-question-sign:before {
|
2662 |
-
content: "\e085";
|
2663 |
-
}
|
2664 |
-
.glyphicon-info-sign:before {
|
2665 |
-
content: "\e086";
|
2666 |
-
}
|
2667 |
-
.glyphicon-screenshot:before {
|
2668 |
-
content: "\e087";
|
2669 |
-
}
|
2670 |
-
.glyphicon-remove-circle:before {
|
2671 |
-
content: "\e088";
|
2672 |
-
}
|
2673 |
-
.glyphicon-ok-circle:before {
|
2674 |
-
content: "\e089";
|
2675 |
-
}
|
2676 |
-
.glyphicon-ban-circle:before {
|
2677 |
-
content: "\e090";
|
2678 |
-
}
|
2679 |
-
.glyphicon-arrow-left:before {
|
2680 |
-
content: "\e091";
|
2681 |
-
}
|
2682 |
-
.glyphicon-arrow-right:before {
|
2683 |
-
content: "\e092";
|
2684 |
-
}
|
2685 |
-
.glyphicon-arrow-up:before {
|
2686 |
-
content: "\e093";
|
2687 |
-
}
|
2688 |
-
.glyphicon-arrow-down:before {
|
2689 |
-
content: "\e094";
|
2690 |
-
}
|
2691 |
-
.glyphicon-share-alt:before {
|
2692 |
-
content: "\e095";
|
2693 |
-
}
|
2694 |
-
.glyphicon-resize-full:before {
|
2695 |
-
content: "\e096";
|
2696 |
-
}
|
2697 |
-
.glyphicon-resize-small:before {
|
2698 |
-
content: "\e097";
|
2699 |
-
}
|
2700 |
-
.glyphicon-exclamation-sign:before {
|
2701 |
-
content: "\e101";
|
2702 |
-
}
|
2703 |
-
.glyphicon-gift:before {
|
2704 |
-
content: "\e102";
|
2705 |
-
}
|
2706 |
-
.glyphicon-leaf:before {
|
2707 |
-
content: "\e103";
|
2708 |
-
}
|
2709 |
-
.glyphicon-fire:before {
|
2710 |
-
content: "\e104";
|
2711 |
-
}
|
2712 |
-
.glyphicon-eye-open:before {
|
2713 |
-
content: "\e105";
|
2714 |
-
}
|
2715 |
-
.glyphicon-eye-close:before {
|
2716 |
-
content: "\e106";
|
2717 |
-
}
|
2718 |
-
.glyphicon-warning-sign:before {
|
2719 |
-
content: "\e107";
|
2720 |
-
}
|
2721 |
-
.glyphicon-plane:before {
|
2722 |
-
content: "\e108";
|
2723 |
-
}
|
2724 |
-
.glyphicon-calendar:before {
|
2725 |
-
content: "\e109";
|
2726 |
-
}
|
2727 |
-
.glyphicon-random:before {
|
2728 |
-
content: "\e110";
|
2729 |
-
}
|
2730 |
-
.glyphicon-comment:before {
|
2731 |
-
content: "\e111";
|
2732 |
-
}
|
2733 |
-
.glyphicon-magnet:before {
|
2734 |
-
content: "\e112";
|
2735 |
-
}
|
2736 |
-
.glyphicon-chevron-up:before {
|
2737 |
-
content: "\e113";
|
2738 |
-
}
|
2739 |
-
.glyphicon-chevron-down:before {
|
2740 |
-
content: "\e114";
|
2741 |
-
}
|
2742 |
-
.glyphicon-retweet:before {
|
2743 |
-
content: "\e115";
|
2744 |
-
}
|
2745 |
-
.glyphicon-shopping-cart:before {
|
2746 |
-
content: "\e116";
|
2747 |
-
}
|
2748 |
-
.glyphicon-folder-close:before {
|
2749 |
-
content: "\e117";
|
2750 |
-
}
|
2751 |
-
.glyphicon-folder-open:before {
|
2752 |
-
content: "\e118";
|
2753 |
-
}
|
2754 |
-
.glyphicon-resize-vertical:before {
|
2755 |
-
content: "\e119";
|
2756 |
-
}
|
2757 |
-
.glyphicon-resize-horizontal:before {
|
2758 |
-
content: "\e120";
|
2759 |
-
}
|
2760 |
-
.glyphicon-hdd:before {
|
2761 |
-
content: "\e121";
|
2762 |
-
}
|
2763 |
-
.glyphicon-bullhorn:before {
|
2764 |
-
content: "\e122";
|
2765 |
-
}
|
2766 |
-
.glyphicon-bell:before {
|
2767 |
-
content: "\e123";
|
2768 |
-
}
|
2769 |
-
.glyphicon-certificate:before {
|
2770 |
-
content: "\e124";
|
2771 |
-
}
|
2772 |
-
.glyphicon-thumbs-up:before {
|
2773 |
-
content: "\e125";
|
2774 |
-
}
|
2775 |
-
.glyphicon-thumbs-down:before {
|
2776 |
-
content: "\e126";
|
2777 |
-
}
|
2778 |
-
.glyphicon-hand-right:before {
|
2779 |
-
content: "\e127";
|
2780 |
-
}
|
2781 |
-
.glyphicon-hand-left:before {
|
2782 |
-
content: "\e128";
|
2783 |
-
}
|
2784 |
-
.glyphicon-hand-up:before {
|
2785 |
-
content: "\e129";
|
2786 |
-
}
|
2787 |
-
.glyphicon-hand-down:before {
|
2788 |
-
content: "\e130";
|
2789 |
-
}
|
2790 |
-
.glyphicon-circle-arrow-right:before {
|
2791 |
-
content: "\e131";
|
2792 |
-
}
|
2793 |
-
.glyphicon-circle-arrow-left:before {
|
2794 |
-
content: "\e132";
|
2795 |
-
}
|
2796 |
-
.glyphicon-circle-arrow-up:before {
|
2797 |
-
content: "\e133";
|
2798 |
-
}
|
2799 |
-
.glyphicon-circle-arrow-down:before {
|
2800 |
-
content: "\e134";
|
2801 |
-
}
|
2802 |
-
.glyphicon-globe:before {
|
2803 |
-
content: "\e135";
|
2804 |
-
}
|
2805 |
-
.glyphicon-wrench:before {
|
2806 |
-
content: "\e136";
|
2807 |
-
}
|
2808 |
-
.glyphicon-tasks:before {
|
2809 |
-
content: "\e137";
|
2810 |
-
}
|
2811 |
-
.glyphicon-filter:before {
|
2812 |
-
content: "\e138";
|
2813 |
-
}
|
2814 |
-
.glyphicon-briefcase:before {
|
2815 |
-
content: "\e139";
|
2816 |
-
}
|
2817 |
-
.glyphicon-fullscreen:before {
|
2818 |
-
content: "\e140";
|
2819 |
-
}
|
2820 |
-
.glyphicon-dashboard:before {
|
2821 |
-
content: "\e141";
|
2822 |
-
}
|
2823 |
-
.glyphicon-paperclip:before {
|
2824 |
-
content: "\e142";
|
2825 |
-
}
|
2826 |
-
.glyphicon-heart-empty:before {
|
2827 |
-
content: "\e143";
|
2828 |
-
}
|
2829 |
-
.glyphicon-link:before {
|
2830 |
-
content: "\e144";
|
2831 |
-
}
|
2832 |
-
.glyphicon-phone:before {
|
2833 |
-
content: "\e145";
|
2834 |
-
}
|
2835 |
-
.glyphicon-pushpin:before {
|
2836 |
-
content: "\e146";
|
2837 |
-
}
|
2838 |
-
.glyphicon-usd:before {
|
2839 |
-
content: "\e148";
|
2840 |
-
}
|
2841 |
-
.glyphicon-gbp:before {
|
2842 |
-
content: "\e149";
|
2843 |
-
}
|
2844 |
-
.glyphicon-sort:before {
|
2845 |
-
content: "\e150";
|
2846 |
-
}
|
2847 |
-
.glyphicon-sort-by-alphabet:before {
|
2848 |
-
content: "\e151";
|
2849 |
-
}
|
2850 |
-
.glyphicon-sort-by-alphabet-alt:before {
|
2851 |
-
content: "\e152";
|
2852 |
-
}
|
2853 |
-
.glyphicon-sort-by-order:before {
|
2854 |
-
content: "\e153";
|
2855 |
-
}
|
2856 |
-
.glyphicon-sort-by-order-alt:before {
|
2857 |
-
content: "\e154";
|
2858 |
-
}
|
2859 |
-
.glyphicon-sort-by-attributes:before {
|
2860 |
-
content: "\e155";
|
2861 |
-
}
|
2862 |
-
.glyphicon-sort-by-attributes-alt:before {
|
2863 |
-
content: "\e156";
|
2864 |
-
}
|
2865 |
-
.glyphicon-unchecked:before {
|
2866 |
-
content: "\e157";
|
2867 |
-
}
|
2868 |
-
.glyphicon-expand:before {
|
2869 |
-
content: "\e158";
|
2870 |
-
}
|
2871 |
-
.glyphicon-collapse-down:before {
|
2872 |
-
content: "\e159";
|
2873 |
-
}
|
2874 |
-
.glyphicon-collapse-up:before {
|
2875 |
-
content: "\e160";
|
2876 |
-
}
|
2877 |
-
.glyphicon-log-in:before {
|
2878 |
-
content: "\e161";
|
2879 |
-
}
|
2880 |
-
.glyphicon-flash:before {
|
2881 |
-
content: "\e162";
|
2882 |
-
}
|
2883 |
-
.glyphicon-log-out:before {
|
2884 |
-
content: "\e163";
|
2885 |
-
}
|
2886 |
-
.glyphicon-new-window:before {
|
2887 |
-
content: "\e164";
|
2888 |
-
}
|
2889 |
-
.glyphicon-record:before {
|
2890 |
-
content: "\e165";
|
2891 |
-
}
|
2892 |
-
.glyphicon-save:before {
|
2893 |
-
content: "\e166";
|
2894 |
-
}
|
2895 |
-
.glyphicon-open:before {
|
2896 |
-
content: "\e167";
|
2897 |
-
}
|
2898 |
-
.glyphicon-saved:before {
|
2899 |
-
content: "\e168";
|
2900 |
-
}
|
2901 |
-
.glyphicon-import:before {
|
2902 |
-
content: "\e169";
|
2903 |
-
}
|
2904 |
-
.glyphicon-export:before {
|
2905 |
-
content: "\e170";
|
2906 |
-
}
|
2907 |
-
.glyphicon-send:before {
|
2908 |
-
content: "\e171";
|
2909 |
-
}
|
2910 |
-
.glyphicon-floppy-disk:before {
|
2911 |
-
content: "\e172";
|
2912 |
-
}
|
2913 |
-
.glyphicon-floppy-saved:before {
|
2914 |
-
content: "\e173";
|
2915 |
-
}
|
2916 |
-
.glyphicon-floppy-remove:before {
|
2917 |
-
content: "\e174";
|
2918 |
-
}
|
2919 |
-
.glyphicon-floppy-save:before {
|
2920 |
-
content: "\e175";
|
2921 |
-
}
|
2922 |
-
.glyphicon-floppy-open:before {
|
2923 |
-
content: "\e176";
|
2924 |
-
}
|
2925 |
-
.glyphicon-credit-card:before {
|
2926 |
-
content: "\e177";
|
2927 |
-
}
|
2928 |
-
.glyphicon-transfer:before {
|
2929 |
-
content: "\e178";
|
2930 |
-
}
|
2931 |
-
.glyphicon-cutlery:before {
|
2932 |
-
content: "\e179";
|
2933 |
-
}
|
2934 |
-
.glyphicon-header:before {
|
2935 |
-
content: "\e180";
|
2936 |
-
}
|
2937 |
-
.glyphicon-compressed:before {
|
2938 |
-
content: "\e181";
|
2939 |
-
}
|
2940 |
-
.glyphicon-earphone:before {
|
2941 |
-
content: "\e182";
|
2942 |
-
}
|
2943 |
-
.glyphicon-phone-alt:before {
|
2944 |
-
content: "\e183";
|
2945 |
-
}
|
2946 |
-
.glyphicon-tower:before {
|
2947 |
-
content: "\e184";
|
2948 |
-
}
|
2949 |
-
.glyphicon-stats:before {
|
2950 |
-
content: "\e185";
|
2951 |
-
}
|
2952 |
-
.glyphicon-sd-video:before {
|
2953 |
-
content: "\e186";
|
2954 |
-
}
|
2955 |
-
.glyphicon-hd-video:before {
|
2956 |
-
content: "\e187";
|
2957 |
-
}
|
2958 |
-
.glyphicon-subtitles:before {
|
2959 |
-
content: "\e188";
|
2960 |
-
}
|
2961 |
-
.glyphicon-sound-stereo:before {
|
2962 |
-
content: "\e189";
|
2963 |
-
}
|
2964 |
-
.glyphicon-sound-dolby:before {
|
2965 |
-
content: "\e190";
|
2966 |
-
}
|
2967 |
-
.glyphicon-sound-5-1:before {
|
2968 |
-
content: "\e191";
|
2969 |
-
}
|
2970 |
-
.glyphicon-sound-6-1:before {
|
2971 |
-
content: "\e192";
|
2972 |
-
}
|
2973 |
-
.glyphicon-sound-7-1:before {
|
2974 |
-
content: "\e193";
|
2975 |
-
}
|
2976 |
-
.glyphicon-copyright-mark:before {
|
2977 |
-
content: "\e194";
|
2978 |
-
}
|
2979 |
-
.glyphicon-registration-mark:before {
|
2980 |
-
content: "\e195";
|
2981 |
-
}
|
2982 |
-
.glyphicon-cloud-download:before {
|
2983 |
-
content: "\e197";
|
2984 |
-
}
|
2985 |
-
.glyphicon-cloud-upload:before {
|
2986 |
-
content: "\e198";
|
2987 |
-
}
|
2988 |
-
.glyphicon-tree-conifer:before {
|
2989 |
-
content: "\e199";
|
2990 |
-
}
|
2991 |
-
.glyphicon-tree-deciduous:before {
|
2992 |
-
content: "\e200";
|
2993 |
-
}
|
2994 |
-
.caret {
|
2995 |
-
display: inline-block;
|
2996 |
-
width: 0;
|
2997 |
-
height: 0;
|
2998 |
-
margin-left: 2px;
|
2999 |
-
vertical-align: middle;
|
3000 |
-
border-top: 4px solid;
|
3001 |
-
border-right: 4px solid transparent;
|
3002 |
-
border-left: 4px solid transparent;
|
3003 |
-
}
|
3004 |
-
.dropdown {
|
3005 |
-
position: relative;
|
3006 |
-
}
|
3007 |
-
.dropdown-toggle:focus {
|
3008 |
-
outline: 0;
|
3009 |
-
}
|
3010 |
-
.dropdown-menu {
|
3011 |
-
position: absolute;
|
3012 |
-
top: 100%;
|
3013 |
-
left: 0;
|
3014 |
-
z-index: 1000;
|
3015 |
-
display: none;
|
3016 |
-
float: left;
|
3017 |
-
min-width: 160px;
|
3018 |
-
padding: 5px 0;
|
3019 |
-
margin: 2px 0 0;
|
3020 |
-
font-size: 14px;
|
3021 |
-
list-style: none;
|
3022 |
-
background-color: #fff;
|
3023 |
-
background-clip: padding-box;
|
3024 |
-
border: 1px solid #ccc;
|
3025 |
-
border: 1px solid rgba(0, 0, 0, .15);
|
3026 |
-
border-radius: 4px;
|
3027 |
-
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
|
3028 |
-
box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
|
3029 |
-
}
|
3030 |
-
.dropdown-menu.pull-right {
|
3031 |
-
right: 0;
|
3032 |
-
left: auto;
|
3033 |
-
}
|
3034 |
-
.dropdown-menu .divider {
|
3035 |
-
height: 1px;
|
3036 |
-
margin: 9px 0;
|
3037 |
-
overflow: hidden;
|
3038 |
-
background-color: #e5e5e5;
|
3039 |
-
}
|
3040 |
-
.dropdown-menu > li > a {
|
3041 |
-
display: block;
|
3042 |
-
padding: 3px 20px;
|
3043 |
-
clear: both;
|
3044 |
-
font-weight: normal;
|
3045 |
-
line-height: 1.42857143;
|
3046 |
-
color: #333;
|
3047 |
-
white-space: nowrap;
|
3048 |
-
}
|
3049 |
-
.dropdown-menu > li > a:hover,
|
3050 |
-
.dropdown-menu > li > a:focus {
|
3051 |
-
color: #262626;
|
3052 |
-
text-decoration: none;
|
3053 |
-
background-color: #f5f5f5;
|
3054 |
-
}
|
3055 |
-
.dropdown-menu > .active > a,
|
3056 |
-
.dropdown-menu > .active > a:hover,
|
3057 |
-
.dropdown-menu > .active > a:focus {
|
3058 |
-
color: #fff;
|
3059 |
-
text-decoration: none;
|
3060 |
-
background-color: #428bca;
|
3061 |
-
outline: 0;
|
3062 |
-
}
|
3063 |
-
.dropdown-menu > .disabled > a,
|
3064 |
-
.dropdown-menu > .disabled > a:hover,
|
3065 |
-
.dropdown-menu > .disabled > a:focus {
|
3066 |
-
color: #999;
|
3067 |
-
}
|
3068 |
-
.dropdown-menu > .disabled > a:hover,
|
3069 |
-
.dropdown-menu > .disabled > a:focus {
|
3070 |
-
text-decoration: none;
|
3071 |
-
cursor: not-allowed;
|
3072 |
-
background-color: transparent;
|
3073 |
-
background-image: none;
|
3074 |
-
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
3075 |
-
}
|
3076 |
-
.open > .dropdown-menu {
|
3077 |
-
display: block;
|
3078 |
-
}
|
3079 |
-
.open > a {
|
3080 |
-
outline: 0;
|
3081 |
-
}
|
3082 |
-
.dropdown-menu-right {
|
3083 |
-
right: 0;
|
3084 |
-
left: auto;
|
3085 |
-
}
|
3086 |
-
.dropdown-menu-left {
|
3087 |
-
right: auto;
|
3088 |
-
left: 0;
|
3089 |
-
}
|
3090 |
-
.dropdown-header {
|
3091 |
-
display: block;
|
3092 |
-
padding: 3px 20px;
|
3093 |
-
font-size: 12px;
|
3094 |
-
line-height: 1.42857143;
|
3095 |
-
color: #999;
|
3096 |
-
}
|
3097 |
-
.dropdown-backdrop {
|
3098 |
-
position: fixed;
|
3099 |
-
top: 0;
|
3100 |
-
right: 0;
|
3101 |
-
bottom: 0;
|
3102 |
-
left: 0;
|
3103 |
-
z-index: 990;
|
3104 |
-
}
|
3105 |
-
.pull-right > .dropdown-menu {
|
3106 |
-
right: 0;
|
3107 |
-
left: auto;
|
3108 |
-
}
|
3109 |
-
.dropup .caret,
|
3110 |
-
.navbar-fixed-bottom .dropdown .caret {
|
3111 |
-
content: "";
|
3112 |
-
border-top: 0;
|
3113 |
-
border-bottom: 4px solid;
|
3114 |
-
}
|
3115 |
-
.dropup .dropdown-menu,
|
3116 |
-
.navbar-fixed-bottom .dropdown .dropdown-menu {
|
3117 |
-
top: auto;
|
3118 |
-
bottom: 100%;
|
3119 |
-
margin-bottom: 1px;
|
3120 |
-
}
|
3121 |
-
@media (min-width: 768px) {
|
3122 |
-
.navbar-right .dropdown-menu {
|
3123 |
-
right: 0;
|
3124 |
-
left: auto;
|
3125 |
-
}
|
3126 |
-
.navbar-right .dropdown-menu-left {
|
3127 |
-
right: auto;
|
3128 |
-
left: 0;
|
3129 |
-
}
|
3130 |
-
}
|
3131 |
-
.btn-group,
|
3132 |
-
.btn-group-vertical {
|
3133 |
-
position: relative;
|
3134 |
-
display: inline-block;
|
3135 |
-
vertical-align: middle;
|
3136 |
-
}
|
3137 |
-
.btn-group > .btn,
|
3138 |
-
.btn-group-vertical > .btn {
|
3139 |
-
position: relative;
|
3140 |
-
float: left;
|
3141 |
-
}
|
3142 |
-
.btn-group > .btn:hover,
|
3143 |
-
.btn-group-vertical > .btn:hover,
|
3144 |
-
.btn-group > .btn:focus,
|
3145 |
-
.btn-group-vertical > .btn:focus,
|
3146 |
-
.btn-group > .btn:active,
|
3147 |
-
.btn-group-vertical > .btn:active,
|
3148 |
-
.btn-group > .btn.active,
|
3149 |
-
.btn-group-vertical > .btn.active {
|
3150 |
-
z-index: 2;
|
3151 |
-
}
|
3152 |
-
.btn-group > .btn:focus,
|
3153 |
-
.btn-group-vertical > .btn:focus {
|
3154 |
-
outline: none;
|
3155 |
-
}
|
3156 |
-
.btn-group .btn + .btn,
|
3157 |
-
.btn-group .btn + .btn-group,
|
3158 |
-
.btn-group .btn-group + .btn,
|
3159 |
-
.btn-group .btn-group + .btn-group {
|
3160 |
-
margin-left: -1px;
|
3161 |
-
}
|
3162 |
-
.btn-toolbar {
|
3163 |
-
margin-left: -5px;
|
3164 |
-
}
|
3165 |
-
.btn-toolbar .btn-group,
|
3166 |
-
.btn-toolbar .input-group {
|
3167 |
-
float: left;
|
3168 |
-
}
|
3169 |
-
.btn-toolbar > .btn,
|
3170 |
-
.btn-toolbar > .btn-group,
|
3171 |
-
.btn-toolbar > .input-group {
|
3172 |
-
margin-left: 5px;
|
3173 |
-
}
|
3174 |
-
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
|
3175 |
-
border-radius: 0;
|
3176 |
-
}
|
3177 |
-
.btn-group > .btn:first-child {
|
3178 |
-
margin-left: 0;
|
3179 |
-
}
|
3180 |
-
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
|
3181 |
-
border-top-right-radius: 0;
|
3182 |
-
border-bottom-right-radius: 0;
|
3183 |
-
}
|
3184 |
-
.btn-group > .btn:last-child:not(:first-child),
|
3185 |
-
.btn-group > .dropdown-toggle:not(:first-child) {
|
3186 |
-
border-top-left-radius: 0;
|
3187 |
-
border-bottom-left-radius: 0;
|
3188 |
-
}
|
3189 |
-
.btn-group > .btn-group {
|
3190 |
-
float: left;
|
3191 |
-
}
|
3192 |
-
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
|
3193 |
-
border-radius: 0;
|
3194 |
-
}
|
3195 |
-
.btn-group > .btn-group:first-child > .btn:last-child,
|
3196 |
-
.btn-group > .btn-group:first-child > .dropdown-toggle {
|
3197 |
-
border-top-right-radius: 0;
|
3198 |
-
border-bottom-right-radius: 0;
|
3199 |
-
}
|
3200 |
-
.btn-group > .btn-group:last-child > .btn:first-child {
|
3201 |
-
border-top-left-radius: 0;
|
3202 |
-
border-bottom-left-radius: 0;
|
3203 |
-
}
|
3204 |
-
.btn-group .dropdown-toggle:active,
|
3205 |
-
.btn-group.open .dropdown-toggle {
|
3206 |
-
outline: 0;
|
3207 |
-
}
|
3208 |
-
.btn-group > .btn + .dropdown-toggle {
|
3209 |
-
padding-right: 8px;
|
3210 |
-
padding-left: 8px;
|
3211 |
-
}
|
3212 |
-
.btn-group > .btn-lg + .dropdown-toggle {
|
3213 |
-
padding-right: 12px;
|
3214 |
-
padding-left: 12px;
|
3215 |
-
}
|
3216 |
-
.btn-group.open .dropdown-toggle {
|
3217 |
-
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
|
3218 |
-
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
|
3219 |
-
}
|
3220 |
-
.btn-group.open .dropdown-toggle.btn-link {
|
3221 |
-
-webkit-box-shadow: none;
|
3222 |
-
box-shadow: none;
|
3223 |
-
}
|
3224 |
-
.btn .caret {
|
3225 |
-
margin-left: 0;
|
3226 |
-
}
|
3227 |
-
.btn-lg .caret {
|
3228 |
-
border-width: 5px 5px 0;
|
3229 |
-
border-bottom-width: 0;
|
3230 |
-
}
|
3231 |
-
.dropup .btn-lg .caret {
|
3232 |
-
border-width: 0 5px 5px;
|
3233 |
-
}
|
3234 |
-
.btn-group-vertical > .btn,
|
3235 |
-
.btn-group-vertical > .btn-group,
|
3236 |
-
.btn-group-vertical > .btn-group > .btn {
|
3237 |
-
display: block;
|
3238 |
-
float: none;
|
3239 |
-
width: 100%;
|
3240 |
-
max-width: 100%;
|
3241 |
-
}
|
3242 |
-
.btn-group-vertical > .btn-group > .btn {
|
3243 |
-
float: none;
|
3244 |
-
}
|
3245 |
-
.btn-group-vertical > .btn + .btn,
|
3246 |
-
.btn-group-vertical > .btn + .btn-group,
|
3247 |
-
.btn-group-vertical > .btn-group + .btn,
|
3248 |
-
.btn-group-vertical > .btn-group + .btn-group {
|
3249 |
-
margin-top: -1px;
|
3250 |
-
margin-left: 0;
|
3251 |
-
}
|
3252 |
-
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
|
3253 |
-
border-radius: 0;
|
3254 |
-
}
|
3255 |
-
.btn-group-vertical > .btn:first-child:not(:last-child) {
|
3256 |
-
border-top-right-radius: 4px;
|
3257 |
-
border-bottom-right-radius: 0;
|
3258 |
-
border-bottom-left-radius: 0;
|
3259 |
-
}
|
3260 |
-
.btn-group-vertical > .btn:last-child:not(:first-child) {
|
3261 |
-
border-top-left-radius: 0;
|
3262 |
-
border-top-right-radius: 0;
|
3263 |
-
border-bottom-left-radius: 4px;
|
3264 |
-
}
|
3265 |
-
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
|
3266 |
-
border-radius: 0;
|
3267 |
-
}
|
3268 |
-
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
|
3269 |
-
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
|
3270 |
-
border-bottom-right-radius: 0;
|
3271 |
-
border-bottom-left-radius: 0;
|
3272 |
-
}
|
3273 |
-
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
|
3274 |
-
border-top-left-radius: 0;
|
3275 |
-
border-top-right-radius: 0;
|
3276 |
-
}
|
3277 |
-
.btn-group-justified {
|
3278 |
-
display: table;
|
3279 |
-
width: 100%;
|
3280 |
-
table-layout: fixed;
|
3281 |
-
border-collapse: separate;
|
3282 |
-
}
|
3283 |
-
.btn-group-justified > .btn,
|
3284 |
-
.btn-group-justified > .btn-group {
|
3285 |
-
display: table-cell;
|
3286 |
-
float: none;
|
3287 |
-
width: 1%;
|
3288 |
-
}
|
3289 |
-
.btn-group-justified > .btn-group .btn {
|
3290 |
-
width: 100%;
|
3291 |
-
}
|
3292 |
-
[data-toggle="buttons"] > .btn > input[type="radio"],
|
3293 |
-
[data-toggle="buttons"] > .btn > input[type="checkbox"] {
|
3294 |
-
display: none;
|
3295 |
-
}
|
3296 |
-
.input-group {
|
3297 |
-
position: relative;
|
3298 |
-
display: table;
|
3299 |
-
border-collapse: separate;
|
3300 |
-
}
|
3301 |
-
.input-group[class*="col-"] {
|
3302 |
-
float: none;
|
3303 |
-
padding-right: 0;
|
3304 |
-
padding-left: 0;
|
3305 |
-
}
|
3306 |
-
.input-group .form-control {
|
3307 |
-
position: relative;
|
3308 |
-
z-index: 2;
|
3309 |
-
float: left;
|
3310 |
-
width: 100%;
|
3311 |
-
margin-bottom: 0;
|
3312 |
-
}
|
3313 |
-
.input-group-lg > .form-control,
|
3314 |
-
.input-group-lg > .input-group-addon,
|
3315 |
-
.input-group-lg > .input-group-btn > .btn {
|
3316 |
-
height: 46px;
|
3317 |
-
padding: 10px 16px;
|
3318 |
-
font-size: 18px;
|
3319 |
-
line-height: 1.33;
|
3320 |
-
border-radius: 6px;
|
3321 |
-
}
|
3322 |
-
select.input-group-lg > .form-control,
|
3323 |
-
select.input-group-lg > .input-group-addon,
|
3324 |
-
select.input-group-lg > .input-group-btn > .btn {
|
3325 |
-
height: 46px;
|
3326 |
-
line-height: 46px;
|
3327 |
-
}
|
3328 |
-
textarea.input-group-lg > .form-control,
|
3329 |
-
textarea.input-group-lg > .input-group-addon,
|
3330 |
-
textarea.input-group-lg > .input-group-btn > .btn,
|
3331 |
-
select[multiple].input-group-lg > .form-control,
|
3332 |
-
select[multiple].input-group-lg > .input-group-addon,
|
3333 |
-
select[multiple].input-group-lg > .input-group-btn > .btn {
|
3334 |
-
height: auto;
|
3335 |
-
}
|
3336 |
-
.input-group-sm > .form-control,
|
3337 |
-
.input-group-sm > .input-group-addon,
|
3338 |
-
.input-group-sm > .input-group-btn > .btn {
|
3339 |
-
height: 30px;
|
3340 |
-
padding: 5px 10px;
|
3341 |
-
font-size: 12px;
|
3342 |
-
line-height: 1.5;
|
3343 |
-
border-radius: 3px;
|
3344 |
-
}
|
3345 |
-
select.input-group-sm > .form-control,
|
3346 |
-
select.input-group-sm > .input-group-addon,
|
3347 |
-
select.input-group-sm > .input-group-btn > .btn {
|
3348 |
-
height: 30px;
|
3349 |
-
line-height: 30px;
|
3350 |
-
}
|
3351 |
-
textarea.input-group-sm > .form-control,
|
3352 |
-
textarea.input-group-sm > .input-group-addon,
|
3353 |
-
textarea.input-group-sm > .input-group-btn > .btn,
|
3354 |
-
select[multiple].input-group-sm > .form-control,
|
3355 |
-
select[multiple].input-group-sm > .input-group-addon,
|
3356 |
-
select[multiple].input-group-sm > .input-group-btn > .btn {
|
3357 |
-
height: auto;
|
3358 |
-
}
|
3359 |
-
.input-group-addon,
|
3360 |
-
.input-group-btn,
|
3361 |
-
.input-group .form-control {
|
3362 |
-
display: table-cell;
|
3363 |
-
}
|
3364 |
-
.input-group-addon:not(:first-child):not(:last-child),
|
3365 |
-
.input-group-btn:not(:first-child):not(:last-child),
|
3366 |
-
.input-group .form-control:not(:first-child):not(:last-child) {
|
3367 |
-
border-radius: 0;
|
3368 |
-
}
|
3369 |
-
.input-group-addon,
|
3370 |
-
.input-group-btn {
|
3371 |
-
width: 1%;
|
3372 |
-
white-space: nowrap;
|
3373 |
-
vertical-align: middle;
|
3374 |
-
}
|
3375 |
-
.input-group-addon {
|
3376 |
-
padding: 6px 12px;
|
3377 |
-
font-size: 14px;
|
3378 |
-
font-weight: normal;
|
3379 |
-
line-height: 1;
|
3380 |
-
color: #555;
|
3381 |
-
text-align: center;
|
3382 |
-
background-color: #eee;
|
3383 |
-
border: 1px solid #ccc;
|
3384 |
-
border-radius: 4px;
|
3385 |
-
}
|
3386 |
-
.input-group-addon.input-sm {
|
3387 |
-
padding: 5px 10px;
|
3388 |
-
font-size: 12px;
|
3389 |
-
border-radius: 3px;
|
3390 |
-
}
|
3391 |
-
.input-group-addon.input-lg {
|
3392 |
-
padding: 10px 16px;
|
3393 |
-
font-size: 18px;
|
3394 |
-
border-radius: 6px;
|
3395 |
-
}
|
3396 |
-
.input-group-addon input[type="radio"],
|
3397 |
-
.input-group-addon input[type="checkbox"] {
|
3398 |
-
margin-top: 0;
|
3399 |
-
}
|
3400 |
-
.input-group .form-control:first-child,
|
3401 |
-
.input-group-addon:first-child,
|
3402 |
-
.input-group-btn:first-child > .btn,
|
3403 |
-
.input-group-btn:first-child > .btn-group > .btn,
|
3404 |
-
.input-group-btn:first-child > .dropdown-toggle,
|
3405 |
-
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
|
3406 |
-
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
|
3407 |
-
border-top-right-radius: 0;
|
3408 |
-
border-bottom-right-radius: 0;
|
3409 |
-
}
|
3410 |
-
.input-group-addon:first-child {
|
3411 |
-
border-right: 0;
|
3412 |
-
}
|
3413 |
-
.input-group .form-control:last-child,
|
3414 |
-
.input-group-addon:last-child,
|
3415 |
-
.input-group-btn:last-child > .btn,
|
3416 |
-
.input-group-btn:last-child > .btn-group > .btn,
|
3417 |
-
.input-group-btn:last-child > .dropdown-toggle,
|
3418 |
-
.input-group-btn:first-child > .btn:not(:first-child),
|
3419 |
-
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
|
3420 |
-
border-top-left-radius: 0;
|
3421 |
-
border-bottom-left-radius: 0;
|
3422 |
-
}
|
3423 |
-
.input-group-addon:last-child {
|
3424 |
-
border-left: 0;
|
3425 |
-
}
|
3426 |
-
.input-group-btn {
|
3427 |
-
position: relative;
|
3428 |
-
font-size: 0;
|
3429 |
-
white-space: nowrap;
|
3430 |
-
}
|
3431 |
-
.input-group-btn > .btn {
|
3432 |
-
position: relative;
|
3433 |
-
}
|
3434 |
-
.input-group-btn > .btn + .btn {
|
3435 |
-
margin-left: -1px;
|
3436 |
-
}
|
3437 |
-
.input-group-btn > .btn:hover,
|
3438 |
-
.input-group-btn > .btn:focus,
|
3439 |
-
.input-group-btn > .btn:active {
|
3440 |
-
z-index: 2;
|
3441 |
-
}
|
3442 |
-
.input-group-btn:first-child > .btn,
|
3443 |
-
.input-group-btn:first-child > .btn-group {
|
3444 |
-
margin-right: -1px;
|
3445 |
-
}
|
3446 |
-
.input-group-btn:last-child > .btn,
|
3447 |
-
.input-group-btn:last-child > .btn-group {
|
3448 |
-
margin-left: -1px;
|
3449 |
-
}
|
3450 |
-
.nav {
|
3451 |
-
padding-left: 0;
|
3452 |
-
margin-bottom: 0;
|
3453 |
-
list-style: none;
|
3454 |
-
}
|
3455 |
-
.nav > li {
|
3456 |
-
position: relative;
|
3457 |
-
display: block;
|
3458 |
-
}
|
3459 |
-
.nav > li > a {
|
3460 |
-
position: relative;
|
3461 |
-
display: block;
|
3462 |
-
padding: 10px 15px;
|
3463 |
-
}
|
3464 |
-
.nav > li > a:hover,
|
3465 |
-
.nav > li > a:focus {
|
3466 |
-
text-decoration: none;
|
3467 |
-
background-color: #eee;
|
3468 |
-
}
|
3469 |
-
.nav > li.disabled > a {
|
3470 |
-
color: #999;
|
3471 |
-
}
|
3472 |
-
.nav > li.disabled > a:hover,
|
3473 |
-
.nav > li.disabled > a:focus {
|
3474 |
-
color: #999;
|
3475 |
-
text-decoration: none;
|
3476 |
-
cursor: not-allowed;
|
3477 |
-
background-color: transparent;
|
3478 |
-
}
|
3479 |
-
.nav .open > a,
|
3480 |
-
.nav .open > a:hover,
|
3481 |
-
.nav .open > a:focus {
|
3482 |
-
background-color: #eee;
|
3483 |
-
border-color: #428bca;
|
3484 |
-
}
|
3485 |
-
.nav .nav-divider {
|
3486 |
-
height: 1px;
|
3487 |
-
margin: 9px 0;
|
3488 |
-
overflow: hidden;
|
3489 |
-
background-color: #e5e5e5;
|
3490 |
-
}
|
3491 |
-
.nav > li > a > img {
|
3492 |
-
max-width: none;
|
3493 |
-
}
|
3494 |
-
.nav-tabs {
|
3495 |
-
border-bottom: 1px solid #ddd;
|
3496 |
-
}
|
3497 |
-
.nav-tabs > li {
|
3498 |
-
float: left;
|
3499 |
-
margin-bottom: -1px;
|
3500 |
-
}
|
3501 |
-
.nav-tabs > li > a {
|
3502 |
-
margin-right: 2px;
|
3503 |
-
line-height: 1.42857143;
|
3504 |
-
border: 1px solid transparent;
|
3505 |
-
border-radius: 4px 4px 0 0;
|
3506 |
-
}
|
3507 |
-
.nav-tabs > li > a:hover {
|
3508 |
-
border-color: #eee #eee #ddd;
|
3509 |
-
}
|
3510 |
-
.nav-tabs > li.active > a,
|
3511 |
-
.nav-tabs > li.active > a:hover,
|
3512 |
-
.nav-tabs > li.active > a:focus {
|
3513 |
-
color: #555;
|
3514 |
-
cursor: default;
|
3515 |
-
background-color: #fff;
|
3516 |
-
border: 1px solid #ddd;
|
3517 |
-
border-bottom-color: transparent;
|
3518 |
-
}
|
3519 |
-
.nav-tabs.nav-justified {
|
3520 |
-
width: 100%;
|
3521 |
-
border-bottom: 0;
|
3522 |
-
}
|
3523 |
-
.nav-tabs.nav-justified > li {
|
3524 |
-
float: none;
|
3525 |
-
}
|
3526 |
-
.nav-tabs.nav-justified > li > a {
|
3527 |
-
margin-bottom: 5px;
|
3528 |
-
text-align: center;
|
3529 |
-
}
|
3530 |
-
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
|
3531 |
-
top: auto;
|
3532 |
-
left: auto;
|
3533 |
-
}
|
3534 |
-
@media (min-width: 768px) {
|
3535 |
-
.nav-tabs.nav-justified > li {
|
3536 |
-
display: table-cell;
|
3537 |
-
width: 1%;
|
3538 |
-
}
|
3539 |
-
.nav-tabs.nav-justified > li > a {
|
3540 |
-
margin-bottom: 0;
|
3541 |
-
}
|
3542 |
-
}
|
3543 |
-
.nav-tabs.nav-justified > li > a {
|
3544 |
-
margin-right: 0;
|
3545 |
-
border-radius: 4px;
|
3546 |
-
}
|
3547 |
-
.nav-tabs.nav-justified > .active > a,
|
3548 |
-
.nav-tabs.nav-justified > .active > a:hover,
|
3549 |
-
.nav-tabs.nav-justified > .active > a:focus {
|
3550 |
-
border: 1px solid #ddd;
|
3551 |
-
}
|
3552 |
-
@media (min-width: 768px) {
|
3553 |
-
.nav-tabs.nav-justified > li > a {
|
3554 |
-
border-bottom: 1px solid #ddd;
|
3555 |
-
border-radius: 4px 4px 0 0;
|
3556 |
-
}
|
3557 |
-
.nav-tabs.nav-justified > .active > a,
|
3558 |
-
.nav-tabs.nav-justified > .active > a:hover,
|
3559 |
-
.nav-tabs.nav-justified > .active > a:focus {
|
3560 |
-
border-bottom-color: #fff;
|
3561 |
-
}
|
3562 |
-
}
|
3563 |
-
.nav-pills > li {
|
3564 |
-
float: left;
|
3565 |
-
}
|
3566 |
-
.nav-pills > li > a {
|
3567 |
-
border-radius: 4px;
|
3568 |
-
}
|
3569 |
-
.nav-pills > li + li {
|
3570 |
-
margin-left: 2px;
|
3571 |
-
}
|
3572 |
-
.nav-pills > li.active > a,
|
3573 |
-
.nav-pills > li.active > a:hover,
|
3574 |
-
.nav-pills > li.active > a:focus {
|
3575 |
-
color: #fff;
|
3576 |
-
background-color: #428bca;
|
3577 |
-
}
|
3578 |
-
.nav-stacked > li {
|
3579 |
-
float: none;
|
3580 |
-
}
|
3581 |
-
.nav-stacked > li + li {
|
3582 |
-
margin-top: 2px;
|
3583 |
-
margin-left: 0;
|
3584 |
-
}
|
3585 |
-
.nav-justified {
|
3586 |
-
width: 100%;
|
3587 |
-
}
|
3588 |
-
.nav-justified > li {
|
3589 |
-
float: none;
|
3590 |
-
}
|
3591 |
-
.nav-justified > li > a {
|
3592 |
-
margin-bottom: 5px;
|
3593 |
-
text-align: center;
|
3594 |
-
}
|
3595 |
-
.nav-justified > .dropdown .dropdown-menu {
|
3596 |
-
top: auto;
|
3597 |
-
left: auto;
|
3598 |
-
}
|
3599 |
-
@media (min-width: 768px) {
|
3600 |
-
.nav-justified > li {
|
3601 |
-
display: table-cell;
|
3602 |
-
width: 1%;
|
3603 |
-
}
|
3604 |
-
.nav-justified > li > a {
|
3605 |
-
margin-bottom: 0;
|
3606 |
-
}
|
3607 |
-
}
|
3608 |
-
.nav-tabs-justified {
|
3609 |
-
border-bottom: 0;
|
3610 |
-
}
|
3611 |
-
.nav-tabs-justified > li > a {
|
3612 |
-
margin-right: 0;
|
3613 |
-
border-radius: 4px;
|
3614 |
-
}
|
3615 |
-
.nav-tabs-justified > .active > a,
|
3616 |
-
.nav-tabs-justified > .active > a:hover,
|
3617 |
-
.nav-tabs-justified > .active > a:focus {
|
3618 |
-
border: 1px solid #ddd;
|
3619 |
-
}
|
3620 |
-
@media (min-width: 768px) {
|
3621 |
-
.nav-tabs-justified > li > a {
|
3622 |
-
border-bottom: 1px solid #ddd;
|
3623 |
-
border-radius: 4px 4px 0 0;
|
3624 |
-
}
|
3625 |
-
.nav-tabs-justified > .active > a,
|
3626 |
-
.nav-tabs-justified > .active > a:hover,
|
3627 |
-
.nav-tabs-justified > .active > a:focus {
|
3628 |
-
border-bottom-color: #fff;
|
3629 |
-
}
|
3630 |
-
}
|
3631 |
-
.tab-content > .tab-pane {
|
3632 |
-
display: none;
|
3633 |
-
}
|
3634 |
-
.tab-content > .active {
|
3635 |
-
display: block;
|
3636 |
-
}
|
3637 |
-
.nav-tabs .dropdown-menu {
|
3638 |
-
margin-top: -1px;
|
3639 |
-
border-top-left-radius: 0;
|
3640 |
-
border-top-right-radius: 0;
|
3641 |
-
}
|
3642 |
-
.navbar {
|
3643 |
-
position: relative;
|
3644 |
-
min-height: 50px;
|
3645 |
-
margin-bottom: 20px;
|
3646 |
-
border: 1px solid transparent;
|
3647 |
-
}
|
3648 |
-
@media (min-width: 768px) {
|
3649 |
-
.navbar {
|
3650 |
-
border-radius: 4px;
|
3651 |
-
}
|
3652 |
-
}
|
3653 |
-
@media (min-width: 768px) {
|
3654 |
-
.navbar-header {
|
3655 |
-
float: left;
|
3656 |
-
}
|
3657 |
-
}
|
3658 |
-
.navbar-collapse {
|
3659 |
-
max-height: 340px;
|
3660 |
-
padding-right: 15px;
|
3661 |
-
padding-left: 15px;
|
3662 |
-
overflow-x: visible;
|
3663 |
-
-webkit-overflow-scrolling: touch;
|
3664 |
-
border-top: 1px solid transparent;
|
3665 |
-
box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
|
3666 |
-
}
|
3667 |
-
.navbar-collapse.in {
|
3668 |
-
overflow-y: auto;
|
3669 |
-
}
|
3670 |
-
@media (min-width: 768px) {
|
3671 |
-
.navbar-collapse {
|
3672 |
-
width: auto;
|
3673 |
-
border-top: 0;
|
3674 |
-
box-shadow: none;
|
3675 |
-
}
|
3676 |
-
.navbar-collapse.collapse {
|
3677 |
-
display: block !important;
|
3678 |
-
height: auto !important;
|
3679 |
-
padding-bottom: 0;
|
3680 |
-
overflow: visible !important;
|
3681 |
-
}
|
3682 |
-
.navbar-collapse.in {
|
3683 |
-
overflow-y: visible;
|
3684 |
-
}
|
3685 |
-
.navbar-fixed-top .navbar-collapse,
|
3686 |
-
.navbar-static-top .navbar-collapse,
|
3687 |
-
.navbar-fixed-bottom .navbar-collapse {
|
3688 |
-
padding-right: 0;
|
3689 |
-
padding-left: 0;
|
3690 |
-
}
|
3691 |
-
}
|
3692 |
-
.container > .navbar-header,
|
3693 |
-
.container-fluid > .navbar-header,
|
3694 |
-
.container > .navbar-collapse,
|
3695 |
-
.container-fluid > .navbar-collapse {
|
3696 |
-
margin-right: -15px;
|
3697 |
-
margin-left: -15px;
|
3698 |
-
}
|
3699 |
-
@media (min-width: 768px) {
|
3700 |
-
.container > .navbar-header,
|
3701 |
-
.container-fluid > .navbar-header,
|
3702 |
-
.container > .navbar-collapse,
|
3703 |
-
.container-fluid > .navbar-collapse {
|
3704 |
-
margin-right: 0;
|
3705 |
-
margin-left: 0;
|
3706 |
-
}
|
3707 |
-
}
|
3708 |
-
.navbar-static-top {
|
3709 |
-
z-index: 1000;
|
3710 |
-
border-width: 0 0 1px;
|
3711 |
-
}
|
3712 |
-
@media (min-width: 768px) {
|
3713 |
-
.navbar-static-top {
|
3714 |
-
border-radius: 0;
|
3715 |
-
}
|
3716 |
-
}
|
3717 |
-
.navbar-fixed-top,
|
3718 |
-
.navbar-fixed-bottom {
|
3719 |
-
position: fixed;
|
3720 |
-
right: 0;
|
3721 |
-
left: 0;
|
3722 |
-
z-index: 1030;
|
3723 |
-
}
|
3724 |
-
@media (min-width: 768px) {
|
3725 |
-
.navbar-fixed-top,
|
3726 |
-
.navbar-fixed-bottom {
|
3727 |
-
border-radius: 0;
|
3728 |
-
}
|
3729 |
-
}
|
3730 |
-
.navbar-fixed-top {
|
3731 |
-
top: 0;
|
3732 |
-
border-width: 0 0 1px;
|
3733 |
-
}
|
3734 |
-
.navbar-fixed-bottom {
|
3735 |
-
bottom: 0;
|
3736 |
-
margin-bottom: 0;
|
3737 |
-
border-width: 1px 0 0;
|
3738 |
-
}
|
3739 |
-
.navbar-brand {
|
3740 |
-
float: left;
|
3741 |
-
height: 50px;
|
3742 |
-
padding: 15px 15px;
|
3743 |
-
font-size: 18px;
|
3744 |
-
line-height: 20px;
|
3745 |
-
}
|
3746 |
-
.navbar-brand:hover,
|
3747 |
-
.navbar-brand:focus {
|
3748 |
-
text-decoration: none;
|
3749 |
-
}
|
3750 |
-
@media (min-width: 768px) {
|
3751 |
-
.navbar > .container .navbar-brand,
|
3752 |
-
.navbar > .container-fluid .navbar-brand {
|
3753 |
-
margin-left: -15px;
|
3754 |
-
}
|
3755 |
-
}
|
3756 |
-
.navbar-toggle {
|
3757 |
-
position: relative;
|
3758 |
-
float: right;
|
3759 |
-
padding: 9px 10px;
|
3760 |
-
margin-top: 8px;
|
3761 |
-
margin-right: 15px;
|
3762 |
-
margin-bottom: 8px;
|
3763 |
-
background-color: transparent;
|
3764 |
-
background-image: none;
|
3765 |
-
border: 1px solid transparent;
|
3766 |
-
border-radius: 4px;
|
3767 |
-
}
|
3768 |
-
.navbar-toggle:focus {
|
3769 |
-
outline: none;
|
3770 |
-
}
|
3771 |
-
.navbar-toggle .icon-bar {
|
3772 |
-
display: block;
|
3773 |
-
width: 22px;
|
3774 |
-
height: 2px;
|
3775 |
-
border-radius: 1px;
|
3776 |
-
}
|
3777 |
-
.navbar-toggle .icon-bar + .icon-bar {
|
3778 |
-
margin-top: 4px;
|
3779 |
-
}
|
3780 |
-
@media (min-width: 768px) {
|
3781 |
-
.navbar-toggle {
|
3782 |
-
display: none;
|
3783 |
-
}
|
3784 |
-
}
|
3785 |
-
.navbar-nav {
|
3786 |
-
margin: 7.5px -15px;
|
3787 |
-
}
|
3788 |
-
.navbar-nav > li > a {
|
3789 |
-
padding-top: 10px;
|
3790 |
-
padding-bottom: 10px;
|
3791 |
-
line-height: 20px;
|
3792 |
-
}
|
3793 |
-
@media (max-width: 767px) {
|
3794 |
-
.navbar-nav .open .dropdown-menu {
|
3795 |
-
position: static;
|
3796 |
-
float: none;
|
3797 |
-
width: auto;
|
3798 |
-
margin-top: 0;
|
3799 |
-
background-color: transparent;
|
3800 |
-
border: 0;
|
3801 |
-
box-shadow: none;
|
3802 |
-
}
|
3803 |
-
.navbar-nav .open .dropdown-menu > li > a,
|
3804 |
-
.navbar-nav .open .dropdown-menu .dropdown-header {
|
3805 |
-
padding: 5px 15px 5px 25px;
|
3806 |
-
}
|
3807 |
-
.navbar-nav .open .dropdown-menu > li > a {
|
3808 |
-
line-height: 20px;
|
3809 |
-
}
|
3810 |
-
.navbar-nav .open .dropdown-menu > li > a:hover,
|
3811 |
-
.navbar-nav .open .dropdown-menu > li > a:focus {
|
3812 |
-
background-image: none;
|
3813 |
-
}
|
3814 |
-
}
|
3815 |
-
@media (min-width: 768px) {
|
3816 |
-
.navbar-nav {
|
3817 |
-
float: left;
|
3818 |
-
margin: 0;
|
3819 |
-
}
|
3820 |
-
.navbar-nav > li {
|
3821 |
-
float: left;
|
3822 |
-
}
|
3823 |
-
.navbar-nav > li > a {
|
3824 |
-
padding-top: 15px;
|
3825 |
-
padding-bottom: 15px;
|
3826 |
-
}
|
3827 |
-
.navbar-nav.navbar-right:last-child {
|
3828 |
-
margin-right: -15px;
|
3829 |
-
}
|
3830 |
-
}
|
3831 |
-
@media (min-width: 768px) {
|
3832 |
-
.navbar-left {
|
3833 |
-
float: left !important;
|
3834 |
-
}
|
3835 |
-
.navbar-right {
|
3836 |
-
float: right !important;
|
3837 |
-
}
|
3838 |
-
}
|
3839 |
-
.navbar-form {
|
3840 |
-
padding: 10px 15px;
|
3841 |
-
margin-top: 8px;
|
3842 |
-
margin-right: -15px;
|
3843 |
-
margin-bottom: 8px;
|
3844 |
-
margin-left: -15px;
|
3845 |
-
border-top: 1px solid transparent;
|
3846 |
-
border-bottom: 1px solid transparent;
|
3847 |
-
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
|
3848 |
-
box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
|
3849 |
-
}
|
3850 |
-
@media (min-width: 768px) {
|
3851 |
-
.navbar-form .form-group {
|
3852 |
-
display: inline-block;
|
3853 |
-
margin-bottom: 0;
|
3854 |
-
vertical-align: middle;
|
3855 |
-
}
|
3856 |
-
.navbar-form .form-control {
|
3857 |
-
display: inline-block;
|
3858 |
-
width: auto;
|
3859 |
-
vertical-align: middle;
|
3860 |
-
}
|
3861 |
-
.navbar-form .input-group > .form-control {
|
3862 |
-
width: 100%;
|
3863 |
-
}
|
3864 |
-
.navbar-form .control-label {
|
3865 |
-
margin-bottom: 0;
|
3866 |
-
vertical-align: middle;
|
3867 |
-
}
|
3868 |
-
.navbar-form .radio,
|
3869 |
-
.navbar-form .checkbox {
|
3870 |
-
display: inline-block;
|
3871 |
-
padding-left: 0;
|
3872 |
-
margin-top: 0;
|
3873 |
-
margin-bottom: 0;
|
3874 |
-
vertical-align: middle;
|
3875 |
-
}
|
3876 |
-
.navbar-form .radio input[type="radio"],
|
3877 |
-
.navbar-form .checkbox input[type="checkbox"] {
|
3878 |
-
float: none;
|
3879 |
-
margin-left: 0;
|
3880 |
-
}
|
3881 |
-
.navbar-form .has-feedback .form-control-feedback {
|
3882 |
-
top: 0;
|
3883 |
-
}
|
3884 |
-
}
|
3885 |
-
@media (max-width: 767px) {
|
3886 |
-
.navbar-form .form-group {
|
3887 |
-
margin-bottom: 5px;
|
3888 |
-
}
|
3889 |
-
}
|
3890 |
-
@media (min-width: 768px) {
|
3891 |
-
.navbar-form {
|
3892 |
-
width: auto;
|
3893 |
-
padding-top: 0;
|
3894 |
-
padding-bottom: 0;
|
3895 |
-
margin-right: 0;
|
3896 |
-
margin-left: 0;
|
3897 |
-
border: 0;
|
3898 |
-
-webkit-box-shadow: none;
|
3899 |
-
box-shadow: none;
|
3900 |
-
}
|
3901 |
-
.navbar-form.navbar-right:last-child {
|
3902 |
-
margin-right: -15px;
|
3903 |
-
}
|
3904 |
-
}
|
3905 |
-
.navbar-nav > li > .dropdown-menu {
|
3906 |
-
margin-top: 0;
|
3907 |
-
border-top-left-radius: 0;
|
3908 |
-
border-top-right-radius: 0;
|
3909 |
-
}
|
3910 |
-
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
|
3911 |
-
border-bottom-right-radius: 0;
|
3912 |
-
border-bottom-left-radius: 0;
|
3913 |
-
}
|
3914 |
-
.navbar-btn {
|
3915 |
-
margin-top: 8px;
|
3916 |
-
margin-bottom: 8px;
|
3917 |
-
}
|
3918 |
-
.navbar-btn.btn-sm {
|
3919 |
-
margin-top: 10px;
|
3920 |
-
margin-bottom: 10px;
|
3921 |
-
}
|
3922 |
-
.navbar-btn.btn-xs {
|
3923 |
-
margin-top: 14px;
|
3924 |
-
margin-bottom: 14px;
|
3925 |
-
}
|
3926 |
-
.navbar-text {
|
3927 |
-
margin-top: 15px;
|
3928 |
-
margin-bottom: 15px;
|
3929 |
-
}
|
3930 |
-
@media (min-width: 768px) {
|
3931 |
-
.navbar-text {
|
3932 |
-
float: left;
|
3933 |
-
margin-right: 15px;
|
3934 |
-
margin-left: 15px;
|
3935 |
-
}
|
3936 |
-
.navbar-text.navbar-right:last-child {
|
3937 |
-
margin-right: 0;
|
3938 |
-
}
|
3939 |
-
}
|
3940 |
-
.navbar-default {
|
3941 |
-
background-color: #f8f8f8;
|
3942 |
-
border-color: #e7e7e7;
|
3943 |
-
}
|
3944 |
-
.navbar-default .navbar-brand {
|
3945 |
-
color: #777;
|
3946 |
-
}
|
3947 |
-
.navbar-default .navbar-brand:hover,
|
3948 |
-
.navbar-default .navbar-brand:focus {
|
3949 |
-
color: #5e5e5e;
|
3950 |
-
background-color: transparent;
|
3951 |
-
}
|
3952 |
-
.navbar-default .navbar-text {
|
3953 |
-
color: #777;
|
3954 |
-
}
|
3955 |
-
.navbar-default .navbar-nav > li > a {
|
3956 |
-
color: #777;
|
3957 |
-
}
|
3958 |
-
.navbar-default .navbar-nav > li > a:hover,
|
3959 |
-
.navbar-default .navbar-nav > li > a:focus {
|
3960 |
-
color: #333;
|
3961 |
-
background-color: transparent;
|
3962 |
-
}
|
3963 |
-
.navbar-default .navbar-nav > .active > a,
|
3964 |
-
.navbar-default .navbar-nav > .active > a:hover,
|
3965 |
-
.navbar-default .navbar-nav > .active > a:focus {
|
3966 |
-
color: #555;
|
3967 |
-
background-color: #e7e7e7;
|
3968 |
-
}
|
3969 |
-
.navbar-default .navbar-nav > .disabled > a,
|
3970 |
-
.navbar-default .navbar-nav > .disabled > a:hover,
|
3971 |
-
.navbar-default .navbar-nav > .disabled > a:focus {
|
3972 |
-
color: #ccc;
|
3973 |
-
background-color: transparent;
|
3974 |
-
}
|
3975 |
-
.navbar-default .navbar-toggle {
|
3976 |
-
border-color: #ddd;
|
3977 |
-
}
|
3978 |
-
.navbar-default .navbar-toggle:hover,
|
3979 |
-
.navbar-default .navbar-toggle:focus {
|
3980 |
-
background-color: #ddd;
|
3981 |
-
}
|
3982 |
-
.navbar-default .navbar-toggle .icon-bar {
|
3983 |
-
background-color: #888;
|
3984 |
-
}
|
3985 |
-
.navbar-default .navbar-collapse,
|
3986 |
-
.navbar-default .navbar-form {
|
3987 |
-
border-color: #e7e7e7;
|
3988 |
-
}
|
3989 |
-
.navbar-default .navbar-nav > .open > a,
|
3990 |
-
.navbar-default .navbar-nav > .open > a:hover,
|
3991 |
-
.navbar-default .navbar-nav > .open > a:focus {
|
3992 |
-
color: #555;
|
3993 |
-
background-color: #e7e7e7;
|
3994 |
-
}
|
3995 |
-
@media (max-width: 767px) {
|
3996 |
-
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
|
3997 |
-
color: #777;
|
3998 |
-
}
|
3999 |
-
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
|
4000 |
-
.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
|
4001 |
-
color: #333;
|
4002 |
-
background-color: transparent;
|
4003 |
-
}
|
4004 |
-
.navbar-default .navbar-nav .open .dropdown-menu > .active > a,
|
4005 |
-
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
|
4006 |
-
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
|
4007 |
-
color: #555;
|
4008 |
-
background-color: #e7e7e7;
|
4009 |
-
}
|
4010 |
-
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
|
4011 |
-
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
|
4012 |
-
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
|
4013 |
-
color: #ccc;
|
4014 |
-
background-color: transparent;
|
4015 |
-
}
|
4016 |
-
}
|
4017 |
-
.navbar-default .navbar-link {
|
4018 |
-
color: #777;
|
4019 |
-
}
|
4020 |
-
.navbar-default .navbar-link:hover {
|
4021 |
-
color: #333;
|
4022 |
-
}
|
4023 |
-
.navbar-inverse {
|
4024 |
-
background-color: #222;
|
4025 |
-
border-color: #080808;
|
4026 |
-
}
|
4027 |
-
.navbar-inverse .navbar-brand {
|
4028 |
-
color: #999;
|
4029 |
-
}
|
4030 |
-
.navbar-inverse .navbar-brand:hover,
|
4031 |
-
.navbar-inverse .navbar-brand:focus {
|
4032 |
-
color: #fff;
|
4033 |
-
background-color: transparent;
|
4034 |
-
}
|
4035 |
-
.navbar-inverse .navbar-text {
|
4036 |
-
color: #999;
|
4037 |
-
}
|
4038 |
-
.navbar-inverse .navbar-nav > li > a {
|
4039 |
-
color: #999;
|
4040 |
-
}
|
4041 |
-
.navbar-inverse .navbar-nav > li > a:hover,
|
4042 |
-
.navbar-inverse .navbar-nav > li > a:focus {
|
4043 |
-
color: #fff;
|
4044 |
-
background-color: transparent;
|
4045 |
-
}
|
4046 |
-
.navbar-inverse .navbar-nav > .active > a,
|
4047 |
-
.navbar-inverse .navbar-nav > .active > a:hover,
|
4048 |
-
.navbar-inverse .navbar-nav > .active > a:focus {
|
4049 |
-
color: #fff;
|
4050 |
-
background-color: #080808;
|
4051 |
-
}
|
4052 |
-
.navbar-inverse .navbar-nav > .disabled > a,
|
4053 |
-
.navbar-inverse .navbar-nav > .disabled > a:hover,
|
4054 |
-
.navbar-inverse .navbar-nav > .disabled > a:focus {
|
4055 |
-
color: #444;
|
4056 |
-
background-color: transparent;
|
4057 |
-
}
|
4058 |
-
.navbar-inverse .navbar-toggle {
|
4059 |
-
border-color: #333;
|
4060 |
-
}
|
4061 |
-
.navbar-inverse .navbar-toggle:hover,
|
4062 |
-
.navbar-inverse .navbar-toggle:focus {
|
4063 |
-
background-color: #333;
|
4064 |
-
}
|
4065 |
-
.navbar-inverse .navbar-toggle .icon-bar {
|
4066 |
-
background-color: #fff;
|
4067 |
-
}
|
4068 |
-
.navbar-inverse .navbar-collapse,
|
4069 |
-
.navbar-inverse .navbar-form {
|
4070 |
-
border-color: #101010;
|
4071 |
-
}
|
4072 |
-
.navbar-inverse .navbar-nav > .open > a,
|
4073 |
-
.navbar-inverse .navbar-nav > .open > a:hover,
|
4074 |
-
.navbar-inverse .navbar-nav > .open > a:focus {
|
4075 |
-
color: #fff;
|
4076 |
-
background-color: #080808;
|
4077 |
-
}
|
4078 |
-
@media (max-width: 767px) {
|
4079 |
-
.navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
|
4080 |
-
border-color: #080808;
|
4081 |
-
}
|
4082 |
-
.navbar-inverse .navbar-nav .open .dropdown-menu .divider {
|
4083 |
-
background-color: #080808;
|
4084 |
-
}
|
4085 |
-
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
|
4086 |
-
color: #999;
|
4087 |
-
}
|
4088 |
-
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
|
4089 |
-
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
|
4090 |
-
color: #fff;
|
4091 |
-
background-color: transparent;
|
4092 |
-
}
|
4093 |
-
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
|
4094 |
-
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
|
4095 |
-
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
|
4096 |
-
color: #fff;
|
4097 |
-
background-color: #080808;
|
4098 |
-
}
|
4099 |
-
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
|
4100 |
-
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
|
4101 |
-
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
|
4102 |
-
color: #444;
|
4103 |
-
background-color: transparent;
|
4104 |
-
}
|
4105 |
-
}
|
4106 |
-
.navbar-inverse .navbar-link {
|
4107 |
-
color: #999;
|
4108 |
-
}
|
4109 |
-
.navbar-inverse .navbar-link:hover {
|
4110 |
-
color: #fff;
|
4111 |
-
}
|
4112 |
-
.breadcrumb {
|
4113 |
-
padding: 8px 15px;
|
4114 |
-
margin-bottom: 20px;
|
4115 |
-
list-style: none;
|
4116 |
-
background-color: #f5f5f5;
|
4117 |
-
border-radius: 4px;
|
4118 |
-
}
|
4119 |
-
.breadcrumb > li {
|
4120 |
-
display: inline-block;
|
4121 |
-
}
|
4122 |
-
.breadcrumb > li + li:before {
|
4123 |
-
padding: 0 5px;
|
4124 |
-
color: #ccc;
|
4125 |
-
content: "/\00a0";
|
4126 |
-
}
|
4127 |
-
.breadcrumb > .active {
|
4128 |
-
color: #999;
|
4129 |
-
}
|
4130 |
-
.pagination {
|
4131 |
-
display: inline-block;
|
4132 |
-
padding-left: 0;
|
4133 |
-
margin: 20px 0;
|
4134 |
-
border-radius: 4px;
|
4135 |
-
}
|
4136 |
-
.pagination > li {
|
4137 |
-
display: inline;
|
4138 |
-
}
|
4139 |
-
.pagination > li > a,
|
4140 |
-
.pagination > li > span {
|
4141 |
-
position: relative;
|
4142 |
-
float: left;
|
4143 |
-
padding: 6px 12px;
|
4144 |
-
margin-left: -1px;
|
4145 |
-
line-height: 1.42857143;
|
4146 |
-
color: #428bca;
|
4147 |
-
text-decoration: none;
|
4148 |
-
background-color: #fff;
|
4149 |
-
border: 1px solid #ddd;
|
4150 |
-
}
|
4151 |
-
.pagination > li:first-child > a,
|
4152 |
-
.pagination > li:first-child > span {
|
4153 |
-
margin-left: 0;
|
4154 |
-
border-top-left-radius: 4px;
|
4155 |
-
border-bottom-left-radius: 4px;
|
4156 |
-
}
|
4157 |
-
.pagination > li:last-child > a,
|
4158 |
-
.pagination > li:last-child > span {
|
4159 |
-
border-top-right-radius: 4px;
|
4160 |
-
border-bottom-right-radius: 4px;
|
4161 |
-
}
|
4162 |
-
.pagination > li > a:hover,
|
4163 |
-
.pagination > li > span:hover,
|
4164 |
-
.pagination > li > a:focus,
|
4165 |
-
.pagination > li > span:focus {
|
4166 |
-
color: #2a6496;
|
4167 |
-
background-color: #eee;
|
4168 |
-
border-color: #ddd;
|
4169 |
-
}
|
4170 |
-
.pagination > .active > a,
|
4171 |
-
.pagination > .active > span,
|
4172 |
-
.pagination > .active > a:hover,
|
4173 |
-
.pagination > .active > span:hover,
|
4174 |
-
.pagination > .active > a:focus,
|
4175 |
-
.pagination > .active > span:focus {
|
4176 |
-
z-index: 2;
|
4177 |
-
color: #fff;
|
4178 |
-
cursor: default;
|
4179 |
-
background-color: #428bca;
|
4180 |
-
border-color: #428bca;
|
4181 |
-
}
|
4182 |
-
.pagination > .disabled > span,
|
4183 |
-
.pagination > .disabled > span:hover,
|
4184 |
-
.pagination > .disabled > span:focus,
|
4185 |
-
.pagination > .disabled > a,
|
4186 |
-
.pagination > .disabled > a:hover,
|
4187 |
-
.pagination > .disabled > a:focus {
|
4188 |
-
color: #999;
|
4189 |
-
cursor: not-allowed;
|
4190 |
-
background-color: #fff;
|
4191 |
-
border-color: #ddd;
|
4192 |
-
}
|
4193 |
-
.pagination-lg > li > a,
|
4194 |
-
.pagination-lg > li > span {
|
4195 |
-
padding: 10px 16px;
|
4196 |
-
font-size: 18px;
|
4197 |
-
}
|
4198 |
-
.pagination-lg > li:first-child > a,
|
4199 |
-
.pagination-lg > li:first-child > span {
|
4200 |
-
border-top-left-radius: 6px;
|
4201 |
-
border-bottom-left-radius: 6px;
|
4202 |
-
}
|
4203 |
-
.pagination-lg > li:last-child > a,
|
4204 |
-
.pagination-lg > li:last-child > span {
|
4205 |
-
border-top-right-radius: 6px;
|
4206 |
-
border-bottom-right-radius: 6px;
|
4207 |
-
}
|
4208 |
-
.pagination-sm > li > a,
|
4209 |
-
.pagination-sm > li > span {
|
4210 |
-
padding: 5px 10px;
|
4211 |
-
font-size: 12px;
|
4212 |
-
}
|
4213 |
-
.pagination-sm > li:first-child > a,
|
4214 |
-
.pagination-sm > li:first-child > span {
|
4215 |
-
border-top-left-radius: 3px;
|
4216 |
-
border-bottom-left-radius: 3px;
|
4217 |
-
}
|
4218 |
-
.pagination-sm > li:last-child > a,
|
4219 |
-
.pagination-sm > li:last-child > span {
|
4220 |
-
border-top-right-radius: 3px;
|
4221 |
-
border-bottom-right-radius: 3px;
|
4222 |
-
}
|
4223 |
-
.pager {
|
4224 |
-
padding-left: 0;
|
4225 |
-
margin: 20px 0;
|
4226 |
-
text-align: center;
|
4227 |
-
list-style: none;
|
4228 |
-
}
|
4229 |
-
.pager li {
|
4230 |
-
display: inline;
|
4231 |
-
}
|
4232 |
-
.pager li > a,
|
4233 |
-
.pager li > span {
|
4234 |
-
display: inline-block;
|
4235 |
-
padding: 5px 14px;
|
4236 |
-
background-color: #fff;
|
4237 |
-
border: 1px solid #ddd;
|
4238 |
-
border-radius: 15px;
|
4239 |
-
}
|
4240 |
-
.pager li > a:hover,
|
4241 |
-
.pager li > a:focus {
|
4242 |
-
text-decoration: none;
|
4243 |
-
background-color: #eee;
|
4244 |
-
}
|
4245 |
-
.pager .next > a,
|
4246 |
-
.pager .next > span {
|
4247 |
-
float: right;
|
4248 |
-
}
|
4249 |
-
.pager .previous > a,
|
4250 |
-
.pager .previous > span {
|
4251 |
-
float: left;
|
4252 |
-
}
|
4253 |
-
.pager .disabled > a,
|
4254 |
-
.pager .disabled > a:hover,
|
4255 |
-
.pager .disabled > a:focus,
|
4256 |
-
.pager .disabled > span {
|
4257 |
-
color: #999;
|
4258 |
-
cursor: not-allowed;
|
4259 |
-
background-color: #fff;
|
4260 |
-
}
|
4261 |
-
.label {
|
4262 |
-
display: inline;
|
4263 |
-
padding: .2em .6em .3em;
|
4264 |
-
font-size: 75%;
|
4265 |
-
font-weight: bold;
|
4266 |
-
line-height: 1;
|
4267 |
-
color: #fff;
|
4268 |
-
text-align: center;
|
4269 |
-
white-space: nowrap;
|
4270 |
-
vertical-align: baseline;
|
4271 |
-
border-radius: .25em;
|
4272 |
-
}
|
4273 |
-
.label[href]:hover,
|
4274 |
-
.label[href]:focus {
|
4275 |
-
color: #fff;
|
4276 |
-
text-decoration: none;
|
4277 |
-
cursor: pointer;
|
4278 |
-
}
|
4279 |
-
.label:empty {
|
4280 |
-
display: none;
|
4281 |
-
}
|
4282 |
-
.btn .label {
|
4283 |
-
position: relative;
|
4284 |
-
top: -1px;
|
4285 |
-
}
|
4286 |
-
.label-default {
|
4287 |
-
background-color: #999;
|
4288 |
-
}
|
4289 |
-
.label-default[href]:hover,
|
4290 |
-
.label-default[href]:focus {
|
4291 |
-
background-color: #808080;
|
4292 |
-
}
|
4293 |
-
.label-primary {
|
4294 |
-
background-color: #428bca;
|
4295 |
-
}
|
4296 |
-
.label-primary[href]:hover,
|
4297 |
-
.label-primary[href]:focus {
|
4298 |
-
background-color: #3071a9;
|
4299 |
-
}
|
4300 |
-
.label-success {
|
4301 |
-
background-color: #5cb85c;
|
4302 |
-
}
|
4303 |
-
.label-success[href]:hover,
|
4304 |
-
.label-success[href]:focus {
|
4305 |
-
background-color: #449d44;
|
4306 |
-
}
|
4307 |
-
.label-info {
|
4308 |
-
background-color: #5bc0de;
|
4309 |
-
}
|
4310 |
-
.label-info[href]:hover,
|
4311 |
-
.label-info[href]:focus {
|
4312 |
-
background-color: #31b0d5;
|
4313 |
-
}
|
4314 |
-
.label-warning {
|
4315 |
-
background-color: #f0ad4e;
|
4316 |
-
}
|
4317 |
-
.label-warning[href]:hover,
|
4318 |
-
.label-warning[href]:focus {
|
4319 |
-
background-color: #ec971f;
|
4320 |
-
}
|
4321 |
-
.label-danger {
|
4322 |
-
background-color: #d9534f;
|
4323 |
-
}
|
4324 |
-
.label-danger[href]:hover,
|
4325 |
-
.label-danger[href]:focus {
|
4326 |
-
background-color: #c9302c;
|
4327 |
-
}
|
4328 |
-
.badge {
|
4329 |
-
display: inline-block;
|
4330 |
-
min-width: 10px;
|
4331 |
-
padding: 3px 7px;
|
4332 |
-
font-size: 12px;
|
4333 |
-
font-weight: bold;
|
4334 |
-
line-height: 1;
|
4335 |
-
color: #fff;
|
4336 |
-
text-align: center;
|
4337 |
-
white-space: nowrap;
|
4338 |
-
vertical-align: baseline;
|
4339 |
-
background-color: #999;
|
4340 |
-
border-radius: 10px;
|
4341 |
-
}
|
4342 |
-
.badge:empty {
|
4343 |
-
display: none;
|
4344 |
-
}
|
4345 |
-
.btn .badge {
|
4346 |
-
position: relative;
|
4347 |
-
top: -1px;
|
4348 |
-
}
|
4349 |
-
.btn-xs .badge {
|
4350 |
-
top: 0;
|
4351 |
-
padding: 1px 5px;
|
4352 |
-
}
|
4353 |
-
a.badge:hover,
|
4354 |
-
a.badge:focus {
|
4355 |
-
color: #fff;
|
4356 |
-
text-decoration: none;
|
4357 |
-
cursor: pointer;
|
4358 |
-
}
|
4359 |
-
a.list-group-item.active > .badge,
|
4360 |
-
.nav-pills > .active > a > .badge {
|
4361 |
-
color: #428bca;
|
4362 |
-
background-color: #fff;
|
4363 |
-
}
|
4364 |
-
.nav-pills > li > a > .badge {
|
4365 |
-
margin-left: 3px;
|
4366 |
-
}
|
4367 |
-
.jumbotron {
|
4368 |
-
padding: 30px;
|
4369 |
-
margin-bottom: 30px;
|
4370 |
-
color: inherit;
|
4371 |
-
background-color: #eee;
|
4372 |
-
}
|
4373 |
-
.jumbotron h1,
|
4374 |
-
.jumbotron .h1 {
|
4375 |
-
color: inherit;
|
4376 |
-
}
|
4377 |
-
.jumbotron p {
|
4378 |
-
margin-bottom: 15px;
|
4379 |
-
font-size: 21px;
|
4380 |
-
font-weight: 200;
|
4381 |
-
}
|
4382 |
-
.container .jumbotron {
|
4383 |
-
border-radius: 6px;
|
4384 |
-
}
|
4385 |
-
.jumbotron .container {
|
4386 |
-
max-width: 100%;
|
4387 |
-
}
|
4388 |
-
@media screen and (min-width: 768px) {
|
4389 |
-
.jumbotron {
|
4390 |
-
padding-top: 48px;
|
4391 |
-
padding-bottom: 48px;
|
4392 |
-
}
|
4393 |
-
.container .jumbotron {
|
4394 |
-
padding-right: 60px;
|
4395 |
-
padding-left: 60px;
|
4396 |
-
}
|
4397 |
-
.jumbotron h1,
|
4398 |
-
.jumbotron .h1 {
|
4399 |
-
font-size: 63px;
|
4400 |
-
}
|
4401 |
-
}
|
4402 |
-
.thumbnail {
|
4403 |
-
display: block;
|
4404 |
-
padding: 4px;
|
4405 |
-
margin-bottom: 20px;
|
4406 |
-
line-height: 1.42857143;
|
4407 |
-
background-color: #fff;
|
4408 |
-
border: 1px solid #ddd;
|
4409 |
-
border-radius: 4px;
|
4410 |
-
-webkit-transition: all .2s ease-in-out;
|
4411 |
-
transition: all .2s ease-in-out;
|
4412 |
-
}
|
4413 |
-
.thumbnail > img,
|
4414 |
-
.thumbnail a > img {
|
4415 |
-
margin-right: auto;
|
4416 |
-
margin-left: auto;
|
4417 |
-
}
|
4418 |
-
a.thumbnail:hover,
|
4419 |
-
a.thumbnail:focus,
|
4420 |
-
a.thumbnail.active {
|
4421 |
-
border-color: #428bca;
|
4422 |
-
}
|
4423 |
-
.thumbnail .caption {
|
4424 |
-
padding: 9px;
|
4425 |
-
color: #333;
|
4426 |
-
}
|
4427 |
-
.alert {
|
4428 |
-
padding: 15px;
|
4429 |
-
margin-bottom: 20px;
|
4430 |
-
border: 1px solid transparent;
|
4431 |
-
border-radius: 4px;
|
4432 |
-
}
|
4433 |
-
.alert h4 {
|
4434 |
-
margin-top: 0;
|
4435 |
-
color: inherit;
|
4436 |
-
}
|
4437 |
-
.alert .alert-link {
|
4438 |
-
font-weight: bold;
|
4439 |
-
}
|
4440 |
-
.alert > p,
|
4441 |
-
.alert > ul {
|
4442 |
-
margin-bottom: 0;
|
4443 |
-
}
|
4444 |
-
.alert > p + p {
|
4445 |
-
margin-top: 5px;
|
4446 |
-
}
|
4447 |
-
.alert-dismissable {
|
4448 |
-
padding-right: 35px;
|
4449 |
-
}
|
4450 |
-
.alert-dismissable .close {
|
4451 |
-
position: relative;
|
4452 |
-
top: -2px;
|
4453 |
-
right: -21px;
|
4454 |
-
color: inherit;
|
4455 |
-
}
|
4456 |
-
.alert-success {
|
4457 |
-
color: #3c763d;
|
4458 |
-
background-color: #dff0d8;
|
4459 |
-
border-color: #d6e9c6;
|
4460 |
-
}
|
4461 |
-
.alert-success hr {
|
4462 |
-
border-top-color: #c9e2b3;
|
4463 |
-
}
|
4464 |
-
.alert-success .alert-link {
|
4465 |
-
color: #2b542c;
|
4466 |
-
}
|
4467 |
-
.alert-info {
|
4468 |
-
color: #31708f;
|
4469 |
-
background-color: #d9edf7;
|
4470 |
-
border-color: #bce8f1;
|
4471 |
-
}
|
4472 |
-
.alert-info hr {
|
4473 |
-
border-top-color: #a6e1ec;
|
4474 |
-
}
|
4475 |
-
.alert-info .alert-link {
|
4476 |
-
color: #245269;
|
4477 |
-
}
|
4478 |
-
.alert-warning {
|
4479 |
-
color: #8a6d3b;
|
4480 |
-
background-color: #fcf8e3;
|
4481 |
-
border-color: #faebcc;
|
4482 |
-
}
|
4483 |
-
.alert-warning hr {
|
4484 |
-
border-top-color: #f7e1b5;
|
4485 |
-
}
|
4486 |
-
.alert-warning .alert-link {
|
4487 |
-
color: #66512c;
|
4488 |
-
}
|
4489 |
-
.alert-danger {
|
4490 |
-
color: #a94442;
|
4491 |
-
background-color: #f2dede;
|
4492 |
-
border-color: #ebccd1;
|
4493 |
-
}
|
4494 |
-
.alert-danger hr {
|
4495 |
-
border-top-color: #e4b9c0;
|
4496 |
-
}
|
4497 |
-
.alert-danger .alert-link {
|
4498 |
-
color: #843534;
|
4499 |
-
}
|
4500 |
-
@-webkit-keyframes progress-bar-stripes {
|
4501 |
-
from {
|
4502 |
-
background-position: 40px 0;
|
4503 |
-
}
|
4504 |
-
to {
|
4505 |
-
background-position: 0 0;
|
4506 |
-
}
|
4507 |
-
}
|
4508 |
-
@keyframes progress-bar-stripes {
|
4509 |
-
from {
|
4510 |
-
background-position: 40px 0;
|
4511 |
-
}
|
4512 |
-
to {
|
4513 |
-
background-position: 0 0;
|
4514 |
-
}
|
4515 |
-
}
|
4516 |
-
.progress {
|
4517 |
-
height: 20px;
|
4518 |
-
margin-bottom: 20px;
|
4519 |
-
overflow: hidden;
|
4520 |
-
background-color: #f5f5f5;
|
4521 |
-
border-radius: 4px;
|
4522 |
-
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
|
4523 |
-
box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
|
4524 |
-
}
|
4525 |
-
.progress-bar {
|
4526 |
-
float: left;
|
4527 |
-
width: 0;
|
4528 |
-
height: 100%;
|
4529 |
-
font-size: 12px;
|
4530 |
-
line-height: 20px;
|
4531 |
-
color: #fff;
|
4532 |
-
text-align: center;
|
4533 |
-
background-color: #428bca;
|
4534 |
-
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
|
4535 |
-
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
|
4536 |
-
-webkit-transition: width .6s ease;
|
4537 |
-
transition: width .6s ease;
|
4538 |
-
}
|
4539 |
-
.progress-striped .progress-bar {
|
4540 |
-
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
4541 |
-
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);
|
4542 |
-
background-size: 40px 40px;
|
4543 |
-
}
|
4544 |
-
.progress.active .progress-bar {
|
4545 |
-
-webkit-animation: progress-bar-stripes 2s linear infinite;
|
4546 |
-
animation: progress-bar-stripes 2s linear infinite;
|
4547 |
-
}
|
4548 |
-
.progress-bar-success {
|
4549 |
-
background-color: #5cb85c;
|
4550 |
-
}
|
4551 |
-
.progress-striped .progress-bar-success {
|
4552 |
-
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
4553 |
-
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);
|
4554 |
-
}
|
4555 |
-
.progress-bar-info {
|
4556 |
-
background-color: #5bc0de;
|
4557 |
-
}
|
4558 |
-
.progress-striped .progress-bar-info {
|
4559 |
-
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
4560 |
-
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);
|
4561 |
-
}
|
4562 |
-
.progress-bar-warning {
|
4563 |
-
background-color: #f0ad4e;
|
4564 |
-
}
|
4565 |
-
.progress-striped .progress-bar-warning {
|
4566 |
-
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
4567 |
-
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);
|
4568 |
-
}
|
4569 |
-
.progress-bar-danger {
|
4570 |
-
background-color: #d9534f;
|
4571 |
-
}
|
4572 |
-
.progress-striped .progress-bar-danger {
|
4573 |
-
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
4574 |
-
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);
|
4575 |
-
}
|
4576 |
-
.media,
|
4577 |
-
.media-body {
|
4578 |
-
overflow: hidden;
|
4579 |
-
zoom: 1;
|
4580 |
-
}
|
4581 |
-
.media,
|
4582 |
-
.media .media {
|
4583 |
-
margin-top: 15px;
|
4584 |
-
}
|
4585 |
-
.media:first-child {
|
4586 |
-
margin-top: 0;
|
4587 |
-
}
|
4588 |
-
.media-object {
|
4589 |
-
display: block;
|
4590 |
-
}
|
4591 |
-
.media-heading {
|
4592 |
-
margin: 0 0 5px;
|
4593 |
-
}
|
4594 |
-
.media > .pull-left {
|
4595 |
-
margin-right: 10px;
|
4596 |
-
}
|
4597 |
-
.media > .pull-right {
|
4598 |
-
margin-left: 10px;
|
4599 |
-
}
|
4600 |
-
.media-list {
|
4601 |
-
padding-left: 0;
|
4602 |
-
list-style: none;
|
4603 |
-
}
|
4604 |
-
.list-group {
|
4605 |
-
padding-left: 0;
|
4606 |
-
margin-bottom: 20px;
|
4607 |
-
}
|
4608 |
-
.list-group-item {
|
4609 |
-
position: relative;
|
4610 |
-
display: block;
|
4611 |
-
padding: 10px 15px;
|
4612 |
-
margin-bottom: -1px;
|
4613 |
-
background-color: #fff;
|
4614 |
-
border: 1px solid #ddd;
|
4615 |
-
}
|
4616 |
-
.list-group-item:first-child {
|
4617 |
-
border-top-left-radius: 4px;
|
4618 |
-
border-top-right-radius: 4px;
|
4619 |
-
}
|
4620 |
-
.list-group-item:last-child {
|
4621 |
-
margin-bottom: 0;
|
4622 |
-
border-bottom-right-radius: 4px;
|
4623 |
-
border-bottom-left-radius: 4px;
|
4624 |
-
}
|
4625 |
-
.list-group-item > .badge {
|
4626 |
-
float: right;
|
4627 |
-
}
|
4628 |
-
.list-group-item > .badge + .badge {
|
4629 |
-
margin-right: 5px;
|
4630 |
-
}
|
4631 |
-
a.list-group-item {
|
4632 |
-
color: #555;
|
4633 |
-
}
|
4634 |
-
a.list-group-item .list-group-item-heading {
|
4635 |
-
color: #333;
|
4636 |
-
}
|
4637 |
-
a.list-group-item:hover,
|
4638 |
-
a.list-group-item:focus {
|
4639 |
-
text-decoration: none;
|
4640 |
-
background-color: #f5f5f5;
|
4641 |
-
}
|
4642 |
-
a.list-group-item.active,
|
4643 |
-
a.list-group-item.active:hover,
|
4644 |
-
a.list-group-item.active:focus {
|
4645 |
-
z-index: 2;
|
4646 |
-
color: #fff;
|
4647 |
-
background-color: #428bca;
|
4648 |
-
border-color: #428bca;
|
4649 |
-
}
|
4650 |
-
a.list-group-item.active .list-group-item-heading,
|
4651 |
-
a.list-group-item.active:hover .list-group-item-heading,
|
4652 |
-
a.list-group-item.active:focus .list-group-item-heading {
|
4653 |
-
color: inherit;
|
4654 |
-
}
|
4655 |
-
a.list-group-item.active .list-group-item-text,
|
4656 |
-
a.list-group-item.active:hover .list-group-item-text,
|
4657 |
-
a.list-group-item.active:focus .list-group-item-text {
|
4658 |
-
color: #e1edf7;
|
4659 |
-
}
|
4660 |
-
.list-group-item-success {
|
4661 |
-
color: #3c763d;
|
4662 |
-
background-color: #dff0d8;
|
4663 |
-
}
|
4664 |
-
a.list-group-item-success {
|
4665 |
-
color: #3c763d;
|
4666 |
-
}
|
4667 |
-
a.list-group-item-success .list-group-item-heading {
|
4668 |
-
color: inherit;
|
4669 |
-
}
|
4670 |
-
a.list-group-item-success:hover,
|
4671 |
-
a.list-group-item-success:focus {
|
4672 |
-
color: #3c763d;
|
4673 |
-
background-color: #d0e9c6;
|
4674 |
-
}
|
4675 |
-
a.list-group-item-success.active,
|
4676 |
-
a.list-group-item-success.active:hover,
|
4677 |
-
a.list-group-item-success.active:focus {
|
4678 |
-
color: #fff;
|
4679 |
-
background-color: #3c763d;
|
4680 |
-
border-color: #3c763d;
|
4681 |
-
}
|
4682 |
-
.list-group-item-info {
|
4683 |
-
color: #31708f;
|
4684 |
-
background-color: #d9edf7;
|
4685 |
-
}
|
4686 |
-
a.list-group-item-info {
|
4687 |
-
color: #31708f;
|
4688 |
-
}
|
4689 |
-
a.list-group-item-info .list-group-item-heading {
|
4690 |
-
color: inherit;
|
4691 |
-
}
|
4692 |
-
a.list-group-item-info:hover,
|
4693 |
-
a.list-group-item-info:focus {
|
4694 |
-
color: #31708f;
|
4695 |
-
background-color: #c4e3f3;
|
4696 |
-
}
|
4697 |
-
a.list-group-item-info.active,
|
4698 |
-
a.list-group-item-info.active:hover,
|
4699 |
-
a.list-group-item-info.active:focus {
|
4700 |
-
color: #fff;
|
4701 |
-
background-color: #31708f;
|
4702 |
-
border-color: #31708f;
|
4703 |
-
}
|
4704 |
-
.list-group-item-warning {
|
4705 |
-
color: #8a6d3b;
|
4706 |
-
background-color: #fcf8e3;
|
4707 |
-
}
|
4708 |
-
a.list-group-item-warning {
|
4709 |
-
color: #8a6d3b;
|
4710 |
-
}
|
4711 |
-
a.list-group-item-warning .list-group-item-heading {
|
4712 |
-
color: inherit;
|
4713 |
-
}
|
4714 |
-
a.list-group-item-warning:hover,
|
4715 |
-
a.list-group-item-warning:focus {
|
4716 |
-
color: #8a6d3b;
|
4717 |
-
background-color: #faf2cc;
|
4718 |
-
}
|
4719 |
-
a.list-group-item-warning.active,
|
4720 |
-
a.list-group-item-warning.active:hover,
|
4721 |
-
a.list-group-item-warning.active:focus {
|
4722 |
-
color: #fff;
|
4723 |
-
background-color: #8a6d3b;
|
4724 |
-
border-color: #8a6d3b;
|
4725 |
-
}
|
4726 |
-
.list-group-item-danger {
|
4727 |
-
color: #a94442;
|
4728 |
-
background-color: #f2dede;
|
4729 |
-
}
|
4730 |
-
a.list-group-item-danger {
|
4731 |
-
color: #a94442;
|
4732 |
-
}
|
4733 |
-
a.list-group-item-danger .list-group-item-heading {
|
4734 |
-
color: inherit;
|
4735 |
-
}
|
4736 |
-
a.list-group-item-danger:hover,
|
4737 |
-
a.list-group-item-danger:focus {
|
4738 |
-
color: #a94442;
|
4739 |
-
background-color: #ebcccc;
|
4740 |
-
}
|
4741 |
-
a.list-group-item-danger.active,
|
4742 |
-
a.list-group-item-danger.active:hover,
|
4743 |
-
a.list-group-item-danger.active:focus {
|
4744 |
-
color: #fff;
|
4745 |
-
background-color: #a94442;
|
4746 |
-
border-color: #a94442;
|
4747 |
-
}
|
4748 |
-
.list-group-item-heading {
|
4749 |
-
margin-top: 0;
|
4750 |
-
margin-bottom: 5px;
|
4751 |
-
}
|
4752 |
-
.list-group-item-text {
|
4753 |
-
margin-bottom: 0;
|
4754 |
-
line-height: 1.3;
|
4755 |
-
}
|
4756 |
-
.panel {
|
4757 |
-
margin-bottom: 20px;
|
4758 |
-
background-color: #fff;
|
4759 |
-
border: 1px solid transparent;
|
4760 |
-
border-radius: 4px;
|
4761 |
-
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
|
4762 |
-
box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
|
4763 |
-
}
|
4764 |
-
.panel-body {
|
4765 |
-
padding: 15px;
|
4766 |
-
}
|
4767 |
-
.panel-heading {
|
4768 |
-
padding: 10px 15px;
|
4769 |
-
border-bottom: 1px solid transparent;
|
4770 |
-
border-top-left-radius: 3px;
|
4771 |
-
border-top-right-radius: 3px;
|
4772 |
-
}
|
4773 |
-
.panel-heading > .dropdown .dropdown-toggle {
|
4774 |
-
color: inherit;
|
4775 |
-
}
|
4776 |
-
.panel-title {
|
4777 |
-
margin-top: 0;
|
4778 |
-
margin-bottom: 0;
|
4779 |
-
font-size: 16px;
|
4780 |
-
color: inherit;
|
4781 |
-
}
|
4782 |
-
.panel-title > a {
|
4783 |
-
color: inherit;
|
4784 |
-
}
|
4785 |
-
.panel-footer {
|
4786 |
-
padding: 10px 15px;
|
4787 |
-
background-color: #f5f5f5;
|
4788 |
-
border-top: 1px solid #ddd;
|
4789 |
-
border-bottom-right-radius: 3px;
|
4790 |
-
border-bottom-left-radius: 3px;
|
4791 |
-
}
|
4792 |
-
.panel > .list-group {
|
4793 |
-
margin-bottom: 0;
|
4794 |
-
}
|
4795 |
-
.panel > .list-group .list-group-item {
|
4796 |
-
border-width: 1px 0;
|
4797 |
-
border-radius: 0;
|
4798 |
-
}
|
4799 |
-
.panel > .list-group:first-child .list-group-item:first-child {
|
4800 |
-
border-top: 0;
|
4801 |
-
border-top-left-radius: 3px;
|
4802 |
-
border-top-right-radius: 3px;
|
4803 |
-
}
|
4804 |
-
.panel > .list-group:last-child .list-group-item:last-child {
|
4805 |
-
border-bottom: 0;
|
4806 |
-
border-bottom-right-radius: 3px;
|
4807 |
-
border-bottom-left-radius: 3px;
|
4808 |
-
}
|
4809 |
-
.panel-heading + .list-group .list-group-item:first-child {
|
4810 |
-
border-top-width: 0;
|
4811 |
-
}
|
4812 |
-
.panel > .table,
|
4813 |
-
.panel > .table-responsive > .table {
|
4814 |
-
margin-bottom: 0;
|
4815 |
-
}
|
4816 |
-
.panel > .table:first-child,
|
4817 |
-
.panel > .table-responsive:first-child > .table:first-child {
|
4818 |
-
border-top-left-radius: 3px;
|
4819 |
-
border-top-right-radius: 3px;
|
4820 |
-
}
|
4821 |
-
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
|
4822 |
-
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
|
4823 |
-
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
|
4824 |
-
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
|
4825 |
-
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
|
4826 |
-
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
|
4827 |
-
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
|
4828 |
-
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
|
4829 |
-
border-top-left-radius: 3px;
|
4830 |
-
}
|
4831 |
-
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
|
4832 |
-
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
|
4833 |
-
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
|
4834 |
-
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
|
4835 |
-
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
|
4836 |
-
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
|
4837 |
-
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
|
4838 |
-
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
|
4839 |
-
border-top-right-radius: 3px;
|
4840 |
-
}
|
4841 |
-
.panel > .table:last-child,
|
4842 |
-
.panel > .table-responsive:last-child > .table:last-child {
|
4843 |
-
border-bottom-right-radius: 3px;
|
4844 |
-
border-bottom-left-radius: 3px;
|
4845 |
-
}
|
4846 |
-
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
|
4847 |
-
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
|
4848 |
-
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
|
4849 |
-
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
|
4850 |
-
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
|
4851 |
-
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
|
4852 |
-
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
|
4853 |
-
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
|
4854 |
-
border-bottom-left-radius: 3px;
|
4855 |
-
}
|
4856 |
-
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
|
4857 |
-
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
|
4858 |
-
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
|
4859 |
-
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
|
4860 |
-
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
|
4861 |
-
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
|
4862 |
-
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
|
4863 |
-
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
|
4864 |
-
border-bottom-right-radius: 3px;
|
4865 |
-
}
|
4866 |
-
.panel > .panel-body + .table,
|
4867 |
-
.panel > .panel-body + .table-responsive {
|
4868 |
-
border-top: 1px solid #ddd;
|
4869 |
-
}
|
4870 |
-
.panel > .table > tbody:first-child > tr:first-child th,
|
4871 |
-
.panel > .table > tbody:first-child > tr:first-child td {
|
4872 |
-
border-top: 0;
|
4873 |
-
}
|
4874 |
-
.panel > .table-bordered,
|
4875 |
-
.panel > .table-responsive > .table-bordered {
|
4876 |
-
border: 0;
|
4877 |
-
}
|
4878 |
-
.panel > .table-bordered > thead > tr > th:first-child,
|
4879 |
-
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
|
4880 |
-
.panel > .table-bordered > tbody > tr > th:first-child,
|
4881 |
-
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
|
4882 |
-
.panel > .table-bordered > tfoot > tr > th:first-child,
|
4883 |
-
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
|
4884 |
-
.panel > .table-bordered > thead > tr > td:first-child,
|
4885 |
-
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
|
4886 |
-
.panel > .table-bordered > tbody > tr > td:first-child,
|
4887 |
-
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
|
4888 |
-
.panel > .table-bordered > tfoot > tr > td:first-child,
|
4889 |
-
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
|
4890 |
-
border-left: 0;
|
4891 |
-
}
|
4892 |
-
.panel > .table-bordered > thead > tr > th:last-child,
|
4893 |
-
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
|
4894 |
-
.panel > .table-bordered > tbody > tr > th:last-child,
|
4895 |
-
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
|
4896 |
-
.panel > .table-bordered > tfoot > tr > th:last-child,
|
4897 |
-
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
|
4898 |
-
.panel > .table-bordered > thead > tr > td:last-child,
|
4899 |
-
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
|
4900 |
-
.panel > .table-bordered > tbody > tr > td:last-child,
|
4901 |
-
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
|
4902 |
-
.panel > .table-bordered > tfoot > tr > td:last-child,
|
4903 |
-
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
|
4904 |
-
border-right: 0;
|
4905 |
-
}
|
4906 |
-
.panel > .table-bordered > thead > tr:first-child > td,
|
4907 |
-
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
|
4908 |
-
.panel > .table-bordered > tbody > tr:first-child > td,
|
4909 |
-
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
|
4910 |
-
.panel > .table-bordered > thead > tr:first-child > th,
|
4911 |
-
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
|
4912 |
-
.panel > .table-bordered > tbody > tr:first-child > th,
|
4913 |
-
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
|
4914 |
-
border-bottom: 0;
|
4915 |
-
}
|
4916 |
-
.panel > .table-bordered > tbody > tr:last-child > td,
|
4917 |
-
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
|
4918 |
-
.panel > .table-bordered > tfoot > tr:last-child > td,
|
4919 |
-
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
|
4920 |
-
.panel > .table-bordered > tbody > tr:last-child > th,
|
4921 |
-
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
|
4922 |
-
.panel > .table-bordered > tfoot > tr:last-child > th,
|
4923 |
-
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
|
4924 |
-
border-bottom: 0;
|
4925 |
-
}
|
4926 |
-
.panel > .table-responsive {
|
4927 |
-
margin-bottom: 0;
|
4928 |
-
border: 0;
|
4929 |
-
}
|
4930 |
-
.panel-group {
|
4931 |
-
margin-bottom: 20px;
|
4932 |
-
}
|
4933 |
-
.panel-group .panel {
|
4934 |
-
margin-bottom: 0;
|
4935 |
-
overflow: hidden;
|
4936 |
-
border-radius: 4px;
|
4937 |
-
}
|
4938 |
-
.panel-group .panel + .panel {
|
4939 |
-
margin-top: 5px;
|
4940 |
-
}
|
4941 |
-
.panel-group .panel-heading {
|
4942 |
-
border-bottom: 0;
|
4943 |
-
}
|
4944 |
-
.panel-group .panel-heading + .panel-collapse .panel-body {
|
4945 |
-
border-top: 1px solid #ddd;
|
4946 |
-
}
|
4947 |
-
.panel-group .panel-footer {
|
4948 |
-
border-top: 0;
|
4949 |
-
}
|
4950 |
-
.panel-group .panel-footer + .panel-collapse .panel-body {
|
4951 |
-
border-bottom: 1px solid #ddd;
|
4952 |
-
}
|
4953 |
-
.panel-default {
|
4954 |
-
border-color: #ddd;
|
4955 |
-
}
|
4956 |
-
.panel-default > .panel-heading {
|
4957 |
-
color: #333;
|
4958 |
-
background-color: #f5f5f5;
|
4959 |
-
border-color: #ddd;
|
4960 |
-
}
|
4961 |
-
.panel-default > .panel-heading + .panel-collapse .panel-body {
|
4962 |
-
border-top-color: #ddd;
|
4963 |
-
}
|
4964 |
-
.panel-default > .panel-footer + .panel-collapse .panel-body {
|
4965 |
-
border-bottom-color: #ddd;
|
4966 |
-
}
|
4967 |
-
.panel-primary {
|
4968 |
-
border-color: #428bca;
|
4969 |
-
}
|
4970 |
-
.panel-primary > .panel-heading {
|
4971 |
-
color: #fff;
|
4972 |
-
background-color: #428bca;
|
4973 |
-
border-color: #428bca;
|
4974 |
-
}
|
4975 |
-
.panel-primary > .panel-heading + .panel-collapse .panel-body {
|
4976 |
-
border-top-color: #428bca;
|
4977 |
-
}
|
4978 |
-
.panel-primary > .panel-footer + .panel-collapse .panel-body {
|
4979 |
-
border-bottom-color: #428bca;
|
4980 |
-
}
|
4981 |
-
.panel-success {
|
4982 |
-
border-color: #d6e9c6;
|
4983 |
-
}
|
4984 |
-
.panel-success > .panel-heading {
|
4985 |
-
color: #3c763d;
|
4986 |
-
background-color: #dff0d8;
|
4987 |
-
border-color: #d6e9c6;
|
4988 |
-
}
|
4989 |
-
.panel-success > .panel-heading + .panel-collapse .panel-body {
|
4990 |
-
border-top-color: #d6e9c6;
|
4991 |
-
}
|
4992 |
-
.panel-success > .panel-footer + .panel-collapse .panel-body {
|
4993 |
-
border-bottom-color: #d6e9c6;
|
4994 |
-
}
|
4995 |
-
.panel-info {
|
4996 |
-
border-color: #bce8f1;
|
4997 |
-
}
|
4998 |
-
.panel-info > .panel-heading {
|
4999 |
-
color: #31708f;
|
5000 |
-
background-color: #d9edf7;
|
5001 |
-
border-color: #bce8f1;
|
5002 |
-
}
|
5003 |
-
.panel-info > .panel-heading + .panel-collapse .panel-body {
|
5004 |
-
border-top-color: #bce8f1;
|
5005 |
-
}
|
5006 |
-
.panel-info > .panel-footer + .panel-collapse .panel-body {
|
5007 |
-
border-bottom-color: #bce8f1;
|
5008 |
-
}
|
5009 |
-
.panel-warning {
|
5010 |
-
border-color: #faebcc;
|
5011 |
-
}
|
5012 |
-
.panel-warning > .panel-heading {
|
5013 |
-
color: #8a6d3b;
|
5014 |
-
background-color: #fcf8e3;
|
5015 |
-
border-color: #faebcc;
|
5016 |
-
}
|
5017 |
-
.panel-warning > .panel-heading + .panel-collapse .panel-body {
|
5018 |
-
border-top-color: #faebcc;
|
5019 |
-
}
|
5020 |
-
.panel-warning > .panel-footer + .panel-collapse .panel-body {
|
5021 |
-
border-bottom-color: #faebcc;
|
5022 |
-
}
|
5023 |
-
.panel-danger {
|
5024 |
-
border-color: #ebccd1;
|
5025 |
-
}
|
5026 |
-
.panel-danger > .panel-heading {
|
5027 |
-
color: #a94442;
|
5028 |
-
background-color: #f2dede;
|
5029 |
-
border-color: #ebccd1;
|
5030 |
-
}
|
5031 |
-
.panel-danger > .panel-heading + .panel-collapse .panel-body {
|
5032 |
-
border-top-color: #ebccd1;
|
5033 |
-
}
|
5034 |
-
.panel-danger > .panel-footer + .panel-collapse .panel-body {
|
5035 |
-
border-bottom-color: #ebccd1;
|
5036 |
-
}
|
5037 |
-
.well {
|
5038 |
-
min-height: 20px;
|
5039 |
-
padding: 19px;
|
5040 |
-
margin-bottom: 20px;
|
5041 |
-
background-color: #f5f5f5;
|
5042 |
-
border: 1px solid #e3e3e3;
|
5043 |
-
border-radius: 4px;
|
5044 |
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
|
5045 |
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
|
5046 |
-
}
|
5047 |
-
.well blockquote {
|
5048 |
-
border-color: #ddd;
|
5049 |
-
border-color: rgba(0, 0, 0, .15);
|
5050 |
-
}
|
5051 |
-
.well-lg {
|
5052 |
-
padding: 24px;
|
5053 |
-
border-radius: 6px;
|
5054 |
-
}
|
5055 |
-
.well-sm {
|
5056 |
-
padding: 9px;
|
5057 |
-
border-radius: 3px;
|
5058 |
-
}
|
5059 |
-
.close {
|
5060 |
-
float: right;
|
5061 |
-
font-size: 21px;
|
5062 |
-
font-weight: bold;
|
5063 |
-
line-height: 1;
|
5064 |
-
color: #000;
|
5065 |
-
text-shadow: 0 1px 0 #fff;
|
5066 |
-
filter: alpha(opacity=20);
|
5067 |
-
opacity: .2;
|
5068 |
-
}
|
5069 |
-
.close:hover,
|
5070 |
-
.close:focus {
|
5071 |
-
color: #000;
|
5072 |
-
text-decoration: none;
|
5073 |
-
cursor: pointer;
|
5074 |
-
filter: alpha(opacity=50);
|
5075 |
-
opacity: .5;
|
5076 |
-
}
|
5077 |
-
button.close {
|
5078 |
-
-webkit-appearance: none;
|
5079 |
-
padding: 0;
|
5080 |
-
cursor: pointer;
|
5081 |
-
background: transparent;
|
5082 |
-
border: 0;
|
5083 |
-
}
|
5084 |
-
.modal-open {
|
5085 |
-
overflow: hidden;
|
5086 |
-
}
|
5087 |
-
.modal {
|
5088 |
-
position: fixed;
|
5089 |
-
top: 0;
|
5090 |
-
right: 0;
|
5091 |
-
bottom: 0;
|
5092 |
-
left: 0;
|
5093 |
-
z-index: 1050;
|
5094 |
-
display: none;
|
5095 |
-
overflow: auto;
|
5096 |
-
overflow-y: scroll;
|
5097 |
-
-webkit-overflow-scrolling: touch;
|
5098 |
-
outline: 0;
|
5099 |
-
}
|
5100 |
-
.modal.fade .modal-dialog {
|
5101 |
-
-webkit-transition: -webkit-transform .3s ease-out;
|
5102 |
-
-moz-transition: -moz-transform .3s ease-out;
|
5103 |
-
-o-transition: -o-transform .3s ease-out;
|
5104 |
-
transition: transform .3s ease-out;
|
5105 |
-
-webkit-transform: translate(0, -25%);
|
5106 |
-
-ms-transform: translate(0, -25%);
|
5107 |
-
transform: translate(0, -25%);
|
5108 |
-
}
|
5109 |
-
.modal.in .modal-dialog {
|
5110 |
-
-webkit-transform: translate(0, 0);
|
5111 |
-
-ms-transform: translate(0, 0);
|
5112 |
-
transform: translate(0, 0);
|
5113 |
-
}
|
5114 |
-
.modal-dialog {
|
5115 |
-
position: relative;
|
5116 |
-
width: auto;
|
5117 |
-
margin: 10px;
|
5118 |
-
}
|
5119 |
-
.modal-content {
|
5120 |
-
position: relative;
|
5121 |
-
background-color: #fff;
|
5122 |
-
background-clip: padding-box;
|
5123 |
-
border: 1px solid #999;
|
5124 |
-
border: 1px solid rgba(0, 0, 0, .2);
|
5125 |
-
border-radius: 6px;
|
5126 |
-
outline: none;
|
5127 |
-
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
|
5128 |
-
box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
|
5129 |
-
}
|
5130 |
-
.modal-backdrop {
|
5131 |
-
position: fixed;
|
5132 |
-
top: 0;
|
5133 |
-
right: 0;
|
5134 |
-
bottom: 0;
|
5135 |
-
left: 0;
|
5136 |
-
z-index: 1040;
|
5137 |
-
background-color: #000;
|
5138 |
-
}
|
5139 |
-
.modal-backdrop.fade {
|
5140 |
-
filter: alpha(opacity=0);
|
5141 |
-
opacity: 0;
|
5142 |
-
}
|
5143 |
-
.modal-backdrop.in {
|
5144 |
-
filter: alpha(opacity=50);
|
5145 |
-
opacity: .5;
|
5146 |
-
}
|
5147 |
-
.modal-header {
|
5148 |
-
min-height: 16.42857143px;
|
5149 |
-
padding: 15px;
|
5150 |
-
border-bottom: 1px solid #e5e5e5;
|
5151 |
-
}
|
5152 |
-
.modal-header .close {
|
5153 |
-
margin-top: -2px;
|
5154 |
-
}
|
5155 |
-
.modal-title {
|
5156 |
-
margin: 0;
|
5157 |
-
line-height: 1.42857143;
|
5158 |
-
}
|
5159 |
-
.modal-body {
|
5160 |
-
position: relative;
|
5161 |
-
padding: 20px;
|
5162 |
-
}
|
5163 |
-
.modal-footer {
|
5164 |
-
padding: 19px 20px 20px;
|
5165 |
-
margin-top: 15px;
|
5166 |
-
text-align: right;
|
5167 |
-
border-top: 1px solid #e5e5e5;
|
5168 |
-
}
|
5169 |
-
.modal-footer .btn + .btn {
|
5170 |
-
margin-bottom: 0;
|
5171 |
-
margin-left: 5px;
|
5172 |
-
}
|
5173 |
-
.modal-footer .btn-group .btn + .btn {
|
5174 |
-
margin-left: -1px;
|
5175 |
-
}
|
5176 |
-
.modal-footer .btn-block + .btn-block {
|
5177 |
-
margin-left: 0;
|
5178 |
-
}
|
5179 |
-
@media (min-width: 768px) {
|
5180 |
-
.modal-dialog {
|
5181 |
-
width: 600px;
|
5182 |
-
margin: 30px auto;
|
5183 |
-
}
|
5184 |
-
.modal-content {
|
5185 |
-
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
|
5186 |
-
box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
|
5187 |
-
}
|
5188 |
-
.modal-sm {
|
5189 |
-
width: 300px;
|
5190 |
-
}
|
5191 |
-
}
|
5192 |
-
@media (min-width: 992px) {
|
5193 |
-
.modal-lg {
|
5194 |
-
width: 900px;
|
5195 |
-
}
|
5196 |
-
}
|
5197 |
-
.tooltip {
|
5198 |
-
position: absolute;
|
5199 |
-
z-index: 1030;
|
5200 |
-
display: block;
|
5201 |
-
font-size: 12px;
|
5202 |
-
line-height: 1.4;
|
5203 |
-
visibility: visible;
|
5204 |
-
filter: alpha(opacity=0);
|
5205 |
-
opacity: 0;
|
5206 |
-
}
|
5207 |
-
.tooltip.in {
|
5208 |
-
filter: alpha(opacity=90);
|
5209 |
-
opacity: .9;
|
5210 |
-
}
|
5211 |
-
.tooltip.top {
|
5212 |
-
padding: 5px 0;
|
5213 |
-
margin-top: -3px;
|
5214 |
-
}
|
5215 |
-
.tooltip.right {
|
5216 |
-
padding: 0 5px;
|
5217 |
-
margin-left: 3px;
|
5218 |
-
}
|
5219 |
-
.tooltip.bottom {
|
5220 |
-
padding: 5px 0;
|
5221 |
-
margin-top: 3px;
|
5222 |
-
}
|
5223 |
-
.tooltip.left {
|
5224 |
-
padding: 0 5px;
|
5225 |
-
margin-left: -3px;
|
5226 |
-
}
|
5227 |
-
.tooltip-inner {
|
5228 |
-
max-width: 200px;
|
5229 |
-
padding: 3px 8px;
|
5230 |
-
color: #fff;
|
5231 |
-
text-align: center;
|
5232 |
-
text-decoration: none;
|
5233 |
-
background-color: #000;
|
5234 |
-
border-radius: 4px;
|
5235 |
-
}
|
5236 |
-
.tooltip-arrow {
|
5237 |
-
position: absolute;
|
5238 |
-
width: 0;
|
5239 |
-
height: 0;
|
5240 |
-
border-color: transparent;
|
5241 |
-
border-style: solid;
|
5242 |
-
}
|
5243 |
-
.tooltip.top .tooltip-arrow {
|
5244 |
-
bottom: 0;
|
5245 |
-
left: 50%;
|
5246 |
-
margin-left: -5px;
|
5247 |
-
border-width: 5px 5px 0;
|
5248 |
-
border-top-color: #000;
|
5249 |
-
}
|
5250 |
-
.tooltip.top-left .tooltip-arrow {
|
5251 |
-
bottom: 0;
|
5252 |
-
left: 5px;
|
5253 |
-
border-width: 5px 5px 0;
|
5254 |
-
border-top-color: #000;
|
5255 |
-
}
|
5256 |
-
.tooltip.top-right .tooltip-arrow {
|
5257 |
-
right: 5px;
|
5258 |
-
bottom: 0;
|
5259 |
-
border-width: 5px 5px 0;
|
5260 |
-
border-top-color: #000;
|
5261 |
-
}
|
5262 |
-
.tooltip.right .tooltip-arrow {
|
5263 |
-
top: 50%;
|
5264 |
-
left: 0;
|
5265 |
-
margin-top: -5px;
|
5266 |
-
border-width: 5px 5px 5px 0;
|
5267 |
-
border-right-color: #000;
|
5268 |
-
}
|
5269 |
-
.tooltip.left .tooltip-arrow {
|
5270 |
-
top: 50%;
|
5271 |
-
right: 0;
|
5272 |
-
margin-top: -5px;
|
5273 |
-
border-width: 5px 0 5px 5px;
|
5274 |
-
border-left-color: #000;
|
5275 |
-
}
|
5276 |
-
.tooltip.bottom .tooltip-arrow {
|
5277 |
-
top: 0;
|
5278 |
-
left: 50%;
|
5279 |
-
margin-left: -5px;
|
5280 |
-
border-width: 0 5px 5px;
|
5281 |
-
border-bottom-color: #000;
|
5282 |
-
}
|
5283 |
-
.tooltip.bottom-left .tooltip-arrow {
|
5284 |
-
top: 0;
|
5285 |
-
left: 5px;
|
5286 |
-
border-width: 0 5px 5px;
|
5287 |
-
border-bottom-color: #000;
|
5288 |
-
}
|
5289 |
-
.tooltip.bottom-right .tooltip-arrow {
|
5290 |
-
top: 0;
|
5291 |
-
right: 5px;
|
5292 |
-
border-width: 0 5px 5px;
|
5293 |
-
border-bottom-color: #000;
|
5294 |
-
}
|
5295 |
-
.popover {
|
5296 |
-
position: absolute;
|
5297 |
-
top: 0;
|
5298 |
-
left: 0;
|
5299 |
-
z-index: 1010;
|
5300 |
-
display: none;
|
5301 |
-
max-width: 276px;
|
5302 |
-
padding: 1px;
|
5303 |
-
text-align: left;
|
5304 |
-
white-space: normal;
|
5305 |
-
background-color: #fff;
|
5306 |
-
background-clip: padding-box;
|
5307 |
-
border: 1px solid #ccc;
|
5308 |
-
border: 1px solid rgba(0, 0, 0, .2);
|
5309 |
-
border-radius: 6px;
|
5310 |
-
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
|
5311 |
-
box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
|
5312 |
-
}
|
5313 |
-
.popover.top {
|
5314 |
-
margin-top: -10px;
|
5315 |
-
}
|
5316 |
-
.popover.right {
|
5317 |
-
margin-left: 10px;
|
5318 |
-
}
|
5319 |
-
.popover.bottom {
|
5320 |
-
margin-top: 10px;
|
5321 |
-
}
|
5322 |
-
.popover.left {
|
5323 |
-
margin-left: -10px;
|
5324 |
-
}
|
5325 |
-
.popover-title {
|
5326 |
-
padding: 8px 14px;
|
5327 |
-
margin: 0;
|
5328 |
-
font-size: 14px;
|
5329 |
-
font-weight: normal;
|
5330 |
-
line-height: 18px;
|
5331 |
-
background-color: #f7f7f7;
|
5332 |
-
border-bottom: 1px solid #ebebeb;
|
5333 |
-
border-radius: 5px 5px 0 0;
|
5334 |
-
}
|
5335 |
-
.popover-content {
|
5336 |
-
padding: 9px 14px;
|
5337 |
-
}
|
5338 |
-
.popover > .arrow,
|
5339 |
-
.popover > .arrow:after {
|
5340 |
-
position: absolute;
|
5341 |
-
display: block;
|
5342 |
-
width: 0;
|
5343 |
-
height: 0;
|
5344 |
-
border-color: transparent;
|
5345 |
-
border-style: solid;
|
5346 |
-
}
|
5347 |
-
.popover > .arrow {
|
5348 |
-
border-width: 11px;
|
5349 |
-
}
|
5350 |
-
.popover > .arrow:after {
|
5351 |
-
content: "";
|
5352 |
-
border-width: 10px;
|
5353 |
-
}
|
5354 |
-
.popover.top > .arrow {
|
5355 |
-
bottom: -11px;
|
5356 |
-
left: 50%;
|
5357 |
-
margin-left: -11px;
|
5358 |
-
border-top-color: #999;
|
5359 |
-
border-top-color: rgba(0, 0, 0, .25);
|
5360 |
-
border-bottom-width: 0;
|
5361 |
-
}
|
5362 |
-
.popover.top > .arrow:after {
|
5363 |
-
bottom: 1px;
|
5364 |
-
margin-left: -10px;
|
5365 |
-
content: " ";
|
5366 |
-
border-top-color: #fff;
|
5367 |
-
border-bottom-width: 0;
|
5368 |
-
}
|
5369 |
-
.popover.right > .arrow {
|
5370 |
-
top: 50%;
|
5371 |
-
left: -11px;
|
5372 |
-
margin-top: -11px;
|
5373 |
-
border-right-color: #999;
|
5374 |
-
border-right-color: rgba(0, 0, 0, .25);
|
5375 |
-
border-left-width: 0;
|
5376 |
-
}
|
5377 |
-
.popover.right > .arrow:after {
|
5378 |
-
bottom: -10px;
|
5379 |
-
left: 1px;
|
5380 |
-
content: " ";
|
5381 |
-
border-right-color: #fff;
|
5382 |
-
border-left-width: 0;
|
5383 |
-
}
|
5384 |
-
.popover.bottom > .arrow {
|
5385 |
-
top: -11px;
|
5386 |
-
left: 50%;
|
5387 |
-
margin-left: -11px;
|
5388 |
-
border-top-width: 0;
|
5389 |
-
border-bottom-color: #999;
|
5390 |
-
border-bottom-color: rgba(0, 0, 0, .25);
|
5391 |
-
}
|
5392 |
-
.popover.bottom > .arrow:after {
|
5393 |
-
top: 1px;
|
5394 |
-
margin-left: -10px;
|
5395 |
-
content: " ";
|
5396 |
-
border-top-width: 0;
|
5397 |
-
border-bottom-color: #fff;
|
5398 |
-
}
|
5399 |
-
.popover.left > .arrow {
|
5400 |
-
top: 50%;
|
5401 |
-
right: -11px;
|
5402 |
-
margin-top: -11px;
|
5403 |
-
border-right-width: 0;
|
5404 |
-
border-left-color: #999;
|
5405 |
-
border-left-color: rgba(0, 0, 0, .25);
|
5406 |
-
}
|
5407 |
-
.popover.left > .arrow:after {
|
5408 |
-
right: 1px;
|
5409 |
-
bottom: -10px;
|
5410 |
-
content: " ";
|
5411 |
-
border-right-width: 0;
|
5412 |
-
border-left-color: #fff;
|
5413 |
-
}
|
5414 |
-
.carousel {
|
5415 |
-
position: relative;
|
5416 |
-
}
|
5417 |
-
.carousel-inner {
|
5418 |
-
position: relative;
|
5419 |
-
width: 100%;
|
5420 |
-
overflow: hidden;
|
5421 |
-
}
|
5422 |
-
.carousel-inner > .item {
|
5423 |
-
position: relative;
|
5424 |
-
display: none;
|
5425 |
-
-webkit-transition: .6s ease-in-out left;
|
5426 |
-
transition: .6s ease-in-out left;
|
5427 |
-
}
|
5428 |
-
.carousel-inner > .item > img,
|
5429 |
-
.carousel-inner > .item > a > img {
|
5430 |
-
line-height: 1;
|
5431 |
-
}
|
5432 |
-
.carousel-inner > .active,
|
5433 |
-
.carousel-inner > .next,
|
5434 |
-
.carousel-inner > .prev {
|
5435 |
-
display: block;
|
5436 |
-
}
|
5437 |
-
.carousel-inner > .active {
|
5438 |
-
left: 0;
|
5439 |
-
}
|
5440 |
-
.carousel-inner > .next,
|
5441 |
-
.carousel-inner > .prev {
|
5442 |
-
position: absolute;
|
5443 |
-
top: 0;
|
5444 |
-
width: 100%;
|
5445 |
-
}
|
5446 |
-
.carousel-inner > .next {
|
5447 |
-
left: 100%;
|
5448 |
-
}
|
5449 |
-
.carousel-inner > .prev {
|
5450 |
-
left: -100%;
|
5451 |
-
}
|
5452 |
-
.carousel-inner > .next.left,
|
5453 |
-
.carousel-inner > .prev.right {
|
5454 |
-
left: 0;
|
5455 |
-
}
|
5456 |
-
.carousel-inner > .active.left {
|
5457 |
-
left: -100%;
|
5458 |
-
}
|
5459 |
-
.carousel-inner > .active.right {
|
5460 |
-
left: 100%;
|
5461 |
-
}
|
5462 |
-
.carousel-control {
|
5463 |
-
position: absolute;
|
5464 |
-
top: 0;
|
5465 |
-
bottom: 0;
|
5466 |
-
left: 0;
|
5467 |
-
width: 15%;
|
5468 |
-
font-size: 20px;
|
5469 |
-
color: #fff;
|
5470 |
-
text-align: center;
|
5471 |
-
text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
|
5472 |
-
filter: alpha(opacity=50);
|
5473 |
-
opacity: .5;
|
5474 |
-
}
|
5475 |
-
.carousel-control.left {
|
5476 |
-
background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, .5) 0%), color-stop(rgba(0, 0, 0, .0001) 100%));
|
5477 |
-
background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
|
5478 |
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
|
5479 |
-
background-repeat: repeat-x;
|
5480 |
-
}
|
5481 |
-
.carousel-control.right {
|
5482 |
-
right: 0;
|
5483 |
-
left: auto;
|
5484 |
-
background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, .0001) 0%), color-stop(rgba(0, 0, 0, .5) 100%));
|
5485 |
-
background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
|
5486 |
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
|
5487 |
-
background-repeat: repeat-x;
|
5488 |
-
}
|
5489 |
-
.carousel-control:hover,
|
5490 |
-
.carousel-control:focus {
|
5491 |
-
color: #fff;
|
5492 |
-
text-decoration: none;
|
5493 |
-
filter: alpha(opacity=90);
|
5494 |
-
outline: none;
|
5495 |
-
opacity: .9;
|
5496 |
-
}
|
5497 |
-
.carousel-control .icon-prev,
|
5498 |
-
.carousel-control .icon-next,
|
5499 |
-
.carousel-control .glyphicon-chevron-left,
|
5500 |
-
.carousel-control .glyphicon-chevron-right {
|
5501 |
-
position: absolute;
|
5502 |
-
top: 50%;
|
5503 |
-
z-index: 5;
|
5504 |
-
display: inline-block;
|
5505 |
-
}
|
5506 |
-
.carousel-control .icon-prev,
|
5507 |
-
.carousel-control .glyphicon-chevron-left {
|
5508 |
-
left: 50%;
|
5509 |
-
}
|
5510 |
-
.carousel-control .icon-next,
|
5511 |
-
.carousel-control .glyphicon-chevron-right {
|
5512 |
-
right: 50%;
|
5513 |
-
}
|
5514 |
-
.carousel-control .icon-prev,
|
5515 |
-
.carousel-control .icon-next {
|
5516 |
-
width: 20px;
|
5517 |
-
height: 20px;
|
5518 |
-
margin-top: -10px;
|
5519 |
-
margin-left: -10px;
|
5520 |
-
font-family: serif;
|
5521 |
-
}
|
5522 |
-
.carousel-control .icon-prev:before {
|
5523 |
-
content: '\2039';
|
5524 |
-
}
|
5525 |
-
.carousel-control .icon-next:before {
|
5526 |
-
content: '\203a';
|
5527 |
-
}
|
5528 |
-
.carousel-indicators {
|
5529 |
-
position: absolute;
|
5530 |
-
bottom: 10px;
|
5531 |
-
left: 50%;
|
5532 |
-
z-index: 15;
|
5533 |
-
width: 60%;
|
5534 |
-
padding-left: 0;
|
5535 |
-
margin-left: -30%;
|
5536 |
-
text-align: center;
|
5537 |
-
list-style: none;
|
5538 |
-
}
|
5539 |
-
.carousel-indicators li {
|
5540 |
-
display: inline-block;
|
5541 |
-
width: 10px;
|
5542 |
-
height: 10px;
|
5543 |
-
margin: 1px;
|
5544 |
-
text-indent: -999px;
|
5545 |
-
cursor: pointer;
|
5546 |
-
background-color: #000 \9;
|
5547 |
-
background-color: rgba(0, 0, 0, 0);
|
5548 |
-
border: 1px solid #fff;
|
5549 |
-
border-radius: 10px;
|
5550 |
-
}
|
5551 |
-
.carousel-indicators .active {
|
5552 |
-
width: 12px;
|
5553 |
-
height: 12px;
|
5554 |
-
margin: 0;
|
5555 |
-
background-color: #fff;
|
5556 |
-
}
|
5557 |
-
.carousel-caption {
|
5558 |
-
position: absolute;
|
5559 |
-
right: 15%;
|
5560 |
-
bottom: 20px;
|
5561 |
-
left: 15%;
|
5562 |
-
z-index: 10;
|
5563 |
-
padding-top: 20px;
|
5564 |
-
padding-bottom: 20px;
|
5565 |
-
color: #fff;
|
5566 |
-
text-align: center;
|
5567 |
-
text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
|
5568 |
-
}
|
5569 |
-
.carousel-caption .btn {
|
5570 |
-
text-shadow: none;
|
5571 |
-
}
|
5572 |
-
@media screen and (min-width: 768px) {
|
5573 |
-
.carousel-control .glyphicon-chevron-left,
|
5574 |
-
.carousel-control .glyphicon-chevron-right,
|
5575 |
-
.carousel-control .icon-prev,
|
5576 |
-
.carousel-control .icon-next {
|
5577 |
-
width: 30px;
|
5578 |
-
height: 30px;
|
5579 |
-
margin-top: -15px;
|
5580 |
-
margin-left: -15px;
|
5581 |
-
font-size: 30px;
|
5582 |
-
}
|
5583 |
-
.carousel-caption {
|
5584 |
-
right: 20%;
|
5585 |
-
left: 20%;
|
5586 |
-
padding-bottom: 30px;
|
5587 |
-
}
|
5588 |
-
.carousel-indicators {
|
5589 |
-
bottom: 20px;
|
5590 |
-
}
|
5591 |
-
}
|
5592 |
-
.clearfix:before,
|
5593 |
-
.clearfix:after,
|
5594 |
-
.container:before,
|
5595 |
-
.container:after,
|
5596 |
-
.container-fluid:before,
|
5597 |
-
.container-fluid:after,
|
5598 |
-
.row:before,
|
5599 |
-
.row:after,
|
5600 |
-
.form-horizontal .form-group:before,
|
5601 |
-
.form-horizontal .form-group:after,
|
5602 |
-
.btn-toolbar:before,
|
5603 |
-
.btn-toolbar:after,
|
5604 |
-
.btn-group-vertical > .btn-group:before,
|
5605 |
-
.btn-group-vertical > .btn-group:after,
|
5606 |
-
.nav:before,
|
5607 |
-
.nav:after,
|
5608 |
-
.navbar:before,
|
5609 |
-
.navbar:after,
|
5610 |
-
.navbar-header:before,
|
5611 |
-
.navbar-header:after,
|
5612 |
-
.navbar-collapse:before,
|
5613 |
-
.navbar-collapse:after,
|
5614 |
-
.pager:before,
|
5615 |
-
.pager:after,
|
5616 |
-
.panel-body:before,
|
5617 |
-
.panel-body:after,
|
5618 |
-
.modal-footer:before,
|
5619 |
-
.modal-footer:after {
|
5620 |
-
display: table;
|
5621 |
-
content: " ";
|
5622 |
-
}
|
5623 |
-
.clearfix:after,
|
5624 |
-
.container:after,
|
5625 |
-
.container-fluid:after,
|
5626 |
-
.row:after,
|
5627 |
-
.form-horizontal .form-group:after,
|
5628 |
-
.btn-toolbar:after,
|
5629 |
-
.btn-group-vertical > .btn-group:after,
|
5630 |
-
.nav:after,
|
5631 |
-
.navbar:after,
|
5632 |
-
.navbar-header:after,
|
5633 |
-
.navbar-collapse:after,
|
5634 |
-
.pager:after,
|
5635 |
-
.panel-body:after,
|
5636 |
-
.modal-footer:after {
|
5637 |
-
clear: both;
|
5638 |
-
}
|
5639 |
-
.center-block {
|
5640 |
-
display: block;
|
5641 |
-
margin-right: auto;
|
5642 |
-
margin-left: auto;
|
5643 |
-
}
|
5644 |
-
.pull-right {
|
5645 |
-
float: right !important;
|
5646 |
-
}
|
5647 |
-
.pull-left {
|
5648 |
-
float: left !important;
|
5649 |
-
}
|
5650 |
-
.hide {
|
5651 |
-
display: none !important;
|
5652 |
-
}
|
5653 |
-
.show {
|
5654 |
-
display: block !important;
|
5655 |
-
}
|
5656 |
-
.invisible {
|
5657 |
-
visibility: hidden;
|
5658 |
-
}
|
5659 |
-
.text-hide {
|
5660 |
-
font: 0/0 a;
|
5661 |
-
color: transparent;
|
5662 |
-
text-shadow: none;
|
5663 |
-
background-color: transparent;
|
5664 |
-
border: 0;
|
5665 |
-
}
|
5666 |
-
.hidden {
|
5667 |
-
display: none !important;
|
5668 |
-
visibility: hidden !important;
|
5669 |
-
}
|
5670 |
-
.affix {
|
5671 |
-
position: fixed;
|
5672 |
-
}
|
5673 |
-
@-ms-viewport {
|
5674 |
-
width: device-width;
|
5675 |
-
}
|
5676 |
-
.visible-xs,
|
5677 |
-
.visible-sm,
|
5678 |
-
.visible-md,
|
5679 |
-
.visible-lg {
|
5680 |
-
display: none !important;
|
5681 |
-
}
|
5682 |
-
@media (max-width: 767px) {
|
5683 |
-
.visible-xs {
|
5684 |
-
display: block !important;
|
5685 |
-
}
|
5686 |
-
table.visible-xs {
|
5687 |
-
display: table;
|
5688 |
-
}
|
5689 |
-
tr.visible-xs {
|
5690 |
-
display: table-row !important;
|
5691 |
-
}
|
5692 |
-
th.visible-xs,
|
5693 |
-
td.visible-xs {
|
5694 |
-
display: table-cell !important;
|
5695 |
-
}
|
5696 |
-
}
|
5697 |
-
@media (min-width: 768px) and (max-width: 991px) {
|
5698 |
-
.visible-sm {
|
5699 |
-
display: block !important;
|
5700 |
-
}
|
5701 |
-
table.visible-sm {
|
5702 |
-
display: table;
|
5703 |
-
}
|
5704 |
-
tr.visible-sm {
|
5705 |
-
display: table-row !important;
|
5706 |
-
}
|
5707 |
-
th.visible-sm,
|
5708 |
-
td.visible-sm {
|
5709 |
-
display: table-cell !important;
|
5710 |
-
}
|
5711 |
-
}
|
5712 |
-
@media (min-width: 992px) and (max-width: 1199px) {
|
5713 |
-
.visible-md {
|
5714 |
-
display: block !important;
|
5715 |
-
}
|
5716 |
-
table.visible-md {
|
5717 |
-
display: table;
|
5718 |
-
}
|
5719 |
-
tr.visible-md {
|
5720 |
-
display: table-row !important;
|
5721 |
-
}
|
5722 |
-
th.visible-md,
|
5723 |
-
td.visible-md {
|
5724 |
-
display: table-cell !important;
|
5725 |
-
}
|
5726 |
-
}
|
5727 |
-
@media (min-width: 1200px) {
|
5728 |
-
.visible-lg {
|
5729 |
-
display: block !important;
|
5730 |
-
}
|
5731 |
-
table.visible-lg {
|
5732 |
-
display: table;
|
5733 |
-
}
|
5734 |
-
tr.visible-lg {
|
5735 |
-
display: table-row !important;
|
5736 |
-
}
|
5737 |
-
th.visible-lg,
|
5738 |
-
td.visible-lg {
|
5739 |
-
display: table-cell !important;
|
5740 |
-
}
|
5741 |
-
}
|
5742 |
-
@media (max-width: 767px) {
|
5743 |
-
.hidden-xs {
|
5744 |
-
display: none !important;
|
5745 |
-
}
|
5746 |
-
}
|
5747 |
-
@media (min-width: 768px) and (max-width: 991px) {
|
5748 |
-
.hidden-sm {
|
5749 |
-
display: none !important;
|
5750 |
-
}
|
5751 |
-
}
|
5752 |
-
@media (min-width: 992px) and (max-width: 1199px) {
|
5753 |
-
.hidden-md {
|
5754 |
-
display: none !important;
|
5755 |
-
}
|
5756 |
-
}
|
5757 |
-
@media (min-width: 1200px) {
|
5758 |
-
.hidden-lg {
|
5759 |
-
display: none !important;
|
5760 |
-
}
|
5761 |
-
}
|
5762 |
-
.visible-print {
|
5763 |
-
display: none !important;
|
5764 |
-
}
|
5765 |
-
@media print {
|
5766 |
-
.visible-print {
|
5767 |
-
display: block !important;
|
5768 |
-
}
|
5769 |
-
table.visible-print {
|
5770 |
-
display: table;
|
5771 |
-
}
|
5772 |
-
tr.visible-print {
|
5773 |
-
display: table-row !important;
|
5774 |
-
}
|
5775 |
-
th.visible-print,
|
5776 |
-
td.visible-print {
|
5777 |
-
display: table-cell !important;
|
5778 |
-
}
|
5779 |
-
}
|
5780 |
-
@media print {
|
5781 |
-
.hidden-print {
|
5782 |
-
display: none !important;
|
5783 |
-
}
|
5784 |
-
}
|
5785 |
-
/*# sourceMappingURL=bootstrap.css.map */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bootstrap/css/bootstrap.css.map
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
{"version":3,"sources":["less/normalize.less","less/print.less","less/scaffolding.less","less/mixins.less","less/variables.less","less/thumbnails.less","less/carousel.less","less/type.less","less/code.less","less/grid.less","less/tables.less","less/forms.less","less/buttons.less","less/button-groups.less","less/component-animations.less","less/glyphicons.less","less/dropdowns.less","less/input-groups.less","less/navs.less","less/navbar.less","less/utilities.less","less/breadcrumbs.less","less/pagination.less","less/pager.less","less/labels.less","less/badges.less","less/jumbotron.less","less/alerts.less","less/progress-bars.less","less/media.less","less/list-group.less","less/panels.less","less/wells.less","less/close.less","less/modals.less","less/tooltip.less","less/popovers.less","less/responsive-utilities.less"],"names":[],"mappings":"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","sourcesContent":["/*! normalize.css v3.0.0 | MIT License | git.io/normalize */\n\n//\n// 1. Set default font family to sans-serif.\n// 2. Prevent iOS text size adjust after orientation change, without disabling\n// user zoom.\n//\n\nhtml {\n font-family: sans-serif; // 1\n -ms-text-size-adjust: 100%; // 2\n -webkit-text-size-adjust: 100%; // 2\n}\n\n//\n// Remove default margin.\n//\n\nbody {\n margin: 0;\n}\n\n// HTML5 display definitions\n// ==========================================================================\n\n//\n// Correct `block` display not defined in IE 8/9.\n//\n\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nnav,\nsection,\nsummary {\n display: block;\n}\n\n//\n// 1. Correct `inline-block` display not defined in IE 8/9.\n// 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.\n//\n\naudio,\ncanvas,\nprogress,\nvideo {\n display: inline-block; // 1\n vertical-align: baseline; // 2\n}\n\n//\n// Prevent modern browsers from displaying `audio` without controls.\n// Remove excess height in iOS 5 devices.\n//\n\naudio:not([controls]) {\n display: none;\n height: 0;\n}\n\n//\n// Address `[hidden]` styling not present in IE 8/9.\n// Hide the `template` element in IE, Safari, and Firefox < 22.\n//\n\n[hidden],\ntemplate {\n display: none;\n}\n\n// Links\n// ==========================================================================\n\n//\n// Remove the gray background color from active links in IE 10.\n//\n\na {\n background: transparent;\n}\n\n//\n// Improve readability when focused and also mouse hovered in all browsers.\n//\n\na:active,\na:hover {\n outline: 0;\n}\n\n// Text-level semantics\n// ==========================================================================\n\n//\n// Address styling not present in IE 8/9, Safari 5, and Chrome.\n//\n\nabbr[title] {\n border-bottom: 1px dotted;\n}\n\n//\n// Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.\n//\n\nb,\nstrong {\n font-weight: bold;\n}\n\n//\n// Address styling not present in Safari 5 and Chrome.\n//\n\ndfn {\n font-style: italic;\n}\n\n//\n// Address variable `h1` font-size and margin within `section` and `article`\n// contexts in Firefox 4+, Safari 5, and Chrome.\n//\n\nh1 {\n font-size: 2em;\n margin: 0.67em 0;\n}\n\n//\n// Address styling not present in IE 8/9.\n//\n\nmark {\n background: #ff0;\n color: #000;\n}\n\n//\n// Address inconsistent and variable font size in all browsers.\n//\n\nsmall {\n font-size: 80%;\n}\n\n//\n// Prevent `sub` and `sup` affecting `line-height` in all browsers.\n//\n\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\n\nsup {\n top: -0.5em;\n}\n\nsub {\n bottom: -0.25em;\n}\n\n// Embedded content\n// ==========================================================================\n\n//\n// Remove border when inside `a` element in IE 8/9.\n//\n\nimg {\n border: 0;\n}\n\n//\n// Correct overflow displayed oddly in IE 9.\n//\n\nsvg:not(:root) {\n overflow: hidden;\n}\n\n// Grouping content\n// ==========================================================================\n\n//\n// Address margin not present in IE 8/9 and Safari 5.\n//\n\nfigure {\n margin: 1em 40px;\n}\n\n//\n// Address differences between Firefox and other browsers.\n//\n\nhr {\n -moz-box-sizing: content-box;\n box-sizing: content-box;\n height: 0;\n}\n\n//\n// Contain overflow in all browsers.\n//\n\npre {\n overflow: auto;\n}\n\n//\n// Address odd `em`-unit font size rendering in all browsers.\n//\n\ncode,\nkbd,\npre,\nsamp {\n font-family: monospace, monospace;\n font-size: 1em;\n}\n\n// Forms\n// ==========================================================================\n\n//\n// Known limitation: by default, Chrome and Safari on OS X allow very limited\n// styling of `select`, unless a `border` property is set.\n//\n\n//\n// 1. Correct color not being inherited.\n// Known issue: affects color of disabled elements.\n// 2. Correct font properties not being inherited.\n// 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.\n//\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n color: inherit; // 1\n font: inherit; // 2\n margin: 0; // 3\n}\n\n//\n// Address `overflow` set to `hidden` in IE 8/9/10.\n//\n\nbutton {\n overflow: visible;\n}\n\n//\n// Address inconsistent `text-transform` inheritance for `button` and `select`.\n// All other form control elements do not inherit `text-transform` values.\n// Correct `button` style inheritance in Firefox, IE 8+, and Opera\n// Correct `select` style inheritance in Firefox.\n//\n\nbutton,\nselect {\n text-transform: none;\n}\n\n//\n// 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`\n// and `video` controls.\n// 2. Correct inability to style clickable `input` types in iOS.\n// 3. Improve usability and consistency of cursor style between image-type\n// `input` and others.\n//\n\nbutton,\nhtml input[type=\"button\"], // 1\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n -webkit-appearance: button; // 2\n cursor: pointer; // 3\n}\n\n//\n// Re-set default cursor for disabled elements.\n//\n\nbutton[disabled],\nhtml input[disabled] {\n cursor: default;\n}\n\n//\n// Remove inner padding and border in Firefox 4+.\n//\n\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n border: 0;\n padding: 0;\n}\n\n//\n// Address Firefox 4+ setting `line-height` on `input` using `!important` in\n// the UA stylesheet.\n//\n\ninput {\n line-height: normal;\n}\n\n//\n// It's recommended that you don't attempt to style these elements.\n// Firefox's implementation doesn't respect box-sizing, padding, or width.\n//\n// 1. Address box sizing set to `content-box` in IE 8/9/10.\n// 2. Remove excess padding in IE 8/9/10.\n//\n\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n box-sizing: border-box; // 1\n padding: 0; // 2\n}\n\n//\n// Fix the cursor style for Chrome's increment/decrement buttons. For certain\n// `font-size` values of the `input`, it causes the cursor style of the\n// decrement button to change from `default` to `text`.\n//\n\ninput[type=\"number\"]::-webkit-inner-spin-button,\ninput[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n//\n// 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.\n// 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome\n// (include `-moz` to future-proof).\n//\n\ninput[type=\"search\"] {\n -webkit-appearance: textfield; // 1\n -moz-box-sizing: content-box;\n -webkit-box-sizing: content-box; // 2\n box-sizing: content-box;\n}\n\n//\n// Remove inner padding and search cancel button in Safari and Chrome on OS X.\n// Safari (but not Chrome) clips the cancel button when the search input has\n// padding (and `textfield` appearance).\n//\n\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n//\n// Define consistent border, margin, and padding.\n//\n\nfieldset {\n border: 1px solid #c0c0c0;\n margin: 0 2px;\n padding: 0.35em 0.625em 0.75em;\n}\n\n//\n// 1. Correct `color` not being inherited in IE 8/9.\n// 2. Remove padding so people aren't caught out if they zero out fieldsets.\n//\n\nlegend {\n border: 0; // 1\n padding: 0; // 2\n}\n\n//\n// Remove default vertical scrollbar in IE 8/9.\n//\n\ntextarea {\n overflow: auto;\n}\n\n//\n// Don't inherit the `font-weight` (applied by a rule above).\n// NOTE: the default cannot safely be changed in Chrome and Safari on OS X.\n//\n\noptgroup {\n font-weight: bold;\n}\n\n// Tables\n// ==========================================================================\n\n//\n// Remove most spacing between table cells.\n//\n\ntable {\n border-collapse: collapse;\n border-spacing: 0;\n}\n\ntd,\nth {\n padding: 0;\n}","//\n// Basic print styles\n// --------------------------------------------------\n// Source: https://github.com/h5bp/html5-boilerplate/blob/master/css/main.css\n\n@media print {\n\n * {\n text-shadow: none !important;\n color: #000 !important; // Black prints faster: h5bp.com/s\n background: transparent !important;\n box-shadow: none !important;\n }\n\n a,\n a:visited {\n text-decoration: underline;\n }\n\n a[href]:after {\n content: \" (\" attr(href) \")\";\n }\n\n abbr[title]:after {\n content: \" (\" attr(title) \")\";\n }\n\n // Don't show links for images, or javascript/internal links\n a[href^=\"javascript:\"]:after,\n a[href^=\"#\"]:after {\n content: \"\";\n }\n\n pre,\n blockquote {\n border: 1px solid #999;\n page-break-inside: avoid;\n }\n\n thead {\n display: table-header-group; // h5bp.com/t\n }\n\n tr,\n img {\n page-break-inside: avoid;\n }\n\n img {\n max-width: 100% !important;\n }\n\n p,\n h2,\n h3 {\n orphans: 3;\n widows: 3;\n }\n\n h2,\n h3 {\n page-break-after: avoid;\n }\n\n // Chrome (OSX) fix for https://github.com/twbs/bootstrap/issues/11245\n // Once fixed, we can just straight up remove this.\n select {\n background: #fff !important;\n }\n\n // Bootstrap components\n .navbar {\n display: none;\n }\n .table {\n td,\n th {\n background-color: #fff !important;\n }\n }\n .btn,\n .dropup > .btn {\n > .caret {\n border-top-color: #000 !important;\n }\n }\n .label {\n border: 1px solid #000;\n }\n\n .table {\n border-collapse: collapse !important;\n }\n .table-bordered {\n th,\n td {\n border: 1px solid #ddd !important;\n }\n }\n\n}\n","//\n// Scaffolding\n// --------------------------------------------------\n\n\n// Reset the box-sizing\n//\n// Heads up! This reset may cause conflicts with some third-party widgets.\n// For recommendations on resolving such conflicts, see\n// http://getbootstrap.com/getting-started/#third-box-sizing\n* {\n .box-sizing(border-box);\n}\n*:before,\n*:after {\n .box-sizing(border-box);\n}\n\n\n// Body reset\n\nhtml {\n font-size: 62.5%;\n -webkit-tap-highlight-color: rgba(0,0,0,0);\n}\n\nbody {\n font-family: @font-family-base;\n font-size: @font-size-base;\n line-height: @line-height-base;\n color: @text-color;\n background-color: @body-bg;\n}\n\n// Reset fonts for relevant elements\ninput,\nbutton,\nselect,\ntextarea {\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\n\n// Links\n\na {\n color: @link-color;\n text-decoration: none;\n\n &:hover,\n &:focus {\n color: @link-hover-color;\n text-decoration: underline;\n }\n\n &:focus {\n .tab-focus();\n }\n}\n\n\n// Figures\n//\n// We reset this here because previously Normalize had no `figure` margins. This\n// ensures we don't break anyone's use of the element.\n\nfigure {\n margin: 0;\n}\n\n\n// Images\n\nimg {\n vertical-align: middle;\n}\n\n// Responsive images (ensure images don't scale beyond their parents)\n.img-responsive {\n .img-responsive();\n}\n\n// Rounded corners\n.img-rounded {\n border-radius: @border-radius-large;\n}\n\n// Image thumbnails\n//\n// Heads up! This is mixin-ed into thumbnails.less for `.thumbnail`.\n.img-thumbnail {\n padding: @thumbnail-padding;\n line-height: @line-height-base;\n background-color: @thumbnail-bg;\n border: 1px solid @thumbnail-border;\n border-radius: @thumbnail-border-radius;\n .transition(all .2s ease-in-out);\n\n // Keep them at most 100% wide\n .img-responsive(inline-block);\n}\n\n// Perfect circle\n.img-circle {\n border-radius: 50%; // set radius in percents\n}\n\n\n// Horizontal rules\n\nhr {\n margin-top: @line-height-computed;\n margin-bottom: @line-height-computed;\n border: 0;\n border-top: 1px solid @hr-border;\n}\n\n\n// Only display content to screen readers\n//\n// See: http://a11yproject.com/posts/how-to-hide-content/\n\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n margin: -1px;\n padding: 0;\n overflow: hidden;\n clip: rect(0,0,0,0);\n border: 0;\n}\n","//\n// Mixins\n// --------------------------------------------------\n\n\n// Utilities\n// -------------------------\n\n// Clearfix\n// Source: http://nicolasgallagher.com/micro-clearfix-hack/\n//\n// For modern browsers\n// 1. The space content is one way to avoid an Opera bug when the\n// contenteditable attribute is included anywhere else in the document.\n// Otherwise it causes space to appear at the top and bottom of elements\n// that are clearfixed.\n// 2. The use of `table` rather than `block` is only necessary if using\n// `:before` to contain the top-margins of child elements.\n.clearfix() {\n &:before,\n &:after {\n content: \" \"; // 1\n display: table; // 2\n }\n &:after {\n clear: both;\n }\n}\n\n// WebKit-style focus\n.tab-focus() {\n // Default\n outline: thin dotted;\n // WebKit\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\n\n// Center-align a block level element\n.center-block() {\n display: block;\n margin-left: auto;\n margin-right: auto;\n}\n\n// Sizing shortcuts\n.size(@width; @height) {\n width: @width;\n height: @height;\n}\n.square(@size) {\n .size(@size; @size);\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n &::-moz-placeholder { color: @color; // Firefox\n opacity: 1; } // See https://github.com/twbs/bootstrap/pull/11526\n &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+\n &::-webkit-input-placeholder { color: @color; } // Safari and Chrome\n}\n\n// Text overflow\n// Requires inline-block or block for proper styling\n.text-overflow() {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n// CSS image replacement\n//\n// Heads up! v3 launched with with only `.hide-text()`, but per our pattern for\n// mixins being reused as classes with the same name, this doesn't hold up. As\n// of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`. Note\n// that we cannot chain the mixins together in Less, so they are repeated.\n//\n// Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757\n\n// Deprecated as of v3.0.1 (will be removed in v4)\n.hide-text() {\n font: ~\"0/0\" a;\n color: transparent;\n text-shadow: none;\n background-color: transparent;\n border: 0;\n}\n// New mixin to use as of v3.0.1\n.text-hide() {\n .hide-text();\n}\n\n\n\n// CSS3 PROPERTIES\n// --------------------------------------------------\n\n// Single side border-radius\n.border-top-radius(@radius) {\n border-top-right-radius: @radius;\n border-top-left-radius: @radius;\n}\n.border-right-radius(@radius) {\n border-bottom-right-radius: @radius;\n border-top-right-radius: @radius;\n}\n.border-bottom-radius(@radius) {\n border-bottom-right-radius: @radius;\n border-bottom-left-radius: @radius;\n}\n.border-left-radius(@radius) {\n border-bottom-left-radius: @radius;\n border-top-left-radius: @radius;\n}\n\n// Drop shadows\n//\n// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's\n// supported browsers that have box shadow capabilities now support the\n// standard `box-shadow` property.\n.box-shadow(@shadow) {\n -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n box-shadow: @shadow;\n}\n\n// Transitions\n.transition(@transition) {\n -webkit-transition: @transition;\n transition: @transition;\n}\n.transition-property(@transition-property) {\n -webkit-transition-property: @transition-property;\n transition-property: @transition-property;\n}\n.transition-delay(@transition-delay) {\n -webkit-transition-delay: @transition-delay;\n transition-delay: @transition-delay;\n}\n.transition-duration(@transition-duration) {\n -webkit-transition-duration: @transition-duration;\n transition-duration: @transition-duration;\n}\n.transition-transform(@transition) {\n -webkit-transition: -webkit-transform @transition;\n -moz-transition: -moz-transform @transition;\n -o-transition: -o-transform @transition;\n transition: transform @transition;\n}\n\n// Transformations\n.rotate(@degrees) {\n -webkit-transform: rotate(@degrees);\n -ms-transform: rotate(@degrees); // IE9 only\n transform: rotate(@degrees);\n}\n.scale(@ratio; @ratio-y...) {\n -webkit-transform: scale(@ratio, @ratio-y);\n -ms-transform: scale(@ratio, @ratio-y); // IE9 only\n transform: scale(@ratio, @ratio-y);\n}\n.translate(@x; @y) {\n -webkit-transform: translate(@x, @y);\n -ms-transform: translate(@x, @y); // IE9 only\n transform: translate(@x, @y);\n}\n.skew(@x; @y) {\n -webkit-transform: skew(@x, @y);\n -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+\n transform: skew(@x, @y);\n}\n.translate3d(@x; @y; @z) {\n -webkit-transform: translate3d(@x, @y, @z);\n transform: translate3d(@x, @y, @z);\n}\n\n.rotateX(@degrees) {\n -webkit-transform: rotateX(@degrees);\n -ms-transform: rotateX(@degrees); // IE9 only\n transform: rotateX(@degrees);\n}\n.rotateY(@degrees) {\n -webkit-transform: rotateY(@degrees);\n -ms-transform: rotateY(@degrees); // IE9 only\n transform: rotateY(@degrees);\n}\n.perspective(@perspective) {\n -webkit-perspective: @perspective;\n -moz-perspective: @perspective;\n perspective: @perspective;\n}\n.perspective-origin(@perspective) {\n -webkit-perspective-origin: @perspective;\n -moz-perspective-origin: @perspective;\n perspective-origin: @perspective;\n}\n.transform-origin(@origin) {\n -webkit-transform-origin: @origin;\n -moz-transform-origin: @origin;\n -ms-transform-origin: @origin; // IE9 only\n transform-origin: @origin;\n}\n\n// Animations\n.animation(@animation) {\n -webkit-animation: @animation;\n animation: @animation;\n}\n.animation-name(@name) {\n -webkit-animation-name: @name;\n animation-name: @name;\n}\n.animation-duration(@duration) {\n -webkit-animation-duration: @duration;\n animation-duration: @duration;\n}\n.animation-timing-function(@timing-function) {\n -webkit-animation-timing-function: @timing-function;\n animation-timing-function: @timing-function;\n}\n.animation-delay(@delay) {\n -webkit-animation-delay: @delay;\n animation-delay: @delay;\n}\n.animation-iteration-count(@iteration-count) {\n -webkit-animation-iteration-count: @iteration-count;\n animation-iteration-count: @iteration-count;\n}\n.animation-direction(@direction) {\n -webkit-animation-direction: @direction;\n animation-direction: @direction;\n}\n\n// Backface visibility\n// Prevent browsers from flickering when using CSS 3D transforms.\n// Default value is `visible`, but can be changed to `hidden`\n.backface-visibility(@visibility){\n -webkit-backface-visibility: @visibility;\n -moz-backface-visibility: @visibility;\n backface-visibility: @visibility;\n}\n\n// Box sizing\n.box-sizing(@boxmodel) {\n -webkit-box-sizing: @boxmodel;\n -moz-box-sizing: @boxmodel;\n box-sizing: @boxmodel;\n}\n\n// User select\n// For selecting text on the page\n.user-select(@select) {\n -webkit-user-select: @select;\n -moz-user-select: @select;\n -ms-user-select: @select; // IE10+\n user-select: @select;\n}\n\n// Resize anything\n.resizable(@direction) {\n resize: @direction; // Options: horizontal, vertical, both\n overflow: auto; // Safari fix\n}\n\n// CSS3 Content Columns\n.content-columns(@column-count; @column-gap: @grid-gutter-width) {\n -webkit-column-count: @column-count;\n -moz-column-count: @column-count;\n column-count: @column-count;\n -webkit-column-gap: @column-gap;\n -moz-column-gap: @column-gap;\n column-gap: @column-gap;\n}\n\n// Optional hyphenation\n.hyphens(@mode: auto) {\n word-wrap: break-word;\n -webkit-hyphens: @mode;\n -moz-hyphens: @mode;\n -ms-hyphens: @mode; // IE10+\n -o-hyphens: @mode;\n hyphens: @mode;\n}\n\n// Opacity\n.opacity(@opacity) {\n opacity: @opacity;\n // IE8 filter\n @opacity-ie: (@opacity * 100);\n filter: ~\"alpha(opacity=@{opacity-ie})\";\n}\n\n\n\n// GRADIENTS\n// --------------------------------------------------\n\n#gradient {\n\n // Horizontal gradient, from left to right\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(left, color-stop(@start-color @start-percent), color-stop(@end-color @end-percent)); // Safari 5.1-6, Chrome 10+\n background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n // Vertical gradient, from top to bottom\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {\n background-repeat: repeat-x;\n background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+\n background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n }\n .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .radial(@inner-color: #555; @outer-color: #333) {\n background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);\n background-image: radial-gradient(circle, @inner-color, @outer-color);\n background-repeat: no-repeat;\n }\n .striped(@color: rgba(255,255,255,.15); @angle: 45deg) {\n background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n }\n}\n\n// Reset filters for IE\n//\n// When you need to remove a gradient background, do not forget to use this to reset\n// the IE filter for IE9 and below.\n.reset-filter() {\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(enabled = false)\"));\n}\n\n\n\n// Retina images\n//\n// Short retina mixin for setting background-image and -size\n\n.img-retina(@file-1x; @file-2x; @width-1x; @height-1x) {\n background-image: url(\"@{file-1x}\");\n\n @media\n only screen and (-webkit-min-device-pixel-ratio: 2),\n only screen and ( min--moz-device-pixel-ratio: 2),\n only screen and ( -o-min-device-pixel-ratio: 2/1),\n only screen and ( min-device-pixel-ratio: 2),\n only screen and ( min-resolution: 192dpi),\n only screen and ( min-resolution: 2dppx) {\n background-image: url(\"@{file-2x}\");\n background-size: @width-1x @height-1x;\n }\n}\n\n\n// Responsive image\n//\n// Keep images from scaling beyond the width of their parents.\n\n.img-responsive(@display: block) {\n display: @display;\n max-width: 100%; // Part 1: Set a maximum relative to the parent\n height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching\n}\n\n\n// COMPONENT MIXINS\n// --------------------------------------------------\n\n// Horizontal dividers\n// -------------------------\n// Dividers (basically an hr) within dropdowns and nav lists\n.nav-divider(@color: #e5e5e5) {\n height: 1px;\n margin: ((@line-height-computed / 2) - 1) 0;\n overflow: hidden;\n background-color: @color;\n}\n\n// Panels\n// -------------------------\n.panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) {\n border-color: @border;\n\n & > .panel-heading {\n color: @heading-text-color;\n background-color: @heading-bg-color;\n border-color: @heading-border;\n\n + .panel-collapse .panel-body {\n border-top-color: @border;\n }\n }\n & > .panel-footer {\n + .panel-collapse .panel-body {\n border-bottom-color: @border;\n }\n }\n}\n\n// Alerts\n// -------------------------\n.alert-variant(@background; @border; @text-color) {\n background-color: @background;\n border-color: @border;\n color: @text-color;\n\n hr {\n border-top-color: darken(@border, 5%);\n }\n .alert-link {\n color: darken(@text-color, 10%);\n }\n}\n\n// Tables\n// -------------------------\n.table-row-variant(@state; @background) {\n // Exact selectors below required to override `.table-striped` and prevent\n // inheritance to nested tables.\n .table > thead > tr,\n .table > tbody > tr,\n .table > tfoot > tr {\n > td.@{state},\n > th.@{state},\n &.@{state} > td,\n &.@{state} > th {\n background-color: @background;\n }\n }\n\n // Hover states for `.table-hover`\n // Note: this is not available for cells or rows within `thead` or `tfoot`.\n .table-hover > tbody > tr {\n > td.@{state}:hover,\n > th.@{state}:hover,\n &.@{state}:hover > td,\n &.@{state}:hover > th {\n background-color: darken(@background, 5%);\n }\n }\n}\n\n// List Groups\n// -------------------------\n.list-group-item-variant(@state; @background; @color) {\n .list-group-item-@{state} {\n color: @color;\n background-color: @background;\n\n a& {\n color: @color;\n\n .list-group-item-heading { color: inherit; }\n\n &:hover,\n &:focus {\n color: @color;\n background-color: darken(@background, 5%);\n }\n &.active,\n &.active:hover,\n &.active:focus {\n color: #fff;\n background-color: @color;\n border-color: @color;\n }\n }\n }\n}\n\n// Button variants\n// -------------------------\n// Easily pump out default styles, as well as :hover, :focus, :active,\n// and disabled options for all buttons\n.button-variant(@color; @background; @border) {\n color: @color;\n background-color: @background;\n border-color: @border;\n\n &:hover,\n &:focus,\n &:active,\n &.active,\n .open .dropdown-toggle& {\n color: @color;\n background-color: darken(@background, 8%);\n border-color: darken(@border, 12%);\n }\n &:active,\n &.active,\n .open .dropdown-toggle& {\n background-image: none;\n }\n &.disabled,\n &[disabled],\n fieldset[disabled] & {\n &,\n &:hover,\n &:focus,\n &:active,\n &.active {\n background-color: @background;\n border-color: @border;\n }\n }\n\n .badge {\n color: @background;\n background-color: @color;\n }\n}\n\n// Button sizes\n// -------------------------\n.button-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n padding: @padding-vertical @padding-horizontal;\n font-size: @font-size;\n line-height: @line-height;\n border-radius: @border-radius;\n}\n\n// Pagination\n// -------------------------\n.pagination-size(@padding-vertical; @padding-horizontal; @font-size; @border-radius) {\n > li {\n > a,\n > span {\n padding: @padding-vertical @padding-horizontal;\n font-size: @font-size;\n }\n &:first-child {\n > a,\n > span {\n .border-left-radius(@border-radius);\n }\n }\n &:last-child {\n > a,\n > span {\n .border-right-radius(@border-radius);\n }\n }\n }\n}\n\n// Labels\n// -------------------------\n.label-variant(@color) {\n background-color: @color;\n &[href] {\n &:hover,\n &:focus {\n background-color: darken(@color, 10%);\n }\n }\n}\n\n// Contextual backgrounds\n// -------------------------\n.bg-variant(@color) {\n background-color: @color;\n a&:hover {\n background-color: darken(@color, 10%);\n }\n}\n\n// Typography\n// -------------------------\n.text-emphasis-variant(@color) {\n color: @color;\n a&:hover {\n color: darken(@color, 10%);\n }\n}\n\n// Navbar vertical align\n// -------------------------\n// Vertically center elements in the navbar.\n// Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin.\n.navbar-vertical-align(@element-height) {\n margin-top: ((@navbar-height - @element-height) / 2);\n margin-bottom: ((@navbar-height - @element-height) / 2);\n}\n\n// Progress bars\n// -------------------------\n.progress-bar-variant(@color) {\n background-color: @color;\n .progress-striped & {\n #gradient > .striped();\n }\n}\n\n// Responsive utilities\n// -------------------------\n// More easily include all the states for responsive-utilities.less.\n.responsive-visibility() {\n display: block !important;\n table& { display: table; }\n tr& { display: table-row !important; }\n th&,\n td& { display: table-cell !important; }\n}\n\n.responsive-invisibility() {\n display: none !important;\n}\n\n\n// Grid System\n// -----------\n\n// Centered container element\n.container-fixed() {\n margin-right: auto;\n margin-left: auto;\n padding-left: (@grid-gutter-width / 2);\n padding-right: (@grid-gutter-width / 2);\n &:extend(.clearfix all);\n}\n\n// Creates a wrapper for a series of columns\n.make-row(@gutter: @grid-gutter-width) {\n margin-left: (@gutter / -2);\n margin-right: (@gutter / -2);\n &:extend(.clearfix all);\n}\n\n// Generate the extra small columns\n.make-xs-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n float: left;\n width: percentage((@columns / @grid-columns));\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n}\n.make-xs-column-offset(@columns) {\n @media (min-width: @screen-xs-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-xs-column-push(@columns) {\n @media (min-width: @screen-xs-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-xs-column-pull(@columns) {\n @media (min-width: @screen-xs-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n\n// Generate the small columns\n.make-sm-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @screen-sm-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-offset(@columns) {\n @media (min-width: @screen-sm-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-push(@columns) {\n @media (min-width: @screen-sm-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-pull(@columns) {\n @media (min-width: @screen-sm-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n\n// Generate the medium columns\n.make-md-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @screen-md-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-offset(@columns) {\n @media (min-width: @screen-md-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-push(@columns) {\n @media (min-width: @screen-md-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-pull(@columns) {\n @media (min-width: @screen-md-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n\n// Generate the large columns\n.make-lg-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @screen-lg-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-offset(@columns) {\n @media (min-width: @screen-lg-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-push(@columns) {\n @media (min-width: @screen-lg-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-pull(@columns) {\n @media (min-width: @screen-lg-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n\n// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `@grid-columns`.\n\n.make-grid-columns() {\n // Common styles for all sizes of grid columns, widths 1-12\n .col(@index) when (@index = 1) { // initial\n @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n .col((@index + 1), @item);\n }\n .col(@index, @list) when (@index =< @grid-columns) { // general; \"=<\" isn't a typo\n @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n .col((@index + 1), ~\"@{list}, @{item}\");\n }\n .col(@index, @list) when (@index > @grid-columns) { // terminal\n @{list} {\n position: relative;\n // Prevent columns from collapsing when empty\n min-height: 1px;\n // Inner gutter via padding\n padding-left: (@grid-gutter-width / 2);\n padding-right: (@grid-gutter-width / 2);\n }\n }\n .col(1); // kickstart it\n}\n\n.float-grid-columns(@class) {\n .col(@index) when (@index = 1) { // initial\n @item: ~\".col-@{class}-@{index}\";\n .col((@index + 1), @item);\n }\n .col(@index, @list) when (@index =< @grid-columns) { // general\n @item: ~\".col-@{class}-@{index}\";\n .col((@index + 1), ~\"@{list}, @{item}\");\n }\n .col(@index, @list) when (@index > @grid-columns) { // terminal\n @{list} {\n float: left;\n }\n }\n .col(1); // kickstart it\n}\n\n.calc-grid-column(@index, @class, @type) when (@type = width) and (@index > 0) {\n .col-@{class}-@{index} {\n width: percentage((@index / @grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = push) {\n .col-@{class}-push-@{index} {\n left: percentage((@index / @grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = pull) {\n .col-@{class}-pull-@{index} {\n right: percentage((@index / @grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = offset) {\n .col-@{class}-offset-@{index} {\n margin-left: percentage((@index / @grid-columns));\n }\n}\n\n// Basic looping in LESS\n.loop-grid-columns(@index, @class, @type) when (@index >= 0) {\n .calc-grid-column(@index, @class, @type);\n // next iteration\n .loop-grid-columns((@index - 1), @class, @type);\n}\n\n// Create grid for specific class\n.make-grid(@class) {\n .float-grid-columns(@class);\n .loop-grid-columns(@grid-columns, @class, width);\n .loop-grid-columns(@grid-columns, @class, pull);\n .loop-grid-columns(@grid-columns, @class, push);\n .loop-grid-columns(@grid-columns, @class, offset);\n}\n\n// Form validation states\n//\n// Used in forms.less to generate the form validation CSS for warnings, errors,\n// and successes.\n\n.form-control-validation(@text-color: #555; @border-color: #ccc; @background-color: #f5f5f5) {\n // Color the label and help text\n .help-block,\n .control-label,\n .radio,\n .checkbox,\n .radio-inline,\n .checkbox-inline {\n color: @text-color;\n }\n // Set the border and box shadow on specific inputs to match\n .form-control {\n border-color: @border-color;\n .box-shadow(inset 0 1px 1px rgba(0,0,0,.075)); // Redeclare so transitions work\n &:focus {\n border-color: darken(@border-color, 10%);\n @shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px lighten(@border-color, 20%);\n .box-shadow(@shadow);\n }\n }\n // Set validation states also for addons\n .input-group-addon {\n color: @text-color;\n border-color: @border-color;\n background-color: @background-color;\n }\n // Optional feedback icon\n .form-control-feedback {\n color: @text-color;\n }\n}\n\n// Form control focus state\n//\n// Generate a customized focus state and for any input with the specified color,\n// which defaults to the `@input-focus-border` variable.\n//\n// We highly encourage you to not customize the default value, but instead use\n// this to tweak colors on an as-needed basis. This aesthetic change is based on\n// WebKit's default styles, but applicable to a wider range of browsers. Its\n// usability and accessibility should be taken into account with any change.\n//\n// Example usage: change the default blue border and shadow to white for better\n// contrast against a dark gray background.\n\n.form-control-focus(@color: @input-border-focus) {\n @color-rgba: rgba(red(@color), green(@color), blue(@color), .6);\n &:focus {\n border-color: @color;\n outline: 0;\n .box-shadow(~\"inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px @{color-rgba}\");\n }\n}\n\n// Form control sizing\n//\n// Relative text size, padding, and border-radii changes for form controls. For\n// horizontal sizing, wrap controls in the predefined grid classes. `<select>`\n// element gets special love because it's special, and that's a fact!\n\n.input-size(@input-height; @padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n height: @input-height;\n padding: @padding-vertical @padding-horizontal;\n font-size: @font-size;\n line-height: @line-height;\n border-radius: @border-radius;\n\n select& {\n height: @input-height;\n line-height: @input-height;\n }\n\n textarea&,\n select[multiple]& {\n height: auto;\n }\n}\n","//\n// Variables\n// --------------------------------------------------\n\n\n//== Colors\n//\n//## Gray and brand colors for use across Bootstrap.\n\n@gray-darker: lighten(#000, 13.5%); // #222\n@gray-dark: lighten(#000, 20%); // #333\n@gray: lighten(#000, 33.5%); // #555\n@gray-light: lighten(#000, 60%); // #999\n@gray-lighter: lighten(#000, 93.5%); // #eee\n\n@brand-primary: #428bca;\n@brand-success: #5cb85c;\n@brand-info: #5bc0de;\n@brand-warning: #f0ad4e;\n@brand-danger: #d9534f;\n\n\n//== Scaffolding\n//\n// ## Settings for some of the most global styles.\n\n//** Background color for `<body>`.\n@body-bg: #fff;\n//** Global text color on `<body>`.\n@text-color: @gray-dark;\n\n//** Global textual link color.\n@link-color: @brand-primary;\n//** Link hover color set via `darken()` function.\n@link-hover-color: darken(@link-color, 15%);\n\n\n//== Typography\n//\n//## Font, line-height, and color for body text, headings, and more.\n\n@font-family-sans-serif: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n@font-family-serif: Georgia, \"Times New Roman\", Times, serif;\n//** Default monospace fonts for `<code>`, `<kbd>`, and `<pre>`.\n@font-family-monospace: Menlo, Monaco, Consolas, \"Courier New\", monospace;\n@font-family-base: @font-family-sans-serif;\n\n@font-size-base: 14px;\n@font-size-large: ceil((@font-size-base * 1.25)); // ~18px\n@font-size-small: ceil((@font-size-base * 0.85)); // ~12px\n\n@font-size-h1: floor((@font-size-base * 2.6)); // ~36px\n@font-size-h2: floor((@font-size-base * 2.15)); // ~30px\n@font-size-h3: ceil((@font-size-base * 1.7)); // ~24px\n@font-size-h4: ceil((@font-size-base * 1.25)); // ~18px\n@font-size-h5: @font-size-base;\n@font-size-h6: ceil((@font-size-base * 0.85)); // ~12px\n\n//** Unit-less `line-height` for use in components like buttons.\n@line-height-base: 1.428571429; // 20/14\n//** Computed \"line-height\" (`font-size` * `line-height`) for use with `margin`, `padding`, etc.\n@line-height-computed: floor((@font-size-base * @line-height-base)); // ~20px\n\n//** By default, this inherits from the `<body>`.\n@headings-font-family: inherit;\n@headings-font-weight: 500;\n@headings-line-height: 1.1;\n@headings-color: inherit;\n\n\n//-- Iconography\n//\n//## Specify custom locations of the include Glyphicons icon font. Useful for those including Bootstrap via Bower.\n\n@icon-font-path: \"../fonts/\";\n@icon-font-name: \"glyphicons-halflings-regular\";\n@icon-font-svg-id: \"glyphicons_halflingsregular\";\n\n//== Components\n//\n//## Define common padding and border radius sizes and more. Values based on 14px text and 1.428 line-height (~20px to start).\n\n@padding-base-vertical: 6px;\n@padding-base-horizontal: 12px;\n\n@padding-large-vertical: 10px;\n@padding-large-horizontal: 16px;\n\n@padding-small-vertical: 5px;\n@padding-small-horizontal: 10px;\n\n@padding-xs-vertical: 1px;\n@padding-xs-horizontal: 5px;\n\n@line-height-large: 1.33;\n@line-height-small: 1.5;\n\n@border-radius-base: 4px;\n@border-radius-large: 6px;\n@border-radius-small: 3px;\n\n//** Global color for active items (e.g., navs or dropdowns).\n@component-active-color: #fff;\n//** Global background color for active items (e.g., navs or dropdowns).\n@component-active-bg: @brand-primary;\n\n//** Width of the `border` for generating carets that indicator dropdowns.\n@caret-width-base: 4px;\n//** Carets increase slightly in size for larger components.\n@caret-width-large: 5px;\n\n\n//== Tables\n//\n//## Customizes the `.table` component with basic values, each used across all table variations.\n\n//** Padding for `<th>`s and `<td>`s.\n@table-cell-padding: 8px;\n//** Padding for cells in `.table-condensed`.\n@table-condensed-cell-padding: 5px;\n\n//** Default background color used for all tables.\n@table-bg: transparent;\n//** Background color used for `.table-striped`.\n@table-bg-accent: #f9f9f9;\n//** Background color used for `.table-hover`.\n@table-bg-hover: #f5f5f5;\n@table-bg-active: @table-bg-hover;\n\n//** Border color for table and cell borders.\n@table-border-color: #ddd;\n\n\n//== Buttons\n//\n//## For each of Bootstrap's buttons, define text, background and border color.\n\n@btn-font-weight: normal;\n\n@btn-default-color: #333;\n@btn-default-bg: #fff;\n@btn-default-border: #ccc;\n\n@btn-primary-color: #fff;\n@btn-primary-bg: @brand-primary;\n@btn-primary-border: darken(@btn-primary-bg, 5%);\n\n@btn-success-color: #fff;\n@btn-success-bg: @brand-success;\n@btn-success-border: darken(@btn-success-bg, 5%);\n\n@btn-info-color: #fff;\n@btn-info-bg: @brand-info;\n@btn-info-border: darken(@btn-info-bg, 5%);\n\n@btn-warning-color: #fff;\n@btn-warning-bg: @brand-warning;\n@btn-warning-border: darken(@btn-warning-bg, 5%);\n\n@btn-danger-color: #fff;\n@btn-danger-bg: @brand-danger;\n@btn-danger-border: darken(@btn-danger-bg, 5%);\n\n@btn-link-disabled-color: @gray-light;\n\n\n//== Forms\n//\n//##\n\n//** `<input>` background color\n@input-bg: #fff;\n//** `<input disabled>` background color\n@input-bg-disabled: @gray-lighter;\n\n//** Text color for `<input>`s\n@input-color: @gray;\n//** `<input>` border color\n@input-border: #ccc;\n//** `<input>` border radius\n@input-border-radius: @border-radius-base;\n//** Border color for inputs on focus\n@input-border-focus: #66afe9;\n\n//** Placeholder text color\n@input-color-placeholder: @gray-light;\n\n//** Default `.form-control` height\n@input-height-base: (@line-height-computed + (@padding-base-vertical * 2) + 2);\n//** Large `.form-control` height\n@input-height-large: (ceil(@font-size-large * @line-height-large) + (@padding-large-vertical * 2) + 2);\n//** Small `.form-control` height\n@input-height-small: (floor(@font-size-small * @line-height-small) + (@padding-small-vertical * 2) + 2);\n\n@legend-color: @gray-dark;\n@legend-border-color: #e5e5e5;\n\n//** Background color for textual input addons\n@input-group-addon-bg: @gray-lighter;\n//** Border color for textual input addons\n@input-group-addon-border-color: @input-border;\n\n\n//== Dropdowns\n//\n//## Dropdown menu container and contents.\n\n//** Background for the dropdown menu.\n@dropdown-bg: #fff;\n//** Dropdown menu `border-color`.\n@dropdown-border: rgba(0,0,0,.15);\n//** Dropdown menu `border-color` **for IE8**.\n@dropdown-fallback-border: #ccc;\n//** Divider color for between dropdown items.\n@dropdown-divider-bg: #e5e5e5;\n\n//** Dropdown link text color.\n@dropdown-link-color: @gray-dark;\n//** Hover color for dropdown links.\n@dropdown-link-hover-color: darken(@gray-dark, 5%);\n//** Hover background for dropdown links.\n@dropdown-link-hover-bg: #f5f5f5;\n\n//** Active dropdown menu item text color.\n@dropdown-link-active-color: @component-active-color;\n//** Active dropdown menu item background color.\n@dropdown-link-active-bg: @component-active-bg;\n\n//** Disabled dropdown menu item background color.\n@dropdown-link-disabled-color: @gray-light;\n\n//** Text color for headers within dropdown menus.\n@dropdown-header-color: @gray-light;\n\n// Note: Deprecated @dropdown-caret-color as of v3.1.0\n@dropdown-caret-color: #000;\n\n\n//-- Z-index master list\n//\n// Warning: Avoid customizing these values. They're used for a bird's eye view\n// of components dependent on the z-axis and are designed to all work together.\n//\n// Note: These variables are not generated into the Customizer.\n\n@zindex-navbar: 1000;\n@zindex-dropdown: 1000;\n@zindex-popover: 1010;\n@zindex-tooltip: 1030;\n@zindex-navbar-fixed: 1030;\n@zindex-modal-background: 1040;\n@zindex-modal: 1050;\n\n\n//== Media queries breakpoints\n//\n//## Define the breakpoints at which your layout will change, adapting to different screen sizes.\n\n// Extra small screen / phone\n// Note: Deprecated @screen-xs and @screen-phone as of v3.0.1\n@screen-xs: 480px;\n@screen-xs-min: @screen-xs;\n@screen-phone: @screen-xs-min;\n\n// Small screen / tablet\n// Note: Deprecated @screen-sm and @screen-tablet as of v3.0.1\n@screen-sm: 768px;\n@screen-sm-min: @screen-sm;\n@screen-tablet: @screen-sm-min;\n\n// Medium screen / desktop\n// Note: Deprecated @screen-md and @screen-desktop as of v3.0.1\n@screen-md: 992px;\n@screen-md-min: @screen-md;\n@screen-desktop: @screen-md-min;\n\n// Large screen / wide desktop\n// Note: Deprecated @screen-lg and @screen-lg-desktop as of v3.0.1\n@screen-lg: 1200px;\n@screen-lg-min: @screen-lg;\n@screen-lg-desktop: @screen-lg-min;\n\n// So media queries don't overlap when required, provide a maximum\n@screen-xs-max: (@screen-sm-min - 1);\n@screen-sm-max: (@screen-md-min - 1);\n@screen-md-max: (@screen-lg-min - 1);\n\n\n//== Grid system\n//\n//## Define your custom responsive grid.\n\n//** Number of columns in the grid.\n@grid-columns: 12;\n//** Padding between columns. Gets divided in half for the left and right.\n@grid-gutter-width: 30px;\n// Navbar collapse\n//** Point at which the navbar becomes uncollapsed.\n@grid-float-breakpoint: @screen-sm-min;\n//** Point at which the navbar begins collapsing.\n@grid-float-breakpoint-max: (@grid-float-breakpoint - 1);\n\n\n//== Container sizes\n//\n//## Define the maximum width of `.container` for different screen sizes.\n\n// Small screen / tablet\n@container-tablet: ((720px + @grid-gutter-width));\n//** For `@screen-sm-min` and up.\n@container-sm: @container-tablet;\n\n// Medium screen / desktop\n@container-desktop: ((940px + @grid-gutter-width));\n//** For `@screen-md-min` and up.\n@container-md: @container-desktop;\n\n// Large screen / wide desktop\n@container-large-desktop: ((1140px + @grid-gutter-width));\n//** For `@screen-lg-min` and up.\n@container-lg: @container-large-desktop;\n\n\n//== Navbar\n//\n//##\n\n// Basics of a navbar\n@navbar-height: 50px;\n@navbar-margin-bottom: @line-height-computed;\n@navbar-border-radius: @border-radius-base;\n@navbar-padding-horizontal: floor((@grid-gutter-width / 2));\n@navbar-padding-vertical: ((@navbar-height - @line-height-computed) / 2);\n@navbar-collapse-max-height: 340px;\n\n@navbar-default-color: #777;\n@navbar-default-bg: #f8f8f8;\n@navbar-default-border: darken(@navbar-default-bg, 6.5%);\n\n// Navbar links\n@navbar-default-link-color: #777;\n@navbar-default-link-hover-color: #333;\n@navbar-default-link-hover-bg: transparent;\n@navbar-default-link-active-color: #555;\n@navbar-default-link-active-bg: darken(@navbar-default-bg, 6.5%);\n@navbar-default-link-disabled-color: #ccc;\n@navbar-default-link-disabled-bg: transparent;\n\n// Navbar brand label\n@navbar-default-brand-color: @navbar-default-link-color;\n@navbar-default-brand-hover-color: darken(@navbar-default-brand-color, 10%);\n@navbar-default-brand-hover-bg: transparent;\n\n// Navbar toggle\n@navbar-default-toggle-hover-bg: #ddd;\n@navbar-default-toggle-icon-bar-bg: #888;\n@navbar-default-toggle-border-color: #ddd;\n\n\n// Inverted navbar\n// Reset inverted navbar basics\n@navbar-inverse-color: @gray-light;\n@navbar-inverse-bg: #222;\n@navbar-inverse-border: darken(@navbar-inverse-bg, 10%);\n\n// Inverted navbar links\n@navbar-inverse-link-color: @gray-light;\n@navbar-inverse-link-hover-color: #fff;\n@navbar-inverse-link-hover-bg: transparent;\n@navbar-inverse-link-active-color: @navbar-inverse-link-hover-color;\n@navbar-inverse-link-active-bg: darken(@navbar-inverse-bg, 10%);\n@navbar-inverse-link-disabled-color: #444;\n@navbar-inverse-link-disabled-bg: transparent;\n\n// Inverted navbar brand label\n@navbar-inverse-brand-color: @navbar-inverse-link-color;\n@navbar-inverse-brand-hover-color: #fff;\n@navbar-inverse-brand-hover-bg: transparent;\n\n// Inverted navbar toggle\n@navbar-inverse-toggle-hover-bg: #333;\n@navbar-inverse-toggle-icon-bar-bg: #fff;\n@navbar-inverse-toggle-border-color: #333;\n\n\n//== Navs\n//\n//##\n\n//=== Shared nav styles\n@nav-link-padding: 10px 15px;\n@nav-link-hover-bg: @gray-lighter;\n\n@nav-disabled-link-color: @gray-light;\n@nav-disabled-link-hover-color: @gray-light;\n\n@nav-open-link-hover-color: #fff;\n\n//== Tabs\n@nav-tabs-border-color: #ddd;\n\n@nav-tabs-link-hover-border-color: @gray-lighter;\n\n@nav-tabs-active-link-hover-bg: @body-bg;\n@nav-tabs-active-link-hover-color: @gray;\n@nav-tabs-active-link-hover-border-color: #ddd;\n\n@nav-tabs-justified-link-border-color: #ddd;\n@nav-tabs-justified-active-link-border-color: @body-bg;\n\n//== Pills\n@nav-pills-border-radius: @border-radius-base;\n@nav-pills-active-link-hover-bg: @component-active-bg;\n@nav-pills-active-link-hover-color: @component-active-color;\n\n\n//== Pagination\n//\n//##\n\n@pagination-color: @link-color;\n@pagination-bg: #fff;\n@pagination-border: #ddd;\n\n@pagination-hover-color: @link-hover-color;\n@pagination-hover-bg: @gray-lighter;\n@pagination-hover-border: #ddd;\n\n@pagination-active-color: #fff;\n@pagination-active-bg: @brand-primary;\n@pagination-active-border: @brand-primary;\n\n@pagination-disabled-color: @gray-light;\n@pagination-disabled-bg: #fff;\n@pagination-disabled-border: #ddd;\n\n\n//== Pager\n//\n//##\n\n@pager-bg: @pagination-bg;\n@pager-border: @pagination-border;\n@pager-border-radius: 15px;\n\n@pager-hover-bg: @pagination-hover-bg;\n\n@pager-active-bg: @pagination-active-bg;\n@pager-active-color: @pagination-active-color;\n\n@pager-disabled-color: @pagination-disabled-color;\n\n\n//== Jumbotron\n//\n//##\n\n@jumbotron-padding: 30px;\n@jumbotron-color: inherit;\n@jumbotron-bg: @gray-lighter;\n@jumbotron-heading-color: inherit;\n@jumbotron-font-size: ceil((@font-size-base * 1.5));\n\n\n//== Form states and alerts\n//\n//## Define colors for form feedback states and, by default, alerts.\n\n@state-success-text: #3c763d;\n@state-success-bg: #dff0d8;\n@state-success-border: darken(spin(@state-success-bg, -10), 5%);\n\n@state-info-text: #31708f;\n@state-info-bg: #d9edf7;\n@state-info-border: darken(spin(@state-info-bg, -10), 7%);\n\n@state-warning-text: #8a6d3b;\n@state-warning-bg: #fcf8e3;\n@state-warning-border: darken(spin(@state-warning-bg, -10), 5%);\n\n@state-danger-text: #a94442;\n@state-danger-bg: #f2dede;\n@state-danger-border: darken(spin(@state-danger-bg, -10), 5%);\n\n\n//== Tooltips\n//\n//##\n\n//** Tooltip max width\n@tooltip-max-width: 200px;\n//** Tooltip text color\n@tooltip-color: #fff;\n//** Tooltip background color\n@tooltip-bg: #000;\n@tooltip-opacity: .9;\n\n//** Tooltip arrow width\n@tooltip-arrow-width: 5px;\n//** Tooltip arrow color\n@tooltip-arrow-color: @tooltip-bg;\n\n\n//== Popovers\n//\n//##\n\n//** Popover body background color\n@popover-bg: #fff;\n//** Popover maximum width\n@popover-max-width: 276px;\n//** Popover border color\n@popover-border-color: rgba(0,0,0,.2);\n//** Popover fallback border color\n@popover-fallback-border-color: #ccc;\n\n//** Popover title background color\n@popover-title-bg: darken(@popover-bg, 3%);\n\n//** Popover arrow width\n@popover-arrow-width: 10px;\n//** Popover arrow color\n@popover-arrow-color: #fff;\n\n//** Popover outer arrow width\n@popover-arrow-outer-width: (@popover-arrow-width + 1);\n//** Popover outer arrow color\n@popover-arrow-outer-color: fadein(@popover-border-color, 5%);\n//** Popover outer arrow fallback color\n@popover-arrow-outer-fallback-color: darken(@popover-fallback-border-color, 20%);\n\n\n//== Labels\n//\n//##\n\n//** Default label background color\n@label-default-bg: @gray-light;\n//** Primary label background color\n@label-primary-bg: @brand-primary;\n//** Success label background color\n@label-success-bg: @brand-success;\n//** Info label background color\n@label-info-bg: @brand-info;\n//** Warning label background color\n@label-warning-bg: @brand-warning;\n//** Danger label background color\n@label-danger-bg: @brand-danger;\n\n//** Default label text color\n@label-color: #fff;\n//** Default text color of a linked label\n@label-link-hover-color: #fff;\n\n\n//== Modals\n//\n//##\n\n//** Padding applied to the modal body\n@modal-inner-padding: 20px;\n\n//** Padding applied to the modal title\n@modal-title-padding: 15px;\n//** Modal title line-height\n@modal-title-line-height: @line-height-base;\n\n//** Background color of modal content area\n@modal-content-bg: #fff;\n//** Modal content border color\n@modal-content-border-color: rgba(0,0,0,.2);\n//** Modal content border color **for IE8**\n@modal-content-fallback-border-color: #999;\n\n//** Modal backdrop background color\n@modal-backdrop-bg: #000;\n//** Modal backdrop opacity\n@modal-backdrop-opacity: .5;\n//** Modal header border color\n@modal-header-border-color: #e5e5e5;\n//** Modal footer border color\n@modal-footer-border-color: @modal-header-border-color;\n\n@modal-lg: 900px;\n@modal-md: 600px;\n@modal-sm: 300px;\n\n\n//== Alerts\n//\n//## Define alert colors, border radius, and padding.\n\n@alert-padding: 15px;\n@alert-border-radius: @border-radius-base;\n@alert-link-font-weight: bold;\n\n@alert-success-bg: @state-success-bg;\n@alert-success-text: @state-success-text;\n@alert-success-border: @state-success-border;\n\n@alert-info-bg: @state-info-bg;\n@alert-info-text: @state-info-text;\n@alert-info-border: @state-info-border;\n\n@alert-warning-bg: @state-warning-bg;\n@alert-warning-text: @state-warning-text;\n@alert-warning-border: @state-warning-border;\n\n@alert-danger-bg: @state-danger-bg;\n@alert-danger-text: @state-danger-text;\n@alert-danger-border: @state-danger-border;\n\n\n//== Progress bars\n//\n//##\n\n//** Background color of the whole progress component\n@progress-bg: #f5f5f5;\n//** Progress bar text color\n@progress-bar-color: #fff;\n\n//** Default progress bar color\n@progress-bar-bg: @brand-primary;\n//** Success progress bar color\n@progress-bar-success-bg: @brand-success;\n//** Warning progress bar color\n@progress-bar-warning-bg: @brand-warning;\n//** Danger progress bar color\n@progress-bar-danger-bg: @brand-danger;\n//** Info progress bar color\n@progress-bar-info-bg: @brand-info;\n\n\n//== List group\n//\n//##\n\n//** Background color on `.list-group-item`\n@list-group-bg: #fff;\n//** `.list-group-item` border color\n@list-group-border: #ddd;\n//** List group border radius\n@list-group-border-radius: @border-radius-base;\n\n//** Background color of single list elements on hover\n@list-group-hover-bg: #f5f5f5;\n//** Text color of active list elements\n@list-group-active-color: @component-active-color;\n//** Background color of active list elements\n@list-group-active-bg: @component-active-bg;\n//** Border color of active list elements\n@list-group-active-border: @list-group-active-bg;\n@list-group-active-text-color: lighten(@list-group-active-bg, 40%);\n\n@list-group-link-color: #555;\n@list-group-link-heading-color: #333;\n\n\n//== Panels\n//\n//##\n\n@panel-bg: #fff;\n@panel-body-padding: 15px;\n@panel-border-radius: @border-radius-base;\n\n//** Border color for elements within panels\n@panel-inner-border: #ddd;\n@panel-footer-bg: #f5f5f5;\n\n@panel-default-text: @gray-dark;\n@panel-default-border: #ddd;\n@panel-default-heading-bg: #f5f5f5;\n\n@panel-primary-text: #fff;\n@panel-primary-border: @brand-primary;\n@panel-primary-heading-bg: @brand-primary;\n\n@panel-success-text: @state-success-text;\n@panel-success-border: @state-success-border;\n@panel-success-heading-bg: @state-success-bg;\n\n@panel-info-text: @state-info-text;\n@panel-info-border: @state-info-border;\n@panel-info-heading-bg: @state-info-bg;\n\n@panel-warning-text: @state-warning-text;\n@panel-warning-border: @state-warning-border;\n@panel-warning-heading-bg: @state-warning-bg;\n\n@panel-danger-text: @state-danger-text;\n@panel-danger-border: @state-danger-border;\n@panel-danger-heading-bg: @state-danger-bg;\n\n\n//== Thumbnails\n//\n//##\n\n//** Padding around the thumbnail image\n@thumbnail-padding: 4px;\n//** Thumbnail background color\n@thumbnail-bg: @body-bg;\n//** Thumbnail border color\n@thumbnail-border: #ddd;\n//** Thumbnail border radius\n@thumbnail-border-radius: @border-radius-base;\n\n//** Custom text color for thumbnail captions\n@thumbnail-caption-color: @text-color;\n//** Padding around the thumbnail caption\n@thumbnail-caption-padding: 9px;\n\n\n//== Wells\n//\n//##\n\n@well-bg: #f5f5f5;\n@well-border: darken(@well-bg, 7%);\n\n\n//== Badges\n//\n//##\n\n@badge-color: #fff;\n//** Linked badge text color on hover\n@badge-link-hover-color: #fff;\n@badge-bg: @gray-light;\n\n//** Badge text color in active nav link\n@badge-active-color: @link-color;\n//** Badge background color in active nav link\n@badge-active-bg: #fff;\n\n@badge-font-weight: bold;\n@badge-line-height: 1;\n@badge-border-radius: 10px;\n\n\n//== Breadcrumbs\n//\n//##\n\n@breadcrumb-padding-vertical: 8px;\n@breadcrumb-padding-horizontal: 15px;\n//** Breadcrumb background color\n@breadcrumb-bg: #f5f5f5;\n//** Breadcrumb text color\n@breadcrumb-color: #ccc;\n//** Text color of current page in the breadcrumb\n@breadcrumb-active-color: @gray-light;\n//** Textual separator for between breadcrumb elements\n@breadcrumb-separator: \"/\";\n\n\n//== Carousel\n//\n//##\n\n@carousel-text-shadow: 0 1px 2px rgba(0,0,0,.6);\n\n@carousel-control-color: #fff;\n@carousel-control-width: 15%;\n@carousel-control-opacity: .5;\n@carousel-control-font-size: 20px;\n\n@carousel-indicator-active-bg: #fff;\n@carousel-indicator-border-color: #fff;\n\n@carousel-caption-color: #fff;\n\n\n//== Close\n//\n//##\n\n@close-font-weight: bold;\n@close-color: #000;\n@close-text-shadow: 0 1px 0 #fff;\n\n\n//== Code\n//\n//##\n\n@code-color: #c7254e;\n@code-bg: #f9f2f4;\n\n@kbd-color: #fff;\n@kbd-bg: #333;\n\n@pre-bg: #f5f5f5;\n@pre-color: @gray-dark;\n@pre-border-color: #ccc;\n@pre-scrollable-max-height: 340px;\n\n\n//== Type\n//\n//##\n\n//** Text muted color\n@text-muted: @gray-light;\n//** Abbreviations and acronyms border color\n@abbr-border-color: @gray-light;\n//** Headings small color\n@headings-small-color: @gray-light;\n//** Blockquote small color\n@blockquote-small-color: @gray-light;\n//** Blockquote font size\n@blockquote-font-size: (@font-size-base * 1.25);\n//** Blockquote border color\n@blockquote-border-color: @gray-lighter;\n//** Page header border color\n@page-header-border-color: @gray-lighter;\n\n\n//== Miscellaneous\n//\n//##\n\n//** Horizontal line color.\n@hr-border: @gray-lighter;\n\n//** Horizontal offset for forms and lists.\n@component-offset-horizontal: 180px;\n","//\n// Thumbnails\n// --------------------------------------------------\n\n\n// Mixin and adjust the regular image class\n.thumbnail {\n display: block;\n padding: @thumbnail-padding;\n margin-bottom: @line-height-computed;\n line-height: @line-height-base;\n background-color: @thumbnail-bg;\n border: 1px solid @thumbnail-border;\n border-radius: @thumbnail-border-radius;\n .transition(all .2s ease-in-out);\n\n > img,\n a > img {\n &:extend(.img-responsive);\n margin-left: auto;\n margin-right: auto;\n }\n\n // Add a hover state for linked versions only\n a&:hover,\n a&:focus,\n a&.active {\n border-color: @link-color;\n }\n\n // Image captions\n .caption {\n padding: @thumbnail-caption-padding;\n color: @thumbnail-caption-color;\n }\n}\n","//\n// Carousel\n// --------------------------------------------------\n\n\n// Wrapper for the slide container and indicators\n.carousel {\n position: relative;\n}\n\n.carousel-inner {\n position: relative;\n overflow: hidden;\n width: 100%;\n\n > .item {\n display: none;\n position: relative;\n .transition(.6s ease-in-out left);\n\n // Account for jankitude on images\n > img,\n > a > img {\n &:extend(.img-responsive);\n line-height: 1;\n }\n }\n\n > .active,\n > .next,\n > .prev { display: block; }\n\n > .active {\n left: 0;\n }\n\n > .next,\n > .prev {\n position: absolute;\n top: 0;\n width: 100%;\n }\n\n > .next {\n left: 100%;\n }\n > .prev {\n left: -100%;\n }\n > .next.left,\n > .prev.right {\n left: 0;\n }\n\n > .active.left {\n left: -100%;\n }\n > .active.right {\n left: 100%;\n }\n\n}\n\n// Left/right controls for nav\n// ---------------------------\n\n.carousel-control {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n width: @carousel-control-width;\n .opacity(@carousel-control-opacity);\n font-size: @carousel-control-font-size;\n color: @carousel-control-color;\n text-align: center;\n text-shadow: @carousel-text-shadow;\n // We can't have this transition here because WebKit cancels the carousel\n // animation if you trip this while in the middle of another animation.\n\n // Set gradients for backgrounds\n &.left {\n #gradient > .horizontal(@start-color: rgba(0,0,0,.5); @end-color: rgba(0,0,0,.0001));\n }\n &.right {\n left: auto;\n right: 0;\n #gradient > .horizontal(@start-color: rgba(0,0,0,.0001); @end-color: rgba(0,0,0,.5));\n }\n\n // Hover/focus state\n &:hover,\n &:focus {\n outline: none;\n color: @carousel-control-color;\n text-decoration: none;\n .opacity(.9);\n }\n\n // Toggles\n .icon-prev,\n .icon-next,\n .glyphicon-chevron-left,\n .glyphicon-chevron-right {\n position: absolute;\n top: 50%;\n z-index: 5;\n display: inline-block;\n }\n .icon-prev,\n .glyphicon-chevron-left {\n left: 50%;\n }\n .icon-next,\n .glyphicon-chevron-right {\n right: 50%;\n }\n .icon-prev,\n .icon-next {\n width: 20px;\n height: 20px;\n margin-top: -10px;\n margin-left: -10px;\n font-family: serif;\n }\n\n .icon-prev {\n &:before {\n content: '\\2039';// SINGLE LEFT-POINTING ANGLE QUOTATION MARK (U+2039)\n }\n }\n .icon-next {\n &:before {\n content: '\\203a';// SINGLE RIGHT-POINTING ANGLE QUOTATION MARK (U+203A)\n }\n }\n}\n\n// Optional indicator pips\n//\n// Add an unordered list with the following class and add a list item for each\n// slide your carousel holds.\n\n.carousel-indicators {\n position: absolute;\n bottom: 10px;\n left: 50%;\n z-index: 15;\n width: 60%;\n margin-left: -30%;\n padding-left: 0;\n list-style: none;\n text-align: center;\n\n li {\n display: inline-block;\n width: 10px;\n height: 10px;\n margin: 1px;\n text-indent: -999px;\n border: 1px solid @carousel-indicator-border-color;\n border-radius: 10px;\n cursor: pointer;\n\n // IE8-9 hack for event handling\n //\n // Internet Explorer 8-9 does not support clicks on elements without a set\n // `background-color`. We cannot use `filter` since that's not viewed as a\n // background color by the browser. Thus, a hack is needed.\n //\n // For IE8, we set solid black as it doesn't support `rgba()`. For IE9, we\n // set alpha transparency for the best results possible.\n background-color: #000 \\9; // IE8\n background-color: rgba(0,0,0,0); // IE9\n }\n .active {\n margin: 0;\n width: 12px;\n height: 12px;\n background-color: @carousel-indicator-active-bg;\n }\n}\n\n// Optional captions\n// -----------------------------\n// Hidden by default for smaller viewports\n.carousel-caption {\n position: absolute;\n left: 15%;\n right: 15%;\n bottom: 20px;\n z-index: 10;\n padding-top: 20px;\n padding-bottom: 20px;\n color: @carousel-caption-color;\n text-align: center;\n text-shadow: @carousel-text-shadow;\n & .btn {\n text-shadow: none; // No shadow for button elements in carousel-caption\n }\n}\n\n\n// Scale up controls for tablets and up\n@media screen and (min-width: @screen-sm-min) {\n\n // Scale up the controls a smidge\n .carousel-control {\n .glyphicon-chevron-left,\n .glyphicon-chevron-right,\n .icon-prev,\n .icon-next {\n width: 30px;\n height: 30px;\n margin-top: -15px;\n margin-left: -15px;\n font-size: 30px;\n }\n }\n\n // Show and left align the captions\n .carousel-caption {\n left: 20%;\n right: 20%;\n padding-bottom: 30px;\n }\n\n // Move up the indicators\n .carousel-indicators {\n bottom: 20px;\n }\n}\n","//\n// Typography\n// --------------------------------------------------\n\n\n// Headings\n// -------------------------\n\nh1, h2, h3, h4, h5, h6,\n.h1, .h2, .h3, .h4, .h5, .h6 {\n font-family: @headings-font-family;\n font-weight: @headings-font-weight;\n line-height: @headings-line-height;\n color: @headings-color;\n\n small,\n .small {\n font-weight: normal;\n line-height: 1;\n color: @headings-small-color;\n }\n}\n\nh1, .h1,\nh2, .h2,\nh3, .h3 {\n margin-top: @line-height-computed;\n margin-bottom: (@line-height-computed / 2);\n\n small,\n .small {\n font-size: 65%;\n }\n}\nh4, .h4,\nh5, .h5,\nh6, .h6 {\n margin-top: (@line-height-computed / 2);\n margin-bottom: (@line-height-computed / 2);\n\n small,\n .small {\n font-size: 75%;\n }\n}\n\nh1, .h1 { font-size: @font-size-h1; }\nh2, .h2 { font-size: @font-size-h2; }\nh3, .h3 { font-size: @font-size-h3; }\nh4, .h4 { font-size: @font-size-h4; }\nh5, .h5 { font-size: @font-size-h5; }\nh6, .h6 { font-size: @font-size-h6; }\n\n\n// Body text\n// -------------------------\n\np {\n margin: 0 0 (@line-height-computed / 2);\n}\n\n.lead {\n margin-bottom: @line-height-computed;\n font-size: floor((@font-size-base * 1.15));\n font-weight: 200;\n line-height: 1.4;\n\n @media (min-width: @screen-sm-min) {\n font-size: (@font-size-base * 1.5);\n }\n}\n\n\n// Emphasis & misc\n// -------------------------\n\n// Ex: 14px base font * 85% = about 12px\nsmall,\n.small { font-size: 85%; }\n\n// Undo browser default styling\ncite { font-style: normal; }\n\n// Alignment\n.text-left { text-align: left; }\n.text-right { text-align: right; }\n.text-center { text-align: center; }\n.text-justify { text-align: justify; }\n\n// Contextual colors\n.text-muted {\n color: @text-muted;\n}\n.text-primary {\n .text-emphasis-variant(@brand-primary);\n}\n.text-success {\n .text-emphasis-variant(@state-success-text);\n}\n.text-info {\n .text-emphasis-variant(@state-info-text);\n}\n.text-warning {\n .text-emphasis-variant(@state-warning-text);\n}\n.text-danger {\n .text-emphasis-variant(@state-danger-text);\n}\n\n// Contextual backgrounds\n// For now we'll leave these alongside the text classes until v4 when we can\n// safely shift things around (per SemVer rules).\n.bg-primary {\n // Given the contrast here, this is the only class to have its color inverted\n // automatically.\n color: #fff;\n .bg-variant(@brand-primary);\n}\n.bg-success {\n .bg-variant(@state-success-bg);\n}\n.bg-info {\n .bg-variant(@state-info-bg);\n}\n.bg-warning {\n .bg-variant(@state-warning-bg);\n}\n.bg-danger {\n .bg-variant(@state-danger-bg);\n}\n\n\n// Page header\n// -------------------------\n\n.page-header {\n padding-bottom: ((@line-height-computed / 2) - 1);\n margin: (@line-height-computed * 2) 0 @line-height-computed;\n border-bottom: 1px solid @page-header-border-color;\n}\n\n\n// Lists\n// --------------------------------------------------\n\n// Unordered and Ordered lists\nul,\nol {\n margin-top: 0;\n margin-bottom: (@line-height-computed / 2);\n ul,\n ol {\n margin-bottom: 0;\n }\n}\n\n// List options\n\n// Unstyled keeps list items block level, just removes default browser padding and list-style\n.list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n\n// Inline turns list items into inline-block\n.list-inline {\n .list-unstyled();\n margin-left: -5px;\n\n > li {\n display: inline-block;\n padding-left: 5px;\n padding-right: 5px;\n }\n}\n\n// Description Lists\ndl {\n margin-top: 0; // Remove browser default\n margin-bottom: @line-height-computed;\n}\ndt,\ndd {\n line-height: @line-height-base;\n}\ndt {\n font-weight: bold;\n}\ndd {\n margin-left: 0; // Undo browser default\n}\n\n// Horizontal description lists\n//\n// Defaults to being stacked without any of the below styles applied, until the\n// grid breakpoint is reached (default of ~768px).\n\n@media (min-width: @grid-float-breakpoint) {\n .dl-horizontal {\n dt {\n float: left;\n width: (@component-offset-horizontal - 20);\n clear: left;\n text-align: right;\n .text-overflow();\n }\n dd {\n margin-left: @component-offset-horizontal;\n &:extend(.clearfix all); // Clear the floated `dt` if an empty `dd` is present\n }\n }\n}\n\n// MISC\n// ----\n\n// Abbreviations and acronyms\nabbr[title],\n// Add data-* attribute to help out our tooltip plugin, per https://github.com/twbs/bootstrap/issues/5257\nabbr[data-original-title] {\n cursor: help;\n border-bottom: 1px dotted @abbr-border-color;\n}\n.initialism {\n font-size: 90%;\n text-transform: uppercase;\n}\n\n// Blockquotes\nblockquote {\n padding: (@line-height-computed / 2) @line-height-computed;\n margin: 0 0 @line-height-computed;\n font-size: @blockquote-font-size;\n border-left: 5px solid @blockquote-border-color;\n\n p,\n ul,\n ol {\n &:last-child {\n margin-bottom: 0;\n }\n }\n\n // Note: Deprecated small and .small as of v3.1.0\n // Context: https://github.com/twbs/bootstrap/issues/11660\n footer,\n small,\n .small {\n display: block;\n font-size: 80%; // back to default font-size\n line-height: @line-height-base;\n color: @blockquote-small-color;\n\n &:before {\n content: '\\2014 \\00A0'; // em dash, nbsp\n }\n }\n}\n\n// Opposite alignment of blockquote\n//\n// Heads up: `blockquote.pull-right` has been deprecated as of v3.1.0.\n.blockquote-reverse,\nblockquote.pull-right {\n padding-right: 15px;\n padding-left: 0;\n border-right: 5px solid @blockquote-border-color;\n border-left: 0;\n text-align: right;\n\n // Account for citation\n footer,\n small,\n .small {\n &:before { content: ''; }\n &:after {\n content: '\\00A0 \\2014'; // nbsp, em dash\n }\n }\n}\n\n// Quotes\nblockquote:before,\nblockquote:after {\n content: \"\";\n}\n\n// Addresses\naddress {\n margin-bottom: @line-height-computed;\n font-style: normal;\n line-height: @line-height-base;\n}\n","//\n// Code (inline and block)\n// --------------------------------------------------\n\n\n// Inline and block code styles\ncode,\nkbd,\npre,\nsamp {\n font-family: @font-family-monospace;\n}\n\n// Inline code\ncode {\n padding: 2px 4px;\n font-size: 90%;\n color: @code-color;\n background-color: @code-bg;\n white-space: nowrap;\n border-radius: @border-radius-base;\n}\n\n// User input typically entered via keyboard\nkbd {\n padding: 2px 4px;\n font-size: 90%;\n color: @kbd-color;\n background-color: @kbd-bg;\n border-radius: @border-radius-small;\n box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);\n}\n\n// Blocks of code\npre {\n display: block;\n padding: ((@line-height-computed - 1) / 2);\n margin: 0 0 (@line-height-computed / 2);\n font-size: (@font-size-base - 1); // 14px to 13px\n line-height: @line-height-base;\n word-break: break-all;\n word-wrap: break-word;\n color: @pre-color;\n background-color: @pre-bg;\n border: 1px solid @pre-border-color;\n border-radius: @border-radius-base;\n\n // Account for some code outputs that place code tags in pre tags\n code {\n padding: 0;\n font-size: inherit;\n color: inherit;\n white-space: pre-wrap;\n background-color: transparent;\n border-radius: 0;\n }\n}\n\n// Enable scrollable blocks of code\n.pre-scrollable {\n max-height: @pre-scrollable-max-height;\n overflow-y: scroll;\n}\n","//\n// Grid system\n// --------------------------------------------------\n\n\n// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n.container {\n .container-fixed();\n\n @media (min-width: @screen-sm-min) {\n width: @container-sm;\n }\n @media (min-width: @screen-md-min) {\n width: @container-md;\n }\n @media (min-width: @screen-lg-min) {\n width: @container-lg;\n }\n}\n\n\n// Fluid container\n//\n// Utilizes the mixin meant for fixed width containers, but without any defined\n// width for fluid, full width layouts.\n\n.container-fluid {\n .container-fixed();\n}\n\n\n// Row\n//\n// Rows contain and clear the floats of your columns.\n\n.row {\n .make-row();\n}\n\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n.make-grid-columns();\n\n\n// Extra small grid\n//\n// Columns, offsets, pushes, and pulls for extra small devices like\n// smartphones.\n\n.make-grid(xs);\n\n\n// Small grid\n//\n// Columns, offsets, pushes, and pulls for the small device range, from phones\n// to tablets.\n\n@media (min-width: @screen-sm-min) {\n .make-grid(sm);\n}\n\n\n// Medium grid\n//\n// Columns, offsets, pushes, and pulls for the desktop device range.\n\n@media (min-width: @screen-md-min) {\n .make-grid(md);\n}\n\n\n// Large grid\n//\n// Columns, offsets, pushes, and pulls for the large desktop device range.\n\n@media (min-width: @screen-lg-min) {\n .make-grid(lg);\n}\n","//\n// Tables\n// --------------------------------------------------\n\n\ntable {\n max-width: 100%;\n background-color: @table-bg;\n}\nth {\n text-align: left;\n}\n\n\n// Baseline styles\n\n.table {\n width: 100%;\n margin-bottom: @line-height-computed;\n // Cells\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n padding: @table-cell-padding;\n line-height: @line-height-base;\n vertical-align: top;\n border-top: 1px solid @table-border-color;\n }\n }\n }\n // Bottom align for column headings\n > thead > tr > th {\n vertical-align: bottom;\n border-bottom: 2px solid @table-border-color;\n }\n // Remove top border from thead by default\n > caption + thead,\n > colgroup + thead,\n > thead:first-child {\n > tr:first-child {\n > th,\n > td {\n border-top: 0;\n }\n }\n }\n // Account for multiple tbody instances\n > tbody + tbody {\n border-top: 2px solid @table-border-color;\n }\n\n // Nesting\n .table {\n background-color: @body-bg;\n }\n}\n\n\n// Condensed table w/ half padding\n\n.table-condensed {\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n padding: @table-condensed-cell-padding;\n }\n }\n }\n}\n\n\n// Bordered version\n//\n// Add borders all around the table and between all the columns.\n\n.table-bordered {\n border: 1px solid @table-border-color;\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n border: 1px solid @table-border-color;\n }\n }\n }\n > thead > tr {\n > th,\n > td {\n border-bottom-width: 2px;\n }\n }\n}\n\n\n// Zebra-striping\n//\n// Default zebra-stripe styles (alternating gray and transparent backgrounds)\n\n.table-striped {\n > tbody > tr:nth-child(odd) {\n > td,\n > th {\n background-color: @table-bg-accent;\n }\n }\n}\n\n\n// Hover effect\n//\n// Placed here since it has to come after the potential zebra striping\n\n.table-hover {\n > tbody > tr:hover {\n > td,\n > th {\n background-color: @table-bg-hover;\n }\n }\n}\n\n\n// Table cell sizing\n//\n// Reset default table behavior\n\ntable col[class*=\"col-\"] {\n position: static; // Prevent border hiding in Firefox and IE9/10 (see https://github.com/twbs/bootstrap/issues/11623)\n float: none;\n display: table-column;\n}\ntable {\n td,\n th {\n &[class*=\"col-\"] {\n position: static; // Prevent border hiding in Firefox and IE9/10 (see https://github.com/twbs/bootstrap/issues/11623)\n float: none;\n display: table-cell;\n }\n }\n}\n\n\n// Table backgrounds\n//\n// Exact selectors below required to override `.table-striped` and prevent\n// inheritance to nested tables.\n\n// Generate the contextual variants\n.table-row-variant(active; @table-bg-active);\n.table-row-variant(success; @state-success-bg);\n.table-row-variant(info; @state-info-bg);\n.table-row-variant(warning; @state-warning-bg);\n.table-row-variant(danger; @state-danger-bg);\n\n\n// Responsive tables\n//\n// Wrap your tables in `.table-responsive` and we'll make them mobile friendly\n// by enabling horizontal scrolling. Only applies <768px. Everything above that\n// will display normally.\n\n@media (max-width: @screen-xs-max) {\n .table-responsive {\n width: 100%;\n margin-bottom: (@line-height-computed * 0.75);\n overflow-y: hidden;\n overflow-x: scroll;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n border: 1px solid @table-border-color;\n -webkit-overflow-scrolling: touch;\n\n // Tighten up spacing\n > .table {\n margin-bottom: 0;\n\n // Ensure the content doesn't wrap\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n white-space: nowrap;\n }\n }\n }\n }\n\n // Special overrides for the bordered tables\n > .table-bordered {\n border: 0;\n\n // Nuke the appropriate borders so that the parent can handle them\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th:first-child,\n > td:first-child {\n border-left: 0;\n }\n > th:last-child,\n > td:last-child {\n border-right: 0;\n }\n }\n }\n\n // Only nuke the last row's bottom-border in `tbody` and `tfoot` since\n // chances are there will be only one `tr` in a `thead` and that would\n // remove the border altogether.\n > tbody,\n > tfoot {\n > tr:last-child {\n > th,\n > td {\n border-bottom: 0;\n }\n }\n }\n\n }\n }\n}\n","//\n// Forms\n// --------------------------------------------------\n\n\n// Normalize non-controls\n//\n// Restyle and baseline non-control form elements.\n\nfieldset {\n padding: 0;\n margin: 0;\n border: 0;\n // Chrome and Firefox set a `min-width: -webkit-min-content;` on fieldsets,\n // so we reset that to ensure it behaves more like a standard block element.\n // See https://github.com/twbs/bootstrap/issues/12359.\n min-width: 0;\n}\n\nlegend {\n display: block;\n width: 100%;\n padding: 0;\n margin-bottom: @line-height-computed;\n font-size: (@font-size-base * 1.5);\n line-height: inherit;\n color: @legend-color;\n border: 0;\n border-bottom: 1px solid @legend-border-color;\n}\n\nlabel {\n display: inline-block;\n margin-bottom: 5px;\n font-weight: bold;\n}\n\n\n// Normalize form controls\n//\n// While most of our form styles require extra classes, some basic normalization\n// is required to ensure optimum display with or without those classes to better\n// address browser inconsistencies.\n\n// Override content-box in Normalize (* isn't specific enough)\ninput[type=\"search\"] {\n .box-sizing(border-box);\n}\n\n// Position radios and checkboxes better\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n margin: 4px 0 0;\n margin-top: 1px \\9; /* IE8-9 */\n line-height: normal;\n}\n\n// Set the height of file controls to match text inputs\ninput[type=\"file\"] {\n display: block;\n}\n\n// Make range inputs behave like textual form controls\ninput[type=\"range\"] {\n display: block;\n width: 100%;\n}\n\n// Make multiple select elements height not fixed\nselect[multiple],\nselect[size] {\n height: auto;\n}\n\n// Focus for file, radio, and checkbox\ninput[type=\"file\"]:focus,\ninput[type=\"radio\"]:focus,\ninput[type=\"checkbox\"]:focus {\n .tab-focus();\n}\n\n// Adjust output element\noutput {\n display: block;\n padding-top: (@padding-base-vertical + 1);\n font-size: @font-size-base;\n line-height: @line-height-base;\n color: @input-color;\n}\n\n\n// Common form controls\n//\n// Shared size and type resets for form controls. Apply `.form-control` to any\n// of the following form controls:\n//\n// select\n// textarea\n// input[type=\"text\"]\n// input[type=\"password\"]\n// input[type=\"datetime\"]\n// input[type=\"datetime-local\"]\n// input[type=\"date\"]\n// input[type=\"month\"]\n// input[type=\"time\"]\n// input[type=\"week\"]\n// input[type=\"number\"]\n// input[type=\"email\"]\n// input[type=\"url\"]\n// input[type=\"search\"]\n// input[type=\"tel\"]\n// input[type=\"color\"]\n\n.form-control {\n display: block;\n width: 100%;\n height: @input-height-base; // Make inputs at least the height of their button counterpart (base line-height + padding + border)\n padding: @padding-base-vertical @padding-base-horizontal;\n font-size: @font-size-base;\n line-height: @line-height-base;\n color: @input-color;\n background-color: @input-bg;\n background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n border: 1px solid @input-border;\n border-radius: @input-border-radius;\n .box-shadow(inset 0 1px 1px rgba(0,0,0,.075));\n .transition(~\"border-color ease-in-out .15s, box-shadow ease-in-out .15s\");\n\n // Customize the `:focus` state to imitate native WebKit styles.\n .form-control-focus();\n\n // Placeholder\n .placeholder();\n\n // Disabled and read-only inputs\n //\n // HTML5 says that controls under a fieldset > legend:first-child won't be\n // disabled if the fieldset is disabled. Due to implementation difficulty, we\n // don't honor that edge case; we style them as disabled anyway.\n &[disabled],\n &[readonly],\n fieldset[disabled] & {\n cursor: not-allowed;\n background-color: @input-bg-disabled;\n opacity: 1; // iOS fix for unreadable disabled content\n }\n\n // Reset height for `textarea`s\n textarea& {\n height: auto;\n }\n}\n\n\n// Search inputs in iOS\n//\n// This overrides the extra rounded corners on search inputs in iOS so that our\n// `.form-control` class can properly style them. Note that this cannot simply\n// be added to `.form-control` as it's not specific enough. For details, see\n// https://github.com/twbs/bootstrap/issues/11586.\n\ninput[type=\"search\"] {\n -webkit-appearance: none;\n}\n\n\n// Special styles for iOS date input\n//\n// In Mobile Safari, date inputs require a pixel line-height that matches the\n// given height of the input.\n\ninput[type=\"date\"] {\n line-height: @input-height-base;\n}\n\n\n// Form groups\n//\n// Designed to help with the organization and spacing of vertical forms. For\n// horizontal forms, use the predefined grid classes.\n\n.form-group {\n margin-bottom: 15px;\n}\n\n\n// Checkboxes and radios\n//\n// Indent the labels to position radios/checkboxes as hanging controls.\n\n.radio,\n.checkbox {\n display: block;\n min-height: @line-height-computed; // clear the floating input if there is no label text\n margin-top: 10px;\n margin-bottom: 10px;\n padding-left: 20px;\n label {\n display: inline;\n font-weight: normal;\n cursor: pointer;\n }\n}\n.radio input[type=\"radio\"],\n.radio-inline input[type=\"radio\"],\n.checkbox input[type=\"checkbox\"],\n.checkbox-inline input[type=\"checkbox\"] {\n float: left;\n margin-left: -20px;\n}\n.radio + .radio,\n.checkbox + .checkbox {\n margin-top: -5px; // Move up sibling radios or checkboxes for tighter spacing\n}\n\n// Radios and checkboxes on same line\n.radio-inline,\n.checkbox-inline {\n display: inline-block;\n padding-left: 20px;\n margin-bottom: 0;\n vertical-align: middle;\n font-weight: normal;\n cursor: pointer;\n}\n.radio-inline + .radio-inline,\n.checkbox-inline + .checkbox-inline {\n margin-top: 0;\n margin-left: 10px; // space out consecutive inline controls\n}\n\n// Apply same disabled cursor tweak as for inputs\n//\n// Note: Neither radios nor checkboxes can be readonly.\ninput[type=\"radio\"],\ninput[type=\"checkbox\"],\n.radio,\n.radio-inline,\n.checkbox,\n.checkbox-inline {\n &[disabled],\n fieldset[disabled] & {\n cursor: not-allowed;\n }\n}\n\n\n// Form control sizing\n//\n// Build on `.form-control` with modifier classes to decrease or increase the\n// height and font-size of form controls.\n\n.input-sm {\n .input-size(@input-height-small; @padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-small);\n}\n\n.input-lg {\n .input-size(@input-height-large; @padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @border-radius-large);\n}\n\n\n// Form control feedback states\n//\n// Apply contextual and semantic states to individual form controls.\n\n.has-feedback {\n // Enable absolute positioning\n position: relative;\n\n // Ensure icons don't overlap text\n .form-control {\n padding-right: (@input-height-base * 1.25);\n }\n\n // Feedback icon (requires .glyphicon classes)\n .form-control-feedback {\n position: absolute;\n top: (@line-height-computed + 5); // Height of the `label` and its margin\n right: 0;\n display: block;\n width: @input-height-base;\n height: @input-height-base;\n line-height: @input-height-base;\n text-align: center;\n }\n}\n\n// Feedback states\n.has-success {\n .form-control-validation(@state-success-text; @state-success-text; @state-success-bg);\n}\n.has-warning {\n .form-control-validation(@state-warning-text; @state-warning-text; @state-warning-bg);\n}\n.has-error {\n .form-control-validation(@state-danger-text; @state-danger-text; @state-danger-bg);\n}\n\n\n// Static form control text\n//\n// Apply class to a `p` element to make any string of text align with labels in\n// a horizontal form layout.\n\n.form-control-static {\n margin-bottom: 0; // Remove default margin from `p`\n}\n\n\n// Help text\n//\n// Apply to any element you wish to create light text for placement immediately\n// below a form control. Use for general help, formatting, or instructional text.\n\n.help-block {\n display: block; // account for any element using help-block\n margin-top: 5px;\n margin-bottom: 10px;\n color: lighten(@text-color, 25%); // lighten the text some for contrast\n}\n\n\n\n// Inline forms\n//\n// Make forms appear inline(-block) by adding the `.form-inline` class. Inline\n// forms begin stacked on extra small (mobile) devices and then go inline when\n// viewports reach <768px.\n//\n// Requires wrapping inputs and labels with `.form-group` for proper display of\n// default HTML form controls and our custom form controls (e.g., input groups).\n//\n// Heads up! This is mixin-ed into `.navbar-form` in navbars.less.\n\n.form-inline {\n\n // Kick in the inline\n @media (min-width: @screen-sm-min) {\n // Inline-block all the things for \"inline\"\n .form-group {\n display: inline-block;\n margin-bottom: 0;\n vertical-align: middle;\n }\n\n // In navbar-form, allow folks to *not* use `.form-group`\n .form-control {\n display: inline-block;\n width: auto; // Prevent labels from stacking above inputs in `.form-group`\n vertical-align: middle;\n }\n // Input groups need that 100% width though\n .input-group > .form-control {\n width: 100%;\n }\n\n .control-label {\n margin-bottom: 0;\n vertical-align: middle;\n }\n\n // Remove default margin on radios/checkboxes that were used for stacking, and\n // then undo the floating of radios and checkboxes to match (which also avoids\n // a bug in WebKit: https://github.com/twbs/bootstrap/issues/1969).\n .radio,\n .checkbox {\n display: inline-block;\n margin-top: 0;\n margin-bottom: 0;\n padding-left: 0;\n vertical-align: middle;\n }\n .radio input[type=\"radio\"],\n .checkbox input[type=\"checkbox\"] {\n float: none;\n margin-left: 0;\n }\n\n // Validation states\n //\n // Reposition the icon because it's now within a grid column and columns have\n // `position: relative;` on them. Also accounts for the grid gutter padding.\n .has-feedback .form-control-feedback {\n top: 0;\n }\n }\n}\n\n\n// Horizontal forms\n//\n// Horizontal forms are built on grid classes and allow you to create forms with\n// labels on the left and inputs on the right.\n\n.form-horizontal {\n\n // Consistent vertical alignment of labels, radios, and checkboxes\n .control-label,\n .radio,\n .checkbox,\n .radio-inline,\n .checkbox-inline {\n margin-top: 0;\n margin-bottom: 0;\n padding-top: (@padding-base-vertical + 1); // Default padding plus a border\n }\n // Account for padding we're adding to ensure the alignment and of help text\n // and other content below items\n .radio,\n .checkbox {\n min-height: (@line-height-computed + (@padding-base-vertical + 1));\n }\n\n // Make form groups behave like rows\n .form-group {\n .make-row();\n }\n\n .form-control-static {\n padding-top: (@padding-base-vertical + 1);\n }\n\n // Only right align form labels here when the columns stop stacking\n @media (min-width: @screen-sm-min) {\n .control-label {\n text-align: right;\n }\n }\n\n // Validation states\n //\n // Reposition the icon because it's now within a grid column and columns have\n // `position: relative;` on them. Also accounts for the grid gutter padding.\n .has-feedback .form-control-feedback {\n top: 0;\n right: (@grid-gutter-width / 2);\n }\n}\n","//\n// Buttons\n// --------------------------------------------------\n\n\n// Base styles\n// --------------------------------------------------\n\n.btn {\n display: inline-block;\n margin-bottom: 0; // For input.btn\n font-weight: @btn-font-weight;\n text-align: center;\n vertical-align: middle;\n cursor: pointer;\n background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n border: 1px solid transparent;\n white-space: nowrap;\n .button-size(@padding-base-vertical; @padding-base-horizontal; @font-size-base; @line-height-base; @border-radius-base);\n .user-select(none);\n\n &,\n &:active,\n &.active {\n &:focus {\n .tab-focus();\n }\n }\n\n &:hover,\n &:focus {\n color: @btn-default-color;\n text-decoration: none;\n }\n\n &:active,\n &.active {\n outline: 0;\n background-image: none;\n .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n }\n\n &.disabled,\n &[disabled],\n fieldset[disabled] & {\n cursor: not-allowed;\n pointer-events: none; // Future-proof disabling of clicks\n .opacity(.65);\n .box-shadow(none);\n }\n}\n\n\n// Alternate buttons\n// --------------------------------------------------\n\n.btn-default {\n .button-variant(@btn-default-color; @btn-default-bg; @btn-default-border);\n}\n.btn-primary {\n .button-variant(@btn-primary-color; @btn-primary-bg; @btn-primary-border);\n}\n// Success appears as green\n.btn-success {\n .button-variant(@btn-success-color; @btn-success-bg; @btn-success-border);\n}\n// Info appears as blue-green\n.btn-info {\n .button-variant(@btn-info-color; @btn-info-bg; @btn-info-border);\n}\n// Warning appears as orange\n.btn-warning {\n .button-variant(@btn-warning-color; @btn-warning-bg; @btn-warning-border);\n}\n// Danger and error appear as red\n.btn-danger {\n .button-variant(@btn-danger-color; @btn-danger-bg; @btn-danger-border);\n}\n\n\n// Link buttons\n// -------------------------\n\n// Make a button look and behave like a link\n.btn-link {\n color: @link-color;\n font-weight: normal;\n cursor: pointer;\n border-radius: 0;\n\n &,\n &:active,\n &[disabled],\n fieldset[disabled] & {\n background-color: transparent;\n .box-shadow(none);\n }\n &,\n &:hover,\n &:focus,\n &:active {\n border-color: transparent;\n }\n &:hover,\n &:focus {\n color: @link-hover-color;\n text-decoration: underline;\n background-color: transparent;\n }\n &[disabled],\n fieldset[disabled] & {\n &:hover,\n &:focus {\n color: @btn-link-disabled-color;\n text-decoration: none;\n }\n }\n}\n\n\n// Button Sizes\n// --------------------------------------------------\n\n.btn-lg {\n // line-height: ensure even-numbered height of button next to large input\n .button-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @border-radius-large);\n}\n.btn-sm {\n // line-height: ensure proper height of button next to small input\n .button-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-small);\n}\n.btn-xs {\n .button-size(@padding-xs-vertical; @padding-xs-horizontal; @font-size-small; @line-height-small; @border-radius-small);\n}\n\n\n// Block button\n// --------------------------------------------------\n\n.btn-block {\n display: block;\n width: 100%;\n padding-left: 0;\n padding-right: 0;\n}\n\n// Vertically space out multiple block buttons\n.btn-block + .btn-block {\n margin-top: 5px;\n}\n\n// Specificity overrides\ninput[type=\"submit\"],\ninput[type=\"reset\"],\ninput[type=\"button\"] {\n &.btn-block {\n width: 100%;\n }\n}\n","//\n// Button groups\n// --------------------------------------------------\n\n// Make the div behave like a button\n.btn-group,\n.btn-group-vertical {\n position: relative;\n display: inline-block;\n vertical-align: middle; // match .btn alignment given font-size hack above\n > .btn {\n position: relative;\n float: left;\n // Bring the \"active\" button to the front\n &:hover,\n &:focus,\n &:active,\n &.active {\n z-index: 2;\n }\n &:focus {\n // Remove focus outline when dropdown JS adds it after closing the menu\n outline: none;\n }\n }\n}\n\n// Prevent double borders when buttons are next to each other\n.btn-group {\n .btn + .btn,\n .btn + .btn-group,\n .btn-group + .btn,\n .btn-group + .btn-group {\n margin-left: -1px;\n }\n}\n\n// Optional: Group multiple button groups together for a toolbar\n.btn-toolbar {\n margin-left: -5px; // Offset the first child's margin\n &:extend(.clearfix all);\n\n .btn-group,\n .input-group {\n float: left;\n }\n > .btn,\n > .btn-group,\n > .input-group {\n margin-left: 5px;\n }\n}\n\n.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {\n border-radius: 0;\n}\n\n// Set corners individual because sometimes a single button can be in a .btn-group and we need :first-child and :last-child to both match\n.btn-group > .btn:first-child {\n margin-left: 0;\n &:not(:last-child):not(.dropdown-toggle) {\n .border-right-radius(0);\n }\n}\n// Need .dropdown-toggle since :last-child doesn't apply given a .dropdown-menu immediately after it\n.btn-group > .btn:last-child:not(:first-child),\n.btn-group > .dropdown-toggle:not(:first-child) {\n .border-left-radius(0);\n}\n\n// Custom edits for including btn-groups within btn-groups (useful for including dropdown buttons within a btn-group)\n.btn-group > .btn-group {\n float: left;\n}\n.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n}\n.btn-group > .btn-group:first-child {\n > .btn:last-child,\n > .dropdown-toggle {\n .border-right-radius(0);\n }\n}\n.btn-group > .btn-group:last-child > .btn:first-child {\n .border-left-radius(0);\n}\n\n// On active and open, don't show outline\n.btn-group .dropdown-toggle:active,\n.btn-group.open .dropdown-toggle {\n outline: 0;\n}\n\n\n// Sizing\n//\n// Remix the default button sizing classes into new ones for easier manipulation.\n\n.btn-group-xs > .btn { &:extend(.btn-xs); }\n.btn-group-sm > .btn { &:extend(.btn-sm); }\n.btn-group-lg > .btn { &:extend(.btn-lg); }\n\n\n// Split button dropdowns\n// ----------------------\n\n// Give the line between buttons some depth\n.btn-group > .btn + .dropdown-toggle {\n padding-left: 8px;\n padding-right: 8px;\n}\n.btn-group > .btn-lg + .dropdown-toggle {\n padding-left: 12px;\n padding-right: 12px;\n}\n\n// The clickable button for toggling the menu\n// Remove the gradient and set the same inset shadow as the :active state\n.btn-group.open .dropdown-toggle {\n .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n\n // Show no shadow for `.btn-link` since it has no other button styles.\n &.btn-link {\n .box-shadow(none);\n }\n}\n\n\n// Reposition the caret\n.btn .caret {\n margin-left: 0;\n}\n// Carets in other button sizes\n.btn-lg .caret {\n border-width: @caret-width-large @caret-width-large 0;\n border-bottom-width: 0;\n}\n// Upside down carets for .dropup\n.dropup .btn-lg .caret {\n border-width: 0 @caret-width-large @caret-width-large;\n}\n\n\n// Vertical button groups\n// ----------------------\n\n.btn-group-vertical {\n > .btn,\n > .btn-group,\n > .btn-group > .btn {\n display: block;\n float: none;\n width: 100%;\n max-width: 100%;\n }\n\n // Clear floats so dropdown menus can be properly placed\n > .btn-group {\n &:extend(.clearfix all);\n > .btn {\n float: none;\n }\n }\n\n > .btn + .btn,\n > .btn + .btn-group,\n > .btn-group + .btn,\n > .btn-group + .btn-group {\n margin-top: -1px;\n margin-left: 0;\n }\n}\n\n.btn-group-vertical > .btn {\n &:not(:first-child):not(:last-child) {\n border-radius: 0;\n }\n &:first-child:not(:last-child) {\n border-top-right-radius: @border-radius-base;\n .border-bottom-radius(0);\n }\n &:last-child:not(:first-child) {\n border-bottom-left-radius: @border-radius-base;\n .border-top-radius(0);\n }\n}\n.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n}\n.btn-group-vertical > .btn-group:first-child:not(:last-child) {\n > .btn:last-child,\n > .dropdown-toggle {\n .border-bottom-radius(0);\n }\n}\n.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {\n .border-top-radius(0);\n}\n\n\n\n// Justified button groups\n// ----------------------\n\n.btn-group-justified {\n display: table;\n width: 100%;\n table-layout: fixed;\n border-collapse: separate;\n > .btn,\n > .btn-group {\n float: none;\n display: table-cell;\n width: 1%;\n }\n > .btn-group .btn {\n width: 100%;\n }\n}\n\n\n// Checkbox and radio options\n[data-toggle=\"buttons\"] > .btn > input[type=\"radio\"],\n[data-toggle=\"buttons\"] > .btn > input[type=\"checkbox\"] {\n display: none;\n}\n","//\n// Component animations\n// --------------------------------------------------\n\n// Heads up!\n//\n// We don't use the `.opacity()` mixin here since it causes a bug with text\n// fields in IE7-8. Source: https://github.com/twitter/bootstrap/pull/3552.\n\n.fade {\n opacity: 0;\n .transition(opacity .15s linear);\n &.in {\n opacity: 1;\n }\n}\n\n.collapse {\n display: none;\n &.in {\n display: block;\n }\n}\n.collapsing {\n position: relative;\n height: 0;\n overflow: hidden;\n .transition(height .35s ease);\n}\n","//\n// Glyphicons for Bootstrap\n//\n// Since icons are fonts, they can be placed anywhere text is placed and are\n// thus automatically sized to match the surrounding child. To use, create an\n// inline element with the appropriate classes, like so:\n//\n// <a href=\"#\"><span class=\"glyphicon glyphicon-star\"></span> Star</a>\n\n// Import the fonts\n@font-face {\n font-family: 'Glyphicons Halflings';\n src: ~\"url('@{icon-font-path}@{icon-font-name}.eot')\";\n src: ~\"url('@{icon-font-path}@{icon-font-name}.eot?#iefix') format('embedded-opentype')\",\n ~\"url('@{icon-font-path}@{icon-font-name}.woff') format('woff')\",\n ~\"url('@{icon-font-path}@{icon-font-name}.ttf') format('truetype')\",\n ~\"url('@{icon-font-path}@{icon-font-name}.svg#@{icon-font-svg-id}') format('svg')\";\n}\n\n// Catchall baseclass\n.glyphicon {\n position: relative;\n top: 1px;\n display: inline-block;\n font-family: 'Glyphicons Halflings';\n font-style: normal;\n font-weight: normal;\n line-height: 1;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n// Individual icons\n.glyphicon-asterisk { &:before { content: \"\\2a\"; } }\n.glyphicon-plus { &:before { content: \"\\2b\"; } }\n.glyphicon-euro { &:before { content: \"\\20ac\"; } }\n.glyphicon-minus { &:before { content: \"\\2212\"; } }\n.glyphicon-cloud { &:before { content: \"\\2601\"; } }\n.glyphicon-envelope { &:before { content: \"\\2709\"; } }\n.glyphicon-pencil { &:before { content: \"\\270f\"; } }\n.glyphicon-glass { &:before { content: \"\\e001\"; } }\n.glyphicon-music { &:before { content: \"\\e002\"; } }\n.glyphicon-search { &:before { content: \"\\e003\"; } }\n.glyphicon-heart { &:before { content: \"\\e005\"; } }\n.glyphicon-star { &:before { content: \"\\e006\"; } }\n.glyphicon-star-empty { &:before { content: \"\\e007\"; } }\n.glyphicon-user { &:before { content: \"\\e008\"; } }\n.glyphicon-film { &:before { content: \"\\e009\"; } }\n.glyphicon-th-large { &:before { content: \"\\e010\"; } }\n.glyphicon-th { &:before { content: \"\\e011\"; } }\n.glyphicon-th-list { &:before { content: \"\\e012\"; } }\n.glyphicon-ok { &:before { content: \"\\e013\"; } }\n.glyphicon-remove { &:before { content: \"\\e014\"; } }\n.glyphicon-zoom-in { &:before { content: \"\\e015\"; } }\n.glyphicon-zoom-out { &:before { content: \"\\e016\"; } }\n.glyphicon-off { &:before { content: \"\\e017\"; } }\n.glyphicon-signal { &:before { content: \"\\e018\"; } }\n.glyphicon-cog { &:before { content: \"\\e019\"; } }\n.glyphicon-trash { &:before { content: \"\\e020\"; } }\n.glyphicon-home { &:before { content: \"\\e021\"; } }\n.glyphicon-file { &:before { content: \"\\e022\"; } }\n.glyphicon-time { &:before { content: \"\\e023\"; } }\n.glyphicon-road { &:before { content: \"\\e024\"; } }\n.glyphicon-download-alt { &:before { content: \"\\e025\"; } }\n.glyphicon-download { &:before { content: \"\\e026\"; } }\n.glyphicon-upload { &:before { content: \"\\e027\"; } }\n.glyphicon-inbox { &:before { content: \"\\e028\"; } }\n.glyphicon-play-circle { &:before { content: \"\\e029\"; } }\n.glyphicon-repeat { &:before { content: \"\\e030\"; } }\n.glyphicon-refresh { &:before { content: \"\\e031\"; } }\n.glyphicon-list-alt { &:before { content: \"\\e032\"; } }\n.glyphicon-lock { &:before { content: \"\\e033\"; } }\n.glyphicon-flag { &:before { content: \"\\e034\"; } }\n.glyphicon-headphones { &:before { content: \"\\e035\"; } }\n.glyphicon-volume-off { &:before { content: \"\\e036\"; } }\n.glyphicon-volume-down { &:before { content: \"\\e037\"; } }\n.glyphicon-volume-up { &:before { content: \"\\e038\"; } }\n.glyphicon-qrcode { &:before { content: \"\\e039\"; } }\n.glyphicon-barcode { &:before { content: \"\\e040\"; } }\n.glyphicon-tag { &:before { content: \"\\e041\"; } }\n.glyphicon-tags { &:before { content: \"\\e042\"; } }\n.glyphicon-book { &:before { content: \"\\e043\"; } }\n.glyphicon-bookmark { &:before { content: \"\\e044\"; } }\n.glyphicon-print { &:before { content: \"\\e045\"; } }\n.glyphicon-camera { &:before { content: \"\\e046\"; } }\n.glyphicon-font { &:before { content: \"\\e047\"; } }\n.glyphicon-bold { &:before { content: \"\\e048\"; } }\n.glyphicon-italic { &:before { content: \"\\e049\"; } }\n.glyphicon-text-height { &:before { content: \"\\e050\"; } }\n.glyphicon-text-width { &:before { content: \"\\e051\"; } }\n.glyphicon-align-left { &:before { content: \"\\e052\"; } }\n.glyphicon-align-center { &:before { content: \"\\e053\"; } }\n.glyphicon-align-right { &:before { content: \"\\e054\"; } }\n.glyphicon-align-justify { &:before { content: \"\\e055\"; } }\n.glyphicon-list { &:before { content: \"\\e056\"; } }\n.glyphicon-indent-left { &:before { content: \"\\e057\"; } }\n.glyphicon-indent-right { &:before { content: \"\\e058\"; } }\n.glyphicon-facetime-video { &:before { content: \"\\e059\"; } }\n.glyphicon-picture { &:before { content: \"\\e060\"; } }\n.glyphicon-map-marker { &:before { content: \"\\e062\"; } }\n.glyphicon-adjust { &:before { content: \"\\e063\"; } }\n.glyphicon-tint { &:before { content: \"\\e064\"; } }\n.glyphicon-edit { &:before { content: \"\\e065\"; } }\n.glyphicon-share { &:before { content: \"\\e066\"; } }\n.glyphicon-check { &:before { content: \"\\e067\"; } }\n.glyphicon-move { &:before { content: \"\\e068\"; } }\n.glyphicon-step-backward { &:before { content: \"\\e069\"; } }\n.glyphicon-fast-backward { &:before { content: \"\\e070\"; } }\n.glyphicon-backward { &:before { content: \"\\e071\"; } }\n.glyphicon-play { &:before { content: \"\\e072\"; } }\n.glyphicon-pause { &:before { content: \"\\e073\"; } }\n.glyphicon-stop { &:before { content: \"\\e074\"; } }\n.glyphicon-forward { &:before { content: \"\\e075\"; } }\n.glyphicon-fast-forward { &:before { content: \"\\e076\"; } }\n.glyphicon-step-forward { &:before { content: \"\\e077\"; } }\n.glyphicon-eject { &:before { content: \"\\e078\"; } }\n.glyphicon-chevron-left { &:before { content: \"\\e079\"; } }\n.glyphicon-chevron-right { &:before { content: \"\\e080\"; } }\n.glyphicon-plus-sign { &:before { content: \"\\e081\"; } }\n.glyphicon-minus-sign { &:before { content: \"\\e082\"; } }\n.glyphicon-remove-sign { &:before { content: \"\\e083\"; } }\n.glyphicon-ok-sign { &:before { content: \"\\e084\"; } }\n.glyphicon-question-sign { &:before { content: \"\\e085\"; } }\n.glyphicon-info-sign { &:before { content: \"\\e086\"; } }\n.glyphicon-screenshot { &:before { content: \"\\e087\"; } }\n.glyphicon-remove-circle { &:before { content: \"\\e088\"; } }\n.glyphicon-ok-circle { &:before { content: \"\\e089\"; } }\n.glyphicon-ban-circle { &:before { content: \"\\e090\"; } }\n.glyphicon-arrow-left { &:before { content: \"\\e091\"; } }\n.glyphicon-arrow-right { &:before { content: \"\\e092\"; } }\n.glyphicon-arrow-up { &:before { content: \"\\e093\"; } }\n.glyphicon-arrow-down { &:before { content: \"\\e094\"; } }\n.glyphicon-share-alt { &:before { content: \"\\e095\"; } }\n.glyphicon-resize-full { &:before { content: \"\\e096\"; } }\n.glyphicon-resize-small { &:before { content: \"\\e097\"; } }\n.glyphicon-exclamation-sign { &:before { content: \"\\e101\"; } }\n.glyphicon-gift { &:before { content: \"\\e102\"; } }\n.glyphicon-leaf { &:before { content: \"\\e103\"; } }\n.glyphicon-fire { &:before { content: \"\\e104\"; } }\n.glyphicon-eye-open { &:before { content: \"\\e105\"; } }\n.glyphicon-eye-close { &:before { content: \"\\e106\"; } }\n.glyphicon-warning-sign { &:before { content: \"\\e107\"; } }\n.glyphicon-plane { &:before { content: \"\\e108\"; } }\n.glyphicon-calendar { &:before { content: \"\\e109\"; } }\n.glyphicon-random { &:before { content: \"\\e110\"; } }\n.glyphicon-comment { &:before { content: \"\\e111\"; } }\n.glyphicon-magnet { &:before { content: \"\\e112\"; } }\n.glyphicon-chevron-up { &:before { content: \"\\e113\"; } }\n.glyphicon-chevron-down { &:before { content: \"\\e114\"; } }\n.glyphicon-retweet { &:before { content: \"\\e115\"; } }\n.glyphicon-shopping-cart { &:before { content: \"\\e116\"; } }\n.glyphicon-folder-close { &:before { content: \"\\e117\"; } }\n.glyphicon-folder-open { &:before { content: \"\\e118\"; } }\n.glyphicon-resize-vertical { &:before { content: \"\\e119\"; } }\n.glyphicon-resize-horizontal { &:before { content: \"\\e120\"; } }\n.glyphicon-hdd { &:before { content: \"\\e121\"; } }\n.glyphicon-bullhorn { &:before { content: \"\\e122\"; } }\n.glyphicon-bell { &:before { content: \"\\e123\"; } }\n.glyphicon-certificate { &:before { content: \"\\e124\"; } }\n.glyphicon-thumbs-up { &:before { content: \"\\e125\"; } }\n.glyphicon-thumbs-down { &:before { content: \"\\e126\"; } }\n.glyphicon-hand-right { &:before { content: \"\\e127\"; } }\n.glyphicon-hand-left { &:before { content: \"\\e128\"; } }\n.glyphicon-hand-up { &:before { content: \"\\e129\"; } }\n.glyphicon-hand-down { &:before { content: \"\\e130\"; } }\n.glyphicon-circle-arrow-right { &:before { content: \"\\e131\"; } }\n.glyphicon-circle-arrow-left { &:before { content: \"\\e132\"; } }\n.glyphicon-circle-arrow-up { &:before { content: \"\\e133\"; } }\n.glyphicon-circle-arrow-down { &:before { content: \"\\e134\"; } }\n.glyphicon-globe { &:before { content: \"\\e135\"; } }\n.glyphicon-wrench { &:before { content: \"\\e136\"; } }\n.glyphicon-tasks { &:before { content: \"\\e137\"; } }\n.glyphicon-filter { &:before { content: \"\\e138\"; } }\n.glyphicon-briefcase { &:before { content: \"\\e139\"; } }\n.glyphicon-fullscreen { &:before { content: \"\\e140\"; } }\n.glyphicon-dashboard { &:before { content: \"\\e141\"; } }\n.glyphicon-paperclip { &:before { content: \"\\e142\"; } }\n.glyphicon-heart-empty { &:before { content: \"\\e143\"; } }\n.glyphicon-link { &:before { content: \"\\e144\"; } }\n.glyphicon-phone { &:before { content: \"\\e145\"; } }\n.glyphicon-pushpin { &:before { content: \"\\e146\"; } }\n.glyphicon-usd { &:before { content: \"\\e148\"; } }\n.glyphicon-gbp { &:before { content: \"\\e149\"; } }\n.glyphicon-sort { &:before { content: \"\\e150\"; } }\n.glyphicon-sort-by-alphabet { &:before { content: \"\\e151\"; } }\n.glyphicon-sort-by-alphabet-alt { &:before { content: \"\\e152\"; } }\n.glyphicon-sort-by-order { &:before { content: \"\\e153\"; } }\n.glyphicon-sort-by-order-alt { &:before { content: \"\\e154\"; } }\n.glyphicon-sort-by-attributes { &:before { content: \"\\e155\"; } }\n.glyphicon-sort-by-attributes-alt { &:before { content: \"\\e156\"; } }\n.glyphicon-unchecked { &:before { content: \"\\e157\"; } }\n.glyphicon-expand { &:before { content: \"\\e158\"; } }\n.glyphicon-collapse-down { &:before { content: \"\\e159\"; } }\n.glyphicon-collapse-up { &:before { content: \"\\e160\"; } }\n.glyphicon-log-in { &:before { content: \"\\e161\"; } }\n.glyphicon-flash { &:before { content: \"\\e162\"; } }\n.glyphicon-log-out { &:before { content: \"\\e163\"; } }\n.glyphicon-new-window { &:before { content: \"\\e164\"; } }\n.glyphicon-record { &:before { content: \"\\e165\"; } }\n.glyphicon-save { &:before { content: \"\\e166\"; } }\n.glyphicon-open { &:before { content: \"\\e167\"; } }\n.glyphicon-saved { &:before { content: \"\\e168\"; } }\n.glyphicon-import { &:before { content: \"\\e169\"; } }\n.glyphicon-export { &:before { content: \"\\e170\"; } }\n.glyphicon-send { &:before { content: \"\\e171\"; } }\n.glyphicon-floppy-disk { &:before { content: \"\\e172\"; } }\n.glyphicon-floppy-saved { &:before { content: \"\\e173\"; } }\n.glyphicon-floppy-remove { &:before { content: \"\\e174\"; } }\n.glyphicon-floppy-save { &:before { content: \"\\e175\"; } }\n.glyphicon-floppy-open { &:before { content: \"\\e176\"; } }\n.glyphicon-credit-card { &:before { content: \"\\e177\"; } }\n.glyphicon-transfer { &:before { content: \"\\e178\"; } }\n.glyphicon-cutlery { &:before { content: \"\\e179\"; } }\n.glyphicon-header { &:before { content: \"\\e180\"; } }\n.glyphicon-compressed { &:before { content: \"\\e181\"; } }\n.glyphicon-earphone { &:before { content: \"\\e182\"; } }\n.glyphicon-phone-alt { &:before { content: \"\\e183\"; } }\n.glyphicon-tower { &:before { content: \"\\e184\"; } }\n.glyphicon-stats { &:before { content: \"\\e185\"; } }\n.glyphicon-sd-video { &:before { content: \"\\e186\"; } }\n.glyphicon-hd-video { &:before { content: \"\\e187\"; } }\n.glyphicon-subtitles { &:before { content: \"\\e188\"; } }\n.glyphicon-sound-stereo { &:before { content: \"\\e189\"; } }\n.glyphicon-sound-dolby { &:before { content: \"\\e190\"; } }\n.glyphicon-sound-5-1 { &:before { content: \"\\e191\"; } }\n.glyphicon-sound-6-1 { &:before { content: \"\\e192\"; } }\n.glyphicon-sound-7-1 { &:before { content: \"\\e193\"; } }\n.glyphicon-copyright-mark { &:before { content: \"\\e194\"; } }\n.glyphicon-registration-mark { &:before { content: \"\\e195\"; } }\n.glyphicon-cloud-download { &:before { content: \"\\e197\"; } }\n.glyphicon-cloud-upload { &:before { content: \"\\e198\"; } }\n.glyphicon-tree-conifer { &:before { content: \"\\e199\"; } }\n.glyphicon-tree-deciduous { &:before { content: \"\\e200\"; } }\n","//\n// Dropdown menus\n// --------------------------------------------------\n\n\n// Dropdown arrow/caret\n.caret {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 2px;\n vertical-align: middle;\n border-top: @caret-width-base solid;\n border-right: @caret-width-base solid transparent;\n border-left: @caret-width-base solid transparent;\n}\n\n// The dropdown wrapper (div)\n.dropdown {\n position: relative;\n}\n\n// Prevent the focus on the dropdown toggle when closing dropdowns\n.dropdown-toggle:focus {\n outline: 0;\n}\n\n// The dropdown menu (ul)\n.dropdown-menu {\n position: absolute;\n top: 100%;\n left: 0;\n z-index: @zindex-dropdown;\n display: none; // none by default, but block on \"open\" of the menu\n float: left;\n min-width: 160px;\n padding: 5px 0;\n margin: 2px 0 0; // override default ul\n list-style: none;\n font-size: @font-size-base;\n background-color: @dropdown-bg;\n border: 1px solid @dropdown-fallback-border; // IE8 fallback\n border: 1px solid @dropdown-border;\n border-radius: @border-radius-base;\n .box-shadow(0 6px 12px rgba(0,0,0,.175));\n background-clip: padding-box;\n\n // Aligns the dropdown menu to right\n //\n // Deprecated as of 3.1.0 in favor of `.dropdown-menu-[dir]`\n &.pull-right {\n right: 0;\n left: auto;\n }\n\n // Dividers (basically an hr) within the dropdown\n .divider {\n .nav-divider(@dropdown-divider-bg);\n }\n\n // Links within the dropdown menu\n > li > a {\n display: block;\n padding: 3px 20px;\n clear: both;\n font-weight: normal;\n line-height: @line-height-base;\n color: @dropdown-link-color;\n white-space: nowrap; // prevent links from randomly breaking onto new lines\n }\n}\n\n// Hover/Focus state\n.dropdown-menu > li > a {\n &:hover,\n &:focus {\n text-decoration: none;\n color: @dropdown-link-hover-color;\n background-color: @dropdown-link-hover-bg;\n }\n}\n\n// Active state\n.dropdown-menu > .active > a {\n &,\n &:hover,\n &:focus {\n color: @dropdown-link-active-color;\n text-decoration: none;\n outline: 0;\n background-color: @dropdown-link-active-bg;\n }\n}\n\n// Disabled state\n//\n// Gray out text and ensure the hover/focus state remains gray\n\n.dropdown-menu > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @dropdown-link-disabled-color;\n }\n}\n// Nuke hover/focus effects\n.dropdown-menu > .disabled > a {\n &:hover,\n &:focus {\n text-decoration: none;\n background-color: transparent;\n background-image: none; // Remove CSS gradient\n .reset-filter();\n cursor: not-allowed;\n }\n}\n\n// Open state for the dropdown\n.open {\n // Show the menu\n > .dropdown-menu {\n display: block;\n }\n\n // Remove the outline when :focus is triggered\n > a {\n outline: 0;\n }\n}\n\n// Menu positioning\n//\n// Add extra class to `.dropdown-menu` to flip the alignment of the dropdown\n// menu with the parent.\n.dropdown-menu-right {\n left: auto; // Reset the default from `.dropdown-menu`\n right: 0;\n}\n// With v3, we enabled auto-flipping if you have a dropdown within a right\n// aligned nav component. To enable the undoing of that, we provide an override\n// to restore the default dropdown menu alignment.\n//\n// This is only for left-aligning a dropdown menu within a `.navbar-right` or\n// `.pull-right` nav component.\n.dropdown-menu-left {\n left: 0;\n right: auto;\n}\n\n// Dropdown section headers\n.dropdown-header {\n display: block;\n padding: 3px 20px;\n font-size: @font-size-small;\n line-height: @line-height-base;\n color: @dropdown-header-color;\n}\n\n// Backdrop to catch body clicks on mobile, etc.\n.dropdown-backdrop {\n position: fixed;\n left: 0;\n right: 0;\n bottom: 0;\n top: 0;\n z-index: (@zindex-dropdown - 10);\n}\n\n// Right aligned dropdowns\n.pull-right > .dropdown-menu {\n right: 0;\n left: auto;\n}\n\n// Allow for dropdowns to go bottom up (aka, dropup-menu)\n//\n// Just add .dropup after the standard .dropdown class and you're set, bro.\n// TODO: abstract this so that the navbar fixed styles are not placed here?\n\n.dropup,\n.navbar-fixed-bottom .dropdown {\n // Reverse the caret\n .caret {\n border-top: 0;\n border-bottom: @caret-width-base solid;\n content: \"\";\n }\n // Different positioning for bottom up menu\n .dropdown-menu {\n top: auto;\n bottom: 100%;\n margin-bottom: 1px;\n }\n}\n\n\n// Component alignment\n//\n// Reiterate per navbar.less and the modified component alignment there.\n\n@media (min-width: @grid-float-breakpoint) {\n .navbar-right {\n .dropdown-menu {\n .dropdown-menu-right();\n }\n // Necessary for overrides of the default right aligned menu.\n // Will remove come v4 in all likelihood.\n .dropdown-menu-left {\n .dropdown-menu-left();\n }\n }\n}\n\n","//\n// Input groups\n// --------------------------------------------------\n\n// Base styles\n// -------------------------\n.input-group {\n position: relative; // For dropdowns\n display: table;\n border-collapse: separate; // prevent input groups from inheriting border styles from table cells when placed within a table\n\n // Undo padding and float of grid classes\n &[class*=\"col-\"] {\n float: none;\n padding-left: 0;\n padding-right: 0;\n }\n\n .form-control {\n // Ensure that the input is always above the *appended* addon button for\n // proper border colors.\n position: relative;\n z-index: 2;\n\n // IE9 fubars the placeholder attribute in text inputs and the arrows on\n // select elements in input groups. To fix it, we float the input. Details:\n // https://github.com/twbs/bootstrap/issues/11561#issuecomment-28936855\n float: left;\n\n width: 100%;\n margin-bottom: 0;\n }\n}\n\n// Sizing options\n//\n// Remix the default form control sizing classes into new ones for easier\n// manipulation.\n\n.input-group-lg > .form-control,\n.input-group-lg > .input-group-addon,\n.input-group-lg > .input-group-btn > .btn { .input-lg(); }\n.input-group-sm > .form-control,\n.input-group-sm > .input-group-addon,\n.input-group-sm > .input-group-btn > .btn { .input-sm(); }\n\n\n// Display as table-cell\n// -------------------------\n.input-group-addon,\n.input-group-btn,\n.input-group .form-control {\n display: table-cell;\n\n &:not(:first-child):not(:last-child) {\n border-radius: 0;\n }\n}\n// Addon and addon wrapper for buttons\n.input-group-addon,\n.input-group-btn {\n width: 1%;\n white-space: nowrap;\n vertical-align: middle; // Match the inputs\n}\n\n// Text input groups\n// -------------------------\n.input-group-addon {\n padding: @padding-base-vertical @padding-base-horizontal;\n font-size: @font-size-base;\n font-weight: normal;\n line-height: 1;\n color: @input-color;\n text-align: center;\n background-color: @input-group-addon-bg;\n border: 1px solid @input-group-addon-border-color;\n border-radius: @border-radius-base;\n\n // Sizing\n &.input-sm {\n padding: @padding-small-vertical @padding-small-horizontal;\n font-size: @font-size-small;\n border-radius: @border-radius-small;\n }\n &.input-lg {\n padding: @padding-large-vertical @padding-large-horizontal;\n font-size: @font-size-large;\n border-radius: @border-radius-large;\n }\n\n // Nuke default margins from checkboxes and radios to vertically center within.\n input[type=\"radio\"],\n input[type=\"checkbox\"] {\n margin-top: 0;\n }\n}\n\n// Reset rounded corners\n.input-group .form-control:first-child,\n.input-group-addon:first-child,\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group > .btn,\n.input-group-btn:first-child > .dropdown-toggle,\n.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {\n .border-right-radius(0);\n}\n.input-group-addon:first-child {\n border-right: 0;\n}\n.input-group .form-control:last-child,\n.input-group-addon:last-child,\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group > .btn,\n.input-group-btn:last-child > .dropdown-toggle,\n.input-group-btn:first-child > .btn:not(:first-child),\n.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {\n .border-left-radius(0);\n}\n.input-group-addon:last-child {\n border-left: 0;\n}\n\n// Button input groups\n// -------------------------\n.input-group-btn {\n position: relative;\n // Jankily prevent input button groups from wrapping with `white-space` and\n // `font-size` in combination with `inline-block` on buttons.\n font-size: 0;\n white-space: nowrap;\n\n // Negative margin for spacing, position for bringing hovered/focused/actived\n // element above the siblings.\n > .btn {\n position: relative;\n + .btn {\n margin-left: -1px;\n }\n // Bring the \"active\" button to the front\n &:hover,\n &:focus,\n &:active {\n z-index: 2;\n }\n }\n\n // Negative margin to only have a 1px border between the two\n &:first-child {\n > .btn,\n > .btn-group {\n margin-right: -1px;\n }\n }\n &:last-child {\n > .btn,\n > .btn-group {\n margin-left: -1px;\n }\n }\n}\n","//\n// Navs\n// --------------------------------------------------\n\n\n// Base class\n// --------------------------------------------------\n\n.nav {\n margin-bottom: 0;\n padding-left: 0; // Override default ul/ol\n list-style: none;\n &:extend(.clearfix all);\n\n > li {\n position: relative;\n display: block;\n\n > a {\n position: relative;\n display: block;\n padding: @nav-link-padding;\n &:hover,\n &:focus {\n text-decoration: none;\n background-color: @nav-link-hover-bg;\n }\n }\n\n // Disabled state sets text to gray and nukes hover/tab effects\n &.disabled > a {\n color: @nav-disabled-link-color;\n\n &:hover,\n &:focus {\n color: @nav-disabled-link-hover-color;\n text-decoration: none;\n background-color: transparent;\n cursor: not-allowed;\n }\n }\n }\n\n // Open dropdowns\n .open > a {\n &,\n &:hover,\n &:focus {\n background-color: @nav-link-hover-bg;\n border-color: @link-color;\n }\n }\n\n // Nav dividers (deprecated with v3.0.1)\n //\n // This should have been removed in v3 with the dropping of `.nav-list`, but\n // we missed it. We don't currently support this anywhere, but in the interest\n // of maintaining backward compatibility in case you use it, it's deprecated.\n .nav-divider {\n .nav-divider();\n }\n\n // Prevent IE8 from misplacing imgs\n //\n // See https://github.com/h5bp/html5-boilerplate/issues/984#issuecomment-3985989\n > li > a > img {\n max-width: none;\n }\n}\n\n\n// Tabs\n// -------------------------\n\n// Give the tabs something to sit on\n.nav-tabs {\n border-bottom: 1px solid @nav-tabs-border-color;\n > li {\n float: left;\n // Make the list-items overlay the bottom border\n margin-bottom: -1px;\n\n // Actual tabs (as links)\n > a {\n margin-right: 2px;\n line-height: @line-height-base;\n border: 1px solid transparent;\n border-radius: @border-radius-base @border-radius-base 0 0;\n &:hover {\n border-color: @nav-tabs-link-hover-border-color @nav-tabs-link-hover-border-color @nav-tabs-border-color;\n }\n }\n\n // Active state, and its :hover to override normal :hover\n &.active > a {\n &,\n &:hover,\n &:focus {\n color: @nav-tabs-active-link-hover-color;\n background-color: @nav-tabs-active-link-hover-bg;\n border: 1px solid @nav-tabs-active-link-hover-border-color;\n border-bottom-color: transparent;\n cursor: default;\n }\n }\n }\n // pulling this in mainly for less shorthand\n &.nav-justified {\n .nav-justified();\n .nav-tabs-justified();\n }\n}\n\n\n// Pills\n// -------------------------\n.nav-pills {\n > li {\n float: left;\n\n // Links rendered as pills\n > a {\n border-radius: @nav-pills-border-radius;\n }\n + li {\n margin-left: 2px;\n }\n\n // Active state\n &.active > a {\n &,\n &:hover,\n &:focus {\n color: @nav-pills-active-link-hover-color;\n background-color: @nav-pills-active-link-hover-bg;\n }\n }\n }\n}\n\n\n// Stacked pills\n.nav-stacked {\n > li {\n float: none;\n + li {\n margin-top: 2px;\n margin-left: 0; // no need for this gap between nav items\n }\n }\n}\n\n\n// Nav variations\n// --------------------------------------------------\n\n// Justified nav links\n// -------------------------\n\n.nav-justified {\n width: 100%;\n\n > li {\n float: none;\n > a {\n text-align: center;\n margin-bottom: 5px;\n }\n }\n\n > .dropdown .dropdown-menu {\n top: auto;\n left: auto;\n }\n\n @media (min-width: @screen-sm-min) {\n > li {\n display: table-cell;\n width: 1%;\n > a {\n margin-bottom: 0;\n }\n }\n }\n}\n\n// Move borders to anchors instead of bottom of list\n//\n// Mixin for adding on top the shared `.nav-justified` styles for our tabs\n.nav-tabs-justified {\n border-bottom: 0;\n\n > li > a {\n // Override margin from .nav-tabs\n margin-right: 0;\n border-radius: @border-radius-base;\n }\n\n > .active > a,\n > .active > a:hover,\n > .active > a:focus {\n border: 1px solid @nav-tabs-justified-link-border-color;\n }\n\n @media (min-width: @screen-sm-min) {\n > li > a {\n border-bottom: 1px solid @nav-tabs-justified-link-border-color;\n border-radius: @border-radius-base @border-radius-base 0 0;\n }\n > .active > a,\n > .active > a:hover,\n > .active > a:focus {\n border-bottom-color: @nav-tabs-justified-active-link-border-color;\n }\n }\n}\n\n\n// Tabbable tabs\n// -------------------------\n\n// Hide tabbable panes to start, show them when `.active`\n.tab-content {\n > .tab-pane {\n display: none;\n }\n > .active {\n display: block;\n }\n}\n\n\n// Dropdowns\n// -------------------------\n\n// Specific dropdowns\n.nav-tabs .dropdown-menu {\n // make dropdown border overlap tab border\n margin-top: -1px;\n // Remove the top rounded corners here since there is a hard edge above the menu\n .border-top-radius(0);\n}\n","//\n// Navbars\n// --------------------------------------------------\n\n\n// Wrapper and base class\n//\n// Provide a static navbar from which we expand to create full-width, fixed, and\n// other navbar variations.\n\n.navbar {\n position: relative;\n min-height: @navbar-height; // Ensure a navbar always shows (e.g., without a .navbar-brand in collapsed mode)\n margin-bottom: @navbar-margin-bottom;\n border: 1px solid transparent;\n\n // Prevent floats from breaking the navbar\n &:extend(.clearfix all);\n\n @media (min-width: @grid-float-breakpoint) {\n border-radius: @navbar-border-radius;\n }\n}\n\n\n// Navbar heading\n//\n// Groups `.navbar-brand` and `.navbar-toggle` into a single component for easy\n// styling of responsive aspects.\n\n.navbar-header {\n &:extend(.clearfix all);\n\n @media (min-width: @grid-float-breakpoint) {\n float: left;\n }\n}\n\n\n// Navbar collapse (body)\n//\n// Group your navbar content into this for easy collapsing and expanding across\n// various device sizes. By default, this content is collapsed when <768px, but\n// will expand past that for a horizontal display.\n//\n// To start (on mobile devices) the navbar links, forms, and buttons are stacked\n// vertically and include a `max-height` to overflow in case you have too much\n// content for the user's viewport.\n\n.navbar-collapse {\n max-height: @navbar-collapse-max-height;\n overflow-x: visible;\n padding-right: @navbar-padding-horizontal;\n padding-left: @navbar-padding-horizontal;\n border-top: 1px solid transparent;\n box-shadow: inset 0 1px 0 rgba(255,255,255,.1);\n &:extend(.clearfix all);\n -webkit-overflow-scrolling: touch;\n\n &.in {\n overflow-y: auto;\n }\n\n @media (min-width: @grid-float-breakpoint) {\n width: auto;\n border-top: 0;\n box-shadow: none;\n\n &.collapse {\n display: block !important;\n height: auto !important;\n padding-bottom: 0; // Override default setting\n overflow: visible !important;\n }\n\n &.in {\n overflow-y: visible;\n }\n\n // Undo the collapse side padding for navbars with containers to ensure\n // alignment of right-aligned contents.\n .navbar-fixed-top &,\n .navbar-static-top &,\n .navbar-fixed-bottom & {\n padding-left: 0;\n padding-right: 0;\n }\n }\n}\n\n\n// Both navbar header and collapse\n//\n// When a container is present, change the behavior of the header and collapse.\n\n.container,\n.container-fluid {\n > .navbar-header,\n > .navbar-collapse {\n margin-right: -@navbar-padding-horizontal;\n margin-left: -@navbar-padding-horizontal;\n\n @media (min-width: @grid-float-breakpoint) {\n margin-right: 0;\n margin-left: 0;\n }\n }\n}\n\n\n//\n// Navbar alignment options\n//\n// Display the navbar across the entirety of the page or fixed it to the top or\n// bottom of the page.\n\n// Static top (unfixed, but 100% wide) navbar\n.navbar-static-top {\n z-index: @zindex-navbar;\n border-width: 0 0 1px;\n\n @media (min-width: @grid-float-breakpoint) {\n border-radius: 0;\n }\n}\n\n// Fix the top/bottom navbars when screen real estate supports it\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n position: fixed;\n right: 0;\n left: 0;\n z-index: @zindex-navbar-fixed;\n\n // Undo the rounded corners\n @media (min-width: @grid-float-breakpoint) {\n border-radius: 0;\n }\n}\n.navbar-fixed-top {\n top: 0;\n border-width: 0 0 1px;\n}\n.navbar-fixed-bottom {\n bottom: 0;\n margin-bottom: 0; // override .navbar defaults\n border-width: 1px 0 0;\n}\n\n\n// Brand/project name\n\n.navbar-brand {\n float: left;\n padding: @navbar-padding-vertical @navbar-padding-horizontal;\n font-size: @font-size-large;\n line-height: @line-height-computed;\n height: @navbar-height;\n\n &:hover,\n &:focus {\n text-decoration: none;\n }\n\n @media (min-width: @grid-float-breakpoint) {\n .navbar > .container &,\n .navbar > .container-fluid & {\n margin-left: -@navbar-padding-horizontal;\n }\n }\n}\n\n\n// Navbar toggle\n//\n// Custom button for toggling the `.navbar-collapse`, powered by the collapse\n// JavaScript plugin.\n\n.navbar-toggle {\n position: relative;\n float: right;\n margin-right: @navbar-padding-horizontal;\n padding: 9px 10px;\n .navbar-vertical-align(34px);\n background-color: transparent;\n background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n border: 1px solid transparent;\n border-radius: @border-radius-base;\n\n // We remove the `outline` here, but later compensate by attaching `:hover`\n // styles to `:focus`.\n &:focus {\n outline: none;\n }\n\n // Bars\n .icon-bar {\n display: block;\n width: 22px;\n height: 2px;\n border-radius: 1px;\n }\n .icon-bar + .icon-bar {\n margin-top: 4px;\n }\n\n @media (min-width: @grid-float-breakpoint) {\n display: none;\n }\n}\n\n\n// Navbar nav links\n//\n// Builds on top of the `.nav` components with its own modifier class to make\n// the nav the full height of the horizontal nav (above 768px).\n\n.navbar-nav {\n margin: (@navbar-padding-vertical / 2) -@navbar-padding-horizontal;\n\n > li > a {\n padding-top: 10px;\n padding-bottom: 10px;\n line-height: @line-height-computed;\n }\n\n @media (max-width: @grid-float-breakpoint-max) {\n // Dropdowns get custom display when collapsed\n .open .dropdown-menu {\n position: static;\n float: none;\n width: auto;\n margin-top: 0;\n background-color: transparent;\n border: 0;\n box-shadow: none;\n > li > a,\n .dropdown-header {\n padding: 5px 15px 5px 25px;\n }\n > li > a {\n line-height: @line-height-computed;\n &:hover,\n &:focus {\n background-image: none;\n }\n }\n }\n }\n\n // Uncollapse the nav\n @media (min-width: @grid-float-breakpoint) {\n float: left;\n margin: 0;\n\n > li {\n float: left;\n > a {\n padding-top: @navbar-padding-vertical;\n padding-bottom: @navbar-padding-vertical;\n }\n }\n\n &.navbar-right:last-child {\n margin-right: -@navbar-padding-horizontal;\n }\n }\n}\n\n\n// Component alignment\n//\n// Repurpose the pull utilities as their own navbar utilities to avoid specificity\n// issues with parents and chaining. Only do this when the navbar is uncollapsed\n// though so that navbar contents properly stack and align in mobile.\n\n@media (min-width: @grid-float-breakpoint) {\n .navbar-left { .pull-left(); }\n .navbar-right { .pull-right(); }\n}\n\n\n// Navbar form\n//\n// Extension of the `.form-inline` with some extra flavor for optimum display in\n// our navbars.\n\n.navbar-form {\n margin-left: -@navbar-padding-horizontal;\n margin-right: -@navbar-padding-horizontal;\n padding: 10px @navbar-padding-horizontal;\n border-top: 1px solid transparent;\n border-bottom: 1px solid transparent;\n @shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);\n .box-shadow(@shadow);\n\n // Mixin behavior for optimum display\n .form-inline();\n\n .form-group {\n @media (max-width: @grid-float-breakpoint-max) {\n margin-bottom: 5px;\n }\n }\n\n // Vertically center in expanded, horizontal navbar\n .navbar-vertical-align(@input-height-base);\n\n // Undo 100% width for pull classes\n @media (min-width: @grid-float-breakpoint) {\n width: auto;\n border: 0;\n margin-left: 0;\n margin-right: 0;\n padding-top: 0;\n padding-bottom: 0;\n .box-shadow(none);\n\n // Outdent the form if last child to line up with content down the page\n &.navbar-right:last-child {\n margin-right: -@navbar-padding-horizontal;\n }\n }\n}\n\n\n// Dropdown menus\n\n// Menu position and menu carets\n.navbar-nav > li > .dropdown-menu {\n margin-top: 0;\n .border-top-radius(0);\n}\n// Menu position and menu caret support for dropups via extra dropup class\n.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {\n .border-bottom-radius(0);\n}\n\n\n// Buttons in navbars\n//\n// Vertically center a button within a navbar (when *not* in a form).\n\n.navbar-btn {\n .navbar-vertical-align(@input-height-base);\n\n &.btn-sm {\n .navbar-vertical-align(@input-height-small);\n }\n &.btn-xs {\n .navbar-vertical-align(22);\n }\n}\n\n\n// Text in navbars\n//\n// Add a class to make any element properly align itself vertically within the navbars.\n\n.navbar-text {\n .navbar-vertical-align(@line-height-computed);\n\n @media (min-width: @grid-float-breakpoint) {\n float: left;\n margin-left: @navbar-padding-horizontal;\n margin-right: @navbar-padding-horizontal;\n\n // Outdent the form if last child to line up with content down the page\n &.navbar-right:last-child {\n margin-right: 0;\n }\n }\n}\n\n// Alternate navbars\n// --------------------------------------------------\n\n// Default navbar\n.navbar-default {\n background-color: @navbar-default-bg;\n border-color: @navbar-default-border;\n\n .navbar-brand {\n color: @navbar-default-brand-color;\n &:hover,\n &:focus {\n color: @navbar-default-brand-hover-color;\n background-color: @navbar-default-brand-hover-bg;\n }\n }\n\n .navbar-text {\n color: @navbar-default-color;\n }\n\n .navbar-nav {\n > li > a {\n color: @navbar-default-link-color;\n\n &:hover,\n &:focus {\n color: @navbar-default-link-hover-color;\n background-color: @navbar-default-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-active-color;\n background-color: @navbar-default-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-disabled-color;\n background-color: @navbar-default-link-disabled-bg;\n }\n }\n }\n\n .navbar-toggle {\n border-color: @navbar-default-toggle-border-color;\n &:hover,\n &:focus {\n background-color: @navbar-default-toggle-hover-bg;\n }\n .icon-bar {\n background-color: @navbar-default-toggle-icon-bar-bg;\n }\n }\n\n .navbar-collapse,\n .navbar-form {\n border-color: @navbar-default-border;\n }\n\n // Dropdown menu items\n .navbar-nav {\n // Remove background color from open dropdown\n > .open > a {\n &,\n &:hover,\n &:focus {\n background-color: @navbar-default-link-active-bg;\n color: @navbar-default-link-active-color;\n }\n }\n\n @media (max-width: @grid-float-breakpoint-max) {\n // Dropdowns get custom display when collapsed\n .open .dropdown-menu {\n > li > a {\n color: @navbar-default-link-color;\n &:hover,\n &:focus {\n color: @navbar-default-link-hover-color;\n background-color: @navbar-default-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-active-color;\n background-color: @navbar-default-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-disabled-color;\n background-color: @navbar-default-link-disabled-bg;\n }\n }\n }\n }\n }\n\n\n // Links in navbars\n //\n // Add a class to ensure links outside the navbar nav are colored correctly.\n\n .navbar-link {\n color: @navbar-default-link-color;\n &:hover {\n color: @navbar-default-link-hover-color;\n }\n }\n\n}\n\n// Inverse navbar\n\n.navbar-inverse {\n background-color: @navbar-inverse-bg;\n border-color: @navbar-inverse-border;\n\n .navbar-brand {\n color: @navbar-inverse-brand-color;\n &:hover,\n &:focus {\n color: @navbar-inverse-brand-hover-color;\n background-color: @navbar-inverse-brand-hover-bg;\n }\n }\n\n .navbar-text {\n color: @navbar-inverse-color;\n }\n\n .navbar-nav {\n > li > a {\n color: @navbar-inverse-link-color;\n\n &:hover,\n &:focus {\n color: @navbar-inverse-link-hover-color;\n background-color: @navbar-inverse-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-active-color;\n background-color: @navbar-inverse-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-disabled-color;\n background-color: @navbar-inverse-link-disabled-bg;\n }\n }\n }\n\n // Darken the responsive nav toggle\n .navbar-toggle {\n border-color: @navbar-inverse-toggle-border-color;\n &:hover,\n &:focus {\n background-color: @navbar-inverse-toggle-hover-bg;\n }\n .icon-bar {\n background-color: @navbar-inverse-toggle-icon-bar-bg;\n }\n }\n\n .navbar-collapse,\n .navbar-form {\n border-color: darken(@navbar-inverse-bg, 7%);\n }\n\n // Dropdowns\n .navbar-nav {\n > .open > a {\n &,\n &:hover,\n &:focus {\n background-color: @navbar-inverse-link-active-bg;\n color: @navbar-inverse-link-active-color;\n }\n }\n\n @media (max-width: @grid-float-breakpoint-max) {\n // Dropdowns get custom display\n .open .dropdown-menu {\n > .dropdown-header {\n border-color: @navbar-inverse-border;\n }\n .divider {\n background-color: @navbar-inverse-border;\n }\n > li > a {\n color: @navbar-inverse-link-color;\n &:hover,\n &:focus {\n color: @navbar-inverse-link-hover-color;\n background-color: @navbar-inverse-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-active-color;\n background-color: @navbar-inverse-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-disabled-color;\n background-color: @navbar-inverse-link-disabled-bg;\n }\n }\n }\n }\n }\n\n .navbar-link {\n color: @navbar-inverse-link-color;\n &:hover {\n color: @navbar-inverse-link-hover-color;\n }\n }\n\n}\n","//\n// Utility classes\n// --------------------------------------------------\n\n\n// Floats\n// -------------------------\n\n.clearfix {\n .clearfix();\n}\n.center-block {\n .center-block();\n}\n.pull-right {\n float: right !important;\n}\n.pull-left {\n float: left !important;\n}\n\n\n// Toggling content\n// -------------------------\n\n// Note: Deprecated .hide in favor of .hidden or .sr-only (as appropriate) in v3.0.1\n.hide {\n display: none !important;\n}\n.show {\n display: block !important;\n}\n.invisible {\n visibility: hidden;\n}\n.text-hide {\n .text-hide();\n}\n\n\n// Hide from screenreaders and browsers\n//\n// Credit: HTML5 Boilerplate\n\n.hidden {\n display: none !important;\n visibility: hidden !important;\n}\n\n\n// For Affix plugin\n// -------------------------\n\n.affix {\n position: fixed;\n}\n","//\n// Breadcrumbs\n// --------------------------------------------------\n\n\n.breadcrumb {\n padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal;\n margin-bottom: @line-height-computed;\n list-style: none;\n background-color: @breadcrumb-bg;\n border-radius: @border-radius-base;\n\n > li {\n display: inline-block;\n\n + li:before {\n content: \"@{breadcrumb-separator}\\00a0\"; // Unicode space added since inline-block means non-collapsing white-space\n padding: 0 5px;\n color: @breadcrumb-color;\n }\n }\n\n > .active {\n color: @breadcrumb-active-color;\n }\n}\n","//\n// Pagination (multiple pages)\n// --------------------------------------------------\n.pagination {\n display: inline-block;\n padding-left: 0;\n margin: @line-height-computed 0;\n border-radius: @border-radius-base;\n\n > li {\n display: inline; // Remove list-style and block-level defaults\n > a,\n > span {\n position: relative;\n float: left; // Collapse white-space\n padding: @padding-base-vertical @padding-base-horizontal;\n line-height: @line-height-base;\n text-decoration: none;\n color: @pagination-color;\n background-color: @pagination-bg;\n border: 1px solid @pagination-border;\n margin-left: -1px;\n }\n &:first-child {\n > a,\n > span {\n margin-left: 0;\n .border-left-radius(@border-radius-base);\n }\n }\n &:last-child {\n > a,\n > span {\n .border-right-radius(@border-radius-base);\n }\n }\n }\n\n > li > a,\n > li > span {\n &:hover,\n &:focus {\n color: @pagination-hover-color;\n background-color: @pagination-hover-bg;\n border-color: @pagination-hover-border;\n }\n }\n\n > .active > a,\n > .active > span {\n &,\n &:hover,\n &:focus {\n z-index: 2;\n color: @pagination-active-color;\n background-color: @pagination-active-bg;\n border-color: @pagination-active-border;\n cursor: default;\n }\n }\n\n > .disabled {\n > span,\n > span:hover,\n > span:focus,\n > a,\n > a:hover,\n > a:focus {\n color: @pagination-disabled-color;\n background-color: @pagination-disabled-bg;\n border-color: @pagination-disabled-border;\n cursor: not-allowed;\n }\n }\n}\n\n// Sizing\n// --------------------------------------------------\n\n// Large\n.pagination-lg {\n .pagination-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @border-radius-large);\n}\n\n// Small\n.pagination-sm {\n .pagination-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @border-radius-small);\n}\n","//\n// Pager pagination\n// --------------------------------------------------\n\n\n.pager {\n padding-left: 0;\n margin: @line-height-computed 0;\n list-style: none;\n text-align: center;\n &:extend(.clearfix all);\n li {\n display: inline;\n > a,\n > span {\n display: inline-block;\n padding: 5px 14px;\n background-color: @pager-bg;\n border: 1px solid @pager-border;\n border-radius: @pager-border-radius;\n }\n\n > a:hover,\n > a:focus {\n text-decoration: none;\n background-color: @pager-hover-bg;\n }\n }\n\n .next {\n > a,\n > span {\n float: right;\n }\n }\n\n .previous {\n > a,\n > span {\n float: left;\n }\n }\n\n .disabled {\n > a,\n > a:hover,\n > a:focus,\n > span {\n color: @pager-disabled-color;\n background-color: @pager-bg;\n cursor: not-allowed;\n }\n }\n\n}\n","//\n// Labels\n// --------------------------------------------------\n\n.label {\n display: inline;\n padding: .2em .6em .3em;\n font-size: 75%;\n font-weight: bold;\n line-height: 1;\n color: @label-color;\n text-align: center;\n white-space: nowrap;\n vertical-align: baseline;\n border-radius: .25em;\n\n // Add hover effects, but only for links\n &[href] {\n &:hover,\n &:focus {\n color: @label-link-hover-color;\n text-decoration: none;\n cursor: pointer;\n }\n }\n\n // Empty labels collapse automatically (not available in IE8)\n &:empty {\n display: none;\n }\n\n // Quick fix for labels in buttons\n .btn & {\n position: relative;\n top: -1px;\n }\n}\n\n// Colors\n// Contextual variations (linked labels get darker on :hover)\n\n.label-default {\n .label-variant(@label-default-bg);\n}\n\n.label-primary {\n .label-variant(@label-primary-bg);\n}\n\n.label-success {\n .label-variant(@label-success-bg);\n}\n\n.label-info {\n .label-variant(@label-info-bg);\n}\n\n.label-warning {\n .label-variant(@label-warning-bg);\n}\n\n.label-danger {\n .label-variant(@label-danger-bg);\n}\n","//\n// Badges\n// --------------------------------------------------\n\n\n// Base classes\n.badge {\n display: inline-block;\n min-width: 10px;\n padding: 3px 7px;\n font-size: @font-size-small;\n font-weight: @badge-font-weight;\n color: @badge-color;\n line-height: @badge-line-height;\n vertical-align: baseline;\n white-space: nowrap;\n text-align: center;\n background-color: @badge-bg;\n border-radius: @badge-border-radius;\n\n // Empty badges collapse automatically (not available in IE8)\n &:empty {\n display: none;\n }\n\n // Quick fix for badges in buttons\n .btn & {\n position: relative;\n top: -1px;\n }\n .btn-xs & {\n top: 0;\n padding: 1px 5px;\n }\n}\n\n// Hover state, but only for links\na.badge {\n &:hover,\n &:focus {\n color: @badge-link-hover-color;\n text-decoration: none;\n cursor: pointer;\n }\n}\n\n// Account for counters in navs\na.list-group-item.active > .badge,\n.nav-pills > .active > a > .badge {\n color: @badge-active-color;\n background-color: @badge-active-bg;\n}\n.nav-pills > li > a > .badge {\n margin-left: 3px;\n}\n","//\n// Jumbotron\n// --------------------------------------------------\n\n\n.jumbotron {\n padding: @jumbotron-padding;\n margin-bottom: @jumbotron-padding;\n color: @jumbotron-color;\n background-color: @jumbotron-bg;\n\n h1,\n .h1 {\n color: @jumbotron-heading-color;\n }\n p {\n margin-bottom: (@jumbotron-padding / 2);\n font-size: @jumbotron-font-size;\n font-weight: 200;\n }\n\n .container & {\n border-radius: @border-radius-large; // Only round corners at higher resolutions if contained in a container\n }\n\n .container {\n max-width: 100%;\n }\n\n @media screen and (min-width: @screen-sm-min) {\n padding-top: (@jumbotron-padding * 1.6);\n padding-bottom: (@jumbotron-padding * 1.6);\n\n .container & {\n padding-left: (@jumbotron-padding * 2);\n padding-right: (@jumbotron-padding * 2);\n }\n\n h1,\n .h1 {\n font-size: (@font-size-base * 4.5);\n }\n }\n}\n","//\n// Alerts\n// --------------------------------------------------\n\n\n// Base styles\n// -------------------------\n\n.alert {\n padding: @alert-padding;\n margin-bottom: @line-height-computed;\n border: 1px solid transparent;\n border-radius: @alert-border-radius;\n\n // Headings for larger alerts\n h4 {\n margin-top: 0;\n // Specified for the h4 to prevent conflicts of changing @headings-color\n color: inherit;\n }\n // Provide class for links that match alerts\n .alert-link {\n font-weight: @alert-link-font-weight;\n }\n\n // Improve alignment and spacing of inner content\n > p,\n > ul {\n margin-bottom: 0;\n }\n > p + p {\n margin-top: 5px;\n }\n}\n\n// Dismissable alerts\n//\n// Expand the right padding and account for the close button's positioning.\n\n.alert-dismissable {\n padding-right: (@alert-padding + 20);\n\n // Adjust close link position\n .close {\n position: relative;\n top: -2px;\n right: -21px;\n color: inherit;\n }\n}\n\n// Alternate styles\n//\n// Generate contextual modifier classes for colorizing the alert.\n\n.alert-success {\n .alert-variant(@alert-success-bg; @alert-success-border; @alert-success-text);\n}\n.alert-info {\n .alert-variant(@alert-info-bg; @alert-info-border; @alert-info-text);\n}\n.alert-warning {\n .alert-variant(@alert-warning-bg; @alert-warning-border; @alert-warning-text);\n}\n.alert-danger {\n .alert-variant(@alert-danger-bg; @alert-danger-border; @alert-danger-text);\n}\n","//\n// Progress bars\n// --------------------------------------------------\n\n\n// Bar animations\n// -------------------------\n\n// WebKit\n@-webkit-keyframes progress-bar-stripes {\n from { background-position: 40px 0; }\n to { background-position: 0 0; }\n}\n\n// Spec and IE10+\n@keyframes progress-bar-stripes {\n from { background-position: 40px 0; }\n to { background-position: 0 0; }\n}\n\n\n\n// Bar itself\n// -------------------------\n\n// Outer container\n.progress {\n overflow: hidden;\n height: @line-height-computed;\n margin-bottom: @line-height-computed;\n background-color: @progress-bg;\n border-radius: @border-radius-base;\n .box-shadow(inset 0 1px 2px rgba(0,0,0,.1));\n}\n\n// Bar of progress\n.progress-bar {\n float: left;\n width: 0%;\n height: 100%;\n font-size: @font-size-small;\n line-height: @line-height-computed;\n color: @progress-bar-color;\n text-align: center;\n background-color: @progress-bar-bg;\n .box-shadow(inset 0 -1px 0 rgba(0,0,0,.15));\n .transition(width .6s ease);\n}\n\n// Striped bars\n.progress-striped .progress-bar {\n #gradient > .striped();\n background-size: 40px 40px;\n}\n\n// Call animation for the active one\n.progress.active .progress-bar {\n .animation(progress-bar-stripes 2s linear infinite);\n}\n\n\n\n// Variations\n// -------------------------\n\n.progress-bar-success {\n .progress-bar-variant(@progress-bar-success-bg);\n}\n\n.progress-bar-info {\n .progress-bar-variant(@progress-bar-info-bg);\n}\n\n.progress-bar-warning {\n .progress-bar-variant(@progress-bar-warning-bg);\n}\n\n.progress-bar-danger {\n .progress-bar-variant(@progress-bar-danger-bg);\n}\n","// Media objects\n// Source: http://stubbornella.org/content/?p=497\n// --------------------------------------------------\n\n\n// Common styles\n// -------------------------\n\n// Clear the floats\n.media,\n.media-body {\n overflow: hidden;\n zoom: 1;\n}\n\n// Proper spacing between instances of .media\n.media,\n.media .media {\n margin-top: 15px;\n}\n.media:first-child {\n margin-top: 0;\n}\n\n// For images and videos, set to block\n.media-object {\n display: block;\n}\n\n// Reset margins on headings for tighter default spacing\n.media-heading {\n margin: 0 0 5px;\n}\n\n\n// Media image alignment\n// -------------------------\n\n.media {\n > .pull-left {\n margin-right: 10px;\n }\n > .pull-right {\n margin-left: 10px;\n }\n}\n\n\n// Media list variation\n// -------------------------\n\n// Undo default ul/ol styles\n.media-list {\n padding-left: 0;\n list-style: none;\n}\n","//\n// List groups\n// --------------------------------------------------\n\n\n// Base class\n//\n// Easily usable on <ul>, <ol>, or <div>.\n\n.list-group {\n // No need to set list-style: none; since .list-group-item is block level\n margin-bottom: 20px;\n padding-left: 0; // reset padding because ul and ol\n}\n\n\n// Individual list items\n//\n// Use on `li`s or `div`s within the `.list-group` parent.\n\n.list-group-item {\n position: relative;\n display: block;\n padding: 10px 15px;\n // Place the border on the list items and negative margin up for better styling\n margin-bottom: -1px;\n background-color: @list-group-bg;\n border: 1px solid @list-group-border;\n\n // Round the first and last items\n &:first-child {\n .border-top-radius(@list-group-border-radius);\n }\n &:last-child {\n margin-bottom: 0;\n .border-bottom-radius(@list-group-border-radius);\n }\n\n // Align badges within list items\n > .badge {\n float: right;\n }\n > .badge + .badge {\n margin-right: 5px;\n }\n}\n\n\n// Linked list items\n//\n// Use anchor elements instead of `li`s or `div`s to create linked list items.\n// Includes an extra `.active` modifier class for showing selected items.\n\na.list-group-item {\n color: @list-group-link-color;\n\n .list-group-item-heading {\n color: @list-group-link-heading-color;\n }\n\n // Hover state\n &:hover,\n &:focus {\n text-decoration: none;\n background-color: @list-group-hover-bg;\n }\n\n // Active class on item itself, not parent\n &.active,\n &.active:hover,\n &.active:focus {\n z-index: 2; // Place active items above their siblings for proper border styling\n color: @list-group-active-color;\n background-color: @list-group-active-bg;\n border-color: @list-group-active-border;\n\n // Force color to inherit for custom content\n .list-group-item-heading {\n color: inherit;\n }\n .list-group-item-text {\n color: @list-group-active-text-color;\n }\n }\n}\n\n\n// Contextual variants\n//\n// Add modifier classes to change text and background color on individual items.\n// Organizationally, this must come after the `:hover` states.\n\n.list-group-item-variant(success; @state-success-bg; @state-success-text);\n.list-group-item-variant(info; @state-info-bg; @state-info-text);\n.list-group-item-variant(warning; @state-warning-bg; @state-warning-text);\n.list-group-item-variant(danger; @state-danger-bg; @state-danger-text);\n\n\n// Custom content options\n//\n// Extra classes for creating well-formatted content within `.list-group-item`s.\n\n.list-group-item-heading {\n margin-top: 0;\n margin-bottom: 5px;\n}\n.list-group-item-text {\n margin-bottom: 0;\n line-height: 1.3;\n}\n","//\n// Panels\n// --------------------------------------------------\n\n\n// Base class\n.panel {\n margin-bottom: @line-height-computed;\n background-color: @panel-bg;\n border: 1px solid transparent;\n border-radius: @panel-border-radius;\n .box-shadow(0 1px 1px rgba(0,0,0,.05));\n}\n\n// Panel contents\n.panel-body {\n padding: @panel-body-padding;\n &:extend(.clearfix all);\n}\n\n// Optional heading\n.panel-heading {\n padding: 10px 15px;\n border-bottom: 1px solid transparent;\n .border-top-radius((@panel-border-radius - 1));\n\n > .dropdown .dropdown-toggle {\n color: inherit;\n }\n}\n\n// Within heading, strip any `h*` tag of its default margins for spacing.\n.panel-title {\n margin-top: 0;\n margin-bottom: 0;\n font-size: ceil((@font-size-base * 1.125));\n color: inherit;\n\n > a {\n color: inherit;\n }\n}\n\n// Optional footer (stays gray in every modifier class)\n.panel-footer {\n padding: 10px 15px;\n background-color: @panel-footer-bg;\n border-top: 1px solid @panel-inner-border;\n .border-bottom-radius((@panel-border-radius - 1));\n}\n\n\n// List groups in panels\n//\n// By default, space out list group content from panel headings to account for\n// any kind of custom content between the two.\n\n.panel {\n > .list-group {\n margin-bottom: 0;\n\n .list-group-item {\n border-width: 1px 0;\n border-radius: 0;\n }\n\n // Add border top radius for first one\n &:first-child {\n .list-group-item:first-child {\n border-top: 0;\n .border-top-radius((@panel-border-radius - 1));\n }\n }\n // Add border bottom radius for last one\n &:last-child {\n .list-group-item:last-child {\n border-bottom: 0;\n .border-bottom-radius((@panel-border-radius - 1));\n }\n }\n }\n}\n// Collapse space between when there's no additional content.\n.panel-heading + .list-group {\n .list-group-item:first-child {\n border-top-width: 0;\n }\n}\n\n\n// Tables in panels\n//\n// Place a non-bordered `.table` within a panel (not within a `.panel-body`) and\n// watch it go full width.\n\n.panel {\n > .table,\n > .table-responsive > .table {\n margin-bottom: 0;\n }\n // Add border top radius for first one\n > .table:first-child,\n > .table-responsive:first-child > .table:first-child {\n .border-top-radius((@panel-border-radius - 1));\n\n > thead:first-child,\n > tbody:first-child {\n > tr:first-child {\n td:first-child,\n th:first-child {\n border-top-left-radius: (@panel-border-radius - 1);\n }\n td:last-child,\n th:last-child {\n border-top-right-radius: (@panel-border-radius - 1);\n }\n }\n }\n }\n // Add border bottom radius for last one\n > .table:last-child,\n > .table-responsive:last-child > .table:last-child {\n .border-bottom-radius((@panel-border-radius - 1));\n\n > tbody:last-child,\n > tfoot:last-child {\n > tr:last-child {\n td:first-child,\n th:first-child {\n border-bottom-left-radius: (@panel-border-radius - 1);\n }\n td:last-child,\n th:last-child {\n border-bottom-right-radius: (@panel-border-radius - 1);\n }\n }\n }\n }\n > .panel-body + .table,\n > .panel-body + .table-responsive {\n border-top: 1px solid @table-border-color;\n }\n > .table > tbody:first-child > tr:first-child th,\n > .table > tbody:first-child > tr:first-child td {\n border-top: 0;\n }\n > .table-bordered,\n > .table-responsive > .table-bordered {\n border: 0;\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th:first-child,\n > td:first-child {\n border-left: 0;\n }\n > th:last-child,\n > td:last-child {\n border-right: 0;\n }\n }\n }\n > thead,\n > tbody {\n > tr:first-child {\n > td,\n > th {\n border-bottom: 0;\n }\n }\n }\n > tbody,\n > tfoot {\n > tr:last-child {\n > td,\n > th {\n border-bottom: 0;\n }\n }\n }\n }\n > .table-responsive {\n border: 0;\n margin-bottom: 0;\n }\n}\n\n\n// Collapsable panels (aka, accordion)\n//\n// Wrap a series of panels in `.panel-group` to turn them into an accordion with\n// the help of our collapse JavaScript plugin.\n\n.panel-group {\n margin-bottom: @line-height-computed;\n\n // Tighten up margin so it's only between panels\n .panel {\n margin-bottom: 0;\n border-radius: @panel-border-radius;\n overflow: hidden; // crop contents when collapsed\n + .panel {\n margin-top: 5px;\n }\n }\n\n .panel-heading {\n border-bottom: 0;\n + .panel-collapse .panel-body {\n border-top: 1px solid @panel-inner-border;\n }\n }\n .panel-footer {\n border-top: 0;\n + .panel-collapse .panel-body {\n border-bottom: 1px solid @panel-inner-border;\n }\n }\n}\n\n\n// Contextual variations\n.panel-default {\n .panel-variant(@panel-default-border; @panel-default-text; @panel-default-heading-bg; @panel-default-border);\n}\n.panel-primary {\n .panel-variant(@panel-primary-border; @panel-primary-text; @panel-primary-heading-bg; @panel-primary-border);\n}\n.panel-success {\n .panel-variant(@panel-success-border; @panel-success-text; @panel-success-heading-bg; @panel-success-border);\n}\n.panel-info {\n .panel-variant(@panel-info-border; @panel-info-text; @panel-info-heading-bg; @panel-info-border);\n}\n.panel-warning {\n .panel-variant(@panel-warning-border; @panel-warning-text; @panel-warning-heading-bg; @panel-warning-border);\n}\n.panel-danger {\n .panel-variant(@panel-danger-border; @panel-danger-text; @panel-danger-heading-bg; @panel-danger-border);\n}\n","//\n// Wells\n// --------------------------------------------------\n\n\n// Base class\n.well {\n min-height: 20px;\n padding: 19px;\n margin-bottom: 20px;\n background-color: @well-bg;\n border: 1px solid @well-border;\n border-radius: @border-radius-base;\n .box-shadow(inset 0 1px 1px rgba(0,0,0,.05));\n blockquote {\n border-color: #ddd;\n border-color: rgba(0,0,0,.15);\n }\n}\n\n// Sizes\n.well-lg {\n padding: 24px;\n border-radius: @border-radius-large;\n}\n.well-sm {\n padding: 9px;\n border-radius: @border-radius-small;\n}\n","//\n// Close icons\n// --------------------------------------------------\n\n\n.close {\n float: right;\n font-size: (@font-size-base * 1.5);\n font-weight: @close-font-weight;\n line-height: 1;\n color: @close-color;\n text-shadow: @close-text-shadow;\n .opacity(.2);\n\n &:hover,\n &:focus {\n color: @close-color;\n text-decoration: none;\n cursor: pointer;\n .opacity(.5);\n }\n\n // Additional properties for button version\n // iOS requires the button element instead of an anchor tag.\n // If you want the anchor version, it requires `href=\"#\"`.\n button& {\n padding: 0;\n cursor: pointer;\n background: transparent;\n border: 0;\n -webkit-appearance: none;\n }\n}\n","//\n// Modals\n// --------------------------------------------------\n\n// .modal-open - body class for killing the scroll\n// .modal - container to scroll within\n// .modal-dialog - positioning shell for the actual modal\n// .modal-content - actual modal w/ bg and corners and shit\n\n// Kill the scroll on the body\n.modal-open {\n overflow: hidden;\n}\n\n// Container that the modal scrolls within\n.modal {\n display: none;\n overflow: auto;\n overflow-y: scroll;\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: @zindex-modal;\n -webkit-overflow-scrolling: touch;\n\n // Prevent Chrome on Windows from adding a focus outline. For details, see\n // https://github.com/twbs/bootstrap/pull/10951.\n outline: 0;\n\n // When fading in the modal, animate it to slide down\n &.fade .modal-dialog {\n .translate(0, -25%);\n .transition-transform(~\"0.3s ease-out\");\n }\n &.in .modal-dialog { .translate(0, 0)}\n}\n\n// Shell div to position the modal with bottom padding\n.modal-dialog {\n position: relative;\n width: auto;\n margin: 10px;\n}\n\n// Actual modal\n.modal-content {\n position: relative;\n background-color: @modal-content-bg;\n border: 1px solid @modal-content-fallback-border-color; //old browsers fallback (ie8 etc)\n border: 1px solid @modal-content-border-color;\n border-radius: @border-radius-large;\n .box-shadow(0 3px 9px rgba(0,0,0,.5));\n background-clip: padding-box;\n // Remove focus outline from opened modal\n outline: none;\n}\n\n// Modal background\n.modal-backdrop {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: @zindex-modal-background;\n background-color: @modal-backdrop-bg;\n // Fade for backdrop\n &.fade { .opacity(0); }\n &.in { .opacity(@modal-backdrop-opacity); }\n}\n\n// Modal header\n// Top section of the modal w/ title and dismiss\n.modal-header {\n padding: @modal-title-padding;\n border-bottom: 1px solid @modal-header-border-color;\n min-height: (@modal-title-padding + @modal-title-line-height);\n}\n// Close icon\n.modal-header .close {\n margin-top: -2px;\n}\n\n// Title text within header\n.modal-title {\n margin: 0;\n line-height: @modal-title-line-height;\n}\n\n// Modal body\n// Where all modal content resides (sibling of .modal-header and .modal-footer)\n.modal-body {\n position: relative;\n padding: @modal-inner-padding;\n}\n\n// Footer (for actions)\n.modal-footer {\n margin-top: 15px;\n padding: (@modal-inner-padding - 1) @modal-inner-padding @modal-inner-padding;\n text-align: right; // right align buttons\n border-top: 1px solid @modal-footer-border-color;\n &:extend(.clearfix all); // clear it in case folks use .pull-* classes on buttons\n\n // Properly space out buttons\n .btn + .btn {\n margin-left: 5px;\n margin-bottom: 0; // account for input[type=\"submit\"] which gets the bottom margin like all other inputs\n }\n // but override that for button groups\n .btn-group .btn + .btn {\n margin-left: -1px;\n }\n // and override it for block buttons as well\n .btn-block + .btn-block {\n margin-left: 0;\n }\n}\n\n// Scale up the modal\n@media (min-width: @screen-sm-min) {\n // Automatically set modal's width for larger viewports\n .modal-dialog {\n width: @modal-md;\n margin: 30px auto;\n }\n .modal-content {\n .box-shadow(0 5px 15px rgba(0,0,0,.5));\n }\n\n // Modal sizes\n .modal-sm { width: @modal-sm; }\n}\n\n@media (min-width: @screen-md-min) {\n .modal-lg { width: @modal-lg; }\n}\n","//\n// Tooltips\n// --------------------------------------------------\n\n\n// Base class\n.tooltip {\n position: absolute;\n z-index: @zindex-tooltip;\n display: block;\n visibility: visible;\n font-size: @font-size-small;\n line-height: 1.4;\n .opacity(0);\n\n &.in { .opacity(@tooltip-opacity); }\n &.top { margin-top: -3px; padding: @tooltip-arrow-width 0; }\n &.right { margin-left: 3px; padding: 0 @tooltip-arrow-width; }\n &.bottom { margin-top: 3px; padding: @tooltip-arrow-width 0; }\n &.left { margin-left: -3px; padding: 0 @tooltip-arrow-width; }\n}\n\n// Wrapper for the tooltip content\n.tooltip-inner {\n max-width: @tooltip-max-width;\n padding: 3px 8px;\n color: @tooltip-color;\n text-align: center;\n text-decoration: none;\n background-color: @tooltip-bg;\n border-radius: @border-radius-base;\n}\n\n// Arrows\n.tooltip-arrow {\n position: absolute;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n}\n.tooltip {\n &.top .tooltip-arrow {\n bottom: 0;\n left: 50%;\n margin-left: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n border-top-color: @tooltip-arrow-color;\n }\n &.top-left .tooltip-arrow {\n bottom: 0;\n left: @tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n border-top-color: @tooltip-arrow-color;\n }\n &.top-right .tooltip-arrow {\n bottom: 0;\n right: @tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n border-top-color: @tooltip-arrow-color;\n }\n &.right .tooltip-arrow {\n top: 50%;\n left: 0;\n margin-top: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width @tooltip-arrow-width 0;\n border-right-color: @tooltip-arrow-color;\n }\n &.left .tooltip-arrow {\n top: 50%;\n right: 0;\n margin-top: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-left-color: @tooltip-arrow-color;\n }\n &.bottom .tooltip-arrow {\n top: 0;\n left: 50%;\n margin-left: -@tooltip-arrow-width;\n border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-bottom-color: @tooltip-arrow-color;\n }\n &.bottom-left .tooltip-arrow {\n top: 0;\n left: @tooltip-arrow-width;\n border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-bottom-color: @tooltip-arrow-color;\n }\n &.bottom-right .tooltip-arrow {\n top: 0;\n right: @tooltip-arrow-width;\n border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-bottom-color: @tooltip-arrow-color;\n }\n}\n","//\n// Popovers\n// --------------------------------------------------\n\n\n.popover {\n position: absolute;\n top: 0;\n left: 0;\n z-index: @zindex-popover;\n display: none;\n max-width: @popover-max-width;\n padding: 1px;\n text-align: left; // Reset given new insertion method\n background-color: @popover-bg;\n background-clip: padding-box;\n border: 1px solid @popover-fallback-border-color;\n border: 1px solid @popover-border-color;\n border-radius: @border-radius-large;\n .box-shadow(0 5px 10px rgba(0,0,0,.2));\n\n // Overrides for proper insertion\n white-space: normal;\n\n // Offset the popover to account for the popover arrow\n &.top { margin-top: -@popover-arrow-width; }\n &.right { margin-left: @popover-arrow-width; }\n &.bottom { margin-top: @popover-arrow-width; }\n &.left { margin-left: -@popover-arrow-width; }\n}\n\n.popover-title {\n margin: 0; // reset heading margin\n padding: 8px 14px;\n font-size: @font-size-base;\n font-weight: normal;\n line-height: 18px;\n background-color: @popover-title-bg;\n border-bottom: 1px solid darken(@popover-title-bg, 5%);\n border-radius: 5px 5px 0 0;\n}\n\n.popover-content {\n padding: 9px 14px;\n}\n\n// Arrows\n//\n// .arrow is outer, .arrow:after is inner\n\n.popover > .arrow {\n &,\n &:after {\n position: absolute;\n display: block;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n }\n}\n.popover > .arrow {\n border-width: @popover-arrow-outer-width;\n}\n.popover > .arrow:after {\n border-width: @popover-arrow-width;\n content: \"\";\n}\n\n.popover {\n &.top > .arrow {\n left: 50%;\n margin-left: -@popover-arrow-outer-width;\n border-bottom-width: 0;\n border-top-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-top-color: @popover-arrow-outer-color;\n bottom: -@popover-arrow-outer-width;\n &:after {\n content: \" \";\n bottom: 1px;\n margin-left: -@popover-arrow-width;\n border-bottom-width: 0;\n border-top-color: @popover-arrow-color;\n }\n }\n &.right > .arrow {\n top: 50%;\n left: -@popover-arrow-outer-width;\n margin-top: -@popover-arrow-outer-width;\n border-left-width: 0;\n border-right-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-right-color: @popover-arrow-outer-color;\n &:after {\n content: \" \";\n left: 1px;\n bottom: -@popover-arrow-width;\n border-left-width: 0;\n border-right-color: @popover-arrow-color;\n }\n }\n &.bottom > .arrow {\n left: 50%;\n margin-left: -@popover-arrow-outer-width;\n border-top-width: 0;\n border-bottom-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-bottom-color: @popover-arrow-outer-color;\n top: -@popover-arrow-outer-width;\n &:after {\n content: \" \";\n top: 1px;\n margin-left: -@popover-arrow-width;\n border-top-width: 0;\n border-bottom-color: @popover-arrow-color;\n }\n }\n\n &.left > .arrow {\n top: 50%;\n right: -@popover-arrow-outer-width;\n margin-top: -@popover-arrow-outer-width;\n border-right-width: 0;\n border-left-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-left-color: @popover-arrow-outer-color;\n &:after {\n content: \" \";\n right: 1px;\n border-right-width: 0;\n border-left-color: @popover-arrow-color;\n bottom: -@popover-arrow-width;\n }\n }\n\n}\n","//\n// Responsive: Utility classes\n// --------------------------------------------------\n\n\n// IE10 in Windows (Phone) 8\n//\n// Support for responsive views via media queries is kind of borked in IE10, for\n// Surface/desktop in split view and for Windows Phone 8. This particular fix\n// must be accompanied by a snippet of JavaScript to sniff the user agent and\n// apply some conditional CSS to *only* the Surface/desktop Windows 8. Look at\n// our Getting Started page for more information on this bug.\n//\n// For more information, see the following:\n//\n// Issue: https://github.com/twbs/bootstrap/issues/10497\n// Docs: http://getbootstrap.com/getting-started/#browsers\n// Source: http://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/\n\n@-ms-viewport {\n width: device-width;\n}\n\n\n// Visibility utilities\n.visible-xs,\n.visible-sm,\n.visible-md,\n.visible-lg {\n .responsive-invisibility();\n}\n\n.visible-xs {\n @media (max-width: @screen-xs-max) {\n .responsive-visibility();\n }\n}\n.visible-sm {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n .responsive-visibility();\n }\n}\n.visible-md {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n .responsive-visibility();\n }\n}\n.visible-lg {\n @media (min-width: @screen-lg-min) {\n .responsive-visibility();\n }\n}\n\n.hidden-xs {\n @media (max-width: @screen-xs-max) {\n .responsive-invisibility();\n }\n}\n.hidden-sm {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n .responsive-invisibility();\n }\n}\n.hidden-md {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n .responsive-invisibility();\n }\n}\n.hidden-lg {\n @media (min-width: @screen-lg-min) {\n .responsive-invisibility();\n }\n}\n\n\n// Print utilities\n//\n// Media queries are placed on the inside to be mixin-friendly.\n\n.visible-print {\n .responsive-invisibility();\n\n @media print {\n .responsive-visibility();\n }\n}\n\n.hidden-print {\n @media print {\n .responsive-invisibility();\n }\n}\n"]}
|
|
classic/classic-analytics.php
CHANGED
@@ -1,62 +1,60 @@
|
|
1 |
-
<div class="wrap">
|
2 |
-
<h2>Google Classic Analytics<em> (ga.js)</em></h2>
|
3 |
-
|
4 |
-
<br />
|
5 |
-
<
|
6 |
-
<
|
7 |
-
|
8 |
-
|
9 |
-
<
|
10 |
-
|
11 |
-
<div class="
|
12 |
-
<
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
<
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
</div>
|
59 |
-
|
60 |
-
|
61 |
-
</div>
|
62 |
-
</br>
|
1 |
+
<div class="wrap">
|
2 |
+
<h2>Google Classic Analytics<em> (ga.js)</em></h2>
|
3 |
+
<br />
|
4 |
+
<em>This is an older version of Google Analytics. Use this version only if you have not upgraded to Universal Analytics yet or want to use both trackers (which is totally fine!).</em> <br />
|
5 |
+
<br />
|
6 |
+
<div class="col-lg-6 row">
|
7 |
+
<form class="form-horizontal" method="post" action="options.php" role="form" id="classic-google-universal-options">
|
8 |
+
<?php settings_fields('google-universal-settings-classic'); ?>
|
9 |
+
<div class="form-group">
|
10 |
+
<label for="web_property_id" class="col-sm-3 control-label">Status</label>
|
11 |
+
<div class="col-sm-9">
|
12 |
+
<input id="classic_plugin_switch" type="checkbox" name="classic_plugin_switch" <?php if(get_option('classic_plugin_switch')=='on'): ?> checked="checked" <?php endif; ?>>
|
13 |
+
</div>
|
14 |
+
</div>
|
15 |
+
<div class="form-group">
|
16 |
+
<label for="classic_web_property_id" class="col-sm-3 control-label">Tracking ID</label>
|
17 |
+
<div class="col-sm-9">
|
18 |
+
<input type="text" class="form-control" name="classic_web_property_id" id="classic_web_property_id" placeholder="Tracking code example: UA-23710779-7" value="<?php echo get_option('classic_property_id'); ?>">
|
19 |
+
<span class="error hide"><strong>Error! </strong> match your code with this forma: UA-41335660-1</span> </div>
|
20 |
+
</div>
|
21 |
+
<div class="form-group">
|
22 |
+
<div class="col-sm-offset-3 col-sm-9">
|
23 |
+
<div class="checkbox">
|
24 |
+
<label>
|
25 |
+
<input type="checkbox" name="classic_in_footer" id="classic_in_footer" <?php if(get_option('classic_in_footer')=='on'): ?> checked="checked" <?php endif; ?>>
|
26 |
+
Place code in footer </label>
|
27 |
+
</div>
|
28 |
+
</div>
|
29 |
+
</div>
|
30 |
+
<div class="form-group">
|
31 |
+
<div class="col-sm-offset-3 col-sm-9">
|
32 |
+
<?php global $wp_roles;
|
33 |
+
|
34 |
+
$roles = $wp_roles->get_names(); ?>
|
35 |
+
<div class="checkbox">
|
36 |
+
<label>
|
37 |
+
<input type="checkbox" name="classic_tracking_off_for_role" id="classic_tracking_off_for_role" <?php if(get_option('classic_tracking_off_for_role')=='on'): ?> checked="checked" <?php endif; ?>>
|
38 |
+
Disable Tracking For
|
39 |
+
<select id="classic_tracking_off_for_this_role">
|
40 |
+
<?php foreach($roles as $role) { ?>
|
41 |
+
<option value="<?php echo $role;?>" <?php if(get_option('classic_tracking_off_for_this_role')== $role){echo 'selected="selected"';} ?>><?php echo $role;?></option>
|
42 |
+
<?php } ?>
|
43 |
+
</select>
|
44 |
+
</label>
|
45 |
+
</div>
|
46 |
+
</div>
|
47 |
+
</div>
|
48 |
+
<div class="form-group">
|
49 |
+
<div class="col-sm-offset-3 col-sm-9">
|
50 |
+
<input type="hidden" id="ajax_url" name="ajax_url" value="<?php echo admin_url('admin-ajax.php'); ?>" />
|
51 |
+
<input type="submit" class="button-primary" value="<?php _e('Save Changes'); ?>" />
|
52 |
+
<!--<button type="button" class="button button-primary" id="save-classic-settings">Save Changes</button>-->
|
53 |
+
<span class="alert alert-success hide"><strong>Options Saved</strong></span> </div>
|
54 |
+
</div>
|
55 |
+
</form>
|
56 |
+
</div>
|
57 |
+
<div class="clearfix"></div>
|
58 |
+
<div class="row col-lg-6">Have a question? Drop us a question at <a href="http://onlineads.lt/?utm_source=WordPress&utm_medium=Google%20Universal%20Analytics%202.3.1&utm_content=Google%20Classic%20Analytics&utm_campaign=WordPress%20plugins" title="Google Universal Analytics">OnlineAds.lt</a> </div>
|
59 |
+
</div>
|
60 |
+
</br>
|
|
|
|
classic/custom-analytics.php
CHANGED
@@ -1,62 +1,60 @@
|
|
1 |
-
<div class="wrap">
|
2 |
-
<h2>Custom Google Analytics</h2>
|
3 |
-
|
4 |
-
<br />
|
5 |
-
<
|
6 |
-
<
|
7 |
-
|
8 |
-
|
9 |
-
<
|
10 |
-
|
11 |
-
<div class="
|
12 |
-
<
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
<
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
</div>
|
59 |
-
|
60 |
-
|
61 |
-
</div>
|
62 |
-
</br>
|
1 |
+
<div class="wrap">
|
2 |
+
<h2>Custom Google Analytics</h2>
|
3 |
+
<br />
|
4 |
+
<em>This is a place to customize your tracking code. </em> <br />
|
5 |
+
<br />
|
6 |
+
<div class="col-lg-6 row">
|
7 |
+
<form class="form-horizontal" method="post" action="options.php" role="form" id="google-universal-options">
|
8 |
+
<?php settings_fields('google-universal-settings-custom'); ?>
|
9 |
+
<div class="form-group">
|
10 |
+
<label for="web_property_id" class="col-sm-3 control-label">Status</label>
|
11 |
+
<div class="col-sm-9">
|
12 |
+
<input id="custom_plugin_switch" type="checkbox" name="custom_plugin_switch" <?php if(get_option('custom_plugin_switch')=='on'): ?> checked="checked" <?php endif; ?>>
|
13 |
+
</div>
|
14 |
+
</div>
|
15 |
+
<div class="form-group">
|
16 |
+
<label for="web_property_id" class="col-sm-3 control-label">Tracking Code</label>
|
17 |
+
<div class="col-sm-9">
|
18 |
+
<textarea class="form-control" name="custom_web_property_id" id="custom_web_property_id" rows="6" placeholder="Past your custom google tracking code here"><?php echo get_option('custom_web_property_id'); ?></textarea>
|
19 |
+
</div>
|
20 |
+
</div>
|
21 |
+
<div class="form-group">
|
22 |
+
<div class="col-sm-offset-3 col-sm-9">
|
23 |
+
<div class="checkbox">
|
24 |
+
<label>
|
25 |
+
<input type="checkbox" name="custom_in_footer" id="custom_in_footer" <?php if(get_option('custom_in_footer')=='on'): ?> checked="checked" <?php endif; ?>>
|
26 |
+
Place code in footer </label>
|
27 |
+
</div>
|
28 |
+
</div>
|
29 |
+
</div>
|
30 |
+
<div class="form-group">
|
31 |
+
<div class="col-sm-offset-3 col-sm-9">
|
32 |
+
<?php global $wp_roles;
|
33 |
+
|
34 |
+
$roles = $wp_roles->get_names(); ?>
|
35 |
+
<div class="checkbox">
|
36 |
+
<label>
|
37 |
+
<input type="checkbox" name="custom_tracking_off_for_role" id="custom_tracking_off_for_role" <?php if(get_option('custom_tracking_off_for_role')=='on'): ?> checked="checked" <?php endif; ?>>
|
38 |
+
Disable Tracking For
|
39 |
+
<select id="custom_tracking_off_for_this_role">
|
40 |
+
<?php foreach($roles as $role) { ?>
|
41 |
+
<option value="<?php echo $role;?>" <?php if(get_option('custom_tracking_off_for_this_role')== $role){echo 'selected="selected"';} ?>><?php echo $role;?></option>
|
42 |
+
<?php } ?>
|
43 |
+
</select>
|
44 |
+
</label>
|
45 |
+
</div>
|
46 |
+
</div>
|
47 |
+
</div>
|
48 |
+
<div class="form-group">
|
49 |
+
<div class="col-sm-offset-3 col-sm-9">
|
50 |
+
<input type="hidden" id="ajax_url" name="ajax_url" value="<?php echo admin_url('admin-ajax.php'); ?>" />
|
51 |
+
<input type="submit" class="button-primary" value="<?php _e('Save Changes'); ?>" />
|
52 |
+
<!--<button type="button" class="button button-primary" id="save-custom-settings">Save Changes</button>-->
|
53 |
+
<span class="alert alert-success hide"><strong>Options Saved</strong></span> </div>
|
54 |
+
</div>
|
55 |
+
</form>
|
56 |
+
</div>
|
57 |
+
<div class="clearfix"></div>
|
58 |
+
<div class="row col-lg-6">Have a question? Drop us a question at <a href="http://onlineads.lt/?utm_source=WordPress&utm_medium=Google%20Universal%20Analytics%202.3.1&utm_content=Google%20Custom%20Analytics&utm_campaign=WordPress%20plugins">OnlineAds.lt</a> </div>
|
59 |
+
</div>
|
60 |
+
</br>
|
|
|
|
googleanalytics.php
CHANGED
@@ -3,21 +3,14 @@
|
|
3 |
/*
|
4 |
|
5 |
Plugin Name: Google Universal Analytics
|
6 |
-
|
7 |
Plugin URI: http://wordpress.org/extend/plugins/google-universal-analytics/
|
8 |
-
|
9 |
Description: Adds <a href="http://www.google.com/analytics/">Google Analytics</a> tracking code on all pages.
|
10 |
-
|
11 |
-
Version: 2.2
|
12 |
-
|
13 |
Author: Audrius Dobilinskas
|
14 |
-
|
15 |
Author URI: http://onlineads.lt/
|
16 |
|
17 |
*/
|
18 |
|
19 |
-
|
20 |
-
|
21 |
if (!defined('WP_CONTENT_URL'))
|
22 |
|
23 |
define('WP_CONTENT_URL', get_option('siteurl').'/wp-content');
|
@@ -35,35 +28,71 @@ if (!defined('WP_PLUGIN_DIR'))
|
|
35 |
define('WP_PLUGIN_DIR', WP_CONTENT_DIR.'/plugins');
|
36 |
|
37 |
|
38 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
function deactive_google_universal_analytics() {
|
40 |
-
|
41 |
delete_option('web_property_id');
|
42 |
-
|
43 |
delete_option('in_footer');
|
44 |
-
|
45 |
delete_option('plugin_switch');
|
46 |
-
|
47 |
delete_option('track_links');
|
48 |
-
|
49 |
delete_option('enable_display');
|
50 |
-
|
51 |
delete_option('anonymize_ip');
|
52 |
-
|
|
|
|
|
53 |
delete_option('tracking_off_for_this_role');
|
54 |
-
|
55 |
delete_option('tracking_off_for_role');
|
56 |
|
57 |
//classic_options
|
58 |
-
|
59 |
delete_option('classic_property_id');
|
60 |
-
|
61 |
delete_option('classic_in_footer');
|
62 |
-
|
63 |
delete_option('classic_plugin_switch');
|
64 |
-
|
65 |
delete_option('classic_tracking_off_for_role');
|
66 |
-
|
67 |
delete_option('classic_tracking_off_for_this_role');
|
68 |
|
69 |
|
@@ -71,15 +100,21 @@ function deactive_google_universal_analytics() {
|
|
71 |
//custom_options
|
72 |
|
73 |
delete_option('custom_in_footer');
|
74 |
-
|
75 |
delete_option('custom_plugin_switch');
|
76 |
-
|
77 |
delete_option('custom_web_property_id');
|
78 |
-
|
79 |
delete_option('custom_tracking_off_for_role');
|
80 |
-
|
81 |
delete_option('custom_tracking_off_for_this_role');
|
82 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
83 |
}
|
84 |
|
85 |
|
@@ -88,10 +123,6 @@ function deactive_google_universal_analytics() {
|
|
88 |
|
89 |
function admin_menu_google_universal_analytics() {
|
90 |
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
global $settings_page, $settings_page1, $classic_page, $cutom_page;
|
96 |
|
97 |
|
@@ -148,28 +179,16 @@ function google_classic_analytics() {
|
|
148 |
|
149 |
$classic_analytics_code = "<script type='text/javascript'>
|
150 |
|
151 |
-
|
152 |
-
|
153 |
var _gaq = _gaq || [];
|
154 |
-
|
155 |
_gaq.push(['_setAccount', '$classic_property_id']);
|
156 |
-
|
157 |
_gaq.push(['_trackPageview']);
|
158 |
|
159 |
-
|
160 |
-
|
161 |
(function() {
|
162 |
-
|
163 |
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
164 |
-
|
165 |
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
166 |
-
|
167 |
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
168 |
-
|
169 |
})();
|
170 |
|
171 |
-
|
172 |
-
|
173 |
</script>";
|
174 |
|
175 |
echo $classic_analytics_code;
|
@@ -209,11 +228,8 @@ function google_universal_analytics_scripts($hook){
|
|
209 |
//register scripts
|
210 |
|
211 |
wp_register_script( 'google-js', '//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js', array(), '', true );
|
212 |
-
|
213 |
wp_register_script( 'bootstrap-js', plugins_url( 'google-universal-analytics/bootstrap/js/bootstrap.min.js' , dirname(__FILE__) ), array('google-js'), '', true );
|
214 |
-
|
215 |
wp_register_script( 'bootstrap-switch-js', plugins_url( 'google-universal-analytics/bootstrap/js/bootstrap-switch.min.js' , dirname(__FILE__) ) , array('bootstrap-js'),'',true );
|
216 |
-
|
217 |
wp_register_script( 'main-js', plugins_url( 'google-universal-analytics/assets/gua-main.js' , dirname(__FILE__) ) , array('google-js'),'',true );
|
218 |
|
219 |
|
@@ -223,9 +239,7 @@ function google_universal_analytics_scripts($hook){
|
|
223 |
//enqueue styles
|
224 |
|
225 |
wp_enqueue_style( 'bootstrap-css' );
|
226 |
-
|
227 |
wp_enqueue_style( 'bootstrap-switch-css' );
|
228 |
-
|
229 |
wp_enqueue_style( 'main-css' );
|
230 |
|
231 |
|
@@ -233,11 +247,8 @@ function google_universal_analytics_scripts($hook){
|
|
233 |
//enqueue scripts
|
234 |
|
235 |
wp_enqueue_script( 'google-js' );
|
236 |
-
|
237 |
wp_enqueue_script( 'bootstrap-js' );
|
238 |
-
|
239 |
wp_enqueue_script( 'bootstrap-switch-js' );
|
240 |
-
|
241 |
wp_enqueue_script( 'main-js' );
|
242 |
|
243 |
}
|
@@ -246,7 +257,7 @@ function google_universal_analytics_scripts($hook){
|
|
246 |
|
247 |
|
248 |
|
249 |
-
|
250 |
|
251 |
|
252 |
|
@@ -441,155 +452,62 @@ function display_google_universal_analytics_code(){
|
|
441 |
|
442 |
|
443 |
}
|
|
|
444 |
|
|
|
445 |
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
function save_google_universal_analytics_settings() {
|
452 |
-
|
453 |
-
// The $_REQUEST contains all the data sent via ajax
|
454 |
-
|
455 |
-
if ( isset($_REQUEST) ) {
|
456 |
-
|
457 |
-
$property_id = $_REQUEST['property_id'];
|
458 |
-
|
459 |
-
$in_footer = $_REQUEST['in_footer'];
|
460 |
-
|
461 |
-
$plugin_switch = $_REQUEST['plugin_switch'];
|
462 |
-
|
463 |
-
$track_links = $_REQUEST['track_links'];
|
464 |
-
|
465 |
-
$enable_display = $_REQUEST['enable_display'];
|
466 |
-
|
467 |
-
$anonymize_ip = $_REQUEST['anonymize_ip'];
|
468 |
-
|
469 |
-
$tracking_off_for_this_role = $_REQUEST['tracking_off_for_this_role'];
|
470 |
-
|
471 |
-
$tracking_off_for_role = $_REQUEST['tracking_off_for_role'];
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
update_option('web_property_id', $property_id);
|
478 |
-
|
479 |
-
update_option('in_footer', $in_footer);
|
480 |
-
|
481 |
-
update_option('plugin_switch', $plugin_switch);
|
482 |
-
|
483 |
-
update_option('track_links', $track_links);
|
484 |
-
|
485 |
-
update_option('enable_display', $enable_display);
|
486 |
-
|
487 |
-
update_option('anonymize_ip', $anonymize_ip);
|
488 |
-
|
489 |
-
update_option('tracking_off_for_this_role', $tracking_off_for_this_role);
|
490 |
-
|
491 |
-
update_option('tracking_off_for_role', $tracking_off_for_role);
|
492 |
-
|
493 |
-
}
|
494 |
-
|
495 |
-
// Always die in functions echoing ajax content
|
496 |
-
|
497 |
-
die();
|
498 |
-
|
499 |
-
}
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
function save_google_classic_analytics_settings() {
|
504 |
-
|
505 |
-
// The $_REQUEST contains all the data sent via ajax
|
506 |
-
|
507 |
-
if ( isset($_REQUEST) ) {
|
508 |
-
|
509 |
-
$classic_property_id = $_REQUEST['classic_property_id'];
|
510 |
-
|
511 |
-
$classic_in_footer = $_REQUEST['classic_in_footer'];
|
512 |
-
|
513 |
-
$classic_plugin_switch = $_REQUEST['classic_plugin_switch'];
|
514 |
-
|
515 |
-
$classic_tracking_off_for_role = $_REQUEST['classic_tracking_off_for_role'];
|
516 |
-
|
517 |
-
$classic_tracking_off_for_this_role = $_REQUEST['classic_tracking_off_for_this_role'];
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
update_option('classic_property_id', $classic_property_id);
|
524 |
-
|
525 |
-
update_option('classic_in_footer', $classic_in_footer);
|
526 |
-
|
527 |
-
update_option('classic_plugin_switch', $classic_plugin_switch);
|
528 |
-
|
529 |
-
update_option('classic_tracking_off_for_role', $classic_tracking_off_for_role);
|
530 |
-
|
531 |
-
update_option('classic_tracking_off_for_this_role', $classic_tracking_off_for_this_role);
|
532 |
-
|
533 |
-
}
|
534 |
-
|
535 |
-
// Always die in functions echoing ajax content
|
536 |
-
|
537 |
-
die();
|
538 |
-
|
539 |
-
}
|
540 |
-
|
541 |
-
function save_google_custom_analytics_settings() {
|
542 |
-
|
543 |
-
// The $_REQUEST contains all the data sent via ajax
|
544 |
-
|
545 |
-
if ( isset($_REQUEST) ) {
|
546 |
-
|
547 |
-
$custom_in_footer = $_REQUEST['custom_in_footer'];
|
548 |
-
|
549 |
-
$custom_plugin_switch = $_REQUEST['custom_plugin_switch'];
|
550 |
-
|
551 |
-
$custom_web_property_id = $_REQUEST['custom_web_property_id'];
|
552 |
-
|
553 |
-
$custom_web_property_id = stripslashes($custom_web_property_id);
|
554 |
-
|
555 |
-
$custom_tracking_off_for_role = $_REQUEST['custom_tracking_off_for_role'];
|
556 |
-
|
557 |
-
$custom_tracking_off_for_this_role = $_REQUEST['custom_tracking_off_for_this_role'];
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
562 |
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
573 |
}
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
}
|
580 |
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
|
585 |
-
add_action( 'wp_ajax_save_google_universal_analytics_settings', 'save_google_universal_analytics_settings' );
|
586 |
-
|
587 |
-
add_action( 'wp_ajax_save_google_classic_analytics_settings', 'save_google_classic_analytics_settings' );
|
588 |
-
|
589 |
-
add_action( 'wp_ajax_save_google_custom_analytics_settings', 'save_google_custom_analytics_settings' );
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
?>
|
3 |
/*
|
4 |
|
5 |
Plugin Name: Google Universal Analytics
|
|
|
6 |
Plugin URI: http://wordpress.org/extend/plugins/google-universal-analytics/
|
|
|
7 |
Description: Adds <a href="http://www.google.com/analytics/">Google Analytics</a> tracking code on all pages.
|
8 |
+
Version: 2.3.1
|
|
|
|
|
9 |
Author: Audrius Dobilinskas
|
|
|
10 |
Author URI: http://onlineads.lt/
|
11 |
|
12 |
*/
|
13 |
|
|
|
|
|
14 |
if (!defined('WP_CONTENT_URL'))
|
15 |
|
16 |
define('WP_CONTENT_URL', get_option('siteurl').'/wp-content');
|
28 |
define('WP_PLUGIN_DIR', WP_CONTENT_DIR.'/plugins');
|
29 |
|
30 |
|
31 |
+
register_deactivation_hook(__FILE__, 'deactive_google_universal_analytics');
|
32 |
+
register_activation_hook( __FILE__, 'activate_google_universal_analytics' );
|
33 |
+
add_action( 'admin_init', 'register_plugin_settings' );
|
34 |
+
add_action( 'admin_init', 'register_plugin_settings1' );
|
35 |
+
add_action( 'admin_init', 'register_plugin_settings2' );
|
36 |
+
function register_plugin_settings(){
|
37 |
+
|
38 |
+
register_setting('google-universal-settings','plugin_switch');
|
39 |
+
register_setting('google-universal-settings','web_property_id');
|
40 |
+
register_setting('google-universal-settings','in_footer');
|
41 |
+
register_setting('google-universal-settings','track_links');
|
42 |
+
register_setting('google-universal-settings','enable_display');
|
43 |
+
register_setting('google-universal-settings','anonymize_ip');
|
44 |
+
register_setting('google-universal-settings','woo_tracking');
|
45 |
+
register_setting('google-universal-settings','set_domain');
|
46 |
+
register_setting('google-universal-settings','set_domain_domain');
|
47 |
+
register_setting('google-universal-settings','tracking_off_for_this_role');
|
48 |
+
register_setting('google-universal-settings','tracking_off_for_role');
|
49 |
+
|
50 |
+
|
51 |
+
}
|
52 |
+
function register_plugin_settings1(){
|
53 |
+
//classic_options
|
54 |
+
register_setting('google-universal-settings-classic','classic_property_id');
|
55 |
+
register_setting('google-universal-settings-classic','classic_in_footer');
|
56 |
+
register_setting('google-universal-settings-classic','classic_plugin_switch');
|
57 |
+
register_setting('google-universal-settings-classic','classic_tracking_off_for_role');
|
58 |
+
register_setting('google-universal-settings-classic','classic_tracking_off_for_this_role');
|
59 |
+
}
|
60 |
+
function register_plugin_settings2(){
|
61 |
+
//custom_options
|
62 |
+
register_setting('google-universal-settings-custom','custom_in_footer');
|
63 |
+
register_setting('google-universal-settings-custom','custom_plugin_switch');
|
64 |
+
register_setting('google-universal-settings-custom','custom_web_property_id');
|
65 |
+
register_setting('google-universal-settings-custom','custom_tracking_off_for_role');
|
66 |
+
register_setting('google-universal-settings-custom','custom_tracking_off_for_this_role');
|
67 |
+
}
|
68 |
+
function activate_google_universal_analytics(){
|
69 |
+
|
70 |
+
|
71 |
+
|
72 |
+
|
73 |
+
$woo_code_path = get_template_directory().'/woo_code.php';
|
74 |
+
if(!file_exists($woo_code_path)){
|
75 |
+
copy(plugin_dir_path( __FILE__ ).'woo_code.php', $woo_code_path);
|
76 |
+
}
|
77 |
+
}
|
78 |
function deactive_google_universal_analytics() {
|
|
|
79 |
delete_option('web_property_id');
|
|
|
80 |
delete_option('in_footer');
|
|
|
81 |
delete_option('plugin_switch');
|
|
|
82 |
delete_option('track_links');
|
|
|
83 |
delete_option('enable_display');
|
|
|
84 |
delete_option('anonymize_ip');
|
85 |
+
delete_option('woo_tracking');
|
86 |
+
delete_option('set_domain');
|
87 |
+
delete_option('set_domain_domain');
|
88 |
delete_option('tracking_off_for_this_role');
|
|
|
89 |
delete_option('tracking_off_for_role');
|
90 |
|
91 |
//classic_options
|
|
|
92 |
delete_option('classic_property_id');
|
|
|
93 |
delete_option('classic_in_footer');
|
|
|
94 |
delete_option('classic_plugin_switch');
|
|
|
95 |
delete_option('classic_tracking_off_for_role');
|
|
|
96 |
delete_option('classic_tracking_off_for_this_role');
|
97 |
|
98 |
|
100 |
//custom_options
|
101 |
|
102 |
delete_option('custom_in_footer');
|
|
|
103 |
delete_option('custom_plugin_switch');
|
|
|
104 |
delete_option('custom_web_property_id');
|
|
|
105 |
delete_option('custom_tracking_off_for_role');
|
|
|
106 |
delete_option('custom_tracking_off_for_this_role');
|
107 |
|
108 |
+
//delete woo code file
|
109 |
+
$woo_code_path = get_template_directory().'/woo_code.php';
|
110 |
+
if(file_exists($woo_code_path)){
|
111 |
+
unlink($woo_code_path);
|
112 |
+
}
|
113 |
+
$var1 = 'require "woo_code.php";';
|
114 |
+
$get_func_file_path = get_template_directory().'/functions.php';
|
115 |
+
$contents = file_get_contents($get_func_file_path);
|
116 |
+
$contents = str_replace($var1, '', $contents);
|
117 |
+
file_put_contents($get_func_file_path, $contents);
|
118 |
}
|
119 |
|
120 |
|
123 |
|
124 |
function admin_menu_google_universal_analytics() {
|
125 |
|
|
|
|
|
|
|
|
|
126 |
global $settings_page, $settings_page1, $classic_page, $cutom_page;
|
127 |
|
128 |
|
179 |
|
180 |
$classic_analytics_code = "<script type='text/javascript'>
|
181 |
|
|
|
|
|
182 |
var _gaq = _gaq || [];
|
|
|
183 |
_gaq.push(['_setAccount', '$classic_property_id']);
|
|
|
184 |
_gaq.push(['_trackPageview']);
|
185 |
|
|
|
|
|
186 |
(function() {
|
|
|
187 |
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
|
|
188 |
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
|
|
189 |
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
|
|
190 |
})();
|
191 |
|
|
|
|
|
192 |
</script>";
|
193 |
|
194 |
echo $classic_analytics_code;
|
228 |
//register scripts
|
229 |
|
230 |
wp_register_script( 'google-js', '//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js', array(), '', true );
|
|
|
231 |
wp_register_script( 'bootstrap-js', plugins_url( 'google-universal-analytics/bootstrap/js/bootstrap.min.js' , dirname(__FILE__) ), array('google-js'), '', true );
|
|
|
232 |
wp_register_script( 'bootstrap-switch-js', plugins_url( 'google-universal-analytics/bootstrap/js/bootstrap-switch.min.js' , dirname(__FILE__) ) , array('bootstrap-js'),'',true );
|
|
|
233 |
wp_register_script( 'main-js', plugins_url( 'google-universal-analytics/assets/gua-main.js' , dirname(__FILE__) ) , array('google-js'),'',true );
|
234 |
|
235 |
|
239 |
//enqueue styles
|
240 |
|
241 |
wp_enqueue_style( 'bootstrap-css' );
|
|
|
242 |
wp_enqueue_style( 'bootstrap-switch-css' );
|
|
|
243 |
wp_enqueue_style( 'main-css' );
|
244 |
|
245 |
|
247 |
//enqueue scripts
|
248 |
|
249 |
wp_enqueue_script( 'google-js' );
|
|
|
250 |
wp_enqueue_script( 'bootstrap-js' );
|
|
|
251 |
wp_enqueue_script( 'bootstrap-switch-js' );
|
|
|
252 |
wp_enqueue_script( 'main-js' );
|
253 |
|
254 |
}
|
257 |
|
258 |
|
259 |
|
260 |
+
|
261 |
|
262 |
|
263 |
|
452 |
|
453 |
|
454 |
}
|
455 |
+
//adding woo tracking
|
456 |
|
457 |
+
//$var1 = 'require "woo_code.php";';
|
458 |
|
459 |
+
$var1 = 'function ia_wc_ga_integration( $order_id ) {
|
460 |
+
$order = new WC_Order( $order_id ); ?>
|
461 |
+
|
462 |
+
<script type="text/javascript">
|
463 |
+
ga("require", "ecommerce", "ecommerce.js"); // Load The Ecommerce Tracking Plugin
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
464 |
|
465 |
+
// Transaction Details
|
466 |
+
ga("ecommerce:addTransaction", {
|
467 |
+
"id": "<?php echo $order_id;?>",
|
468 |
+
"affiliation": "<?php echo get_option( "blogname" );?>",
|
469 |
+
"revenue": "<?php echo $order->get_total();?>",
|
470 |
+
"shipping": "<?php echo $order->get_total_shipping();?>",
|
471 |
+
"tax": "<?php echo $order->get_total_tax();?>",
|
472 |
+
"currency": "<?php echo get_woocommerce_currency();?>"
|
473 |
+
});
|
474 |
|
475 |
+
|
476 |
+
<?php
|
477 |
+
//Item Details
|
478 |
+
if ( sizeof( $order->get_items() ) > 0 ) {
|
479 |
+
foreach( $order->get_items() as $item ) {
|
480 |
+
$product_cats = get_the_terms( $item["product_id"], "product_cat" );
|
481 |
+
if ($product_cats) {
|
482 |
+
$cat = $product_cats[0];
|
483 |
+
} ?>
|
484 |
+
ga("ecommerce:addItem", {
|
485 |
+
"id": "<?php echo $order_id;?>",
|
486 |
+
"name": "<?php echo $item["name"];?>",
|
487 |
+
"sku": "<?php echo get_post_meta($item["product_id"], "_sku", true);?>",
|
488 |
+
"category": "<?php echo $cat->name;?>",
|
489 |
+
"price": "<?php echo $item["line_subtotal"];?>",
|
490 |
+
"quantity": "<?php echo $item["qty"];?>",
|
491 |
+
"currency": "<?php echo get_woocommerce_currency();?>"
|
492 |
+
});
|
493 |
+
<?php
|
494 |
+
}
|
495 |
+
} ?>
|
496 |
+
ga("ecommerce:send");
|
497 |
+
</script>
|
498 |
+
<?php }
|
499 |
+
add_action( "woocommerce_thankyou", "ia_wc_ga_integration" );';
|
500 |
+
|
501 |
+
$get_func_file_path = get_template_directory().'/functions.php';
|
502 |
+
if(get_option('woo_tracking')=='on'){
|
503 |
+
if(strpos(file_get_contents($get_func_file_path),$var1) !== false){
|
504 |
+
}else{
|
505 |
+
$data = sprintf("%s\n", $var1);
|
506 |
+
file_put_contents($get_func_file_path, $data, FILE_APPEND);
|
507 |
}
|
508 |
+
}elseif(get_option('woo_tracking')=='off'){
|
509 |
+
$contents = file_get_contents($get_func_file_path);
|
510 |
+
$contents = str_replace($var1, '', $contents);
|
511 |
+
file_put_contents($get_func_file_path, $contents);
|
|
|
512 |
}
|
513 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
options.php
CHANGED
@@ -2,7 +2,8 @@
|
|
2 |
<h2>Google Universal Analytics</h2>
|
3 |
<br />
|
4 |
<div class="col-lg-6 row">
|
5 |
-
<form class="form-horizontal" role="form" id="google-universal-options">
|
|
|
6 |
<div class="form-group">
|
7 |
<label for="web_property_id" class="col-sm-3 control-label">Status</label>
|
8 |
<div class="col-sm-9">
|
@@ -13,7 +14,7 @@
|
|
13 |
<label for="web_property_id" class="col-sm-3 control-label">Tracking ID</label>
|
14 |
<div class="col-sm-9">
|
15 |
<input type="text" class="form-control" name="web_property_id" id="web_property_id" placeholder="Tracking code example: UA-23710711-7" value="<?php echo get_option('web_property_id'); ?>">
|
16 |
-
<span class="error hide"><strong>Error! </strong> match your code with this
|
17 |
</div>
|
18 |
<div class="form-group">
|
19 |
<label for="web_property_id" class="col-sm-3 control-label"></label>
|
@@ -42,7 +43,7 @@
|
|
42 |
<div class="checkbox">
|
43 |
<label>
|
44 |
<input type="checkbox" name="enable_display" id="enable_display" <?php if(get_option('enable_display')=='on'): ?> checked="checked" <?php endif; ?>>
|
45 |
-
Enable Display Advertising
|
46 |
</div>
|
47 |
</div>
|
48 |
</div>
|
@@ -51,7 +52,25 @@
|
|
51 |
<div class="checkbox">
|
52 |
<label>
|
53 |
<input type="checkbox" name="anonymize_ip" id="anonymize_ip" <?php if(get_option('anonymize_ip')=='on'): ?> checked="checked" <?php endif; ?>>
|
54 |
-
Anonymize IP
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
</div>
|
56 |
</div>
|
57 |
</div>
|
@@ -75,13 +94,13 @@
|
|
75 |
</div>
|
76 |
<div class="form-group">
|
77 |
<div class="col-sm-offset-3 col-sm-9">
|
78 |
-
<input type="
|
79 |
-
|
80 |
<span class="alert alert-success hide"><strong>Options Saved</strong></span> </div>
|
81 |
</div>
|
82 |
</form>
|
83 |
</div>
|
84 |
<div class="clearfix"></div>
|
85 |
-
<div class="row col-lg-6">Have a question? Drop us a question at <a href="http://onlineads.lt/?utm_source=WordPress&utm_medium=Google%20Universal%20Analytics%202.
|
86 |
</div>
|
87 |
</br>
|
2 |
<h2>Google Universal Analytics</h2>
|
3 |
<br />
|
4 |
<div class="col-lg-6 row">
|
5 |
+
<form class="form-horizontal" method="post" action="options.php" role="form" id="google-universal-options">
|
6 |
+
<?php settings_fields('google-universal-settings'); ?>
|
7 |
<div class="form-group">
|
8 |
<label for="web_property_id" class="col-sm-3 control-label">Status</label>
|
9 |
<div class="col-sm-9">
|
14 |
<label for="web_property_id" class="col-sm-3 control-label">Tracking ID</label>
|
15 |
<div class="col-sm-9">
|
16 |
<input type="text" class="form-control" name="web_property_id" id="web_property_id" placeholder="Tracking code example: UA-23710711-7" value="<?php echo get_option('web_property_id'); ?>">
|
17 |
+
<span class="error hide" id="code-error"><strong>Error! </strong> match your code with this format: UA-41115660-1</span> </div>
|
18 |
</div>
|
19 |
<div class="form-group">
|
20 |
<label for="web_property_id" class="col-sm-3 control-label"></label>
|
43 |
<div class="checkbox">
|
44 |
<label>
|
45 |
<input type="checkbox" name="enable_display" id="enable_display" <?php if(get_option('enable_display')=='on'): ?> checked="checked" <?php endif; ?>>
|
46 |
+
Enable Display Advertising </label>
|
47 |
</div>
|
48 |
</div>
|
49 |
</div>
|
52 |
<div class="checkbox">
|
53 |
<label>
|
54 |
<input type="checkbox" name="anonymize_ip" id="anonymize_ip" <?php if(get_option('anonymize_ip')=='on'): ?> checked="checked" <?php endif; ?>>
|
55 |
+
Anonymize IP </label>
|
56 |
+
</div>
|
57 |
+
</div>
|
58 |
+
</div>
|
59 |
+
<div class="form-group">
|
60 |
+
<div class="col-sm-offset-3 col-sm-9">
|
61 |
+
<div class="checkbox">
|
62 |
+
<label>
|
63 |
+
<input type="checkbox" name="woo_tracking" id="woo_tracking" <?php if(get_option('woo_tracking')=='on'): ?> checked="checked" <?php endif; ?>>
|
64 |
+
Enable Woocommerce e-commerce tracking <span style="color:green;">New!</span> </label>
|
65 |
+
</div>
|
66 |
+
</div>
|
67 |
+
</div>
|
68 |
+
<div class="form-group">
|
69 |
+
<div class="col-sm-offset-3 col-sm-9">
|
70 |
+
<div class="checkbox">
|
71 |
+
<label>
|
72 |
+
<input type="checkbox" name="set_domain" id="set_domain" <?php if(get_option('set_domain')=='on'): ?> checked="checked" <?php endif; ?>>
|
73 |
+
Set Domain <span style="color:green;">New!</span> <input type="" name="set_domain_domain" id="set_domain_domain" placeholder="nexsuad.com" <?php if(get_option('set_domain')=='on'): ?> value="<?php echo get_option('set_domain_domain'); ?>" <?php endif; ?> /></label>
|
74 |
</div>
|
75 |
</div>
|
76 |
</div>
|
94 |
</div>
|
95 |
<div class="form-group">
|
96 |
<div class="col-sm-offset-3 col-sm-9">
|
97 |
+
<input type="submit" class="button-primary" value="<?php _e('Save Changes'); ?>" />
|
98 |
+
<!--<button type="button" class="button button-primary" id="save-gua-settings">Save Changes</button>-->
|
99 |
<span class="alert alert-success hide"><strong>Options Saved</strong></span> </div>
|
100 |
</div>
|
101 |
</form>
|
102 |
</div>
|
103 |
<div class="clearfix"></div>
|
104 |
+
<div class="row col-lg-6">Have a question? Drop us a question at <a href="http://onlineads.lt/?utm_source=WordPress&utm_medium=Google%20Universal%20Analytics%202.3.1&utm_content=Google%20Universal%20Analytics&utm_campaign=WordPress%20plugins" title="Google Universal Analytics">OnlineAds.lt</a> </div>
|
105 |
</div>
|
106 |
</br>
|
readme.txt
CHANGED
@@ -1,13 +1,13 @@
|
|
1 |
=== Google Universal Analytics ===
|
2 |
Contributors: audriusd
|
3 |
Donate link: http://onlineads.lt/
|
4 |
-
Tags: javascript, tracking, google, analytics, universal, statistics, google analytics, universal analytics, google universal analytics, classic, custom
|
5 |
Requires at least: 3.0
|
6 |
-
Tested up to: 3.9
|
7 |
-
Stable tag: 2.
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
-
Adds the latest Google Universal Analytics JavaScript tracking code to your WordPress website.
|
11 |
|
12 |
== Description ==
|
13 |
|
@@ -62,6 +62,16 @@ Also, do not hesitate to contact us if you have any questions regarding [Google
|
|
62 |
|
63 |
== Changelog ==
|
64 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
65 |
= 2.2 =
|
66 |
* Display Advertising feature added.
|
67 |
* IP Anonymization option is now available.
|
@@ -100,6 +110,12 @@ Also, do not hesitate to contact us if you have any questions regarding [Google
|
|
100 |
|
101 |
== Upgrade Notice ==
|
102 |
|
|
|
|
|
|
|
|
|
|
|
|
|
103 |
= 2.2 =
|
104 |
* Display Advertising and IP Anonymization options added.
|
105 |
|
1 |
=== Google Universal Analytics ===
|
2 |
Contributors: audriusd
|
3 |
Donate link: http://onlineads.lt/
|
4 |
+
Tags: javascript, tracking, google, analytics, universal, statistics, google analytics, universal analytics, google universal analytics, classic, custom, woocommerce, ecommerce
|
5 |
Requires at least: 3.0
|
6 |
+
Tested up to: 3.9.1
|
7 |
+
Stable tag: 2.3.1
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
+
Adds the latest Google Universal Analytics JavaScript tracking code to your WordPress website. Now supports WooCommerce!
|
11 |
|
12 |
== Description ==
|
13 |
|
62 |
|
63 |
== Changelog ==
|
64 |
|
65 |
+
= 2.3.1 =
|
66 |
+
* Now it is possible to set domain manually.
|
67 |
+
|
68 |
+
= 2.3.0.2 =
|
69 |
+
* Bug fixed: Save settings issue
|
70 |
+
* Bug fixed: WooCommerce issue
|
71 |
+
|
72 |
+
= 2.3 =
|
73 |
+
* WooCommerce e-commerce tracking added (beta).
|
74 |
+
|
75 |
= 2.2 =
|
76 |
* Display Advertising feature added.
|
77 |
* IP Anonymization option is now available.
|
110 |
|
111 |
== Upgrade Notice ==
|
112 |
|
113 |
+
= 2.3.1 =
|
114 |
+
* New feature: set domain manually
|
115 |
+
|
116 |
+
= 2.3.0.2 =
|
117 |
+
* Bugs fixed: Save settings issue and WooCommerce tracking
|
118 |
+
|
119 |
= 2.2 =
|
120 |
* Display Advertising and IP Anonymization options added.
|
121 |
|
tracking-code.php
CHANGED
@@ -1,19 +1,16 @@
|
|
1 |
<?php
|
2 |
|
3 |
$web_property_id = get_option( 'web_property_id' );
|
4 |
-
|
5 |
$track_links = get_option('track_links');
|
6 |
-
|
7 |
$enable_display = get_option('enable_display');
|
8 |
-
|
9 |
$anonymize_ip = get_option('anonymize_ip');
|
10 |
-
|
11 |
-
$homeurl = get_option('
|
12 |
-
|
|
|
|
|
13 |
$find = array( 'http://', 'https://', 'www.' );
|
14 |
-
|
15 |
$replace = '';
|
16 |
-
|
17 |
$homeurl = str_replace( $find, $replace, $homeurl );
|
18 |
|
19 |
?>
|
@@ -23,15 +20,10 @@ $homeurl = str_replace( $find, $replace, $homeurl );
|
|
23 |
<script>
|
24 |
|
25 |
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
26 |
-
|
27 |
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
28 |
-
|
29 |
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
30 |
-
|
31 |
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
32 |
|
33 |
-
|
34 |
-
|
35 |
ga('create', '<?php echo $web_property_id; ?>', '<?php echo $homeurl; ?>');
|
36 |
<?php if($anonymize_ip=='on'): ?>
|
37 |
ga('set', 'anonymizeIp', true);
|
1 |
<?php
|
2 |
|
3 |
$web_property_id = get_option( 'web_property_id' );
|
|
|
4 |
$track_links = get_option('track_links');
|
|
|
5 |
$enable_display = get_option('enable_display');
|
|
|
6 |
$anonymize_ip = get_option('anonymize_ip');
|
7 |
+
if(get_option('set_domain')=='on'){
|
8 |
+
$homeurl = get_option('set_domain_domain');
|
9 |
+
}else{
|
10 |
+
$homeurl = get_option('home');
|
11 |
+
}
|
12 |
$find = array( 'http://', 'https://', 'www.' );
|
|
|
13 |
$replace = '';
|
|
|
14 |
$homeurl = str_replace( $find, $replace, $homeurl );
|
15 |
|
16 |
?>
|
20 |
<script>
|
21 |
|
22 |
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
|
|
23 |
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
|
|
24 |
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
|
|
25 |
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
26 |
|
|
|
|
|
27 |
ga('create', '<?php echo $web_property_id; ?>', '<?php echo $homeurl; ?>');
|
28 |
<?php if($anonymize_ip=='on'): ?>
|
29 |
ga('set', 'anonymizeIp', true);
|
woo_code.php
ADDED
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
// Google Universal Analytics for WordPress
|
3 |
+
// WooCommerce Google Analytics Integration
|
4 |
+
function ia_wc_ga_integration( $order_id ) {
|
5 |
+
$order = new WC_Order( $order_id ); ?>
|
6 |
+
|
7 |
+
<script type="text/javascript">
|
8 |
+
ga('require', 'ecommerce', 'ecommerce.js'); // Load The Ecommerce Tracking Plugin
|
9 |
+
|
10 |
+
// Transaction Details
|
11 |
+
ga('ecommerce:addTransaction', {
|
12 |
+
'id': '<?php echo $order_id;?>',
|
13 |
+
'affiliation': '<?php echo get_option( "blogname" );?>',
|
14 |
+
'revenue': '<?php echo $order->get_total();?>',
|
15 |
+
'shipping': '<?php echo $order->get_total_shipping();?>',
|
16 |
+
'tax': '<?php echo $order->get_total_tax();?>',
|
17 |
+
'currency': '<?php echo get_woocommerce_currency();?>'
|
18 |
+
});
|
19 |
+
|
20 |
+
|
21 |
+
<?php
|
22 |
+
//Item Details
|
23 |
+
if ( sizeof( $order->get_items() ) > 0 ) {
|
24 |
+
foreach( $order->get_items() as $item ) {
|
25 |
+
$product_cats = get_the_terms( $item["product_id"], 'product_cat' );
|
26 |
+
if ($product_cats) {
|
27 |
+
$cat = $product_cats[0];
|
28 |
+
} ?>
|
29 |
+
ga('ecommerce:addItem', {
|
30 |
+
'id': '<?php echo $order_id;?>',
|
31 |
+
'name': '<?php echo $item['name'];?>',
|
32 |
+
'sku': '<?php echo get_post_meta($item["product_id"], '_sku', true);?>',
|
33 |
+
'category': '<?php echo $cat->name;?>',
|
34 |
+
'price': '<?php echo $item['line_subtotal'];?>',
|
35 |
+
'quantity': '<?php echo $item['qty'];?>',
|
36 |
+
'currency': '<?php echo get_woocommerce_currency();?>'
|
37 |
+
});
|
38 |
+
<?php
|
39 |
+
}
|
40 |
+
} ?>
|
41 |
+
ga('ecommerce:send');
|
42 |
+
</script>
|
43 |
+
<?php }
|
44 |
+
add_action( 'woocommerce_thankyou', 'ia_wc_ga_integration' );
|