├── README ├── cdv-plugin-wb-connect.js ├── css ├── bootstrap-responsive.css ├── bootstrap-responsive.min.css ├── bootstrap.css ├── bootstrap.min.css └── style.css ├── img ├── glyphicons-halflings-white.png ├── glyphicons-halflings.png └── logo.png ├── index.html ├── js ├── .DS_Store ├── app.js ├── bootstrap.js ├── bootstrap.min.js └── jquery.min.js ├── phonegap.android.js ├── phonegap.ios.js ├── phonegap.js └── weibo.html /README: -------------------------------------------------------------------------------- 1 | 简微 是一个特别简单的微博客户端。 2 | 只包含OAuth登录,查看微博,查看@ 的功能。该客户端是新浪SAE移动云平台为向开发者展示其微博插件而提供的DEMO。 3 | 特别说明:本客户端因为使用了新浪移动云的微博插件,需要使用【云窗调试器】和【SAE的打包器】才能正常打包。 4 | 说明文档: http://ftqq.com/2012/04/18/build-a-weibo-client-using-phonegap/ 5 | -------------------------------------------------------------------------------- /cdv-plugin-wb-connect.js: -------------------------------------------------------------------------------- 1 | CDV = (typeof CDV == 'undefined' ? {} : CDV); 2 | var cordova = window.cordova || window.Cordova; 3 | CDV.WB = { 4 | init : function(params, cb, fail) { 5 | appKey = params.appKey; 6 | appSecret = params.appSecret; 7 | redirectUrl = params.redirectUrl; 8 | console.log('appKey: ' + appKey + ", appSecret: " + appSecret); 9 | cordova.exec(function(response) { 10 | console.log('Cordova Weibo Connect plugin initialized successfully.'); 11 | if(cb) 12 | cb(response); 13 | }, 14 | (fail ? fail : null), 15 | 'org.apache.cordova.weibo.Connect', 'init', [ appKey, 16 | appSecret, redirectUrl ]); 17 | }, 18 | login : function(cb, fail) { 19 | cordova.exec(function(response) { // login 20 | console.log("cdv, access_token: " + response.access_token); 21 | if (cb) 22 | cb(response.access_token, response.expires_in); 23 | }, (fail ? fail : null), 'org.apache.cordova.weibo.Connect', 'login', 24 | []); 25 | }, 26 | logout : function(cb, fail) { 27 | cordova.exec(function(e) { 28 | if (cb) 29 | cb(e); 30 | }, (fail ? fail : null), 'org.apache.cordova.weibo.Connect', 'logout', 31 | []); 32 | }, 33 | get : function(url, params, success, fail) { 34 | cordova.exec(function(response) { 35 | console.log("response: " + response); 36 | if (success) 37 | success(response); 38 | }, (fail ? fail : null), 'org.apache.cordova.sae.HttpClient', 'get', [ 39 | url, params ]); 40 | }, 41 | post : function(url, params, success, fail) { 42 | cordova.exec(function(response) { 43 | console.log("response: " + response); 44 | if (success) 45 | success(response); 46 | }, (fail ? fail : null), 'org.apache.cordova.sae.HttpClient', 'post', [ 47 | url, params ]); 48 | }, 49 | upload : function(url, params, file, success, fail) { 50 | console.log("file: " + file); 51 | cordova.exec(function(response) { 52 | console.log("response: " + response); 53 | if (success) 54 | success(response); 55 | }, (fail ? fail : null), 'org.apache.cordova.sae.HttpClient', 'upload', [ 56 | url, params, file ]); 57 | } 58 | }; 59 | -------------------------------------------------------------------------------- /css/bootstrap-responsive.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap Responsive v2.0.2 3 | * 4 | * Copyright 2012 Twitter, Inc 5 | * Licensed under the Apache License v2.0 6 | * http://www.apache.org/licenses/LICENSE-2.0 7 | * 8 | * Designed and built with all the love in the world @twitter by @mdo and @fat. 9 | */ 10 | .clearfix { 11 | *zoom: 1; 12 | } 13 | .clearfix:before, 14 | .clearfix:after { 15 | display: table; 16 | content: ""; 17 | } 18 | .clearfix:after { 19 | clear: both; 20 | } 21 | .hide-text { 22 | overflow: hidden; 23 | text-indent: 100%; 24 | white-space: nowrap; 25 | } 26 | .input-block-level { 27 | display: block; 28 | width: 100%; 29 | min-height: 28px; 30 | /* Make inputs at least the height of their button counterpart */ 31 | 32 | /* Makes inputs behave like true block-level elements */ 33 | 34 | -webkit-box-sizing: border-box; 35 | -moz-box-sizing: border-box; 36 | -ms-box-sizing: border-box; 37 | box-sizing: border-box; 38 | } 39 | .hidden { 40 | display: none; 41 | visibility: hidden; 42 | } 43 | .visible-phone { 44 | display: none; 45 | } 46 | .visible-tablet { 47 | display: none; 48 | } 49 | .visible-desktop { 50 | display: block; 51 | } 52 | .hidden-phone { 53 | display: block; 54 | } 55 | .hidden-tablet { 56 | display: block; 57 | } 58 | .hidden-desktop { 59 | display: none; 60 | } 61 | @media (max-width: 767px) { 62 | .visible-phone { 63 | display: block; 64 | } 65 | .hidden-phone { 66 | display: none; 67 | } 68 | .hidden-desktop { 69 | display: block; 70 | } 71 | .visible-desktop { 72 | display: none; 73 | } 74 | } 75 | @media (min-width: 768px) and (max-width: 979px) { 76 | .visible-tablet { 77 | display: block; 78 | } 79 | .hidden-tablet { 80 | display: none; 81 | } 82 | .hidden-desktop { 83 | display: block; 84 | } 85 | .visible-desktop { 86 | display: none; 87 | } 88 | } 89 | @media (max-width: 480px) { 90 | .nav-collapse { 91 | -webkit-transform: translate3d(0, 0, 0); 92 | } 93 | .page-header h1 small { 94 | display: block; 95 | line-height: 18px; 96 | } 97 | input[type="checkbox"], 98 | input[type="radio"] { 99 | border: 1px solid #ccc; 100 | } 101 | .form-horizontal .control-group > label { 102 | float: none; 103 | width: auto; 104 | padding-top: 0; 105 | text-align: left; 106 | } 107 | .form-horizontal .controls { 108 | margin-left: 0; 109 | } 110 | .form-horizontal .control-list { 111 | padding-top: 0; 112 | } 113 | .form-horizontal .form-actions { 114 | padding-left: 10px; 115 | padding-right: 10px; 116 | } 117 | .modal { 118 | position: absolute; 119 | top: 10px; 120 | left: 10px; 121 | right: 10px; 122 | width: auto; 123 | margin: 0; 124 | } 125 | .modal.fade.in { 126 | top: auto; 127 | } 128 | .modal-header .close { 129 | padding: 10px; 130 | margin: -10px; 131 | } 132 | .carousel-caption { 133 | position: static; 134 | } 135 | } 136 | @media (max-width: 767px) { 137 | body { 138 | padding-left: 20px; 139 | padding-right: 20px; 140 | } 141 | .navbar-fixed-top { 142 | margin-left: -20px; 143 | margin-right: -20px; 144 | } 145 | .container { 146 | width: auto; 147 | } 148 | .row-fluid { 149 | width: 100%; 150 | } 151 | .row { 152 | margin-left: 0; 153 | } 154 | .row > [class*="span"], 155 | .row-fluid > [class*="span"] { 156 | float: none; 157 | display: block; 158 | width: auto; 159 | margin: 0; 160 | } 161 | .thumbnails [class*="span"] { 162 | width: auto; 163 | } 164 | input[class*="span"], 165 | select[class*="span"], 166 | textarea[class*="span"], 167 | .uneditable-input { 168 | display: block; 169 | width: 100%; 170 | min-height: 28px; 171 | /* Make inputs at least the height of their button counterpart */ 172 | 173 | /* Makes inputs behave like true block-level elements */ 174 | 175 | -webkit-box-sizing: border-box; 176 | -moz-box-sizing: border-box; 177 | -ms-box-sizing: border-box; 178 | box-sizing: border-box; 179 | } 180 | .input-prepend input[class*="span"], 181 | .input-append input[class*="span"] { 182 | width: auto; 183 | } 184 | } 185 | @media (min-width: 768px) and (max-width: 979px) { 186 | .row { 187 | margin-left: -20px; 188 | *zoom: 1; 189 | } 190 | .row:before, 191 | .row:after { 192 | display: table; 193 | content: ""; 194 | } 195 | .row:after { 196 | clear: both; 197 | } 198 | [class*="span"] { 199 | float: left; 200 | margin-left: 20px; 201 | } 202 | .container, 203 | .navbar-fixed-top .container, 204 | .navbar-fixed-bottom .container { 205 | width: 724px; 206 | } 207 | .span12 { 208 | width: 724px; 209 | } 210 | .span11 { 211 | width: 662px; 212 | } 213 | .span10 { 214 | width: 600px; 215 | } 216 | .span9 { 217 | width: 538px; 218 | } 219 | .span8 { 220 | width: 476px; 221 | } 222 | .span7 { 223 | width: 414px; 224 | } 225 | .span6 { 226 | width: 352px; 227 | } 228 | .span5 { 229 | width: 290px; 230 | } 231 | .span4 { 232 | width: 228px; 233 | } 234 | .span3 { 235 | width: 166px; 236 | } 237 | .span2 { 238 | width: 104px; 239 | } 240 | .span1 { 241 | width: 42px; 242 | } 243 | .offset12 { 244 | margin-left: 764px; 245 | } 246 | .offset11 { 247 | margin-left: 702px; 248 | } 249 | .offset10 { 250 | margin-left: 640px; 251 | } 252 | .offset9 { 253 | margin-left: 578px; 254 | } 255 | .offset8 { 256 | margin-left: 516px; 257 | } 258 | .offset7 { 259 | margin-left: 454px; 260 | } 261 | .offset6 { 262 | margin-left: 392px; 263 | } 264 | .offset5 { 265 | margin-left: 330px; 266 | } 267 | .offset4 { 268 | margin-left: 268px; 269 | } 270 | .offset3 { 271 | margin-left: 206px; 272 | } 273 | .offset2 { 274 | margin-left: 144px; 275 | } 276 | .offset1 { 277 | margin-left: 82px; 278 | } 279 | .row-fluid { 280 | width: 100%; 281 | *zoom: 1; 282 | } 283 | .row-fluid:before, 284 | .row-fluid:after { 285 | display: table; 286 | content: ""; 287 | } 288 | .row-fluid:after { 289 | clear: both; 290 | } 291 | .row-fluid > [class*="span"] { 292 | float: left; 293 | margin-left: 2.762430939%; 294 | } 295 | .row-fluid > [class*="span"]:first-child { 296 | margin-left: 0; 297 | } 298 | .row-fluid > .span12 { 299 | width: 99.999999993%; 300 | } 301 | .row-fluid > .span11 { 302 | width: 91.436464082%; 303 | } 304 | .row-fluid > .span10 { 305 | width: 82.87292817100001%; 306 | } 307 | .row-fluid > .span9 { 308 | width: 74.30939226%; 309 | } 310 | .row-fluid > .span8 { 311 | width: 65.74585634900001%; 312 | } 313 | .row-fluid > .span7 { 314 | width: 57.182320438000005%; 315 | } 316 | .row-fluid > .span6 { 317 | width: 48.618784527%; 318 | } 319 | .row-fluid > .span5 { 320 | width: 40.055248616%; 321 | } 322 | .row-fluid > .span4 { 323 | width: 31.491712705%; 324 | } 325 | .row-fluid > .span3 { 326 | width: 22.928176794%; 327 | } 328 | .row-fluid > .span2 { 329 | width: 14.364640883%; 330 | } 331 | .row-fluid > .span1 { 332 | width: 5.801104972%; 333 | } 334 | input, 335 | textarea, 336 | .uneditable-input { 337 | margin-left: 0; 338 | } 339 | input.span12, textarea.span12, .uneditable-input.span12 { 340 | width: 714px; 341 | } 342 | input.span11, textarea.span11, .uneditable-input.span11 { 343 | width: 652px; 344 | } 345 | input.span10, textarea.span10, .uneditable-input.span10 { 346 | width: 590px; 347 | } 348 | input.span9, textarea.span9, .uneditable-input.span9 { 349 | width: 528px; 350 | } 351 | input.span8, textarea.span8, .uneditable-input.span8 { 352 | width: 466px; 353 | } 354 | input.span7, textarea.span7, .uneditable-input.span7 { 355 | width: 404px; 356 | } 357 | input.span6, textarea.span6, .uneditable-input.span6 { 358 | width: 342px; 359 | } 360 | input.span5, textarea.span5, .uneditable-input.span5 { 361 | width: 280px; 362 | } 363 | input.span4, textarea.span4, .uneditable-input.span4 { 364 | width: 218px; 365 | } 366 | input.span3, textarea.span3, .uneditable-input.span3 { 367 | width: 156px; 368 | } 369 | input.span2, textarea.span2, .uneditable-input.span2 { 370 | width: 94px; 371 | } 372 | input.span1, textarea.span1, .uneditable-input.span1 { 373 | width: 32px; 374 | } 375 | } 376 | @media (max-width: 979px) { 377 | body { 378 | padding-top: 0; 379 | } 380 | .navbar-fixed-top { 381 | position: static; 382 | margin-bottom: 18px; 383 | } 384 | .navbar-fixed-top .navbar-inner { 385 | padding: 5px; 386 | } 387 | .navbar .container { 388 | width: auto; 389 | padding: 0; 390 | } 391 | .navbar .brand { 392 | padding-left: 10px; 393 | padding-right: 10px; 394 | margin: 0 0 0 -5px; 395 | } 396 | .navbar .nav-collapse { 397 | clear: left; 398 | } 399 | .navbar .nav { 400 | float: none; 401 | margin: 0 0 9px; 402 | } 403 | .navbar .nav > li { 404 | float: none; 405 | } 406 | .navbar .nav > li > a { 407 | margin-bottom: 2px; 408 | } 409 | .navbar .nav > .divider-vertical { 410 | display: none; 411 | } 412 | .navbar .nav .nav-header { 413 | color: #999999; 414 | text-shadow: none; 415 | } 416 | .navbar .nav > li > a, 417 | .navbar .dropdown-menu a { 418 | padding: 6px 15px; 419 | font-weight: bold; 420 | color: #999999; 421 | -webkit-border-radius: 3px; 422 | -moz-border-radius: 3px; 423 | border-radius: 3px; 424 | } 425 | .navbar .dropdown-menu li + li a { 426 | margin-bottom: 2px; 427 | } 428 | .navbar .nav > li > a:hover, 429 | .navbar .dropdown-menu a:hover { 430 | background-color: #222222; 431 | } 432 | .navbar .dropdown-menu { 433 | position: static; 434 | top: auto; 435 | left: auto; 436 | float: none; 437 | display: block; 438 | max-width: none; 439 | margin: 0 15px; 440 | padding: 0; 441 | background-color: transparent; 442 | border: none; 443 | -webkit-border-radius: 0; 444 | -moz-border-radius: 0; 445 | border-radius: 0; 446 | -webkit-box-shadow: none; 447 | -moz-box-shadow: none; 448 | box-shadow: none; 449 | } 450 | .navbar .dropdown-menu:before, 451 | .navbar .dropdown-menu:after { 452 | display: none; 453 | } 454 | .navbar .dropdown-menu .divider { 455 | display: none; 456 | } 457 | .navbar-form, 458 | .navbar-search { 459 | float: none; 460 | padding: 9px 15px; 461 | margin: 9px 0; 462 | border-top: 1px solid #222222; 463 | border-bottom: 1px solid #222222; 464 | -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); 465 | -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); 466 | box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); 467 | } 468 | .navbar .nav.pull-right { 469 | float: none; 470 | margin-left: 0; 471 | } 472 | .navbar-static .navbar-inner { 473 | padding-left: 10px; 474 | padding-right: 10px; 475 | } 476 | .btn-navbar { 477 | display: block; 478 | } 479 | .nav-collapse { 480 | overflow: hidden; 481 | height: 0; 482 | } 483 | } 484 | @media (min-width: 980px) { 485 | .nav-collapse.collapse { 486 | height: auto !important; 487 | overflow: visible !important; 488 | } 489 | } 490 | @media (min-width: 1200px) { 491 | .row { 492 | margin-left: -30px; 493 | *zoom: 1; 494 | } 495 | .row:before, 496 | .row:after { 497 | display: table; 498 | content: ""; 499 | } 500 | .row:after { 501 | clear: both; 502 | } 503 | [class*="span"] { 504 | float: left; 505 | margin-left: 30px; 506 | } 507 | .container, 508 | .navbar-fixed-top .container, 509 | .navbar-fixed-bottom .container { 510 | width: 1170px; 511 | } 512 | .span12 { 513 | width: 1170px; 514 | } 515 | .span11 { 516 | width: 1070px; 517 | } 518 | .span10 { 519 | width: 970px; 520 | } 521 | .span9 { 522 | width: 870px; 523 | } 524 | .span8 { 525 | width: 770px; 526 | } 527 | .span7 { 528 | width: 670px; 529 | } 530 | .span6 { 531 | width: 570px; 532 | } 533 | .span5 { 534 | width: 470px; 535 | } 536 | .span4 { 537 | width: 370px; 538 | } 539 | .span3 { 540 | width: 270px; 541 | } 542 | .span2 { 543 | width: 170px; 544 | } 545 | .span1 { 546 | width: 70px; 547 | } 548 | .offset12 { 549 | margin-left: 1230px; 550 | } 551 | .offset11 { 552 | margin-left: 1130px; 553 | } 554 | .offset10 { 555 | margin-left: 1030px; 556 | } 557 | .offset9 { 558 | margin-left: 930px; 559 | } 560 | .offset8 { 561 | margin-left: 830px; 562 | } 563 | .offset7 { 564 | margin-left: 730px; 565 | } 566 | .offset6 { 567 | margin-left: 630px; 568 | } 569 | .offset5 { 570 | margin-left: 530px; 571 | } 572 | .offset4 { 573 | margin-left: 430px; 574 | } 575 | .offset3 { 576 | margin-left: 330px; 577 | } 578 | .offset2 { 579 | margin-left: 230px; 580 | } 581 | .offset1 { 582 | margin-left: 130px; 583 | } 584 | .row-fluid { 585 | width: 100%; 586 | *zoom: 1; 587 | } 588 | .row-fluid:before, 589 | .row-fluid:after { 590 | display: table; 591 | content: ""; 592 | } 593 | .row-fluid:after { 594 | clear: both; 595 | } 596 | .row-fluid > [class*="span"] { 597 | float: left; 598 | margin-left: 2.564102564%; 599 | } 600 | .row-fluid > [class*="span"]:first-child { 601 | margin-left: 0; 602 | } 603 | .row-fluid > .span12 { 604 | width: 100%; 605 | } 606 | .row-fluid > .span11 { 607 | width: 91.45299145300001%; 608 | } 609 | .row-fluid > .span10 { 610 | width: 82.905982906%; 611 | } 612 | .row-fluid > .span9 { 613 | width: 74.358974359%; 614 | } 615 | .row-fluid > .span8 { 616 | width: 65.81196581200001%; 617 | } 618 | .row-fluid > .span7 { 619 | width: 57.264957265%; 620 | } 621 | .row-fluid > .span6 { 622 | width: 48.717948718%; 623 | } 624 | .row-fluid > .span5 { 625 | width: 40.170940171000005%; 626 | } 627 | .row-fluid > .span4 { 628 | width: 31.623931624%; 629 | } 630 | .row-fluid > .span3 { 631 | width: 23.076923077%; 632 | } 633 | .row-fluid > .span2 { 634 | width: 14.529914530000001%; 635 | } 636 | .row-fluid > .span1 { 637 | width: 5.982905983%; 638 | } 639 | input, 640 | textarea, 641 | .uneditable-input { 642 | margin-left: 0; 643 | } 644 | input.span12, textarea.span12, .uneditable-input.span12 { 645 | width: 1160px; 646 | } 647 | input.span11, textarea.span11, .uneditable-input.span11 { 648 | width: 1060px; 649 | } 650 | input.span10, textarea.span10, .uneditable-input.span10 { 651 | width: 960px; 652 | } 653 | input.span9, textarea.span9, .uneditable-input.span9 { 654 | width: 860px; 655 | } 656 | input.span8, textarea.span8, .uneditable-input.span8 { 657 | width: 760px; 658 | } 659 | input.span7, textarea.span7, .uneditable-input.span7 { 660 | width: 660px; 661 | } 662 | input.span6, textarea.span6, .uneditable-input.span6 { 663 | width: 560px; 664 | } 665 | input.span5, textarea.span5, .uneditable-input.span5 { 666 | width: 460px; 667 | } 668 | input.span4, textarea.span4, .uneditable-input.span4 { 669 | width: 360px; 670 | } 671 | input.span3, textarea.span3, .uneditable-input.span3 { 672 | width: 260px; 673 | } 674 | input.span2, textarea.span2, .uneditable-input.span2 { 675 | width: 160px; 676 | } 677 | input.span1, textarea.span1, .uneditable-input.span1 { 678 | width: 60px; 679 | } 680 | .thumbnails { 681 | margin-left: -30px; 682 | } 683 | .thumbnails > li { 684 | margin-left: 30px; 685 | } 686 | } 687 | -------------------------------------------------------------------------------- /css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- 1 | .clearfix{*zoom:1;}.clearfix:before,.clearfix:after{display:table;content:"";} 2 | .clearfix:after{clear:both;} 3 | .hide-text{overflow:hidden;text-indent:100%;white-space:nowrap;} 4 | .input-block-level{display:block;width:100%;min-height:28px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;} 5 | .hidden{display:none;visibility:hidden;} 6 | .visible-phone{display:none;} 7 | .visible-tablet{display:none;} 8 | .visible-desktop{display:block;} 9 | .hidden-phone{display:block;} 10 | .hidden-tablet{display:block;} 11 | .hidden-desktop{display:none;} 12 | @media (max-width:767px){.visible-phone{display:block;} .hidden-phone{display:none;} .hidden-desktop{display:block;} .visible-desktop{display:none;}}@media (min-width:768px) and (max-width:979px){.visible-tablet{display:block;} .hidden-tablet{display:none;} .hidden-desktop{display:block;} .visible-desktop{display:none;}}@media (max-width:480px){.nav-collapse{-webkit-transform:translate3d(0, 0, 0);} .page-header h1 small{display:block;line-height:18px;} input[type="checkbox"],input[type="radio"]{border:1px solid #ccc;} .form-horizontal .control-group>label{float:none;width:auto;padding-top:0;text-align:left;} .form-horizontal .controls{margin-left:0;} .form-horizontal .control-list{padding-top:0;} .form-horizontal .form-actions{padding-left:10px;padding-right:10px;} .modal{position:absolute;top:10px;left:10px;right:10px;width:auto;margin:0;}.modal.fade.in{top:auto;} .modal-header .close{padding:10px;margin:-10px;} .carousel-caption{position:static;}}@media (max-width:767px){body{padding-left:20px;padding-right:20px;} .navbar-fixed-top{margin-left:-20px;margin-right:-20px;} .container{width:auto;} .row-fluid{width:100%;} .row{margin-left:0;} .row>[class*="span"],.row-fluid>[class*="span"]{float:none;display:block;width:auto;margin:0;} .thumbnails [class*="span"]{width:auto;} input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{display:block;width:100%;min-height:28px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;} .input-prepend input[class*="span"],.input-append input[class*="span"]{width:auto;}}@media (min-width:768px) and (max-width:979px){.row{margin-left:-20px;*zoom:1;}.row:before,.row:after{display:table;content:"";} .row:after{clear:both;} [class*="span"]{float:left;margin-left:20px;} .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:724px;} .span12{width:724px;} .span11{width:662px;} .span10{width:600px;} .span9{width:538px;} .span8{width:476px;} .span7{width:414px;} .span6{width:352px;} .span5{width:290px;} .span4{width:228px;} .span3{width:166px;} .span2{width:104px;} .span1{width:42px;} .offset12{margin-left:764px;} .offset11{margin-left:702px;} .offset10{margin-left:640px;} .offset9{margin-left:578px;} .offset8{margin-left:516px;} .offset7{margin-left:454px;} .offset6{margin-left:392px;} .offset5{margin-left:330px;} .offset4{margin-left:268px;} .offset3{margin-left:206px;} .offset2{margin-left:144px;} .offset1{margin-left:82px;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";} .row-fluid:after{clear:both;} .row-fluid>[class*="span"]{float:left;margin-left:2.762430939%;} .row-fluid>[class*="span"]:first-child{margin-left:0;} .row-fluid > .span12{width:99.999999993%;} .row-fluid > .span11{width:91.436464082%;} .row-fluid > .span10{width:82.87292817100001%;} .row-fluid > .span9{width:74.30939226%;} .row-fluid > .span8{width:65.74585634900001%;} .row-fluid > .span7{width:57.182320438000005%;} .row-fluid > .span6{width:48.618784527%;} .row-fluid > .span5{width:40.055248616%;} .row-fluid > .span4{width:31.491712705%;} .row-fluid > .span3{width:22.928176794%;} .row-fluid > .span2{width:14.364640883%;} .row-fluid > .span1{width:5.801104972%;} input,textarea,.uneditable-input{margin-left:0;} input.span12, textarea.span12, .uneditable-input.span12{width:714px;} input.span11, textarea.span11, .uneditable-input.span11{width:652px;} input.span10, textarea.span10, .uneditable-input.span10{width:590px;} input.span9, textarea.span9, .uneditable-input.span9{width:528px;} input.span8, textarea.span8, .uneditable-input.span8{width:466px;} input.span7, textarea.span7, .uneditable-input.span7{width:404px;} input.span6, textarea.span6, .uneditable-input.span6{width:342px;} input.span5, textarea.span5, .uneditable-input.span5{width:280px;} input.span4, textarea.span4, .uneditable-input.span4{width:218px;} input.span3, textarea.span3, .uneditable-input.span3{width:156px;} input.span2, textarea.span2, .uneditable-input.span2{width:94px;} input.span1, textarea.span1, .uneditable-input.span1{width:32px;}}@media (max-width:979px){body{padding-top:0;} .navbar-fixed-top{position:static;margin-bottom:18px;} .navbar-fixed-top .navbar-inner{padding:5px;} .navbar .container{width:auto;padding:0;} .navbar .brand{padding-left:10px;padding-right:10px;margin:0 0 0 -5px;} .navbar .nav-collapse{clear:left;} .navbar .nav{float:none;margin:0 0 9px;} .navbar .nav>li{float:none;} .navbar .nav>li>a{margin-bottom:2px;} .navbar .nav>.divider-vertical{display:none;} .navbar .nav .nav-header{color:#999999;text-shadow:none;} .navbar .nav>li>a,.navbar .dropdown-menu a{padding:6px 15px;font-weight:bold;color:#999999;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} .navbar .dropdown-menu li+li a{margin-bottom:2px;} .navbar .nav>li>a:hover,.navbar .dropdown-menu a:hover{background-color:#222222;} .navbar .dropdown-menu{position:static;top:auto;left:auto;float:none;display:block;max-width:none;margin:0 15px;padding:0;background-color:transparent;border:none;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} .navbar .dropdown-menu:before,.navbar .dropdown-menu:after{display:none;} .navbar .dropdown-menu .divider{display:none;} .navbar-form,.navbar-search{float:none;padding:9px 15px;margin:9px 0;border-top:1px solid #222222;border-bottom:1px solid #222222;-webkit-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1),0 1px 0 rgba(255, 255, 255, 0.1);-moz-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1),0 1px 0 rgba(255, 255, 255, 0.1);box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1),0 1px 0 rgba(255, 255, 255, 0.1);} .navbar .nav.pull-right{float:none;margin-left:0;} .navbar-static .navbar-inner{padding-left:10px;padding-right:10px;} .btn-navbar{display:block;} .nav-collapse{overflow:hidden;height:0;}}@media (min-width:980px){.nav-collapse.collapse{height:auto !important;overflow:visible !important;}}@media (min-width:1200px){.row{margin-left:-30px;*zoom:1;}.row:before,.row:after{display:table;content:"";} .row:after{clear:both;} [class*="span"]{float:left;margin-left:30px;} .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:1170px;} .span12{width:1170px;} .span11{width:1070px;} .span10{width:970px;} .span9{width:870px;} .span8{width:770px;} .span7{width:670px;} .span6{width:570px;} .span5{width:470px;} .span4{width:370px;} .span3{width:270px;} .span2{width:170px;} .span1{width:70px;} .offset12{margin-left:1230px;} .offset11{margin-left:1130px;} .offset10{margin-left:1030px;} .offset9{margin-left:930px;} .offset8{margin-left:830px;} .offset7{margin-left:730px;} .offset6{margin-left:630px;} .offset5{margin-left:530px;} .offset4{margin-left:430px;} .offset3{margin-left:330px;} .offset2{margin-left:230px;} .offset1{margin-left:130px;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";} .row-fluid:after{clear:both;} .row-fluid>[class*="span"]{float:left;margin-left:2.564102564%;} .row-fluid>[class*="span"]:first-child{margin-left:0;} .row-fluid > .span12{width:100%;} .row-fluid > .span11{width:91.45299145300001%;} .row-fluid > .span10{width:82.905982906%;} .row-fluid > .span9{width:74.358974359%;} .row-fluid > .span8{width:65.81196581200001%;} .row-fluid > .span7{width:57.264957265%;} .row-fluid > .span6{width:48.717948718%;} .row-fluid > .span5{width:40.170940171000005%;} .row-fluid > .span4{width:31.623931624%;} .row-fluid > .span3{width:23.076923077%;} .row-fluid > .span2{width:14.529914530000001%;} .row-fluid > .span1{width:5.982905983%;} input,textarea,.uneditable-input{margin-left:0;} input.span12, textarea.span12, .uneditable-input.span12{width:1160px;} input.span11, textarea.span11, .uneditable-input.span11{width:1060px;} input.span10, textarea.span10, .uneditable-input.span10{width:960px;} input.span9, textarea.span9, .uneditable-input.span9{width:860px;} input.span8, textarea.span8, .uneditable-input.span8{width:760px;} input.span7, textarea.span7, .uneditable-input.span7{width:660px;} input.span6, textarea.span6, .uneditable-input.span6{width:560px;} input.span5, textarea.span5, .uneditable-input.span5{width:460px;} input.span4, textarea.span4, .uneditable-input.span4{width:360px;} input.span3, textarea.span3, .uneditable-input.span3{width:260px;} input.span2, textarea.span2, .uneditable-input.span2{width:160px;} input.span1, textarea.span1, .uneditable-input.span1{width:60px;} .thumbnails{margin-left:-30px;} .thumbnails>li{margin-left:30px;}} 13 | -------------------------------------------------------------------------------- /css/bootstrap.min.css: -------------------------------------------------------------------------------- 1 | article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block;} 2 | audio,canvas,video{display:inline-block;*display:inline;*zoom:1;} 3 | audio:not([controls]){display:none;} 4 | html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;} 5 | a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} 6 | a:hover,a:active{outline:0;} 7 | sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline;} 8 | sup{top:-0.5em;} 9 | sub{bottom:-0.25em;} 10 | img{height:auto;border:0;-ms-interpolation-mode:bicubic;vertical-align:middle;} 11 | button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle;} 12 | button,input{*overflow:visible;line-height:normal;} 13 | button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0;} 14 | button,input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;-webkit-appearance:button;} 15 | input[type="search"]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;} 16 | input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none;} 17 | textarea{overflow:auto;vertical-align:top;} 18 | .clearfix{*zoom:1;}.clearfix:before,.clearfix:after{display:table;content:"";} 19 | .clearfix:after{clear:both;} 20 | .hide-text{overflow:hidden;text-indent:100%;white-space:nowrap;} 21 | .input-block-level{display:block;width:100%;min-height:28px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;} 22 | body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:18px;color:#333333;background-color:#ffffff;} 23 | a{color:#0088cc;text-decoration:none;} 24 | a:hover{color:#005580;text-decoration:underline;} 25 | .row{margin-left:-20px;*zoom:1;}.row:before,.row:after{display:table;content:"";} 26 | .row:after{clear:both;} 27 | [class*="span"]{float:left;margin-left:20px;} 28 | .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px;} 29 | .span12{width:940px;} 30 | .span11{width:860px;} 31 | .span10{width:780px;} 32 | .span9{width:700px;} 33 | .span8{width:620px;} 34 | .span7{width:540px;} 35 | .span6{width:460px;} 36 | .span5{width:380px;} 37 | .span4{width:300px;} 38 | .span3{width:220px;} 39 | .span2{width:140px;} 40 | .span1{width:60px;} 41 | .offset12{margin-left:980px;} 42 | .offset11{margin-left:900px;} 43 | .offset10{margin-left:820px;} 44 | .offset9{margin-left:740px;} 45 | .offset8{margin-left:660px;} 46 | .offset7{margin-left:580px;} 47 | .offset6{margin-left:500px;} 48 | .offset5{margin-left:420px;} 49 | .offset4{margin-left:340px;} 50 | .offset3{margin-left:260px;} 51 | .offset2{margin-left:180px;} 52 | .offset1{margin-left:100px;} 53 | .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";} 54 | .row-fluid:after{clear:both;} 55 | .row-fluid>[class*="span"]{float:left;margin-left:2.127659574%;} 56 | .row-fluid>[class*="span"]:first-child{margin-left:0;} 57 | .row-fluid > .span12{width:99.99999998999999%;} 58 | .row-fluid > .span11{width:91.489361693%;} 59 | .row-fluid > .span10{width:82.97872339599999%;} 60 | .row-fluid > .span9{width:74.468085099%;} 61 | .row-fluid > .span8{width:65.95744680199999%;} 62 | .row-fluid > .span7{width:57.446808505%;} 63 | .row-fluid > .span6{width:48.93617020799999%;} 64 | .row-fluid > .span5{width:40.425531911%;} 65 | .row-fluid > .span4{width:31.914893614%;} 66 | .row-fluid > .span3{width:23.404255317%;} 67 | .row-fluid > .span2{width:14.89361702%;} 68 | .row-fluid > .span1{width:6.382978723%;} 69 | .container{margin-left:auto;margin-right:auto;*zoom:1;}.container:before,.container:after{display:table;content:"";} 70 | .container:after{clear:both;} 71 | .container-fluid{padding-left:20px;padding-right:20px;*zoom:1;}.container-fluid:before,.container-fluid:after{display:table;content:"";} 72 | .container-fluid:after{clear:both;} 73 | p{margin:0 0 9px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:18px;}p small{font-size:11px;color:#999999;} 74 | .lead{margin-bottom:18px;font-size:20px;font-weight:200;line-height:27px;} 75 | h1,h2,h3,h4,h5,h6{margin:0;font-family:inherit;font-weight:bold;color:inherit;text-rendering:optimizelegibility;}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:normal;color:#999999;} 76 | h1{font-size:30px;line-height:36px;}h1 small{font-size:18px;} 77 | h2{font-size:24px;line-height:36px;}h2 small{font-size:18px;} 78 | h3{line-height:27px;font-size:18px;}h3 small{font-size:14px;} 79 | h4,h5,h6{line-height:18px;} 80 | h4{font-size:14px;}h4 small{font-size:12px;} 81 | h5{font-size:12px;} 82 | h6{font-size:11px;color:#999999;text-transform:uppercase;} 83 | .page-header{padding-bottom:17px;margin:18px 0;border-bottom:1px solid #eeeeee;} 84 | .page-header h1{line-height:1;} 85 | ul,ol{padding:0;margin:0 0 9px 25px;} 86 | ul ul,ul ol,ol ol,ol ul{margin-bottom:0;} 87 | ul{list-style:disc;} 88 | ol{list-style:decimal;} 89 | li{line-height:18px;} 90 | ul.unstyled,ol.unstyled{margin-left:0;list-style:none;} 91 | dl{margin-bottom:18px;} 92 | dt,dd{line-height:18px;} 93 | dt{font-weight:bold;line-height:17px;} 94 | dd{margin-left:9px;} 95 | .dl-horizontal dt{float:left;clear:left;width:120px;text-align:right;} 96 | .dl-horizontal dd{margin-left:130px;} 97 | hr{margin:18px 0;border:0;border-top:1px solid #eeeeee;border-bottom:1px solid #ffffff;} 98 | strong{font-weight:bold;} 99 | em{font-style:italic;} 100 | .muted{color:#999999;} 101 | abbr[title]{border-bottom:1px dotted #ddd;cursor:help;} 102 | abbr.initialism{font-size:90%;text-transform:uppercase;} 103 | blockquote{padding:0 0 0 15px;margin:0 0 18px;border-left:5px solid #eeeeee;}blockquote p{margin-bottom:0;font-size:16px;font-weight:300;line-height:22.5px;} 104 | blockquote small{display:block;line-height:18px;color:#999999;}blockquote small:before{content:'\2014 \00A0';} 105 | blockquote.pull-right{float:right;padding-left:0;padding-right:15px;border-left:0;border-right:5px solid #eeeeee;}blockquote.pull-right p,blockquote.pull-right small{text-align:right;} 106 | q:before,q:after,blockquote:before,blockquote:after{content:"";} 107 | address{display:block;margin-bottom:18px;line-height:18px;font-style:normal;} 108 | small{font-size:100%;} 109 | cite{font-style:normal;} 110 | code,pre{padding:0 3px 2px;font-family:Menlo,Monaco,"Courier New",monospace;font-size:12px;color:#333333;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} 111 | code{padding:2px 4px;color:#d14;background-color:#f7f7f9;border:1px solid #e1e1e8;} 112 | pre{display:block;padding:8.5px;margin:0 0 9px;font-size:12.025px;line-height:18px;background-color:#f5f5f5;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.15);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;white-space:pre;white-space:pre-wrap;word-break:break-all;word-wrap:break-word;}pre.prettyprint{margin-bottom:18px;} 113 | pre code{padding:0;color:inherit;background-color:transparent;border:0;} 114 | .pre-scrollable{max-height:340px;overflow-y:scroll;} 115 | form{margin:0 0 18px;} 116 | fieldset{padding:0;margin:0;border:0;} 117 | legend{display:block;width:100%;padding:0;margin-bottom:27px;font-size:19.5px;line-height:36px;color:#333333;border:0;border-bottom:1px solid #eee;}legend small{font-size:13.5px;color:#999999;} 118 | label,input,button,select,textarea{font-size:13px;font-weight:normal;line-height:18px;} 119 | input,button,select,textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;} 120 | label{display:block;margin-bottom:5px;color:#333333;} 121 | input,textarea,select,.uneditable-input{display:inline-block;width:210px;height:18px;padding:4px;margin-bottom:9px;font-size:13px;line-height:18px;color:#555555;border:1px solid #cccccc;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} 122 | .uneditable-textarea{width:auto;height:auto;} 123 | label input,label textarea,label select{display:block;} 124 | input[type="image"],input[type="checkbox"],input[type="radio"]{width:auto;height:auto;padding:0;margin:3px 0;*margin-top:0;line-height:normal;cursor:pointer;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;border:0 \9;} 125 | input[type="image"]{border:0;} 126 | input[type="file"]{width:auto;padding:initial;line-height:initial;border:initial;background-color:#ffffff;background-color:initial;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} 127 | input[type="button"],input[type="reset"],input[type="submit"]{width:auto;height:auto;} 128 | select,input[type="file"]{height:28px;*margin-top:4px;line-height:28px;} 129 | input[type="file"]{line-height:18px \9;} 130 | select{width:220px;background-color:#ffffff;} 131 | select[multiple],select[size]{height:auto;} 132 | input[type="image"]{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} 133 | textarea{height:auto;} 134 | input[type="hidden"]{display:none;} 135 | .radio,.checkbox{padding-left:18px;} 136 | .radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-18px;} 137 | .controls>.radio:first-child,.controls>.checkbox:first-child{padding-top:5px;} 138 | .radio.inline,.checkbox.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle;} 139 | .radio.inline+.radio.inline,.checkbox.inline+.checkbox.inline{margin-left:10px;} 140 | input,textarea{-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-webkit-transition:border linear 0.2s,box-shadow linear 0.2s;-moz-transition:border linear 0.2s,box-shadow linear 0.2s;-ms-transition:border linear 0.2s,box-shadow linear 0.2s;-o-transition:border linear 0.2s,box-shadow linear 0.2s;transition:border linear 0.2s,box-shadow linear 0.2s;} 141 | input:focus,textarea:focus{border-color:rgba(82, 168, 236, 0.8);-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 8px rgba(82, 168, 236, 0.6);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 8px rgba(82, 168, 236, 0.6);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 8px rgba(82, 168, 236, 0.6);outline:0;outline:thin dotted \9;} 142 | input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus,select:focus{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} 143 | .input-mini{width:60px;} 144 | .input-small{width:90px;} 145 | .input-medium{width:150px;} 146 | .input-large{width:210px;} 147 | .input-xlarge{width:270px;} 148 | .input-xxlarge{width:530px;} 149 | input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{float:none;margin-left:0;} 150 | input,textarea,.uneditable-input{margin-left:0;} 151 | input.span12, textarea.span12, .uneditable-input.span12{width:930px;} 152 | input.span11, textarea.span11, .uneditable-input.span11{width:850px;} 153 | input.span10, textarea.span10, .uneditable-input.span10{width:770px;} 154 | input.span9, textarea.span9, .uneditable-input.span9{width:690px;} 155 | input.span8, textarea.span8, .uneditable-input.span8{width:610px;} 156 | input.span7, textarea.span7, .uneditable-input.span7{width:530px;} 157 | input.span6, textarea.span6, .uneditable-input.span6{width:450px;} 158 | input.span5, textarea.span5, .uneditable-input.span5{width:370px;} 159 | input.span4, textarea.span4, .uneditable-input.span4{width:290px;} 160 | input.span3, textarea.span3, .uneditable-input.span3{width:210px;} 161 | input.span2, textarea.span2, .uneditable-input.span2{width:130px;} 162 | input.span1, textarea.span1, .uneditable-input.span1{width:50px;} 163 | input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{background-color:#eeeeee;border-color:#ddd;cursor:not-allowed;} 164 | .control-group.warning>label,.control-group.warning .help-block,.control-group.warning .help-inline{color:#c09853;} 165 | .control-group.warning input,.control-group.warning select,.control-group.warning textarea{color:#c09853;border-color:#c09853;}.control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus{border-color:#a47e3c;-webkit-box-shadow:0 0 6px #dbc59e;-moz-box-shadow:0 0 6px #dbc59e;box-shadow:0 0 6px #dbc59e;} 166 | .control-group.warning .input-prepend .add-on,.control-group.warning .input-append .add-on{color:#c09853;background-color:#fcf8e3;border-color:#c09853;} 167 | .control-group.error>label,.control-group.error .help-block,.control-group.error .help-inline{color:#b94a48;} 168 | .control-group.error input,.control-group.error select,.control-group.error textarea{color:#b94a48;border-color:#b94a48;}.control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus{border-color:#953b39;-webkit-box-shadow:0 0 6px #d59392;-moz-box-shadow:0 0 6px #d59392;box-shadow:0 0 6px #d59392;} 169 | .control-group.error .input-prepend .add-on,.control-group.error .input-append .add-on{color:#b94a48;background-color:#f2dede;border-color:#b94a48;} 170 | .control-group.success>label,.control-group.success .help-block,.control-group.success .help-inline{color:#468847;} 171 | .control-group.success input,.control-group.success select,.control-group.success textarea{color:#468847;border-color:#468847;}.control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus{border-color:#356635;-webkit-box-shadow:0 0 6px #7aba7b;-moz-box-shadow:0 0 6px #7aba7b;box-shadow:0 0 6px #7aba7b;} 172 | .control-group.success .input-prepend .add-on,.control-group.success .input-append .add-on{color:#468847;background-color:#dff0d8;border-color:#468847;} 173 | input:focus:required:invalid,textarea:focus:required:invalid,select:focus:required:invalid{color:#b94a48;border-color:#ee5f5b;}input:focus:required:invalid:focus,textarea:focus:required:invalid:focus,select:focus:required:invalid:focus{border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7;} 174 | .form-actions{padding:17px 20px 18px;margin-top:18px;margin-bottom:18px;background-color:#eeeeee;border-top:1px solid #ddd;*zoom:1;}.form-actions:before,.form-actions:after{display:table;content:"";} 175 | .form-actions:after{clear:both;} 176 | .uneditable-input{display:block;background-color:#ffffff;border-color:#eee;-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);cursor:not-allowed;} 177 | :-moz-placeholder{color:#999999;} 178 | ::-webkit-input-placeholder{color:#999999;} 179 | .help-block,.help-inline{color:#555555;} 180 | .help-block{display:block;margin-bottom:9px;} 181 | .help-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;padding-left:5px;} 182 | .input-prepend,.input-append{margin-bottom:5px;}.input-prepend input,.input-append input,.input-prepend select,.input-append select,.input-prepend .uneditable-input,.input-append .uneditable-input{*margin-left:0;-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0;}.input-prepend input:focus,.input-append input:focus,.input-prepend select:focus,.input-append select:focus,.input-prepend .uneditable-input:focus,.input-append .uneditable-input:focus{position:relative;z-index:2;} 183 | .input-prepend .uneditable-input,.input-append .uneditable-input{border-left-color:#ccc;} 184 | .input-prepend .add-on,.input-append .add-on{display:inline-block;width:auto;min-width:16px;height:18px;padding:4px 5px;font-weight:normal;line-height:18px;text-align:center;text-shadow:0 1px 0 #ffffff;vertical-align:middle;background-color:#eeeeee;border:1px solid #ccc;} 185 | .input-prepend .add-on,.input-append .add-on,.input-prepend .btn,.input-append .btn{-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;} 186 | .input-prepend .active,.input-append .active{background-color:#a9dba9;border-color:#46a546;} 187 | .input-prepend .add-on,.input-prepend .btn{margin-right:-1px;} 188 | .input-append input,.input-append select .uneditable-input{-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;} 189 | .input-append .uneditable-input{border-left-color:#eee;border-right-color:#ccc;} 190 | .input-append .add-on,.input-append .btn{margin-left:-1px;-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0;} 191 | .input-prepend.input-append input,.input-prepend.input-append select,.input-prepend.input-append .uneditable-input{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} 192 | .input-prepend.input-append .add-on:first-child,.input-prepend.input-append .btn:first-child{margin-right:-1px;-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;} 193 | .input-prepend.input-append .add-on:last-child,.input-prepend.input-append .btn:last-child{margin-left:-1px;-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0;} 194 | .search-query{padding-left:14px;padding-right:14px;margin-bottom:0;-webkit-border-radius:14px;-moz-border-radius:14px;border-radius:14px;} 195 | .form-search input,.form-inline input,.form-horizontal input,.form-search textarea,.form-inline textarea,.form-horizontal textarea,.form-search select,.form-inline select,.form-horizontal select,.form-search .help-inline,.form-inline .help-inline,.form-horizontal .help-inline,.form-search .uneditable-input,.form-inline .uneditable-input,.form-horizontal .uneditable-input,.form-search .input-prepend,.form-inline .input-prepend,.form-horizontal .input-prepend,.form-search .input-append,.form-inline .input-append,.form-horizontal .input-append{display:inline-block;margin-bottom:0;} 196 | .form-search .hide,.form-inline .hide,.form-horizontal .hide{display:none;} 197 | .form-search label,.form-inline label{display:inline-block;} 198 | .form-search .input-append,.form-inline .input-append,.form-search .input-prepend,.form-inline .input-prepend{margin-bottom:0;} 199 | .form-search .radio,.form-search .checkbox,.form-inline .radio,.form-inline .checkbox{padding-left:0;margin-bottom:0;vertical-align:middle;} 200 | .form-search .radio input[type="radio"],.form-search .checkbox input[type="checkbox"],.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:left;margin-left:0;margin-right:3px;} 201 | .control-group{margin-bottom:9px;} 202 | legend+.control-group{margin-top:18px;-webkit-margin-top-collapse:separate;} 203 | .form-horizontal .control-group{margin-bottom:18px;*zoom:1;}.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;content:"";} 204 | .form-horizontal .control-group:after{clear:both;} 205 | .form-horizontal .control-label{float:left;width:140px;padding-top:5px;text-align:right;} 206 | .form-horizontal .controls{margin-left:160px;*display:inline-block;*margin-left:0;*padding-left:20px;} 207 | .form-horizontal .help-block{margin-top:9px;margin-bottom:0;} 208 | .form-horizontal .form-actions{padding-left:160px;} 209 | table{max-width:100%;border-collapse:collapse;border-spacing:0;background-color:transparent;} 210 | .table{width:100%;margin-bottom:18px;}.table th,.table td{padding:8px;line-height:18px;text-align:left;vertical-align:top;border-top:1px solid #dddddd;} 211 | .table th{font-weight:bold;} 212 | .table thead th{vertical-align:bottom;} 213 | .table colgroup+thead tr:first-child th,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child th,.table thead:first-child tr:first-child td{border-top:0;} 214 | .table tbody+tbody{border-top:2px solid #dddddd;} 215 | .table-condensed th,.table-condensed td{padding:4px 5px;} 216 | .table-bordered{border:1px solid #dddddd;border-left:0;border-collapse:separate;*border-collapse:collapsed;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.table-bordered th,.table-bordered td{border-left:1px solid #dddddd;} 217 | .table-bordered thead:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child td{border-top:0;} 218 | .table-bordered thead:first-child tr:first-child th:first-child,.table-bordered tbody:first-child tr:first-child td:first-child{-webkit-border-radius:4px 0 0 0;-moz-border-radius:4px 0 0 0;border-radius:4px 0 0 0;} 219 | .table-bordered thead:first-child tr:first-child th:last-child,.table-bordered tbody:first-child tr:first-child td:last-child{-webkit-border-radius:0 4px 0 0;-moz-border-radius:0 4px 0 0;border-radius:0 4px 0 0;} 220 | .table-bordered thead:last-child tr:last-child th:first-child,.table-bordered tbody:last-child tr:last-child td:first-child{-webkit-border-radius:0 0 0 4px;-moz-border-radius:0 0 0 4px;border-radius:0 0 0 4px;} 221 | .table-bordered thead:last-child tr:last-child th:last-child,.table-bordered tbody:last-child tr:last-child td:last-child{-webkit-border-radius:0 0 4px 0;-moz-border-radius:0 0 4px 0;border-radius:0 0 4px 0;} 222 | .table-striped tbody tr:nth-child(odd) td,.table-striped tbody tr:nth-child(odd) th{background-color:#f9f9f9;} 223 | .table tbody tr:hover td,.table tbody tr:hover th{background-color:#f5f5f5;} 224 | table .span1{float:none;width:44px;margin-left:0;} 225 | table .span2{float:none;width:124px;margin-left:0;} 226 | table .span3{float:none;width:204px;margin-left:0;} 227 | table .span4{float:none;width:284px;margin-left:0;} 228 | table .span5{float:none;width:364px;margin-left:0;} 229 | table .span6{float:none;width:444px;margin-left:0;} 230 | table .span7{float:none;width:524px;margin-left:0;} 231 | table .span8{float:none;width:604px;margin-left:0;} 232 | table .span9{float:none;width:684px;margin-left:0;} 233 | table .span10{float:none;width:764px;margin-left:0;} 234 | table .span11{float:none;width:844px;margin-left:0;} 235 | table .span12{float:none;width:924px;margin-left:0;} 236 | table .span13{float:none;width:1004px;margin-left:0;} 237 | table .span14{float:none;width:1084px;margin-left:0;} 238 | table .span15{float:none;width:1164px;margin-left:0;} 239 | table .span16{float:none;width:1244px;margin-left:0;} 240 | table .span17{float:none;width:1324px;margin-left:0;} 241 | table .span18{float:none;width:1404px;margin-left:0;} 242 | table .span19{float:none;width:1484px;margin-left:0;} 243 | table .span20{float:none;width:1564px;margin-left:0;} 244 | table .span21{float:none;width:1644px;margin-left:0;} 245 | table .span22{float:none;width:1724px;margin-left:0;} 246 | table .span23{float:none;width:1804px;margin-left:0;} 247 | table .span24{float:none;width:1884px;margin-left:0;} 248 | [class^="icon-"],[class*=" icon-"]{display:inline-block;width:14px;height:14px;line-height:14px;vertical-align:text-top;background-image:url("../img/glyphicons-halflings.png");background-position:14px 14px;background-repeat:no-repeat;*margin-right:.3em;}[class^="icon-"]:last-child,[class*=" icon-"]:last-child{*margin-left:0;} 249 | .icon-white{background-image:url("../img/glyphicons-halflings-white.png");} 250 | .icon-glass{background-position:0 0;} 251 | .icon-music{background-position:-24px 0;} 252 | .icon-search{background-position:-48px 0;} 253 | .icon-envelope{background-position:-72px 0;} 254 | .icon-heart{background-position:-96px 0;} 255 | .icon-star{background-position:-120px 0;} 256 | .icon-star-empty{background-position:-144px 0;} 257 | .icon-user{background-position:-168px 0;} 258 | .icon-film{background-position:-192px 0;} 259 | .icon-th-large{background-position:-216px 0;} 260 | .icon-th{background-position:-240px 0;} 261 | .icon-th-list{background-position:-264px 0;} 262 | .icon-ok{background-position:-288px 0;} 263 | .icon-remove{background-position:-312px 0;} 264 | .icon-zoom-in{background-position:-336px 0;} 265 | .icon-zoom-out{background-position:-360px 0;} 266 | .icon-off{background-position:-384px 0;} 267 | .icon-signal{background-position:-408px 0;} 268 | .icon-cog{background-position:-432px 0;} 269 | .icon-trash{background-position:-456px 0;} 270 | .icon-home{background-position:0 -24px;} 271 | .icon-file{background-position:-24px -24px;} 272 | .icon-time{background-position:-48px -24px;} 273 | .icon-road{background-position:-72px -24px;} 274 | .icon-download-alt{background-position:-96px -24px;} 275 | .icon-download{background-position:-120px -24px;} 276 | .icon-upload{background-position:-144px -24px;} 277 | .icon-inbox{background-position:-168px -24px;} 278 | .icon-play-circle{background-position:-192px -24px;} 279 | .icon-repeat{background-position:-216px -24px;} 280 | .icon-refresh{background-position:-240px -24px;} 281 | .icon-list-alt{background-position:-264px -24px;} 282 | .icon-lock{background-position:-287px -24px;} 283 | .icon-flag{background-position:-312px -24px;} 284 | .icon-headphones{background-position:-336px -24px;} 285 | .icon-volume-off{background-position:-360px -24px;} 286 | .icon-volume-down{background-position:-384px -24px;} 287 | .icon-volume-up{background-position:-408px -24px;} 288 | .icon-qrcode{background-position:-432px -24px;} 289 | .icon-barcode{background-position:-456px -24px;} 290 | .icon-tag{background-position:0 -48px;} 291 | .icon-tags{background-position:-25px -48px;} 292 | .icon-book{background-position:-48px -48px;} 293 | .icon-bookmark{background-position:-72px -48px;} 294 | .icon-print{background-position:-96px -48px;} 295 | .icon-camera{background-position:-120px -48px;} 296 | .icon-font{background-position:-144px -48px;} 297 | .icon-bold{background-position:-167px -48px;} 298 | .icon-italic{background-position:-192px -48px;} 299 | .icon-text-height{background-position:-216px -48px;} 300 | .icon-text-width{background-position:-240px -48px;} 301 | .icon-align-left{background-position:-264px -48px;} 302 | .icon-align-center{background-position:-288px -48px;} 303 | .icon-align-right{background-position:-312px -48px;} 304 | .icon-align-justify{background-position:-336px -48px;} 305 | .icon-list{background-position:-360px -48px;} 306 | .icon-indent-left{background-position:-384px -48px;} 307 | .icon-indent-right{background-position:-408px -48px;} 308 | .icon-facetime-video{background-position:-432px -48px;} 309 | .icon-picture{background-position:-456px -48px;} 310 | .icon-pencil{background-position:0 -72px;} 311 | .icon-map-marker{background-position:-24px -72px;} 312 | .icon-adjust{background-position:-48px -72px;} 313 | .icon-tint{background-position:-72px -72px;} 314 | .icon-edit{background-position:-96px -72px;} 315 | .icon-share{background-position:-120px -72px;} 316 | .icon-check{background-position:-144px -72px;} 317 | .icon-move{background-position:-168px -72px;} 318 | .icon-step-backward{background-position:-192px -72px;} 319 | .icon-fast-backward{background-position:-216px -72px;} 320 | .icon-backward{background-position:-240px -72px;} 321 | .icon-play{background-position:-264px -72px;} 322 | .icon-pause{background-position:-288px -72px;} 323 | .icon-stop{background-position:-312px -72px;} 324 | .icon-forward{background-position:-336px -72px;} 325 | .icon-fast-forward{background-position:-360px -72px;} 326 | .icon-step-forward{background-position:-384px -72px;} 327 | .icon-eject{background-position:-408px -72px;} 328 | .icon-chevron-left{background-position:-432px -72px;} 329 | .icon-chevron-right{background-position:-456px -72px;} 330 | .icon-plus-sign{background-position:0 -96px;} 331 | .icon-minus-sign{background-position:-24px -96px;} 332 | .icon-remove-sign{background-position:-48px -96px;} 333 | .icon-ok-sign{background-position:-72px -96px;} 334 | .icon-question-sign{background-position:-96px -96px;} 335 | .icon-info-sign{background-position:-120px -96px;} 336 | .icon-screenshot{background-position:-144px -96px;} 337 | .icon-remove-circle{background-position:-168px -96px;} 338 | .icon-ok-circle{background-position:-192px -96px;} 339 | .icon-ban-circle{background-position:-216px -96px;} 340 | .icon-arrow-left{background-position:-240px -96px;} 341 | .icon-arrow-right{background-position:-264px -96px;} 342 | .icon-arrow-up{background-position:-289px -96px;} 343 | .icon-arrow-down{background-position:-312px -96px;} 344 | .icon-share-alt{background-position:-336px -96px;} 345 | .icon-resize-full{background-position:-360px -96px;} 346 | .icon-resize-small{background-position:-384px -96px;} 347 | .icon-plus{background-position:-408px -96px;} 348 | .icon-minus{background-position:-433px -96px;} 349 | .icon-asterisk{background-position:-456px -96px;} 350 | .icon-exclamation-sign{background-position:0 -120px;} 351 | .icon-gift{background-position:-24px -120px;} 352 | .icon-leaf{background-position:-48px -120px;} 353 | .icon-fire{background-position:-72px -120px;} 354 | .icon-eye-open{background-position:-96px -120px;} 355 | .icon-eye-close{background-position:-120px -120px;} 356 | .icon-warning-sign{background-position:-144px -120px;} 357 | .icon-plane{background-position:-168px -120px;} 358 | .icon-calendar{background-position:-192px -120px;} 359 | .icon-random{background-position:-216px -120px;} 360 | .icon-comment{background-position:-240px -120px;} 361 | .icon-magnet{background-position:-264px -120px;} 362 | .icon-chevron-up{background-position:-288px -120px;} 363 | .icon-chevron-down{background-position:-313px -119px;} 364 | .icon-retweet{background-position:-336px -120px;} 365 | .icon-shopping-cart{background-position:-360px -120px;} 366 | .icon-folder-close{background-position:-384px -120px;} 367 | .icon-folder-open{background-position:-408px -120px;} 368 | .icon-resize-vertical{background-position:-432px -119px;} 369 | .icon-resize-horizontal{background-position:-456px -118px;} 370 | .dropdown{position:relative;} 371 | .dropdown-toggle{*margin-bottom:-3px;} 372 | .dropdown-toggle:active,.open .dropdown-toggle{outline:0;} 373 | .caret{display:inline-block;width:0;height:0;vertical-align:top;border-left:4px solid transparent;border-right:4px solid transparent;border-top:4px solid #000000;opacity:0.3;filter:alpha(opacity=30);content:"";} 374 | .dropdown .caret{margin-top:8px;margin-left:2px;} 375 | .dropdown:hover .caret,.open.dropdown .caret{opacity:1;filter:alpha(opacity=100);} 376 | .dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;float:left;display:none;min-width:160px;padding:4px 0;margin:0;list-style:none;background-color:#ffffff;border-color:#ccc;border-color:rgba(0, 0, 0, 0.2);border-style:solid;border-width:1px;-webkit-border-radius:0 0 5px 5px;-moz-border-radius:0 0 5px 5px;border-radius:0 0 5px 5px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-moz-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;*border-right-width:2px;*border-bottom-width:2px;}.dropdown-menu.pull-right{right:0;left:auto;} 377 | .dropdown-menu .divider{height:1px;margin:8px 1px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;*width:100%;*margin:-5px 0 5px;} 378 | .dropdown-menu a{display:block;padding:3px 15px;clear:both;font-weight:normal;line-height:18px;color:#333333;white-space:nowrap;} 379 | .dropdown-menu li>a:hover,.dropdown-menu .active>a,.dropdown-menu .active>a:hover{color:#ffffff;text-decoration:none;background-color:#0088cc;} 380 | .dropdown.open{*z-index:1000;}.dropdown.open .dropdown-toggle{color:#ffffff;background:#ccc;background:rgba(0, 0, 0, 0.3);} 381 | .dropdown.open .dropdown-menu{display:block;} 382 | .pull-right .dropdown-menu{left:auto;right:0;} 383 | .dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid #000000;content:"\2191";} 384 | .dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px;} 385 | .typeahead{margin-top:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} 386 | .well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #eee;border:1px solid rgba(0, 0, 0, 0.05);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);}.well blockquote{border-color:#ddd;border-color:rgba(0, 0, 0, 0.15);} 387 | .well-large{padding:24px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} 388 | .well-small{padding:9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} 389 | .fade{-webkit-transition:opacity 0.15s linear;-moz-transition:opacity 0.15s linear;-ms-transition:opacity 0.15s linear;-o-transition:opacity 0.15s linear;transition:opacity 0.15s linear;opacity:0;}.fade.in{opacity:1;} 390 | .collapse{-webkit-transition:height 0.35s ease;-moz-transition:height 0.35s ease;-ms-transition:height 0.35s ease;-o-transition:height 0.35s ease;transition:height 0.35s ease;position:relative;overflow:hidden;height:0;}.collapse.in{height:auto;} 391 | .close{float:right;font-size:20px;font-weight:bold;line-height:18px;color:#000000;text-shadow:0 1px 0 #ffffff;opacity:0.2;filter:alpha(opacity=20);}.close:hover{color:#000000;text-decoration:none;opacity:0.4;filter:alpha(opacity=40);cursor:pointer;} 392 | .btn{display:inline-block;*display:inline;*zoom:1;padding:4px 10px 4px;margin-bottom:0;font-size:13px;line-height:18px;color:#333333;text-align:center;text-shadow:0 1px 1px rgba(255, 255, 255, 0.75);vertical-align:middle;background-color:#f5f5f5;background-image:-moz-linear-gradient(top, #ffffff, #e6e6e6);background-image:-ms-linear-gradient(top, #ffffff, #e6e6e6);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));background-image:-webkit-linear-gradient(top, #ffffff, #e6e6e6);background-image:-o-linear-gradient(top, #ffffff, #e6e6e6);background-image:linear-gradient(top, #ffffff, #e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);border:1px solid #cccccc;border-bottom-color:#b3b3b3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);cursor:pointer;*margin-left:.3em;}.btn:hover,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{background-color:#e6e6e6;} 393 | .btn:active,.btn.active{background-color:#cccccc \9;} 394 | .btn:first-child{*margin-left:0;} 395 | .btn:hover{color:#333333;text-decoration:none;background-color:#e6e6e6;background-position:0 -15px;-webkit-transition:background-position 0.1s linear;-moz-transition:background-position 0.1s linear;-ms-transition:background-position 0.1s linear;-o-transition:background-position 0.1s linear;transition:background-position 0.1s linear;} 396 | .btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} 397 | .btn.active,.btn:active{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 2px 4px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:inset 0 2px 4px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);background-color:#e6e6e6;background-color:#d9d9d9 \9;outline:0;} 398 | .btn.disabled,.btn[disabled]{cursor:default;background-image:none;background-color:#e6e6e6;opacity:0.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} 399 | .btn-large{padding:9px 14px;font-size:15px;line-height:normal;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;} 400 | .btn-large [class^="icon-"]{margin-top:1px;} 401 | .btn-small{padding:5px 9px;font-size:11px;line-height:16px;} 402 | .btn-small [class^="icon-"]{margin-top:-1px;} 403 | .btn-mini{padding:2px 6px;font-size:11px;line-height:14px;} 404 | .btn-primary,.btn-primary:hover,.btn-warning,.btn-warning:hover,.btn-danger,.btn-danger:hover,.btn-success,.btn-success:hover,.btn-info,.btn-info:hover,.btn-inverse,.btn-inverse:hover{text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);color:#ffffff;} 405 | .btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active{color:rgba(255, 255, 255, 0.75);} 406 | .btn-primary{background-color:#0074cc;background-image:-moz-linear-gradient(top, #0088cc, #0055cc);background-image:-ms-linear-gradient(top, #0088cc, #0055cc);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0055cc));background-image:-webkit-linear-gradient(top, #0088cc, #0055cc);background-image:-o-linear-gradient(top, #0088cc, #0055cc);background-image:linear-gradient(top, #0088cc, #0055cc);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0055cc', GradientType=0);border-color:#0055cc #0055cc #003580;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);}.btn-primary:hover,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{background-color:#0055cc;} 407 | .btn-primary:active,.btn-primary.active{background-color:#004099 \9;} 408 | .btn-warning{background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-ms-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(top, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);border-color:#f89406 #f89406 #ad6704;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);}.btn-warning:hover,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled]{background-color:#f89406;} 409 | .btn-warning:active,.btn-warning.active{background-color:#c67605 \9;} 410 | .btn-danger{background-color:#da4f49;background-image:-moz-linear-gradient(top, #ee5f5b, #bd362f);background-image:-ms-linear-gradient(top, #ee5f5b, #bd362f);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));background-image:-webkit-linear-gradient(top, #ee5f5b, #bd362f);background-image:-o-linear-gradient(top, #ee5f5b, #bd362f);background-image:linear-gradient(top, #ee5f5b, #bd362f);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);border-color:#bd362f #bd362f #802420;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);}.btn-danger:hover,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{background-color:#bd362f;} 411 | .btn-danger:active,.btn-danger.active{background-color:#942a25 \9;} 412 | .btn-success{background-color:#5bb75b;background-image:-moz-linear-gradient(top, #62c462, #51a351);background-image:-ms-linear-gradient(top, #62c462, #51a351);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));background-image:-webkit-linear-gradient(top, #62c462, #51a351);background-image:-o-linear-gradient(top, #62c462, #51a351);background-image:linear-gradient(top, #62c462, #51a351);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);border-color:#51a351 #51a351 #387038;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);}.btn-success:hover,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{background-color:#51a351;} 413 | .btn-success:active,.btn-success.active{background-color:#408140 \9;} 414 | .btn-info{background-color:#49afcd;background-image:-moz-linear-gradient(top, #5bc0de, #2f96b4);background-image:-ms-linear-gradient(top, #5bc0de, #2f96b4);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));background-image:-webkit-linear-gradient(top, #5bc0de, #2f96b4);background-image:-o-linear-gradient(top, #5bc0de, #2f96b4);background-image:linear-gradient(top, #5bc0de, #2f96b4);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);border-color:#2f96b4 #2f96b4 #1f6377;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);}.btn-info:hover,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled]{background-color:#2f96b4;} 415 | .btn-info:active,.btn-info.active{background-color:#24748c \9;} 416 | .btn-inverse{background-color:#414141;background-image:-moz-linear-gradient(top, #555555, #222222);background-image:-ms-linear-gradient(top, #555555, #222222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#555555), to(#222222));background-image:-webkit-linear-gradient(top, #555555, #222222);background-image:-o-linear-gradient(top, #555555, #222222);background-image:linear-gradient(top, #555555, #222222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#555555', endColorstr='#222222', GradientType=0);border-color:#222222 #222222 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);}.btn-inverse:hover,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled]{background-color:#222222;} 417 | .btn-inverse:active,.btn-inverse.active{background-color:#080808 \9;} 418 | button.btn,input[type="submit"].btn{*padding-top:2px;*padding-bottom:2px;}button.btn::-moz-focus-inner,input[type="submit"].btn::-moz-focus-inner{padding:0;border:0;} 419 | button.btn.btn-large,input[type="submit"].btn.btn-large{*padding-top:7px;*padding-bottom:7px;} 420 | button.btn.btn-small,input[type="submit"].btn.btn-small{*padding-top:3px;*padding-bottom:3px;} 421 | button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-bottom:1px;} 422 | .btn-group{position:relative;*zoom:1;*margin-left:.3em;}.btn-group:before,.btn-group:after{display:table;content:"";} 423 | .btn-group:after{clear:both;} 424 | .btn-group:first-child{*margin-left:0;} 425 | .btn-group+.btn-group{margin-left:5px;} 426 | .btn-toolbar{margin-top:9px;margin-bottom:9px;}.btn-toolbar .btn-group{display:inline-block;*display:inline;*zoom:1;} 427 | .btn-group .btn{position:relative;float:left;margin-left:-1px;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} 428 | .btn-group .btn:first-child{margin-left:0;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} 429 | .btn-group .btn:last-child,.btn-group .dropdown-toggle{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;} 430 | .btn-group .btn.large:first-child{margin-left:0;-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px;} 431 | .btn-group .btn.large:last-child,.btn-group .large.dropdown-toggle{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px;} 432 | .btn-group .btn:hover,.btn-group .btn:focus,.btn-group .btn:active,.btn-group .btn.active{z-index:2;} 433 | .btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0;} 434 | .btn-group .dropdown-toggle{padding-left:8px;padding-right:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255, 255, 255, 0.125),inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 1px 0 0 rgba(255, 255, 255, 0.125),inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:inset 1px 0 0 rgba(255, 255, 255, 0.125),inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);*padding-top:3px;*padding-bottom:3px;} 435 | .btn-group .btn-mini.dropdown-toggle{padding-left:5px;padding-right:5px;*padding-top:1px;*padding-bottom:1px;} 436 | .btn-group .btn-small.dropdown-toggle{*padding-top:4px;*padding-bottom:4px;} 437 | .btn-group .btn-large.dropdown-toggle{padding-left:12px;padding-right:12px;} 438 | .btn-group.open{*z-index:1000;}.btn-group.open .dropdown-menu{display:block;margin-top:1px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;} 439 | .btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 1px 6px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 1px 6px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:inset 0 1px 6px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);} 440 | .btn .caret{margin-top:7px;margin-left:0;} 441 | .btn:hover .caret,.open.btn-group .caret{opacity:1;filter:alpha(opacity=100);} 442 | .btn-mini .caret{margin-top:5px;} 443 | .btn-small .caret{margin-top:6px;} 444 | .btn-large .caret{margin-top:6px;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #000000;} 445 | .btn-primary .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret,.btn-inverse .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;opacity:0.75;filter:alpha(opacity=75);} 446 | .alert{padding:8px 35px 8px 14px;margin-bottom:18px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);background-color:#fcf8e3;border:1px solid #fbeed5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;color:#c09853;} 447 | .alert-heading{color:inherit;} 448 | .alert .close{position:relative;top:-2px;right:-21px;line-height:18px;} 449 | .alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#468847;} 450 | .alert-danger,.alert-error{background-color:#f2dede;border-color:#eed3d7;color:#b94a48;} 451 | .alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#3a87ad;} 452 | .alert-block{padding-top:14px;padding-bottom:14px;} 453 | .alert-block>p,.alert-block>ul{margin-bottom:0;} 454 | .alert-block p+p{margin-top:5px;} 455 | .nav{margin-left:0;margin-bottom:18px;list-style:none;} 456 | .nav>li>a{display:block;} 457 | .nav>li>a:hover{text-decoration:none;background-color:#eeeeee;} 458 | .nav .nav-header{display:block;padding:3px 15px;font-size:11px;font-weight:bold;line-height:18px;color:#999999;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);text-transform:uppercase;} 459 | .nav li+.nav-header{margin-top:9px;} 460 | .nav-list{padding-left:15px;padding-right:15px;margin-bottom:0;} 461 | .nav-list>li>a,.nav-list .nav-header{margin-left:-15px;margin-right:-15px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);} 462 | .nav-list>li>a{padding:3px 15px;} 463 | .nav-list>.active>a,.nav-list>.active>a:hover{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.2);background-color:#0088cc;} 464 | .nav-list [class^="icon-"]{margin-right:2px;} 465 | .nav-list .divider{height:1px;margin:8px 1px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;*width:100%;*margin:-5px 0 5px;} 466 | .nav-tabs,.nav-pills{*zoom:1;}.nav-tabs:before,.nav-pills:before,.nav-tabs:after,.nav-pills:after{display:table;content:"";} 467 | .nav-tabs:after,.nav-pills:after{clear:both;} 468 | .nav-tabs>li,.nav-pills>li{float:left;} 469 | .nav-tabs>li>a,.nav-pills>li>a{padding-right:12px;padding-left:12px;margin-right:2px;line-height:14px;} 470 | .nav-tabs{border-bottom:1px solid #ddd;} 471 | .nav-tabs>li{margin-bottom:-1px;} 472 | .nav-tabs>li>a{padding-top:8px;padding-bottom:8px;line-height:18px;border:1px solid transparent;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;}.nav-tabs>li>a:hover{border-color:#eeeeee #eeeeee #dddddd;} 473 | .nav-tabs>.active>a,.nav-tabs>.active>a:hover{color:#555555;background-color:#ffffff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default;} 474 | .nav-pills>li>a{padding-top:8px;padding-bottom:8px;margin-top:2px;margin-bottom:2px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;} 475 | .nav-pills>.active>a,.nav-pills>.active>a:hover{color:#ffffff;background-color:#0088cc;} 476 | .nav-stacked>li{float:none;} 477 | .nav-stacked>li>a{margin-right:0;} 478 | .nav-tabs.nav-stacked{border-bottom:0;} 479 | .nav-tabs.nav-stacked>li>a{border:1px solid #ddd;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} 480 | .nav-tabs.nav-stacked>li:first-child>a{-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;} 481 | .nav-tabs.nav-stacked>li:last-child>a{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;} 482 | .nav-tabs.nav-stacked>li>a:hover{border-color:#ddd;z-index:2;} 483 | .nav-pills.nav-stacked>li>a{margin-bottom:3px;} 484 | .nav-pills.nav-stacked>li:last-child>a{margin-bottom:1px;} 485 | .nav-tabs .dropdown-menu,.nav-pills .dropdown-menu{margin-top:1px;border-width:1px;} 486 | .nav-pills .dropdown-menu{-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} 487 | .nav-tabs .dropdown-toggle .caret,.nav-pills .dropdown-toggle .caret{border-top-color:#0088cc;border-bottom-color:#0088cc;margin-top:6px;} 488 | .nav-tabs .dropdown-toggle:hover .caret,.nav-pills .dropdown-toggle:hover .caret{border-top-color:#005580;border-bottom-color:#005580;} 489 | .nav-tabs .active .dropdown-toggle .caret,.nav-pills .active .dropdown-toggle .caret{border-top-color:#333333;border-bottom-color:#333333;} 490 | .nav>.dropdown.active>a:hover{color:#000000;cursor:pointer;} 491 | .nav-tabs .open .dropdown-toggle,.nav-pills .open .dropdown-toggle,.nav>.open.active>a:hover{color:#ffffff;background-color:#999999;border-color:#999999;} 492 | .nav .open .caret,.nav .open.active .caret,.nav .open a:hover .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;opacity:1;filter:alpha(opacity=100);} 493 | .tabs-stacked .open>a:hover{border-color:#999999;} 494 | .tabbable{*zoom:1;}.tabbable:before,.tabbable:after{display:table;content:"";} 495 | .tabbable:after{clear:both;} 496 | .tab-content{display:table;width:100%;} 497 | .tabs-below .nav-tabs,.tabs-right .nav-tabs,.tabs-left .nav-tabs{border-bottom:0;} 498 | .tab-content>.tab-pane,.pill-content>.pill-pane{display:none;} 499 | .tab-content>.active,.pill-content>.active{display:block;} 500 | .tabs-below .nav-tabs{border-top:1px solid #ddd;} 501 | .tabs-below .nav-tabs>li{margin-top:-1px;margin-bottom:0;} 502 | .tabs-below .nav-tabs>li>a{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;}.tabs-below .nav-tabs>li>a:hover{border-bottom-color:transparent;border-top-color:#ddd;} 503 | .tabs-below .nav-tabs .active>a,.tabs-below .nav-tabs .active>a:hover{border-color:transparent #ddd #ddd #ddd;} 504 | .tabs-left .nav-tabs>li,.tabs-right .nav-tabs>li{float:none;} 505 | .tabs-left .nav-tabs>li>a,.tabs-right .nav-tabs>li>a{min-width:74px;margin-right:0;margin-bottom:3px;} 506 | .tabs-left .nav-tabs{float:left;margin-right:19px;border-right:1px solid #ddd;} 507 | .tabs-left .nav-tabs>li>a{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;} 508 | .tabs-left .nav-tabs>li>a:hover{border-color:#eeeeee #dddddd #eeeeee #eeeeee;} 509 | .tabs-left .nav-tabs .active>a,.tabs-left .nav-tabs .active>a:hover{border-color:#ddd transparent #ddd #ddd;*border-right-color:#ffffff;} 510 | .tabs-right .nav-tabs{float:right;margin-left:19px;border-left:1px solid #ddd;} 511 | .tabs-right .nav-tabs>li>a{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} 512 | .tabs-right .nav-tabs>li>a:hover{border-color:#eeeeee #eeeeee #eeeeee #dddddd;} 513 | .tabs-right .nav-tabs .active>a,.tabs-right .nav-tabs .active>a:hover{border-color:#ddd #ddd #ddd transparent;*border-left-color:#ffffff;} 514 | .navbar{*position:relative;*z-index:2;overflow:visible;margin-bottom:18px;} 515 | .navbar-inner{padding-left:20px;padding-right:20px;background-color:#2c2c2c;background-image:-moz-linear-gradient(top, #333333, #222222);background-image:-ms-linear-gradient(top, #333333, #222222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));background-image:-webkit-linear-gradient(top, #333333, #222222);background-image:-o-linear-gradient(top, #333333, #222222);background-image:linear-gradient(top, #333333, #222222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.25),inset 0 -1px 0 rgba(0, 0, 0, 0.1);-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.25),inset 0 -1px 0 rgba(0, 0, 0, 0.1);box-shadow:0 1px 3px rgba(0, 0, 0, 0.25),inset 0 -1px 0 rgba(0, 0, 0, 0.1);} 516 | .navbar .container{width:auto;} 517 | .btn-navbar{display:none;float:right;padding:7px 10px;margin-left:5px;margin-right:5px;background-color:#2c2c2c;background-image:-moz-linear-gradient(top, #333333, #222222);background-image:-ms-linear-gradient(top, #333333, #222222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));background-image:-webkit-linear-gradient(top, #333333, #222222);background-image:-o-linear-gradient(top, #333333, #222222);background-image:linear-gradient(top, #333333, #222222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);border-color:#222222 #222222 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);-webkit-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1),0 1px 0 rgba(255, 255, 255, 0.075);-moz-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1),0 1px 0 rgba(255, 255, 255, 0.075);box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1),0 1px 0 rgba(255, 255, 255, 0.075);}.btn-navbar:hover,.btn-navbar:active,.btn-navbar.active,.btn-navbar.disabled,.btn-navbar[disabled]{background-color:#222222;} 518 | .btn-navbar:active,.btn-navbar.active{background-color:#080808 \9;} 519 | .btn-navbar .icon-bar{display:block;width:18px;height:2px;background-color:#f5f5f5;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);-moz-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);} 520 | .btn-navbar .icon-bar+.icon-bar{margin-top:3px;} 521 | .nav-collapse.collapse{height:auto;} 522 | .navbar{color:#999999;}.navbar .brand:hover{text-decoration:none;} 523 | .navbar .brand{float:left;display:block;padding:8px 20px 12px;margin-left:-20px;font-size:20px;font-weight:200;line-height:1;color:#ffffff;} 524 | .navbar .navbar-text{margin-bottom:0;line-height:40px;} 525 | .navbar .btn,.navbar .btn-group{margin-top:5px;} 526 | .navbar .btn-group .btn{margin-top:0;} 527 | .navbar-form{margin-bottom:0;*zoom:1;}.navbar-form:before,.navbar-form:after{display:table;content:"";} 528 | .navbar-form:after{clear:both;} 529 | .navbar-form input,.navbar-form select,.navbar-form .radio,.navbar-form .checkbox{margin-top:5px;} 530 | .navbar-form input,.navbar-form select{display:inline-block;margin-bottom:0;} 531 | .navbar-form input[type="image"],.navbar-form input[type="checkbox"],.navbar-form input[type="radio"]{margin-top:3px;} 532 | .navbar-form .input-append,.navbar-form .input-prepend{margin-top:6px;white-space:nowrap;}.navbar-form .input-append input,.navbar-form .input-prepend input{margin-top:0;} 533 | .navbar-search{position:relative;float:left;margin-top:6px;margin-bottom:0;}.navbar-search .search-query{padding:4px 9px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:1;color:#ffffff;background-color:#626262;border:1px solid #151515;-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1),0 1px 0px rgba(255, 255, 255, 0.15);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1),0 1px 0px rgba(255, 255, 255, 0.15);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1),0 1px 0px rgba(255, 255, 255, 0.15);-webkit-transition:none;-moz-transition:none;-ms-transition:none;-o-transition:none;transition:none;}.navbar-search .search-query:-moz-placeholder{color:#cccccc;} 534 | .navbar-search .search-query::-webkit-input-placeholder{color:#cccccc;} 535 | .navbar-search .search-query:focus,.navbar-search .search-query.focused{padding:5px 10px;color:#333333;text-shadow:0 1px 0 #ffffff;background-color:#ffffff;border:0;-webkit-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);-moz-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);box-shadow:0 0 3px rgba(0, 0, 0, 0.15);outline:0;} 536 | .navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030;margin-bottom:0;} 537 | .navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding-left:0;padding-right:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} 538 | .navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px;} 539 | .navbar-fixed-top{top:0;} 540 | .navbar-fixed-bottom{bottom:0;} 541 | .navbar .nav{position:relative;left:0;display:block;float:left;margin:0 10px 0 0;} 542 | .navbar .nav.pull-right{float:right;} 543 | .navbar .nav>li{display:block;float:left;} 544 | .navbar .nav>li>a{float:none;padding:10px 10px 11px;line-height:19px;color:#999999;text-decoration:none;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);} 545 | .navbar .nav>li>a:hover{background-color:transparent;color:#ffffff;text-decoration:none;} 546 | .navbar .nav .active>a,.navbar .nav .active>a:hover{color:#ffffff;text-decoration:none;background-color:#222222;} 547 | .navbar .divider-vertical{height:40px;width:1px;margin:0 9px;overflow:hidden;background-color:#222222;border-right:1px solid #333333;} 548 | .navbar .nav.pull-right{margin-left:10px;margin-right:0;} 549 | .navbar .dropdown-menu{margin-top:1px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.navbar .dropdown-menu:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0, 0, 0, 0.2);position:absolute;top:-7px;left:9px;} 550 | .navbar .dropdown-menu:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #ffffff;position:absolute;top:-6px;left:10px;} 551 | .navbar-fixed-bottom .dropdown-menu:before{border-top:7px solid #ccc;border-top-color:rgba(0, 0, 0, 0.2);border-bottom:0;bottom:-7px;top:auto;} 552 | .navbar-fixed-bottom .dropdown-menu:after{border-top:6px solid #ffffff;border-bottom:0;bottom:-6px;top:auto;} 553 | .navbar .nav .dropdown-toggle .caret,.navbar .nav .open.dropdown .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;} 554 | .navbar .nav .active .caret{opacity:1;filter:alpha(opacity=100);} 555 | .navbar .nav .open>.dropdown-toggle,.navbar .nav .active>.dropdown-toggle,.navbar .nav .open.active>.dropdown-toggle{background-color:transparent;} 556 | .navbar .nav .active>.dropdown-toggle:hover{color:#ffffff;} 557 | .navbar .nav.pull-right .dropdown-menu,.navbar .nav .dropdown-menu.pull-right{left:auto;right:0;}.navbar .nav.pull-right .dropdown-menu:before,.navbar .nav .dropdown-menu.pull-right:before{left:auto;right:12px;} 558 | .navbar .nav.pull-right .dropdown-menu:after,.navbar .nav .dropdown-menu.pull-right:after{left:auto;right:13px;} 559 | .breadcrumb{padding:7px 14px;margin:0 0 18px;list-style:none;background-color:#fbfbfb;background-image:-moz-linear-gradient(top, #ffffff, #f5f5f5);background-image:-ms-linear-gradient(top, #ffffff, #f5f5f5);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f5f5f5));background-image:-webkit-linear-gradient(top, #ffffff, #f5f5f5);background-image:-o-linear-gradient(top, #ffffff, #f5f5f5);background-image:linear-gradient(top, #ffffff, #f5f5f5);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0);border:1px solid #ddd;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:inset 0 1px 0 #ffffff;-moz-box-shadow:inset 0 1px 0 #ffffff;box-shadow:inset 0 1px 0 #ffffff;}.breadcrumb li{display:inline-block;*display:inline;*zoom:1;text-shadow:0 1px 0 #ffffff;} 560 | .breadcrumb .divider{padding:0 5px;color:#999999;} 561 | .breadcrumb .active a{color:#333333;} 562 | .pagination{height:36px;margin:18px 0;} 563 | .pagination ul{display:inline-block;*display:inline;*zoom:1;margin-left:0;margin-bottom:0;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);} 564 | .pagination li{display:inline;} 565 | .pagination a{float:left;padding:0 14px;line-height:34px;text-decoration:none;border:1px solid #ddd;border-left-width:0;} 566 | .pagination a:hover,.pagination .active a{background-color:#f5f5f5;} 567 | .pagination .active a{color:#999999;cursor:default;} 568 | .pagination .disabled span,.pagination .disabled a,.pagination .disabled a:hover{color:#999999;background-color:transparent;cursor:default;} 569 | .pagination li:first-child a{border-left-width:1px;-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;} 570 | .pagination li:last-child a{-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0;} 571 | .pagination-centered{text-align:center;} 572 | .pagination-right{text-align:right;} 573 | .pager{margin-left:0;margin-bottom:18px;list-style:none;text-align:center;*zoom:1;}.pager:before,.pager:after{display:table;content:"";} 574 | .pager:after{clear:both;} 575 | .pager li{display:inline;} 576 | .pager a{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;} 577 | .pager a:hover{text-decoration:none;background-color:#f5f5f5;} 578 | .pager .next a{float:right;} 579 | .pager .previous a{float:left;} 580 | .pager .disabled a,.pager .disabled a:hover{color:#999999;background-color:#fff;cursor:default;} 581 | .modal-open .dropdown-menu{z-index:2050;} 582 | .modal-open .dropdown.open{*z-index:2050;} 583 | .modal-open .popover{z-index:2060;} 584 | .modal-open .tooltip{z-index:2070;} 585 | .modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000000;}.modal-backdrop.fade{opacity:0;} 586 | .modal-backdrop,.modal-backdrop.fade.in{opacity:0.8;filter:alpha(opacity=80);} 587 | .modal{position:fixed;top:50%;left:50%;z-index:1050;overflow:auto;width:560px;margin:-250px 0 0 -280px;background-color:#ffffff;border:1px solid #999;border:1px solid rgba(0, 0, 0, 0.3);*border:1px solid #999;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-moz-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;}.modal.fade{-webkit-transition:opacity .3s linear, top .3s ease-out;-moz-transition:opacity .3s linear, top .3s ease-out;-ms-transition:opacity .3s linear, top .3s ease-out;-o-transition:opacity .3s linear, top .3s ease-out;transition:opacity .3s linear, top .3s ease-out;top:-25%;} 588 | .modal.fade.in{top:50%;} 589 | .modal-header{padding:9px 15px;border-bottom:1px solid #eee;}.modal-header .close{margin-top:2px;} 590 | .modal-body{overflow-y:auto;max-height:400px;padding:15px;} 591 | .modal-form{margin-bottom:0;} 592 | .modal-footer{padding:14px 15px 15px;margin-bottom:0;text-align:right;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;-webkit-box-shadow:inset 0 1px 0 #ffffff;-moz-box-shadow:inset 0 1px 0 #ffffff;box-shadow:inset 0 1px 0 #ffffff;*zoom:1;}.modal-footer:before,.modal-footer:after{display:table;content:"";} 593 | .modal-footer:after{clear:both;} 594 | .modal-footer .btn+.btn{margin-left:5px;margin-bottom:0;} 595 | .modal-footer .btn-group .btn+.btn{margin-left:-1px;} 596 | .tooltip{position:absolute;z-index:1020;display:block;visibility:visible;padding:5px;font-size:11px;opacity:0;filter:alpha(opacity=0);}.tooltip.in{opacity:0.8;filter:alpha(opacity=80);} 597 | .tooltip.top{margin-top:-2px;} 598 | .tooltip.right{margin-left:2px;} 599 | .tooltip.bottom{margin-top:2px;} 600 | .tooltip.left{margin-left:-2px;} 601 | .tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #000000;} 602 | .tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-left:5px solid #000000;} 603 | .tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-left:5px solid transparent;border-right:5px solid transparent;border-bottom:5px solid #000000;} 604 | .tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-right:5px solid #000000;} 605 | .tooltip-inner{max-width:200px;padding:3px 8px;color:#ffffff;text-align:center;text-decoration:none;background-color:#000000;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} 606 | .tooltip-arrow{position:absolute;width:0;height:0;} 607 | .popover{position:absolute;top:0;left:0;z-index:1010;display:none;padding:5px;}.popover.top{margin-top:-5px;} 608 | .popover.right{margin-left:5px;} 609 | .popover.bottom{margin-top:5px;} 610 | .popover.left{margin-left:-5px;} 611 | .popover.top .arrow{bottom:0;left:50%;margin-left:-5px;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #000000;} 612 | .popover.right .arrow{top:50%;left:0;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-right:5px solid #000000;} 613 | .popover.bottom .arrow{top:0;left:50%;margin-left:-5px;border-left:5px solid transparent;border-right:5px solid transparent;border-bottom:5px solid #000000;} 614 | .popover.left .arrow{top:50%;right:0;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-left:5px solid #000000;} 615 | .popover .arrow{position:absolute;width:0;height:0;} 616 | .popover-inner{padding:3px;width:280px;overflow:hidden;background:#000000;background:rgba(0, 0, 0, 0.8);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-moz-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);} 617 | .popover-title{padding:9px 15px;line-height:1;background-color:#f5f5f5;border-bottom:1px solid #eee;-webkit-border-radius:3px 3px 0 0;-moz-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0;} 618 | .popover-content{padding:14px;background-color:#ffffff;-webkit-border-radius:0 0 3px 3px;-moz-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px;-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;}.popover-content p,.popover-content ul,.popover-content ol{margin-bottom:0;} 619 | .thumbnails{margin-left:-20px;list-style:none;*zoom:1;}.thumbnails:before,.thumbnails:after{display:table;content:"";} 620 | .thumbnails:after{clear:both;} 621 | .thumbnails>li{float:left;margin:0 0 18px 20px;} 622 | .thumbnail{display:block;padding:4px;line-height:1;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:0 1px 1px rgba(0, 0, 0, 0.075);} 623 | a.thumbnail:hover{border-color:#0088cc;-webkit-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);-moz-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);} 624 | .thumbnail>img{display:block;max-width:100%;margin-left:auto;margin-right:auto;} 625 | .thumbnail .caption{padding:9px;} 626 | .label{padding:1px 4px 2px;font-size:10.998px;font-weight:bold;line-height:13px;color:#ffffff;vertical-align:middle;white-space:nowrap;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#999999;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} 627 | .label:hover{color:#ffffff;text-decoration:none;} 628 | .label-important{background-color:#b94a48;} 629 | .label-important:hover{background-color:#953b39;} 630 | .label-warning{background-color:#f89406;} 631 | .label-warning:hover{background-color:#c67605;} 632 | .label-success{background-color:#468847;} 633 | .label-success:hover{background-color:#356635;} 634 | .label-info{background-color:#3a87ad;} 635 | .label-info:hover{background-color:#2d6987;} 636 | .label-inverse{background-color:#333333;} 637 | .label-inverse:hover{background-color:#1a1a1a;} 638 | .badge{padding:1px 9px 2px;font-size:12.025px;font-weight:bold;white-space:nowrap;color:#ffffff;background-color:#999999;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px;} 639 | .badge:hover{color:#ffffff;text-decoration:none;cursor:pointer;} 640 | .badge-error{background-color:#b94a48;} 641 | .badge-error:hover{background-color:#953b39;} 642 | .badge-warning{background-color:#f89406;} 643 | .badge-warning:hover{background-color:#c67605;} 644 | .badge-success{background-color:#468847;} 645 | .badge-success:hover{background-color:#356635;} 646 | .badge-info{background-color:#3a87ad;} 647 | .badge-info:hover{background-color:#2d6987;} 648 | .badge-inverse{background-color:#333333;} 649 | .badge-inverse:hover{background-color:#1a1a1a;} 650 | @-webkit-keyframes progress-bar-stripes{from{background-position:0 0;} to{background-position:40px 0;}}@-moz-keyframes progress-bar-stripes{from{background-position:0 0;} to{background-position:40px 0;}}@-ms-keyframes progress-bar-stripes{from{background-position:0 0;} to{background-position:40px 0;}}@keyframes progress-bar-stripes{from{background-position:0 0;} to{background-position:40px 0;}}.progress{overflow:hidden;height:18px;margin-bottom:18px;background-color:#f7f7f7;background-image:-moz-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-ms-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));background-image:-webkit-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-o-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:linear-gradient(top, #f5f5f5, #f9f9f9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#f9f9f9', GradientType=0);-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} 651 | .progress .bar{width:0%;height:18px;color:#ffffff;font-size:12px;text-align:center;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#0e90d2;background-image:-moz-linear-gradient(top, #149bdf, #0480be);background-image:-ms-linear-gradient(top, #149bdf, #0480be);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));background-image:-webkit-linear-gradient(top, #149bdf, #0480be);background-image:-o-linear-gradient(top, #149bdf, #0480be);background-image:linear-gradient(top, #149bdf, #0480be);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#149bdf', endColorstr='#0480be', GradientType=0);-webkit-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);-moz-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;-webkit-transition:width 0.6s ease;-moz-transition:width 0.6s ease;-ms-transition:width 0.6s ease;-o-transition:width 0.6s ease;transition:width 0.6s ease;} 652 | .progress-striped .bar{background-color:#149bdf;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);-webkit-background-size:40px 40px;-moz-background-size:40px 40px;-o-background-size:40px 40px;background-size:40px 40px;} 653 | .progress.active .bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite;} 654 | .progress-danger .bar{background-color:#dd514c;background-image:-moz-linear-gradient(top, #ee5f5b, #c43c35);background-image:-ms-linear-gradient(top, #ee5f5b, #c43c35);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));background-image:-webkit-linear-gradient(top, #ee5f5b, #c43c35);background-image:-o-linear-gradient(top, #ee5f5b, #c43c35);background-image:linear-gradient(top, #ee5f5b, #c43c35);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);} 655 | .progress-danger.progress-striped .bar{background-color:#ee5f5b;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} 656 | .progress-success .bar{background-color:#5eb95e;background-image:-moz-linear-gradient(top, #62c462, #57a957);background-image:-ms-linear-gradient(top, #62c462, #57a957);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));background-image:-webkit-linear-gradient(top, #62c462, #57a957);background-image:-o-linear-gradient(top, #62c462, #57a957);background-image:linear-gradient(top, #62c462, #57a957);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0);} 657 | .progress-success.progress-striped .bar{background-color:#62c462;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} 658 | .progress-info .bar{background-color:#4bb1cf;background-image:-moz-linear-gradient(top, #5bc0de, #339bb9);background-image:-ms-linear-gradient(top, #5bc0de, #339bb9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));background-image:-webkit-linear-gradient(top, #5bc0de, #339bb9);background-image:-o-linear-gradient(top, #5bc0de, #339bb9);background-image:linear-gradient(top, #5bc0de, #339bb9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0);} 659 | .progress-info.progress-striped .bar{background-color:#5bc0de;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} 660 | .progress-warning .bar{background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-ms-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(top, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);} 661 | .progress-warning.progress-striped .bar{background-color:#fbb450;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} 662 | .accordion{margin-bottom:18px;} 663 | .accordion-group{margin-bottom:2px;border:1px solid #e5e5e5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} 664 | .accordion-heading{border-bottom:0;} 665 | .accordion-heading .accordion-toggle{display:block;padding:8px 15px;} 666 | .accordion-inner{padding:9px 15px;border-top:1px solid #e5e5e5;} 667 | .carousel{position:relative;margin-bottom:18px;line-height:1;} 668 | .carousel-inner{overflow:hidden;width:100%;position:relative;} 669 | .carousel .item{display:none;position:relative;-webkit-transition:0.6s ease-in-out left;-moz-transition:0.6s ease-in-out left;-ms-transition:0.6s ease-in-out left;-o-transition:0.6s ease-in-out left;transition:0.6s ease-in-out left;} 670 | .carousel .item>img{display:block;line-height:1;} 671 | .carousel .active,.carousel .next,.carousel .prev{display:block;} 672 | .carousel .active{left:0;} 673 | .carousel .next,.carousel .prev{position:absolute;top:0;width:100%;} 674 | .carousel .next{left:100%;} 675 | .carousel .prev{left:-100%;} 676 | .carousel .next.left,.carousel .prev.right{left:0;} 677 | .carousel .active.left{left:-100%;} 678 | .carousel .active.right{left:100%;} 679 | .carousel-control{position:absolute;top:40%;left:15px;width:40px;height:40px;margin-top:-20px;font-size:60px;font-weight:100;line-height:30px;color:#ffffff;text-align:center;background:#222222;border:3px solid #ffffff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:0.5;filter:alpha(opacity=50);}.carousel-control.right{left:auto;right:15px;} 680 | .carousel-control:hover{color:#ffffff;text-decoration:none;opacity:0.9;filter:alpha(opacity=90);} 681 | .carousel-caption{position:absolute;left:0;right:0;bottom:0;padding:10px 15px 5px;background:#333333;background:rgba(0, 0, 0, 0.75);} 682 | .carousel-caption h4,.carousel-caption p{color:#ffffff;} 683 | .hero-unit{padding:60px;margin-bottom:30px;background-color:#eeeeee;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}.hero-unit h1{margin-bottom:0;font-size:60px;line-height:1;color:inherit;letter-spacing:-1px;} 684 | .hero-unit p{font-size:18px;font-weight:200;line-height:27px;color:inherit;} 685 | .pull-right{float:right;} 686 | .pull-left{float:left;} 687 | .hide{display:none;} 688 | .show{display:block;} 689 | .invisible{visibility:hidden;} 690 | -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- 1 | .login 2 | { 3 | margin-top:20px; 4 | padding:20px; 5 | text-align: center; 6 | } 7 | 8 | .mobile 9 | { 10 | padding-top:10px; 11 | } 12 | 13 | #home_list,#mention_list,#my_list 14 | { 15 | margin:0px; 16 | padding:0px; 17 | } 18 | 19 | 20 | #home_list li,#mention_list li,#my_list li 21 | { 22 | display:block; 23 | border-bottom: 1px solid #eee; 24 | margin-bottom: 5px; 25 | margin-top: 10px; 26 | margin-left:0px; 27 | padding: 0px; 28 | padding-bottom: 10px; 29 | 30 | color:#666; 31 | font-size: 16px; 32 | line-height: 25px; 33 | 34 | } 35 | 36 | span.name 37 | { 38 | color:#4A6B82; 39 | } 40 | 41 | div.timeline 42 | { 43 | color:#ccc; 44 | font-size:9px; 45 | } 46 | 47 | 48 | /* ========= system ============ */ 49 | 50 | .op-card,.op-tab 51 | { 52 | display:none; 53 | } 54 | 55 | .op-card.cur,.op-tab.cur 56 | { 57 | display: block; 58 | } -------------------------------------------------------------------------------- /img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/Simple-Weibo/bfb7fc316899dee3bdd0aec52bb01de7e3dc4454/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/Simple-Weibo/bfb7fc316899dee3bdd0aec52bb01de7e3dc4454/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/Simple-Weibo/bfb7fc316899dee3bdd0aec52bb01de7e3dc4454/img/logo.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Simple Weibo Login 7 | 8 | 9 | 13 | 14 | 15 | 16 | 19 | 22 | 23 | 24 | 25 |
26 |
使用微博账号登入
27 | 28 | 29 | 30 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/Simple-Weibo/bfb7fc316899dee3bdd0aec52bb01de7e3dc4454/js/.DS_Store -------------------------------------------------------------------------------- /js/app.js: -------------------------------------------------------------------------------- 1 | function mention() 2 | { 3 | change_card('mention_card'); 4 | load_mention_list(); 5 | } 6 | 7 | function home() 8 | { 9 | change_card('home_card'); 10 | load_home_list(); 11 | } 12 | 13 | function my() 14 | { 15 | change_card('my_card'); 16 | load_my_list(); 17 | } 18 | 19 | 20 | 21 | function logout() 22 | { 23 | 24 | CDV.WB.logout(function(response) 25 | { 26 | alert('logged out'); 27 | kremove('owb-token'); 28 | return change_page('index'); 29 | }); 30 | 31 | } 32 | 33 | 34 | function load_list( ul , api ) 35 | { 36 | if(kget('owb-token').length < 1 ) change_page('index'); 37 | 38 | CDV.WB.get("https://api.weibo.com/2/statuses/" + api + ".json", 39 | { 40 | access_token : kget('owb-token'), 41 | }, 42 | function(response) 43 | { 44 | var data = $.parseJSON(response); 45 | 46 | 47 | if( data.error_code ) 48 | { 49 | kremove('owb-token'); 50 | return change_page('index'); 51 | } 52 | 53 | 54 | 55 | $('#'+ul).html(""); 56 | data.statuses.forEach(function(item) { 57 | $('#'+ul).append("
  • " + "" + item.user.name + ": " + item.text + "
    " + item.created_at + "
  • "); 58 | }); 59 | 60 | }, function(response){ 61 | alert('error: ' + response); 62 | }); 63 | } 64 | 65 | 66 | function load_home_list() 67 | { 68 | return load_list( 'home_list' , 'home_timeline' ); 69 | } 70 | 71 | function load_mention_list() 72 | { 73 | return load_list( 'mention_list' , 'mentions' ); 74 | } 75 | 76 | function load_my_list() 77 | { 78 | return load_list( 'my_list' , 'user_timeline' ); 79 | } 80 | 81 | 82 | 83 | 84 | function index_loaded() 85 | { 86 | //alert('hello index'); 87 | if( kget('owb-token').length > 5 ) change_page('weibo'); 88 | } 89 | 90 | 91 | function login() 92 | { 93 | CDV.WB.login( 94 | function(access_token, expires_in) 95 | { 96 | console.log("access_token: " + access_token); 97 | if (access_token && expires_in) 98 | { 99 | //alert('logged in token='+access_token); 100 | kset('owb-token' , access_token ); 101 | change_page('weibo'); 102 | } 103 | else 104 | { 105 | alert('not logged in'); 106 | } 107 | }); 108 | } 109 | 110 | 111 | 112 | function initApp( callback ) 113 | { 114 | 115 | if ((typeof cordova == 'undefined') 116 | && (typeof Cordova == 'undefined')) 117 | alert('Cordova variable does not exist. Check that you have included cordova.js correctly'); 118 | if (typeof CDV == 'undefined') 119 | alert('CDV variable does not exist. Check that you have included cdv-plugin-weibo-connect.js correctly'); 120 | 121 | try { 122 | $.ajaxSetup({ 123 | // Disable caching of AJAX responses 124 | cache : false 125 | }); 126 | 127 | 128 | CDV.WB.init({ 129 | appKey : "【换成你的加密后的appkey】", 130 | appSecret : "【换成你的加密后的appsecret】", 131 | redirectUrl : "【换成你在微博开放平台应用高级信息页面填写的回调地址】" 132 | }, function(response) { 133 | 134 | if( typeof callback == 'function' ) callback(); 135 | 136 | 137 | }, function(msg){ 138 | //alert(msg); 139 | }); 140 | 141 | 142 | } catch (e) { 143 | alert(e); 144 | } 145 | } 146 | 147 | 148 | 149 | var phonegapLoaded = function( callback ) 150 | { 151 | try 152 | { 153 | document.addEventListener( 154 | 'deviceready', 155 | function() 156 | { 157 | // load weibo plugin 158 | 159 | var script = document.createElement('script'); 160 | script.type = 'text/javascript'; 161 | script.charset = 'utf-8'; 162 | script.onload = function() 163 | { 164 | initApp( callback ); 165 | } 166 | script.src = 'cdv-plugin-wb-connect.js'; 167 | document.head.appendChild(script); 168 | }, false); 169 | }catch(e) 170 | { 171 | alert(e); 172 | } 173 | } 174 | 175 | function init( callback ) 176 | { 177 | try 178 | { 179 | setTimeout( function(){ phonegapLoaded(callback); } , 1000); 180 | } 181 | catch(e) 182 | { 183 | //alert(e); 184 | } 185 | } 186 | 187 | // ============================ 188 | // system 189 | // ============================ 190 | function change_page( page ) 191 | { 192 | window.open( page + '.html' ) ; 193 | } 194 | 195 | function change_card( cid ) 196 | { 197 | op_change( cid , 'card' ); 198 | } 199 | 200 | function change_tab( tid ) 201 | { 202 | op_change( tid , 'tab' ); 203 | } 204 | 205 | function op_change( id , name ) 206 | { 207 | $(".op-"+name).each( function( index , value ) 208 | { 209 | if($(this).attr('id') == id ) 210 | { 211 | $(this).addClass('cur'); 212 | } 213 | else 214 | { 215 | $(this).removeClass('cur'); 216 | } 217 | }); 218 | 219 | } 220 | 221 | function kset( key , value ) 222 | { 223 | window.localStorage.setItem( key , value ); 224 | } 225 | 226 | function kget( key ) 227 | { 228 | return window.localStorage.getItem( key ); 229 | } 230 | 231 | function kremove( key ) 232 | { 233 | window.localStorage.removeItem( key ); 234 | } 235 | 236 | -------------------------------------------------------------------------------- /js/bootstrap.js: -------------------------------------------------------------------------------- 1 | /* =================================================== 2 | * bootstrap-transition.js v2.0.2 3 | * http://twitter.github.com/bootstrap/javascript.html#transitions 4 | * =================================================== 5 | * Copyright 2012 Twitter, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * ========================================================== */ 19 | 20 | !function( $ ) { 21 | 22 | $(function () { 23 | 24 | "use strict" 25 | 26 | /* CSS TRANSITION SUPPORT (https://gist.github.com/373874) 27 | * ======================================================= */ 28 | 29 | $.support.transition = (function () { 30 | var thisBody = document.body || document.documentElement 31 | , thisStyle = thisBody.style 32 | , support = thisStyle.transition !== undefined || thisStyle.WebkitTransition !== undefined || thisStyle.MozTransition !== undefined || thisStyle.MsTransition !== undefined || thisStyle.OTransition !== undefined 33 | 34 | return support && { 35 | end: (function () { 36 | var transitionEnd = "TransitionEnd" 37 | if ( $.browser.webkit ) { 38 | transitionEnd = "webkitTransitionEnd" 39 | } else if ( $.browser.mozilla ) { 40 | transitionEnd = "transitionend" 41 | } else if ( $.browser.opera ) { 42 | transitionEnd = "oTransitionEnd" 43 | } 44 | return transitionEnd 45 | }()) 46 | } 47 | })() 48 | 49 | }) 50 | 51 | }( window.jQuery );/* ========================================================== 52 | * bootstrap-alert.js v2.0.2 53 | * http://twitter.github.com/bootstrap/javascript.html#alerts 54 | * ========================================================== 55 | * Copyright 2012 Twitter, Inc. 56 | * 57 | * Licensed under the Apache License, Version 2.0 (the "License"); 58 | * you may not use this file except in compliance with the License. 59 | * You may obtain a copy of the License at 60 | * 61 | * http://www.apache.org/licenses/LICENSE-2.0 62 | * 63 | * Unless required by applicable law or agreed to in writing, software 64 | * distributed under the License is distributed on an "AS IS" BASIS, 65 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 66 | * See the License for the specific language governing permissions and 67 | * limitations under the License. 68 | * ========================================================== */ 69 | 70 | 71 | !function( $ ){ 72 | 73 | "use strict" 74 | 75 | /* ALERT CLASS DEFINITION 76 | * ====================== */ 77 | 78 | var dismiss = '[data-dismiss="alert"]' 79 | , Alert = function ( el ) { 80 | $(el).on('click', dismiss, this.close) 81 | } 82 | 83 | Alert.prototype = { 84 | 85 | constructor: Alert 86 | 87 | , close: function ( e ) { 88 | var $this = $(this) 89 | , selector = $this.attr('data-target') 90 | , $parent 91 | 92 | if (!selector) { 93 | selector = $this.attr('href') 94 | selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7 95 | } 96 | 97 | $parent = $(selector) 98 | $parent.trigger('close') 99 | 100 | e && e.preventDefault() 101 | 102 | $parent.length || ($parent = $this.hasClass('alert') ? $this : $this.parent()) 103 | 104 | $parent 105 | .trigger('close') 106 | .removeClass('in') 107 | 108 | function removeElement() { 109 | $parent 110 | .trigger('closed') 111 | .remove() 112 | } 113 | 114 | $.support.transition && $parent.hasClass('fade') ? 115 | $parent.on($.support.transition.end, removeElement) : 116 | removeElement() 117 | } 118 | 119 | } 120 | 121 | 122 | /* ALERT PLUGIN DEFINITION 123 | * ======================= */ 124 | 125 | $.fn.alert = function ( option ) { 126 | return this.each(function () { 127 | var $this = $(this) 128 | , data = $this.data('alert') 129 | if (!data) $this.data('alert', (data = new Alert(this))) 130 | if (typeof option == 'string') data[option].call($this) 131 | }) 132 | } 133 | 134 | $.fn.alert.Constructor = Alert 135 | 136 | 137 | /* ALERT DATA-API 138 | * ============== */ 139 | 140 | $(function () { 141 | $('body').on('click.alert.data-api', dismiss, Alert.prototype.close) 142 | }) 143 | 144 | }( window.jQuery );/* ============================================================ 145 | * bootstrap-button.js v2.0.2 146 | * http://twitter.github.com/bootstrap/javascript.html#buttons 147 | * ============================================================ 148 | * Copyright 2012 Twitter, Inc. 149 | * 150 | * Licensed under the Apache License, Version 2.0 (the "License"); 151 | * you may not use this file except in compliance with the License. 152 | * You may obtain a copy of the License at 153 | * 154 | * http://www.apache.org/licenses/LICENSE-2.0 155 | * 156 | * Unless required by applicable law or agreed to in writing, software 157 | * distributed under the License is distributed on an "AS IS" BASIS, 158 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 159 | * See the License for the specific language governing permissions and 160 | * limitations under the License. 161 | * ============================================================ */ 162 | 163 | !function( $ ){ 164 | 165 | "use strict" 166 | 167 | /* BUTTON PUBLIC CLASS DEFINITION 168 | * ============================== */ 169 | 170 | var Button = function ( element, options ) { 171 | this.$element = $(element) 172 | this.options = $.extend({}, $.fn.button.defaults, options) 173 | } 174 | 175 | Button.prototype = { 176 | 177 | constructor: Button 178 | 179 | , setState: function ( state ) { 180 | var d = 'disabled' 181 | , $el = this.$element 182 | , data = $el.data() 183 | , val = $el.is('input') ? 'val' : 'html' 184 | 185 | state = state + 'Text' 186 | data.resetText || $el.data('resetText', $el[val]()) 187 | 188 | $el[val](data[state] || this.options[state]) 189 | 190 | // push to event loop to allow forms to submit 191 | setTimeout(function () { 192 | state == 'loadingText' ? 193 | $el.addClass(d).attr(d, d) : 194 | $el.removeClass(d).removeAttr(d) 195 | }, 0) 196 | } 197 | 198 | , toggle: function () { 199 | var $parent = this.$element.parent('[data-toggle="buttons-radio"]') 200 | 201 | $parent && $parent 202 | .find('.active') 203 | .removeClass('active') 204 | 205 | this.$element.toggleClass('active') 206 | } 207 | 208 | } 209 | 210 | 211 | /* BUTTON PLUGIN DEFINITION 212 | * ======================== */ 213 | 214 | $.fn.button = function ( option ) { 215 | return this.each(function () { 216 | var $this = $(this) 217 | , data = $this.data('button') 218 | , options = typeof option == 'object' && option 219 | if (!data) $this.data('button', (data = new Button(this, options))) 220 | if (option == 'toggle') data.toggle() 221 | else if (option) data.setState(option) 222 | }) 223 | } 224 | 225 | $.fn.button.defaults = { 226 | loadingText: 'loading...' 227 | } 228 | 229 | $.fn.button.Constructor = Button 230 | 231 | 232 | /* BUTTON DATA-API 233 | * =============== */ 234 | 235 | $(function () { 236 | $('body').on('click.button.data-api', '[data-toggle^=button]', function ( e ) { 237 | var $btn = $(e.target) 238 | if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn') 239 | $btn.button('toggle') 240 | }) 241 | }) 242 | 243 | }( window.jQuery );/* ========================================================== 244 | * bootstrap-carousel.js v2.0.2 245 | * http://twitter.github.com/bootstrap/javascript.html#carousel 246 | * ========================================================== 247 | * Copyright 2012 Twitter, Inc. 248 | * 249 | * Licensed under the Apache License, Version 2.0 (the "License"); 250 | * you may not use this file except in compliance with the License. 251 | * You may obtain a copy of the License at 252 | * 253 | * http://www.apache.org/licenses/LICENSE-2.0 254 | * 255 | * Unless required by applicable law or agreed to in writing, software 256 | * distributed under the License is distributed on an "AS IS" BASIS, 257 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 258 | * See the License for the specific language governing permissions and 259 | * limitations under the License. 260 | * ========================================================== */ 261 | 262 | 263 | !function( $ ){ 264 | 265 | "use strict" 266 | 267 | /* CAROUSEL CLASS DEFINITION 268 | * ========================= */ 269 | 270 | var Carousel = function (element, options) { 271 | this.$element = $(element) 272 | this.options = $.extend({}, $.fn.carousel.defaults, options) 273 | this.options.slide && this.slide(this.options.slide) 274 | this.options.pause == 'hover' && this.$element 275 | .on('mouseenter', $.proxy(this.pause, this)) 276 | .on('mouseleave', $.proxy(this.cycle, this)) 277 | } 278 | 279 | Carousel.prototype = { 280 | 281 | cycle: function () { 282 | this.interval = setInterval($.proxy(this.next, this), this.options.interval) 283 | return this 284 | } 285 | 286 | , to: function (pos) { 287 | var $active = this.$element.find('.active') 288 | , children = $active.parent().children() 289 | , activePos = children.index($active) 290 | , that = this 291 | 292 | if (pos > (children.length - 1) || pos < 0) return 293 | 294 | if (this.sliding) { 295 | return this.$element.one('slid', function () { 296 | that.to(pos) 297 | }) 298 | } 299 | 300 | if (activePos == pos) { 301 | return this.pause().cycle() 302 | } 303 | 304 | return this.slide(pos > activePos ? 'next' : 'prev', $(children[pos])) 305 | } 306 | 307 | , pause: function () { 308 | clearInterval(this.interval) 309 | this.interval = null 310 | return this 311 | } 312 | 313 | , next: function () { 314 | if (this.sliding) return 315 | return this.slide('next') 316 | } 317 | 318 | , prev: function () { 319 | if (this.sliding) return 320 | return this.slide('prev') 321 | } 322 | 323 | , slide: function (type, next) { 324 | var $active = this.$element.find('.active') 325 | , $next = next || $active[type]() 326 | , isCycling = this.interval 327 | , direction = type == 'next' ? 'left' : 'right' 328 | , fallback = type == 'next' ? 'first' : 'last' 329 | , that = this 330 | 331 | this.sliding = true 332 | 333 | isCycling && this.pause() 334 | 335 | $next = $next.length ? $next : this.$element.find('.item')[fallback]() 336 | 337 | if ($next.hasClass('active')) return 338 | 339 | if (!$.support.transition && this.$element.hasClass('slide')) { 340 | this.$element.trigger('slide') 341 | $active.removeClass('active') 342 | $next.addClass('active') 343 | this.sliding = false 344 | this.$element.trigger('slid') 345 | } else { 346 | $next.addClass(type) 347 | $next[0].offsetWidth // force reflow 348 | $active.addClass(direction) 349 | $next.addClass(direction) 350 | this.$element.trigger('slide') 351 | this.$element.one($.support.transition.end, function () { 352 | $next.removeClass([type, direction].join(' ')).addClass('active') 353 | $active.removeClass(['active', direction].join(' ')) 354 | that.sliding = false 355 | setTimeout(function () { that.$element.trigger('slid') }, 0) 356 | }) 357 | } 358 | 359 | isCycling && this.cycle() 360 | 361 | return this 362 | } 363 | 364 | } 365 | 366 | 367 | /* CAROUSEL PLUGIN DEFINITION 368 | * ========================== */ 369 | 370 | $.fn.carousel = function ( option ) { 371 | return this.each(function () { 372 | var $this = $(this) 373 | , data = $this.data('carousel') 374 | , options = typeof option == 'object' && option 375 | if (!data) $this.data('carousel', (data = new Carousel(this, options))) 376 | if (typeof option == 'number') data.to(option) 377 | else if (typeof option == 'string' || (option = options.slide)) data[option]() 378 | else data.cycle() 379 | }) 380 | } 381 | 382 | $.fn.carousel.defaults = { 383 | interval: 5000 384 | , pause: 'hover' 385 | } 386 | 387 | $.fn.carousel.Constructor = Carousel 388 | 389 | 390 | /* CAROUSEL DATA-API 391 | * ================= */ 392 | 393 | $(function () { 394 | $('body').on('click.carousel.data-api', '[data-slide]', function ( e ) { 395 | var $this = $(this), href 396 | , $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7 397 | , options = !$target.data('modal') && $.extend({}, $target.data(), $this.data()) 398 | $target.carousel(options) 399 | e.preventDefault() 400 | }) 401 | }) 402 | 403 | }( window.jQuery );/* ============================================================= 404 | * bootstrap-collapse.js v2.0.2 405 | * http://twitter.github.com/bootstrap/javascript.html#collapse 406 | * ============================================================= 407 | * Copyright 2012 Twitter, Inc. 408 | * 409 | * Licensed under the Apache License, Version 2.0 (the "License"); 410 | * you may not use this file except in compliance with the License. 411 | * You may obtain a copy of the License at 412 | * 413 | * http://www.apache.org/licenses/LICENSE-2.0 414 | * 415 | * Unless required by applicable law or agreed to in writing, software 416 | * distributed under the License is distributed on an "AS IS" BASIS, 417 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 418 | * See the License for the specific language governing permissions and 419 | * limitations under the License. 420 | * ============================================================ */ 421 | 422 | !function( $ ){ 423 | 424 | "use strict" 425 | 426 | var Collapse = function ( element, options ) { 427 | this.$element = $(element) 428 | this.options = $.extend({}, $.fn.collapse.defaults, options) 429 | 430 | if (this.options["parent"]) { 431 | this.$parent = $(this.options["parent"]) 432 | } 433 | 434 | this.options.toggle && this.toggle() 435 | } 436 | 437 | Collapse.prototype = { 438 | 439 | constructor: Collapse 440 | 441 | , dimension: function () { 442 | var hasWidth = this.$element.hasClass('width') 443 | return hasWidth ? 'width' : 'height' 444 | } 445 | 446 | , show: function () { 447 | var dimension = this.dimension() 448 | , scroll = $.camelCase(['scroll', dimension].join('-')) 449 | , actives = this.$parent && this.$parent.find('.in') 450 | , hasData 451 | 452 | if (actives && actives.length) { 453 | hasData = actives.data('collapse') 454 | actives.collapse('hide') 455 | hasData || actives.data('collapse', null) 456 | } 457 | 458 | this.$element[dimension](0) 459 | this.transition('addClass', 'show', 'shown') 460 | this.$element[dimension](this.$element[0][scroll]) 461 | 462 | } 463 | 464 | , hide: function () { 465 | var dimension = this.dimension() 466 | this.reset(this.$element[dimension]()) 467 | this.transition('removeClass', 'hide', 'hidden') 468 | this.$element[dimension](0) 469 | } 470 | 471 | , reset: function ( size ) { 472 | var dimension = this.dimension() 473 | 474 | this.$element 475 | .removeClass('collapse') 476 | [dimension](size || 'auto') 477 | [0].offsetWidth 478 | 479 | this.$element[size ? 'addClass' : 'removeClass']('collapse') 480 | 481 | return this 482 | } 483 | 484 | , transition: function ( method, startEvent, completeEvent ) { 485 | var that = this 486 | , complete = function () { 487 | if (startEvent == 'show') that.reset() 488 | that.$element.trigger(completeEvent) 489 | } 490 | 491 | this.$element 492 | .trigger(startEvent) 493 | [method]('in') 494 | 495 | $.support.transition && this.$element.hasClass('collapse') ? 496 | this.$element.one($.support.transition.end, complete) : 497 | complete() 498 | } 499 | 500 | , toggle: function () { 501 | this[this.$element.hasClass('in') ? 'hide' : 'show']() 502 | } 503 | 504 | } 505 | 506 | /* COLLAPSIBLE PLUGIN DEFINITION 507 | * ============================== */ 508 | 509 | $.fn.collapse = function ( option ) { 510 | return this.each(function () { 511 | var $this = $(this) 512 | , data = $this.data('collapse') 513 | , options = typeof option == 'object' && option 514 | if (!data) $this.data('collapse', (data = new Collapse(this, options))) 515 | if (typeof option == 'string') data[option]() 516 | }) 517 | } 518 | 519 | $.fn.collapse.defaults = { 520 | toggle: true 521 | } 522 | 523 | $.fn.collapse.Constructor = Collapse 524 | 525 | 526 | /* COLLAPSIBLE DATA-API 527 | * ==================== */ 528 | 529 | $(function () { 530 | $('body').on('click.collapse.data-api', '[data-toggle=collapse]', function ( e ) { 531 | var $this = $(this), href 532 | , target = $this.attr('data-target') 533 | || e.preventDefault() 534 | || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') //strip for ie7 535 | , option = $(target).data('collapse') ? 'toggle' : $this.data() 536 | $(target).collapse(option) 537 | }) 538 | }) 539 | 540 | }( window.jQuery );/* ============================================================ 541 | * bootstrap-dropdown.js v2.0.2 542 | * http://twitter.github.com/bootstrap/javascript.html#dropdowns 543 | * ============================================================ 544 | * Copyright 2012 Twitter, Inc. 545 | * 546 | * Licensed under the Apache License, Version 2.0 (the "License"); 547 | * you may not use this file except in compliance with the License. 548 | * You may obtain a copy of the License at 549 | * 550 | * http://www.apache.org/licenses/LICENSE-2.0 551 | * 552 | * Unless required by applicable law or agreed to in writing, software 553 | * distributed under the License is distributed on an "AS IS" BASIS, 554 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 555 | * See the License for the specific language governing permissions and 556 | * limitations under the License. 557 | * ============================================================ */ 558 | 559 | 560 | !function( $ ){ 561 | 562 | "use strict" 563 | 564 | /* DROPDOWN CLASS DEFINITION 565 | * ========================= */ 566 | 567 | var toggle = '[data-toggle="dropdown"]' 568 | , Dropdown = function ( element ) { 569 | var $el = $(element).on('click.dropdown.data-api', this.toggle) 570 | $('html').on('click.dropdown.data-api', function () { 571 | $el.parent().removeClass('open') 572 | }) 573 | } 574 | 575 | Dropdown.prototype = { 576 | 577 | constructor: Dropdown 578 | 579 | , toggle: function ( e ) { 580 | var $this = $(this) 581 | , selector = $this.attr('data-target') 582 | , $parent 583 | , isActive 584 | 585 | if (!selector) { 586 | selector = $this.attr('href') 587 | selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7 588 | } 589 | 590 | $parent = $(selector) 591 | $parent.length || ($parent = $this.parent()) 592 | 593 | isActive = $parent.hasClass('open') 594 | 595 | clearMenus() 596 | !isActive && $parent.toggleClass('open') 597 | 598 | return false 599 | } 600 | 601 | } 602 | 603 | function clearMenus() { 604 | $(toggle).parent().removeClass('open') 605 | } 606 | 607 | 608 | /* DROPDOWN PLUGIN DEFINITION 609 | * ========================== */ 610 | 611 | $.fn.dropdown = function ( option ) { 612 | return this.each(function () { 613 | var $this = $(this) 614 | , data = $this.data('dropdown') 615 | if (!data) $this.data('dropdown', (data = new Dropdown(this))) 616 | if (typeof option == 'string') data[option].call($this) 617 | }) 618 | } 619 | 620 | $.fn.dropdown.Constructor = Dropdown 621 | 622 | 623 | /* APPLY TO STANDARD DROPDOWN ELEMENTS 624 | * =================================== */ 625 | 626 | $(function () { 627 | $('html').on('click.dropdown.data-api', clearMenus) 628 | $('body').on('click.dropdown.data-api', toggle, Dropdown.prototype.toggle) 629 | }) 630 | 631 | }( window.jQuery );/* ========================================================= 632 | * bootstrap-modal.js v2.0.2 633 | * http://twitter.github.com/bootstrap/javascript.html#modals 634 | * ========================================================= 635 | * Copyright 2012 Twitter, Inc. 636 | * 637 | * Licensed under the Apache License, Version 2.0 (the "License"); 638 | * you may not use this file except in compliance with the License. 639 | * You may obtain a copy of the License at 640 | * 641 | * http://www.apache.org/licenses/LICENSE-2.0 642 | * 643 | * Unless required by applicable law or agreed to in writing, software 644 | * distributed under the License is distributed on an "AS IS" BASIS, 645 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 646 | * See the License for the specific language governing permissions and 647 | * limitations under the License. 648 | * ========================================================= */ 649 | 650 | 651 | !function( $ ){ 652 | 653 | "use strict" 654 | 655 | /* MODAL CLASS DEFINITION 656 | * ====================== */ 657 | 658 | var Modal = function ( content, options ) { 659 | this.options = options 660 | this.$element = $(content) 661 | .delegate('[data-dismiss="modal"]', 'click.dismiss.modal', $.proxy(this.hide, this)) 662 | } 663 | 664 | Modal.prototype = { 665 | 666 | constructor: Modal 667 | 668 | , toggle: function () { 669 | return this[!this.isShown ? 'show' : 'hide']() 670 | } 671 | 672 | , show: function () { 673 | var that = this 674 | 675 | if (this.isShown) return 676 | 677 | $('body').addClass('modal-open') 678 | 679 | this.isShown = true 680 | this.$element.trigger('show') 681 | 682 | escape.call(this) 683 | backdrop.call(this, function () { 684 | var transition = $.support.transition && that.$element.hasClass('fade') 685 | 686 | !that.$element.parent().length && that.$element.appendTo(document.body) //don't move modals dom position 687 | 688 | that.$element 689 | .show() 690 | 691 | if (transition) { 692 | that.$element[0].offsetWidth // force reflow 693 | } 694 | 695 | that.$element.addClass('in') 696 | 697 | transition ? 698 | that.$element.one($.support.transition.end, function () { that.$element.trigger('shown') }) : 699 | that.$element.trigger('shown') 700 | 701 | }) 702 | } 703 | 704 | , hide: function ( e ) { 705 | e && e.preventDefault() 706 | 707 | if (!this.isShown) return 708 | 709 | var that = this 710 | this.isShown = false 711 | 712 | $('body').removeClass('modal-open') 713 | 714 | escape.call(this) 715 | 716 | this.$element 717 | .trigger('hide') 718 | .removeClass('in') 719 | 720 | $.support.transition && this.$element.hasClass('fade') ? 721 | hideWithTransition.call(this) : 722 | hideModal.call(this) 723 | } 724 | 725 | } 726 | 727 | 728 | /* MODAL PRIVATE METHODS 729 | * ===================== */ 730 | 731 | function hideWithTransition() { 732 | var that = this 733 | , timeout = setTimeout(function () { 734 | that.$element.off($.support.transition.end) 735 | hideModal.call(that) 736 | }, 500) 737 | 738 | this.$element.one($.support.transition.end, function () { 739 | clearTimeout(timeout) 740 | hideModal.call(that) 741 | }) 742 | } 743 | 744 | function hideModal( that ) { 745 | this.$element 746 | .hide() 747 | .trigger('hidden') 748 | 749 | backdrop.call(this) 750 | } 751 | 752 | function backdrop( callback ) { 753 | var that = this 754 | , animate = this.$element.hasClass('fade') ? 'fade' : '' 755 | 756 | if (this.isShown && this.options.backdrop) { 757 | var doAnimate = $.support.transition && animate 758 | 759 | this.$backdrop = $('