├── .gitignore ├── README.md ├── dotcloud.yml ├── miita ├── __init__.py ├── application.py ├── models.py ├── static │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap-responsive.min.css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ └── js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ ├── highlight.css │ ├── jquery.min.js │ └── style.css ├── templates │ ├── article.html │ ├── edit.html │ ├── index.html │ └── layout.html ├── util.py └── views.py ├── requirements.txt ├── runlocal.py └── sample_setting_dotcloud.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .idea 3 | .DS_Store 4 | .project 5 | .dotcloud 6 | wsgi.py 7 | setting_*.py 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # miita 2 | 3 | miita は社内で使える Qiita を目指しています。 4 | 5 | 認証は (KLab が Google Apps を利用しているので) Google を使います。 6 | 7 | ## 使い方(開発環境編) 8 | 9 | 1. virtualenv を作ります. 10 | 2. pip install -r requirements.txt 11 | 3. mongodb を起動します. 12 | 4. ./runlocal.py 13 | 14 | -------------------------------------------------------------------------------- /dotcloud.yml: -------------------------------------------------------------------------------- 1 | www: 2 | type: python 3 | config: 4 | python_version: v2.7 5 | uwsgi_buffer_size: 8192 6 | uwsgi_single_interpreter: true 7 | 8 | data: 9 | type: mongodb 10 | 11 | -------------------------------------------------------------------------------- /miita/__init__.py: -------------------------------------------------------------------------------- 1 | from .application import app 2 | from . import views 3 | app.register_blueprint(views.bp) -------------------------------------------------------------------------------- /miita/application.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | u""" 3 | app オブジェクトの生成、カスタマイズをする 4 | """ 5 | 6 | import datetime 7 | from flask import Flask 8 | from flask.ext.googleauth import (GoogleFederated, GoogleAuth) 9 | from flask.ext.mongoengine import MongoEngine 10 | from .util import DummyAuth 11 | 12 | 13 | app = Flask('miita') 14 | 15 | app.config.update( 16 | SECRET_KEY = 'random secret key: Override on real environment', 17 | MONGODB_SETTINGS = {'DB': 'miita'} 18 | ) 19 | 20 | # 環境変数が設定されてる場合、それで設定をオーバーライドする. 21 | app.config.from_envvar('MIITA_SETTING_FILE', silent=True) 22 | 23 | 24 | domain = app.config.get('DOMAIN') 25 | if domain == 'dummy': 26 | auth = DummyAuth(app) 27 | elif domain is None: 28 | auth = GoogleAuth(app) 29 | else: 30 | auth = GoogleFederated(app, app.config['DOMAIN']) 31 | 32 | 33 | mongo = MongoEngine(app) 34 | 35 | 36 | @app.template_filter() 37 | def localtime(dt, format='%Y-%m-%d %H:%M:%S'): 38 | u"""utcの時間を日本時間で指定されたフォーマットで文字列化する.""" 39 | local = dt + datetime.timedelta(hours=9) 40 | return local.strftime(format) 41 | -------------------------------------------------------------------------------- /miita/models.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from .application import mongo as m 3 | 4 | 5 | class User(m.Document): 6 | email = m.StringField(primary_key=True) 7 | name = m.StringField() 8 | follow_tags = m.SortedListField(m.StringField()) 9 | #follow_users = m.SortedListField(m.ReferenceField('User', dbref=True)) 10 | 11 | 12 | class Item(m.Document): 13 | source = m.StringField(default='') 14 | html = m.StringField(default='') 15 | title = m.StringField(default='') 16 | author = m.ReferenceField(User, dbref=True) 17 | updated_at = m.DateTimeField() 18 | tags = m.SortedListField(m.StringField()) 19 | -------------------------------------------------------------------------------- /miita/static/bootstrap/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap Responsive v2.2.1 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 | 11 | .clearfix { 12 | *zoom: 1; 13 | } 14 | 15 | .clearfix:before, 16 | .clearfix:after { 17 | display: table; 18 | line-height: 0; 19 | content: ""; 20 | } 21 | 22 | .clearfix:after { 23 | clear: both; 24 | } 25 | 26 | .hide-text { 27 | font: 0/0 a; 28 | color: transparent; 29 | text-shadow: none; 30 | background-color: transparent; 31 | border: 0; 32 | } 33 | 34 | .input-block-level { 35 | display: block; 36 | width: 100%; 37 | min-height: 30px; 38 | -webkit-box-sizing: border-box; 39 | -moz-box-sizing: border-box; 40 | box-sizing: border-box; 41 | } 42 | 43 | .hidden { 44 | display: none; 45 | visibility: hidden; 46 | } 47 | 48 | .visible-phone { 49 | display: none !important; 50 | } 51 | 52 | .visible-tablet { 53 | display: none !important; 54 | } 55 | 56 | .hidden-desktop { 57 | display: none !important; 58 | } 59 | 60 | .visible-desktop { 61 | display: inherit !important; 62 | } 63 | 64 | @media (min-width: 768px) and (max-width: 979px) { 65 | .hidden-desktop { 66 | display: inherit !important; 67 | } 68 | .visible-desktop { 69 | display: none !important ; 70 | } 71 | .visible-tablet { 72 | display: inherit !important; 73 | } 74 | .hidden-tablet { 75 | display: none !important; 76 | } 77 | } 78 | 79 | @media (max-width: 767px) { 80 | .hidden-desktop { 81 | display: inherit !important; 82 | } 83 | .visible-desktop { 84 | display: none !important; 85 | } 86 | .visible-phone { 87 | display: inherit !important; 88 | } 89 | .hidden-phone { 90 | display: none !important; 91 | } 92 | } 93 | 94 | @media (min-width: 1200px) { 95 | .row { 96 | margin-left: -30px; 97 | *zoom: 1; 98 | } 99 | .row:before, 100 | .row:after { 101 | display: table; 102 | line-height: 0; 103 | content: ""; 104 | } 105 | .row:after { 106 | clear: both; 107 | } 108 | [class*="span"] { 109 | float: left; 110 | min-height: 1px; 111 | margin-left: 30px; 112 | } 113 | .container, 114 | .navbar-static-top .container, 115 | .navbar-fixed-top .container, 116 | .navbar-fixed-bottom .container { 117 | width: 1170px; 118 | } 119 | .span12 { 120 | width: 1170px; 121 | } 122 | .span11 { 123 | width: 1070px; 124 | } 125 | .span10 { 126 | width: 970px; 127 | } 128 | .span9 { 129 | width: 870px; 130 | } 131 | .span8 { 132 | width: 770px; 133 | } 134 | .span7 { 135 | width: 670px; 136 | } 137 | .span6 { 138 | width: 570px; 139 | } 140 | .span5 { 141 | width: 470px; 142 | } 143 | .span4 { 144 | width: 370px; 145 | } 146 | .span3 { 147 | width: 270px; 148 | } 149 | .span2 { 150 | width: 170px; 151 | } 152 | .span1 { 153 | width: 70px; 154 | } 155 | .offset12 { 156 | margin-left: 1230px; 157 | } 158 | .offset11 { 159 | margin-left: 1130px; 160 | } 161 | .offset10 { 162 | margin-left: 1030px; 163 | } 164 | .offset9 { 165 | margin-left: 930px; 166 | } 167 | .offset8 { 168 | margin-left: 830px; 169 | } 170 | .offset7 { 171 | margin-left: 730px; 172 | } 173 | .offset6 { 174 | margin-left: 630px; 175 | } 176 | .offset5 { 177 | margin-left: 530px; 178 | } 179 | .offset4 { 180 | margin-left: 430px; 181 | } 182 | .offset3 { 183 | margin-left: 330px; 184 | } 185 | .offset2 { 186 | margin-left: 230px; 187 | } 188 | .offset1 { 189 | margin-left: 130px; 190 | } 191 | .row-fluid { 192 | width: 100%; 193 | *zoom: 1; 194 | } 195 | .row-fluid:before, 196 | .row-fluid:after { 197 | display: table; 198 | line-height: 0; 199 | content: ""; 200 | } 201 | .row-fluid:after { 202 | clear: both; 203 | } 204 | .row-fluid [class*="span"] { 205 | display: block; 206 | float: left; 207 | width: 100%; 208 | min-height: 30px; 209 | margin-left: 2.564102564102564%; 210 | *margin-left: 2.5109110747408616%; 211 | -webkit-box-sizing: border-box; 212 | -moz-box-sizing: border-box; 213 | box-sizing: border-box; 214 | } 215 | .row-fluid [class*="span"]:first-child { 216 | margin-left: 0; 217 | } 218 | .row-fluid .controls-row [class*="span"] + [class*="span"] { 219 | margin-left: 2.564102564102564%; 220 | } 221 | .row-fluid .span12 { 222 | width: 100%; 223 | *width: 99.94680851063829%; 224 | } 225 | .row-fluid .span11 { 226 | width: 91.45299145299145%; 227 | *width: 91.39979996362975%; 228 | } 229 | .row-fluid .span10 { 230 | width: 82.90598290598291%; 231 | *width: 82.8527914166212%; 232 | } 233 | .row-fluid .span9 { 234 | width: 74.35897435897436%; 235 | *width: 74.30578286961266%; 236 | } 237 | .row-fluid .span8 { 238 | width: 65.81196581196582%; 239 | *width: 65.75877432260411%; 240 | } 241 | .row-fluid .span7 { 242 | width: 57.26495726495726%; 243 | *width: 57.21176577559556%; 244 | } 245 | .row-fluid .span6 { 246 | width: 48.717948717948715%; 247 | *width: 48.664757228587014%; 248 | } 249 | .row-fluid .span5 { 250 | width: 40.17094017094017%; 251 | *width: 40.11774868157847%; 252 | } 253 | .row-fluid .span4 { 254 | width: 31.623931623931625%; 255 | *width: 31.570740134569924%; 256 | } 257 | .row-fluid .span3 { 258 | width: 23.076923076923077%; 259 | *width: 23.023731587561375%; 260 | } 261 | .row-fluid .span2 { 262 | width: 14.52991452991453%; 263 | *width: 14.476723040552828%; 264 | } 265 | .row-fluid .span1 { 266 | width: 5.982905982905983%; 267 | *width: 5.929714493544281%; 268 | } 269 | .row-fluid .offset12 { 270 | margin-left: 105.12820512820512%; 271 | *margin-left: 105.02182214948171%; 272 | } 273 | .row-fluid .offset12:first-child { 274 | margin-left: 102.56410256410257%; 275 | *margin-left: 102.45771958537915%; 276 | } 277 | .row-fluid .offset11 { 278 | margin-left: 96.58119658119658%; 279 | *margin-left: 96.47481360247316%; 280 | } 281 | .row-fluid .offset11:first-child { 282 | margin-left: 94.01709401709402%; 283 | *margin-left: 93.91071103837061%; 284 | } 285 | .row-fluid .offset10 { 286 | margin-left: 88.03418803418803%; 287 | *margin-left: 87.92780505546462%; 288 | } 289 | .row-fluid .offset10:first-child { 290 | margin-left: 85.47008547008548%; 291 | *margin-left: 85.36370249136206%; 292 | } 293 | .row-fluid .offset9 { 294 | margin-left: 79.48717948717949%; 295 | *margin-left: 79.38079650845607%; 296 | } 297 | .row-fluid .offset9:first-child { 298 | margin-left: 76.92307692307693%; 299 | *margin-left: 76.81669394435352%; 300 | } 301 | .row-fluid .offset8 { 302 | margin-left: 70.94017094017094%; 303 | *margin-left: 70.83378796144753%; 304 | } 305 | .row-fluid .offset8:first-child { 306 | margin-left: 68.37606837606839%; 307 | *margin-left: 68.26968539734497%; 308 | } 309 | .row-fluid .offset7 { 310 | margin-left: 62.393162393162385%; 311 | *margin-left: 62.28677941443899%; 312 | } 313 | .row-fluid .offset7:first-child { 314 | margin-left: 59.82905982905982%; 315 | *margin-left: 59.72267685033642%; 316 | } 317 | .row-fluid .offset6 { 318 | margin-left: 53.84615384615384%; 319 | *margin-left: 53.739770867430444%; 320 | } 321 | .row-fluid .offset6:first-child { 322 | margin-left: 51.28205128205128%; 323 | *margin-left: 51.175668303327875%; 324 | } 325 | .row-fluid .offset5 { 326 | margin-left: 45.299145299145295%; 327 | *margin-left: 45.1927623204219%; 328 | } 329 | .row-fluid .offset5:first-child { 330 | margin-left: 42.73504273504273%; 331 | *margin-left: 42.62865975631933%; 332 | } 333 | .row-fluid .offset4 { 334 | margin-left: 36.75213675213675%; 335 | *margin-left: 36.645753773413354%; 336 | } 337 | .row-fluid .offset4:first-child { 338 | margin-left: 34.18803418803419%; 339 | *margin-left: 34.081651209310785%; 340 | } 341 | .row-fluid .offset3 { 342 | margin-left: 28.205128205128204%; 343 | *margin-left: 28.0987452264048%; 344 | } 345 | .row-fluid .offset3:first-child { 346 | margin-left: 25.641025641025642%; 347 | *margin-left: 25.53464266230224%; 348 | } 349 | .row-fluid .offset2 { 350 | margin-left: 19.65811965811966%; 351 | *margin-left: 19.551736679396257%; 352 | } 353 | .row-fluid .offset2:first-child { 354 | margin-left: 17.094017094017094%; 355 | *margin-left: 16.98763411529369%; 356 | } 357 | .row-fluid .offset1 { 358 | margin-left: 11.11111111111111%; 359 | *margin-left: 11.004728132387708%; 360 | } 361 | .row-fluid .offset1:first-child { 362 | margin-left: 8.547008547008547%; 363 | *margin-left: 8.440625568285142%; 364 | } 365 | input, 366 | textarea, 367 | .uneditable-input { 368 | margin-left: 0; 369 | } 370 | .controls-row [class*="span"] + [class*="span"] { 371 | margin-left: 30px; 372 | } 373 | input.span12, 374 | textarea.span12, 375 | .uneditable-input.span12 { 376 | width: 1156px; 377 | } 378 | input.span11, 379 | textarea.span11, 380 | .uneditable-input.span11 { 381 | width: 1056px; 382 | } 383 | input.span10, 384 | textarea.span10, 385 | .uneditable-input.span10 { 386 | width: 956px; 387 | } 388 | input.span9, 389 | textarea.span9, 390 | .uneditable-input.span9 { 391 | width: 856px; 392 | } 393 | input.span8, 394 | textarea.span8, 395 | .uneditable-input.span8 { 396 | width: 756px; 397 | } 398 | input.span7, 399 | textarea.span7, 400 | .uneditable-input.span7 { 401 | width: 656px; 402 | } 403 | input.span6, 404 | textarea.span6, 405 | .uneditable-input.span6 { 406 | width: 556px; 407 | } 408 | input.span5, 409 | textarea.span5, 410 | .uneditable-input.span5 { 411 | width: 456px; 412 | } 413 | input.span4, 414 | textarea.span4, 415 | .uneditable-input.span4 { 416 | width: 356px; 417 | } 418 | input.span3, 419 | textarea.span3, 420 | .uneditable-input.span3 { 421 | width: 256px; 422 | } 423 | input.span2, 424 | textarea.span2, 425 | .uneditable-input.span2 { 426 | width: 156px; 427 | } 428 | input.span1, 429 | textarea.span1, 430 | .uneditable-input.span1 { 431 | width: 56px; 432 | } 433 | .thumbnails { 434 | margin-left: -30px; 435 | } 436 | .thumbnails > li { 437 | margin-left: 30px; 438 | } 439 | .row-fluid .thumbnails { 440 | margin-left: 0; 441 | } 442 | } 443 | 444 | @media (min-width: 768px) and (max-width: 979px) { 445 | .row { 446 | margin-left: -20px; 447 | *zoom: 1; 448 | } 449 | .row:before, 450 | .row:after { 451 | display: table; 452 | line-height: 0; 453 | content: ""; 454 | } 455 | .row:after { 456 | clear: both; 457 | } 458 | [class*="span"] { 459 | float: left; 460 | min-height: 1px; 461 | margin-left: 20px; 462 | } 463 | .container, 464 | .navbar-static-top .container, 465 | .navbar-fixed-top .container, 466 | .navbar-fixed-bottom .container { 467 | width: 724px; 468 | } 469 | .span12 { 470 | width: 724px; 471 | } 472 | .span11 { 473 | width: 662px; 474 | } 475 | .span10 { 476 | width: 600px; 477 | } 478 | .span9 { 479 | width: 538px; 480 | } 481 | .span8 { 482 | width: 476px; 483 | } 484 | .span7 { 485 | width: 414px; 486 | } 487 | .span6 { 488 | width: 352px; 489 | } 490 | .span5 { 491 | width: 290px; 492 | } 493 | .span4 { 494 | width: 228px; 495 | } 496 | .span3 { 497 | width: 166px; 498 | } 499 | .span2 { 500 | width: 104px; 501 | } 502 | .span1 { 503 | width: 42px; 504 | } 505 | .offset12 { 506 | margin-left: 764px; 507 | } 508 | .offset11 { 509 | margin-left: 702px; 510 | } 511 | .offset10 { 512 | margin-left: 640px; 513 | } 514 | .offset9 { 515 | margin-left: 578px; 516 | } 517 | .offset8 { 518 | margin-left: 516px; 519 | } 520 | .offset7 { 521 | margin-left: 454px; 522 | } 523 | .offset6 { 524 | margin-left: 392px; 525 | } 526 | .offset5 { 527 | margin-left: 330px; 528 | } 529 | .offset4 { 530 | margin-left: 268px; 531 | } 532 | .offset3 { 533 | margin-left: 206px; 534 | } 535 | .offset2 { 536 | margin-left: 144px; 537 | } 538 | .offset1 { 539 | margin-left: 82px; 540 | } 541 | .row-fluid { 542 | width: 100%; 543 | *zoom: 1; 544 | } 545 | .row-fluid:before, 546 | .row-fluid:after { 547 | display: table; 548 | line-height: 0; 549 | content: ""; 550 | } 551 | .row-fluid:after { 552 | clear: both; 553 | } 554 | .row-fluid [class*="span"] { 555 | display: block; 556 | float: left; 557 | width: 100%; 558 | min-height: 30px; 559 | margin-left: 2.7624309392265194%; 560 | *margin-left: 2.709239449864817%; 561 | -webkit-box-sizing: border-box; 562 | -moz-box-sizing: border-box; 563 | box-sizing: border-box; 564 | } 565 | .row-fluid [class*="span"]:first-child { 566 | margin-left: 0; 567 | } 568 | .row-fluid .controls-row [class*="span"] + [class*="span"] { 569 | margin-left: 2.7624309392265194%; 570 | } 571 | .row-fluid .span12 { 572 | width: 100%; 573 | *width: 99.94680851063829%; 574 | } 575 | .row-fluid .span11 { 576 | width: 91.43646408839778%; 577 | *width: 91.38327259903608%; 578 | } 579 | .row-fluid .span10 { 580 | width: 82.87292817679558%; 581 | *width: 82.81973668743387%; 582 | } 583 | .row-fluid .span9 { 584 | width: 74.30939226519337%; 585 | *width: 74.25620077583166%; 586 | } 587 | .row-fluid .span8 { 588 | width: 65.74585635359117%; 589 | *width: 65.69266486422946%; 590 | } 591 | .row-fluid .span7 { 592 | width: 57.18232044198895%; 593 | *width: 57.12912895262725%; 594 | } 595 | .row-fluid .span6 { 596 | width: 48.61878453038674%; 597 | *width: 48.56559304102504%; 598 | } 599 | .row-fluid .span5 { 600 | width: 40.05524861878453%; 601 | *width: 40.00205712942283%; 602 | } 603 | .row-fluid .span4 { 604 | width: 31.491712707182323%; 605 | *width: 31.43852121782062%; 606 | } 607 | .row-fluid .span3 { 608 | width: 22.92817679558011%; 609 | *width: 22.87498530621841%; 610 | } 611 | .row-fluid .span2 { 612 | width: 14.3646408839779%; 613 | *width: 14.311449394616199%; 614 | } 615 | .row-fluid .span1 { 616 | width: 5.801104972375691%; 617 | *width: 5.747913483013988%; 618 | } 619 | .row-fluid .offset12 { 620 | margin-left: 105.52486187845304%; 621 | *margin-left: 105.41847889972962%; 622 | } 623 | .row-fluid .offset12:first-child { 624 | margin-left: 102.76243093922652%; 625 | *margin-left: 102.6560479605031%; 626 | } 627 | .row-fluid .offset11 { 628 | margin-left: 96.96132596685082%; 629 | *margin-left: 96.8549429881274%; 630 | } 631 | .row-fluid .offset11:first-child { 632 | margin-left: 94.1988950276243%; 633 | *margin-left: 94.09251204890089%; 634 | } 635 | .row-fluid .offset10 { 636 | margin-left: 88.39779005524862%; 637 | *margin-left: 88.2914070765252%; 638 | } 639 | .row-fluid .offset10:first-child { 640 | margin-left: 85.6353591160221%; 641 | *margin-left: 85.52897613729868%; 642 | } 643 | .row-fluid .offset9 { 644 | margin-left: 79.8342541436464%; 645 | *margin-left: 79.72787116492299%; 646 | } 647 | .row-fluid .offset9:first-child { 648 | margin-left: 77.07182320441989%; 649 | *margin-left: 76.96544022569647%; 650 | } 651 | .row-fluid .offset8 { 652 | margin-left: 71.2707182320442%; 653 | *margin-left: 71.16433525332079%; 654 | } 655 | .row-fluid .offset8:first-child { 656 | margin-left: 68.50828729281768%; 657 | *margin-left: 68.40190431409427%; 658 | } 659 | .row-fluid .offset7 { 660 | margin-left: 62.70718232044199%; 661 | *margin-left: 62.600799341718584%; 662 | } 663 | .row-fluid .offset7:first-child { 664 | margin-left: 59.94475138121547%; 665 | *margin-left: 59.838368402492065%; 666 | } 667 | .row-fluid .offset6 { 668 | margin-left: 54.14364640883978%; 669 | *margin-left: 54.037263430116376%; 670 | } 671 | .row-fluid .offset6:first-child { 672 | margin-left: 51.38121546961326%; 673 | *margin-left: 51.27483249088986%; 674 | } 675 | .row-fluid .offset5 { 676 | margin-left: 45.58011049723757%; 677 | *margin-left: 45.47372751851417%; 678 | } 679 | .row-fluid .offset5:first-child { 680 | margin-left: 42.81767955801105%; 681 | *margin-left: 42.71129657928765%; 682 | } 683 | .row-fluid .offset4 { 684 | margin-left: 37.01657458563536%; 685 | *margin-left: 36.91019160691196%; 686 | } 687 | .row-fluid .offset4:first-child { 688 | margin-left: 34.25414364640884%; 689 | *margin-left: 34.14776066768544%; 690 | } 691 | .row-fluid .offset3 { 692 | margin-left: 28.45303867403315%; 693 | *margin-left: 28.346655695309746%; 694 | } 695 | .row-fluid .offset3:first-child { 696 | margin-left: 25.69060773480663%; 697 | *margin-left: 25.584224756083227%; 698 | } 699 | .row-fluid .offset2 { 700 | margin-left: 19.88950276243094%; 701 | *margin-left: 19.783119783707537%; 702 | } 703 | .row-fluid .offset2:first-child { 704 | margin-left: 17.12707182320442%; 705 | *margin-left: 17.02068884448102%; 706 | } 707 | .row-fluid .offset1 { 708 | margin-left: 11.32596685082873%; 709 | *margin-left: 11.219583872105325%; 710 | } 711 | .row-fluid .offset1:first-child { 712 | margin-left: 8.56353591160221%; 713 | *margin-left: 8.457152932878806%; 714 | } 715 | input, 716 | textarea, 717 | .uneditable-input { 718 | margin-left: 0; 719 | } 720 | .controls-row [class*="span"] + [class*="span"] { 721 | margin-left: 20px; 722 | } 723 | input.span12, 724 | textarea.span12, 725 | .uneditable-input.span12 { 726 | width: 710px; 727 | } 728 | input.span11, 729 | textarea.span11, 730 | .uneditable-input.span11 { 731 | width: 648px; 732 | } 733 | input.span10, 734 | textarea.span10, 735 | .uneditable-input.span10 { 736 | width: 586px; 737 | } 738 | input.span9, 739 | textarea.span9, 740 | .uneditable-input.span9 { 741 | width: 524px; 742 | } 743 | input.span8, 744 | textarea.span8, 745 | .uneditable-input.span8 { 746 | width: 462px; 747 | } 748 | input.span7, 749 | textarea.span7, 750 | .uneditable-input.span7 { 751 | width: 400px; 752 | } 753 | input.span6, 754 | textarea.span6, 755 | .uneditable-input.span6 { 756 | width: 338px; 757 | } 758 | input.span5, 759 | textarea.span5, 760 | .uneditable-input.span5 { 761 | width: 276px; 762 | } 763 | input.span4, 764 | textarea.span4, 765 | .uneditable-input.span4 { 766 | width: 214px; 767 | } 768 | input.span3, 769 | textarea.span3, 770 | .uneditable-input.span3 { 771 | width: 152px; 772 | } 773 | input.span2, 774 | textarea.span2, 775 | .uneditable-input.span2 { 776 | width: 90px; 777 | } 778 | input.span1, 779 | textarea.span1, 780 | .uneditable-input.span1 { 781 | width: 28px; 782 | } 783 | } 784 | 785 | @media (max-width: 767px) { 786 | body { 787 | padding-right: 20px; 788 | padding-left: 20px; 789 | } 790 | .navbar-fixed-top, 791 | .navbar-fixed-bottom, 792 | .navbar-static-top { 793 | margin-right: -20px; 794 | margin-left: -20px; 795 | } 796 | .container-fluid { 797 | padding: 0; 798 | } 799 | .dl-horizontal dt { 800 | float: none; 801 | width: auto; 802 | clear: none; 803 | text-align: left; 804 | } 805 | .dl-horizontal dd { 806 | margin-left: 0; 807 | } 808 | .container { 809 | width: auto; 810 | } 811 | .row-fluid { 812 | width: 100%; 813 | } 814 | .row, 815 | .thumbnails { 816 | margin-left: 0; 817 | } 818 | .thumbnails > li { 819 | float: none; 820 | margin-left: 0; 821 | } 822 | [class*="span"], 823 | .uneditable-input[class*="span"], 824 | .row-fluid [class*="span"] { 825 | display: block; 826 | float: none; 827 | width: 100%; 828 | margin-left: 0; 829 | -webkit-box-sizing: border-box; 830 | -moz-box-sizing: border-box; 831 | box-sizing: border-box; 832 | } 833 | .span12, 834 | .row-fluid .span12 { 835 | width: 100%; 836 | -webkit-box-sizing: border-box; 837 | -moz-box-sizing: border-box; 838 | box-sizing: border-box; 839 | } 840 | .row-fluid [class*="offset"]:first-child { 841 | margin-left: 0; 842 | } 843 | .input-large, 844 | .input-xlarge, 845 | .input-xxlarge, 846 | input[class*="span"], 847 | select[class*="span"], 848 | textarea[class*="span"], 849 | .uneditable-input { 850 | display: block; 851 | width: 100%; 852 | min-height: 30px; 853 | -webkit-box-sizing: border-box; 854 | -moz-box-sizing: border-box; 855 | box-sizing: border-box; 856 | } 857 | .input-prepend input, 858 | .input-append input, 859 | .input-prepend input[class*="span"], 860 | .input-append input[class*="span"] { 861 | display: inline-block; 862 | width: auto; 863 | } 864 | .controls-row [class*="span"] + [class*="span"] { 865 | margin-left: 0; 866 | } 867 | .modal { 868 | position: fixed; 869 | top: 20px; 870 | right: 20px; 871 | left: 20px; 872 | width: auto; 873 | margin: 0; 874 | } 875 | .modal.fade { 876 | top: -100px; 877 | } 878 | .modal.fade.in { 879 | top: 20px; 880 | } 881 | } 882 | 883 | @media (max-width: 480px) { 884 | .nav-collapse { 885 | -webkit-transform: translate3d(0, 0, 0); 886 | } 887 | .page-header h1 small { 888 | display: block; 889 | line-height: 20px; 890 | } 891 | input[type="checkbox"], 892 | input[type="radio"] { 893 | border: 1px solid #ccc; 894 | } 895 | .form-horizontal .control-label { 896 | float: none; 897 | width: auto; 898 | padding-top: 0; 899 | text-align: left; 900 | } 901 | .form-horizontal .controls { 902 | margin-left: 0; 903 | } 904 | .form-horizontal .control-list { 905 | padding-top: 0; 906 | } 907 | .form-horizontal .form-actions { 908 | padding-right: 10px; 909 | padding-left: 10px; 910 | } 911 | .media .pull-left, 912 | .media .pull-right { 913 | display: block; 914 | float: none; 915 | margin-bottom: 10px; 916 | } 917 | .media-object { 918 | margin-right: 0; 919 | margin-left: 0; 920 | } 921 | .modal { 922 | top: 10px; 923 | right: 10px; 924 | left: 10px; 925 | } 926 | .modal-header .close { 927 | padding: 10px; 928 | margin: -10px; 929 | } 930 | .carousel-caption { 931 | position: static; 932 | } 933 | } 934 | 935 | @media (max-width: 979px) { 936 | body { 937 | padding-top: 0; 938 | } 939 | .navbar-fixed-top, 940 | .navbar-fixed-bottom { 941 | position: static; 942 | } 943 | .navbar-fixed-top { 944 | margin-bottom: 20px; 945 | } 946 | .navbar-fixed-bottom { 947 | margin-top: 20px; 948 | } 949 | .navbar-fixed-top .navbar-inner, 950 | .navbar-fixed-bottom .navbar-inner { 951 | padding: 5px; 952 | } 953 | .navbar .container { 954 | width: auto; 955 | padding: 0; 956 | } 957 | .navbar .brand { 958 | padding-right: 10px; 959 | padding-left: 10px; 960 | margin: 0 0 0 -5px; 961 | } 962 | .nav-collapse { 963 | clear: both; 964 | } 965 | .nav-collapse .nav { 966 | float: none; 967 | margin: 0 0 10px; 968 | } 969 | .nav-collapse .nav > li { 970 | float: none; 971 | } 972 | .nav-collapse .nav > li > a { 973 | margin-bottom: 2px; 974 | } 975 | .nav-collapse .nav > .divider-vertical { 976 | display: none; 977 | } 978 | .nav-collapse .nav .nav-header { 979 | color: #777777; 980 | text-shadow: none; 981 | } 982 | .nav-collapse .nav > li > a, 983 | .nav-collapse .dropdown-menu a { 984 | padding: 9px 15px; 985 | font-weight: bold; 986 | color: #777777; 987 | -webkit-border-radius: 3px; 988 | -moz-border-radius: 3px; 989 | border-radius: 3px; 990 | } 991 | .nav-collapse .btn { 992 | padding: 4px 10px 4px; 993 | font-weight: normal; 994 | -webkit-border-radius: 4px; 995 | -moz-border-radius: 4px; 996 | border-radius: 4px; 997 | } 998 | .nav-collapse .dropdown-menu li + li a { 999 | margin-bottom: 2px; 1000 | } 1001 | .nav-collapse .nav > li > a:hover, 1002 | .nav-collapse .dropdown-menu a:hover { 1003 | background-color: #f2f2f2; 1004 | } 1005 | .navbar-inverse .nav-collapse .nav > li > a, 1006 | .navbar-inverse .nav-collapse .dropdown-menu a { 1007 | color: #999999; 1008 | } 1009 | .navbar-inverse .nav-collapse .nav > li > a:hover, 1010 | .navbar-inverse .nav-collapse .dropdown-menu a:hover { 1011 | background-color: #111111; 1012 | } 1013 | .nav-collapse.in .btn-group { 1014 | padding: 0; 1015 | margin-top: 5px; 1016 | } 1017 | .nav-collapse .dropdown-menu { 1018 | position: static; 1019 | top: auto; 1020 | left: auto; 1021 | display: none; 1022 | float: none; 1023 | max-width: none; 1024 | padding: 0; 1025 | margin: 0 15px; 1026 | background-color: transparent; 1027 | border: none; 1028 | -webkit-border-radius: 0; 1029 | -moz-border-radius: 0; 1030 | border-radius: 0; 1031 | -webkit-box-shadow: none; 1032 | -moz-box-shadow: none; 1033 | box-shadow: none; 1034 | } 1035 | .nav-collapse .open > .dropdown-menu { 1036 | display: block; 1037 | } 1038 | .nav-collapse .dropdown-menu:before, 1039 | .nav-collapse .dropdown-menu:after { 1040 | display: none; 1041 | } 1042 | .nav-collapse .dropdown-menu .divider { 1043 | display: none; 1044 | } 1045 | .nav-collapse .nav > li > .dropdown-menu:before, 1046 | .nav-collapse .nav > li > .dropdown-menu:after { 1047 | display: none; 1048 | } 1049 | .nav-collapse .navbar-form, 1050 | .nav-collapse .navbar-search { 1051 | float: none; 1052 | padding: 10px 15px; 1053 | margin: 10px 0; 1054 | border-top: 1px solid #f2f2f2; 1055 | border-bottom: 1px solid #f2f2f2; 1056 | -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); 1057 | -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); 1058 | box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); 1059 | } 1060 | .navbar-inverse .nav-collapse .navbar-form, 1061 | .navbar-inverse .nav-collapse .navbar-search { 1062 | border-top-color: #111111; 1063 | border-bottom-color: #111111; 1064 | } 1065 | .navbar .nav-collapse .nav.pull-right { 1066 | float: none; 1067 | margin-left: 0; 1068 | } 1069 | .nav-collapse, 1070 | .nav-collapse.collapse { 1071 | height: 0; 1072 | overflow: hidden; 1073 | } 1074 | .navbar .btn-navbar { 1075 | display: block; 1076 | } 1077 | .navbar-static .navbar-inner { 1078 | padding-right: 10px; 1079 | padding-left: 10px; 1080 | } 1081 | } 1082 | 1083 | @media (min-width: 980px) { 1084 | .nav-collapse.collapse { 1085 | height: auto !important; 1086 | overflow: visible !important; 1087 | } 1088 | } 1089 | -------------------------------------------------------------------------------- /miita/static/bootstrap/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap Responsive v2.2.1 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 | */.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;line-height:0;content:""}.clearfix:after{clear:both}.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.hidden{display:none;visibility:hidden}.visible-phone{display:none!important}.visible-tablet{display:none!important}.hidden-desktop{display:none!important}.visible-desktop{display:inherit!important}@media(min-width:768px) and (max-width:979px){.hidden-desktop{display:inherit!important}.visible-desktop{display:none!important}.visible-tablet{display:inherit!important}.hidden-tablet{display:none!important}}@media(max-width:767px){.hidden-desktop{display:inherit!important}.visible-desktop{display:none!important}.visible-phone{display:inherit!important}.hidden-phone{display:none!important}}@media(min-width:1200px){.row{margin-left:-30px;*zoom:1}.row:before,.row:after{display:table;line-height:0;content:""}.row:after{clear:both}[class*="span"]{float:left;min-height:1px;margin-left:30px}.container,.navbar-static-top .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;line-height:0;content:""}.row-fluid:after{clear:both}.row-fluid [class*="span"]{display:block;float:left;width:100%;min-height:30px;margin-left:2.564102564102564%;*margin-left:2.5109110747408616%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.row-fluid [class*="span"]:first-child{margin-left:0}.row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.564102564102564%}.row-fluid .span12{width:100%;*width:99.94680851063829%}.row-fluid .span11{width:91.45299145299145%;*width:91.39979996362975%}.row-fluid .span10{width:82.90598290598291%;*width:82.8527914166212%}.row-fluid .span9{width:74.35897435897436%;*width:74.30578286961266%}.row-fluid .span8{width:65.81196581196582%;*width:65.75877432260411%}.row-fluid .span7{width:57.26495726495726%;*width:57.21176577559556%}.row-fluid .span6{width:48.717948717948715%;*width:48.664757228587014%}.row-fluid .span5{width:40.17094017094017%;*width:40.11774868157847%}.row-fluid .span4{width:31.623931623931625%;*width:31.570740134569924%}.row-fluid .span3{width:23.076923076923077%;*width:23.023731587561375%}.row-fluid .span2{width:14.52991452991453%;*width:14.476723040552828%}.row-fluid .span1{width:5.982905982905983%;*width:5.929714493544281%}.row-fluid .offset12{margin-left:105.12820512820512%;*margin-left:105.02182214948171%}.row-fluid .offset12:first-child{margin-left:102.56410256410257%;*margin-left:102.45771958537915%}.row-fluid .offset11{margin-left:96.58119658119658%;*margin-left:96.47481360247316%}.row-fluid .offset11:first-child{margin-left:94.01709401709402%;*margin-left:93.91071103837061%}.row-fluid .offset10{margin-left:88.03418803418803%;*margin-left:87.92780505546462%}.row-fluid .offset10:first-child{margin-left:85.47008547008548%;*margin-left:85.36370249136206%}.row-fluid .offset9{margin-left:79.48717948717949%;*margin-left:79.38079650845607%}.row-fluid .offset9:first-child{margin-left:76.92307692307693%;*margin-left:76.81669394435352%}.row-fluid .offset8{margin-left:70.94017094017094%;*margin-left:70.83378796144753%}.row-fluid .offset8:first-child{margin-left:68.37606837606839%;*margin-left:68.26968539734497%}.row-fluid .offset7{margin-left:62.393162393162385%;*margin-left:62.28677941443899%}.row-fluid .offset7:first-child{margin-left:59.82905982905982%;*margin-left:59.72267685033642%}.row-fluid .offset6{margin-left:53.84615384615384%;*margin-left:53.739770867430444%}.row-fluid .offset6:first-child{margin-left:51.28205128205128%;*margin-left:51.175668303327875%}.row-fluid .offset5{margin-left:45.299145299145295%;*margin-left:45.1927623204219%}.row-fluid .offset5:first-child{margin-left:42.73504273504273%;*margin-left:42.62865975631933%}.row-fluid .offset4{margin-left:36.75213675213675%;*margin-left:36.645753773413354%}.row-fluid .offset4:first-child{margin-left:34.18803418803419%;*margin-left:34.081651209310785%}.row-fluid .offset3{margin-left:28.205128205128204%;*margin-left:28.0987452264048%}.row-fluid .offset3:first-child{margin-left:25.641025641025642%;*margin-left:25.53464266230224%}.row-fluid .offset2{margin-left:19.65811965811966%;*margin-left:19.551736679396257%}.row-fluid .offset2:first-child{margin-left:17.094017094017094%;*margin-left:16.98763411529369%}.row-fluid .offset1{margin-left:11.11111111111111%;*margin-left:11.004728132387708%}.row-fluid .offset1:first-child{margin-left:8.547008547008547%;*margin-left:8.440625568285142%}input,textarea,.uneditable-input{margin-left:0}.controls-row [class*="span"]+[class*="span"]{margin-left:30px}input.span12,textarea.span12,.uneditable-input.span12{width:1156px}input.span11,textarea.span11,.uneditable-input.span11{width:1056px}input.span10,textarea.span10,.uneditable-input.span10{width:956px}input.span9,textarea.span9,.uneditable-input.span9{width:856px}input.span8,textarea.span8,.uneditable-input.span8{width:756px}input.span7,textarea.span7,.uneditable-input.span7{width:656px}input.span6,textarea.span6,.uneditable-input.span6{width:556px}input.span5,textarea.span5,.uneditable-input.span5{width:456px}input.span4,textarea.span4,.uneditable-input.span4{width:356px}input.span3,textarea.span3,.uneditable-input.span3{width:256px}input.span2,textarea.span2,.uneditable-input.span2{width:156px}input.span1,textarea.span1,.uneditable-input.span1{width:56px}.thumbnails{margin-left:-30px}.thumbnails>li{margin-left:30px}.row-fluid .thumbnails{margin-left:0}}@media(min-width:768px) and (max-width:979px){.row{margin-left:-20px;*zoom:1}.row:before,.row:after{display:table;line-height:0;content:""}.row:after{clear:both}[class*="span"]{float:left;min-height:1px;margin-left:20px}.container,.navbar-static-top .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;line-height:0;content:""}.row-fluid:after{clear:both}.row-fluid [class*="span"]{display:block;float:left;width:100%;min-height:30px;margin-left:2.7624309392265194%;*margin-left:2.709239449864817%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.row-fluid [class*="span"]:first-child{margin-left:0}.row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.7624309392265194%}.row-fluid .span12{width:100%;*width:99.94680851063829%}.row-fluid .span11{width:91.43646408839778%;*width:91.38327259903608%}.row-fluid .span10{width:82.87292817679558%;*width:82.81973668743387%}.row-fluid .span9{width:74.30939226519337%;*width:74.25620077583166%}.row-fluid .span8{width:65.74585635359117%;*width:65.69266486422946%}.row-fluid .span7{width:57.18232044198895%;*width:57.12912895262725%}.row-fluid .span6{width:48.61878453038674%;*width:48.56559304102504%}.row-fluid .span5{width:40.05524861878453%;*width:40.00205712942283%}.row-fluid .span4{width:31.491712707182323%;*width:31.43852121782062%}.row-fluid .span3{width:22.92817679558011%;*width:22.87498530621841%}.row-fluid .span2{width:14.3646408839779%;*width:14.311449394616199%}.row-fluid .span1{width:5.801104972375691%;*width:5.747913483013988%}.row-fluid .offset12{margin-left:105.52486187845304%;*margin-left:105.41847889972962%}.row-fluid .offset12:first-child{margin-left:102.76243093922652%;*margin-left:102.6560479605031%}.row-fluid .offset11{margin-left:96.96132596685082%;*margin-left:96.8549429881274%}.row-fluid .offset11:first-child{margin-left:94.1988950276243%;*margin-left:94.09251204890089%}.row-fluid .offset10{margin-left:88.39779005524862%;*margin-left:88.2914070765252%}.row-fluid .offset10:first-child{margin-left:85.6353591160221%;*margin-left:85.52897613729868%}.row-fluid .offset9{margin-left:79.8342541436464%;*margin-left:79.72787116492299%}.row-fluid .offset9:first-child{margin-left:77.07182320441989%;*margin-left:76.96544022569647%}.row-fluid .offset8{margin-left:71.2707182320442%;*margin-left:71.16433525332079%}.row-fluid .offset8:first-child{margin-left:68.50828729281768%;*margin-left:68.40190431409427%}.row-fluid .offset7{margin-left:62.70718232044199%;*margin-left:62.600799341718584%}.row-fluid .offset7:first-child{margin-left:59.94475138121547%;*margin-left:59.838368402492065%}.row-fluid .offset6{margin-left:54.14364640883978%;*margin-left:54.037263430116376%}.row-fluid .offset6:first-child{margin-left:51.38121546961326%;*margin-left:51.27483249088986%}.row-fluid .offset5{margin-left:45.58011049723757%;*margin-left:45.47372751851417%}.row-fluid .offset5:first-child{margin-left:42.81767955801105%;*margin-left:42.71129657928765%}.row-fluid .offset4{margin-left:37.01657458563536%;*margin-left:36.91019160691196%}.row-fluid .offset4:first-child{margin-left:34.25414364640884%;*margin-left:34.14776066768544%}.row-fluid .offset3{margin-left:28.45303867403315%;*margin-left:28.346655695309746%}.row-fluid .offset3:first-child{margin-left:25.69060773480663%;*margin-left:25.584224756083227%}.row-fluid .offset2{margin-left:19.88950276243094%;*margin-left:19.783119783707537%}.row-fluid .offset2:first-child{margin-left:17.12707182320442%;*margin-left:17.02068884448102%}.row-fluid .offset1{margin-left:11.32596685082873%;*margin-left:11.219583872105325%}.row-fluid .offset1:first-child{margin-left:8.56353591160221%;*margin-left:8.457152932878806%}input,textarea,.uneditable-input{margin-left:0}.controls-row [class*="span"]+[class*="span"]{margin-left:20px}input.span12,textarea.span12,.uneditable-input.span12{width:710px}input.span11,textarea.span11,.uneditable-input.span11{width:648px}input.span10,textarea.span10,.uneditable-input.span10{width:586px}input.span9,textarea.span9,.uneditable-input.span9{width:524px}input.span8,textarea.span8,.uneditable-input.span8{width:462px}input.span7,textarea.span7,.uneditable-input.span7{width:400px}input.span6,textarea.span6,.uneditable-input.span6{width:338px}input.span5,textarea.span5,.uneditable-input.span5{width:276px}input.span4,textarea.span4,.uneditable-input.span4{width:214px}input.span3,textarea.span3,.uneditable-input.span3{width:152px}input.span2,textarea.span2,.uneditable-input.span2{width:90px}input.span1,textarea.span1,.uneditable-input.span1{width:28px}}@media(max-width:767px){body{padding-right:20px;padding-left:20px}.navbar-fixed-top,.navbar-fixed-bottom,.navbar-static-top{margin-right:-20px;margin-left:-20px}.container-fluid{padding:0}.dl-horizontal dt{float:none;width:auto;clear:none;text-align:left}.dl-horizontal dd{margin-left:0}.container{width:auto}.row-fluid{width:100%}.row,.thumbnails{margin-left:0}.thumbnails>li{float:none;margin-left:0}[class*="span"],.uneditable-input[class*="span"],.row-fluid [class*="span"]{display:block;float:none;width:100%;margin-left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.span12,.row-fluid .span12{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.row-fluid [class*="offset"]:first-child{margin-left:0}.input-large,.input-xlarge,.input-xxlarge,input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.input-prepend input,.input-append input,.input-prepend input[class*="span"],.input-append input[class*="span"]{display:inline-block;width:auto}.controls-row [class*="span"]+[class*="span"]{margin-left:0}.modal{position:fixed;top:20px;right:20px;left:20px;width:auto;margin:0}.modal.fade{top:-100px}.modal.fade.in{top:20px}}@media(max-width:480px){.nav-collapse{-webkit-transform:translate3d(0,0,0)}.page-header h1 small{display:block;line-height:20px}input[type="checkbox"],input[type="radio"]{border:1px solid #ccc}.form-horizontal .control-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-right:10px;padding-left:10px}.media .pull-left,.media .pull-right{display:block;float:none;margin-bottom:10px}.media-object{margin-right:0;margin-left:0}.modal{top:10px;right:10px;left:10px}.modal-header .close{padding:10px;margin:-10px}.carousel-caption{position:static}}@media(max-width:979px){body{padding-top:0}.navbar-fixed-top,.navbar-fixed-bottom{position:static}.navbar-fixed-top{margin-bottom:20px}.navbar-fixed-bottom{margin-top:20px}.navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding:5px}.navbar .container{width:auto;padding:0}.navbar .brand{padding-right:10px;padding-left:10px;margin:0 0 0 -5px}.nav-collapse{clear:both}.nav-collapse .nav{float:none;margin:0 0 10px}.nav-collapse .nav>li{float:none}.nav-collapse .nav>li>a{margin-bottom:2px}.nav-collapse .nav>.divider-vertical{display:none}.nav-collapse .nav .nav-header{color:#777;text-shadow:none}.nav-collapse .nav>li>a,.nav-collapse .dropdown-menu a{padding:9px 15px;font-weight:bold;color:#777;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.nav-collapse .btn{padding:4px 10px 4px;font-weight:normal;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.nav-collapse .dropdown-menu li+li a{margin-bottom:2px}.nav-collapse .nav>li>a:hover,.nav-collapse .dropdown-menu a:hover{background-color:#f2f2f2}.navbar-inverse .nav-collapse .nav>li>a,.navbar-inverse .nav-collapse .dropdown-menu a{color:#999}.navbar-inverse .nav-collapse .nav>li>a:hover,.navbar-inverse .nav-collapse .dropdown-menu a:hover{background-color:#111}.nav-collapse.in .btn-group{padding:0;margin-top:5px}.nav-collapse .dropdown-menu{position:static;top:auto;left:auto;display:none;float:none;max-width:none;padding:0;margin:0 15px;background-color:transparent;border:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.nav-collapse .open>.dropdown-menu{display:block}.nav-collapse .dropdown-menu:before,.nav-collapse .dropdown-menu:after{display:none}.nav-collapse .dropdown-menu .divider{display:none}.nav-collapse .nav>li>.dropdown-menu:before,.nav-collapse .nav>li>.dropdown-menu:after{display:none}.nav-collapse .navbar-form,.nav-collapse .navbar-search{float:none;padding:10px 15px;margin:10px 0;border-top:1px solid #f2f2f2;border-bottom:1px solid #f2f2f2;-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-inverse .nav-collapse .navbar-form,.navbar-inverse .nav-collapse .navbar-search{border-top-color:#111;border-bottom-color:#111}.navbar .nav-collapse .nav.pull-right{float:none;margin-left:0}.nav-collapse,.nav-collapse.collapse{height:0;overflow:hidden}.navbar .btn-navbar{display:block}.navbar-static .navbar-inner{padding-right:10px;padding-left:10px}}@media(min-width:980px){.nav-collapse.collapse{height:auto!important;overflow:visible!important}} 10 | -------------------------------------------------------------------------------- /miita/static/bootstrap/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KLab/miita/7f70967073a3f544e71384513cf7c6787b81a162/miita/static/bootstrap/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /miita/static/bootstrap/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KLab/miita/7f70967073a3f544e71384513cf7c6787b81a162/miita/static/bootstrap/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /miita/static/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- 1 | /* =================================================== 2 | * bootstrap-transition.js v2.2.1 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 | 21 | !function ($) { 22 | 23 | "use strict"; // jshint ;_; 24 | 25 | 26 | /* CSS TRANSITION SUPPORT (http://www.modernizr.com/) 27 | * ======================================================= */ 28 | 29 | $(function () { 30 | 31 | $.support.transition = (function () { 32 | 33 | var transitionEnd = (function () { 34 | 35 | var el = document.createElement('bootstrap') 36 | , transEndEventNames = { 37 | 'WebkitTransition' : 'webkitTransitionEnd' 38 | , 'MozTransition' : 'transitionend' 39 | , 'OTransition' : 'oTransitionEnd otransitionend' 40 | , 'transition' : 'transitionend' 41 | } 42 | , name 43 | 44 | for (name in transEndEventNames){ 45 | if (el.style[name] !== undefined) { 46 | return transEndEventNames[name] 47 | } 48 | } 49 | 50 | }()) 51 | 52 | return transitionEnd && { 53 | end: transitionEnd 54 | } 55 | 56 | })() 57 | 58 | }) 59 | 60 | }(window.jQuery);/* ========================================================== 61 | * bootstrap-alert.js v2.2.1 62 | * http://twitter.github.com/bootstrap/javascript.html#alerts 63 | * ========================================================== 64 | * Copyright 2012 Twitter, Inc. 65 | * 66 | * Licensed under the Apache License, Version 2.0 (the "License"); 67 | * you may not use this file except in compliance with the License. 68 | * You may obtain a copy of the License at 69 | * 70 | * http://www.apache.org/licenses/LICENSE-2.0 71 | * 72 | * Unless required by applicable law or agreed to in writing, software 73 | * distributed under the License is distributed on an "AS IS" BASIS, 74 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 75 | * See the License for the specific language governing permissions and 76 | * limitations under the License. 77 | * ========================================================== */ 78 | 79 | 80 | !function ($) { 81 | 82 | "use strict"; // jshint ;_; 83 | 84 | 85 | /* ALERT CLASS DEFINITION 86 | * ====================== */ 87 | 88 | var dismiss = '[data-dismiss="alert"]' 89 | , Alert = function (el) { 90 | $(el).on('click', dismiss, this.close) 91 | } 92 | 93 | Alert.prototype.close = function (e) { 94 | var $this = $(this) 95 | , selector = $this.attr('data-target') 96 | , $parent 97 | 98 | if (!selector) { 99 | selector = $this.attr('href') 100 | selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7 101 | } 102 | 103 | $parent = $(selector) 104 | 105 | e && e.preventDefault() 106 | 107 | $parent.length || ($parent = $this.hasClass('alert') ? $this : $this.parent()) 108 | 109 | $parent.trigger(e = $.Event('close')) 110 | 111 | if (e.isDefaultPrevented()) return 112 | 113 | $parent.removeClass('in') 114 | 115 | function removeElement() { 116 | $parent 117 | .trigger('closed') 118 | .remove() 119 | } 120 | 121 | $.support.transition && $parent.hasClass('fade') ? 122 | $parent.on($.support.transition.end, removeElement) : 123 | removeElement() 124 | } 125 | 126 | 127 | /* ALERT PLUGIN DEFINITION 128 | * ======================= */ 129 | 130 | $.fn.alert = function (option) { 131 | return this.each(function () { 132 | var $this = $(this) 133 | , data = $this.data('alert') 134 | if (!data) $this.data('alert', (data = new Alert(this))) 135 | if (typeof option == 'string') data[option].call($this) 136 | }) 137 | } 138 | 139 | $.fn.alert.Constructor = Alert 140 | 141 | 142 | /* ALERT DATA-API 143 | * ============== */ 144 | 145 | $(document).on('click.alert.data-api', dismiss, Alert.prototype.close) 146 | 147 | }(window.jQuery);/* ============================================================ 148 | * bootstrap-button.js v2.2.1 149 | * http://twitter.github.com/bootstrap/javascript.html#buttons 150 | * ============================================================ 151 | * Copyright 2012 Twitter, Inc. 152 | * 153 | * Licensed under the Apache License, Version 2.0 (the "License"); 154 | * you may not use this file except in compliance with the License. 155 | * You may obtain a copy of the License at 156 | * 157 | * http://www.apache.org/licenses/LICENSE-2.0 158 | * 159 | * Unless required by applicable law or agreed to in writing, software 160 | * distributed under the License is distributed on an "AS IS" BASIS, 161 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 162 | * See the License for the specific language governing permissions and 163 | * limitations under the License. 164 | * ============================================================ */ 165 | 166 | 167 | !function ($) { 168 | 169 | "use strict"; // jshint ;_; 170 | 171 | 172 | /* BUTTON PUBLIC CLASS DEFINITION 173 | * ============================== */ 174 | 175 | var Button = function (element, options) { 176 | this.$element = $(element) 177 | this.options = $.extend({}, $.fn.button.defaults, options) 178 | } 179 | 180 | Button.prototype.setState = function (state) { 181 | var d = 'disabled' 182 | , $el = this.$element 183 | , data = $el.data() 184 | , val = $el.is('input') ? 'val' : 'html' 185 | 186 | state = state + 'Text' 187 | data.resetText || $el.data('resetText', $el[val]()) 188 | 189 | $el[val](data[state] || this.options[state]) 190 | 191 | // push to event loop to allow forms to submit 192 | setTimeout(function () { 193 | state == 'loadingText' ? 194 | $el.addClass(d).attr(d, d) : 195 | $el.removeClass(d).removeAttr(d) 196 | }, 0) 197 | } 198 | 199 | Button.prototype.toggle = function () { 200 | var $parent = this.$element.closest('[data-toggle="buttons-radio"]') 201 | 202 | $parent && $parent 203 | .find('.active') 204 | .removeClass('active') 205 | 206 | this.$element.toggleClass('active') 207 | } 208 | 209 | 210 | /* BUTTON PLUGIN DEFINITION 211 | * ======================== */ 212 | 213 | $.fn.button = function (option) { 214 | return this.each(function () { 215 | var $this = $(this) 216 | , data = $this.data('button') 217 | , options = typeof option == 'object' && option 218 | if (!data) $this.data('button', (data = new Button(this, options))) 219 | if (option == 'toggle') data.toggle() 220 | else if (option) data.setState(option) 221 | }) 222 | } 223 | 224 | $.fn.button.defaults = { 225 | loadingText: 'loading...' 226 | } 227 | 228 | $.fn.button.Constructor = Button 229 | 230 | 231 | /* BUTTON DATA-API 232 | * =============== */ 233 | 234 | $(document).on('click.button.data-api', '[data-toggle^=button]', function (e) { 235 | var $btn = $(e.target) 236 | if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn') 237 | $btn.button('toggle') 238 | }) 239 | 240 | }(window.jQuery);/* ========================================================== 241 | * bootstrap-carousel.js v2.2.1 242 | * http://twitter.github.com/bootstrap/javascript.html#carousel 243 | * ========================================================== 244 | * Copyright 2012 Twitter, Inc. 245 | * 246 | * Licensed under the Apache License, Version 2.0 (the "License"); 247 | * you may not use this file except in compliance with the License. 248 | * You may obtain a copy of the License at 249 | * 250 | * http://www.apache.org/licenses/LICENSE-2.0 251 | * 252 | * Unless required by applicable law or agreed to in writing, software 253 | * distributed under the License is distributed on an "AS IS" BASIS, 254 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 255 | * See the License for the specific language governing permissions and 256 | * limitations under the License. 257 | * ========================================================== */ 258 | 259 | 260 | !function ($) { 261 | 262 | "use strict"; // jshint ;_; 263 | 264 | 265 | /* CAROUSEL CLASS DEFINITION 266 | * ========================= */ 267 | 268 | var Carousel = function (element, options) { 269 | this.$element = $(element) 270 | this.options = options 271 | this.options.slide && this.slide(this.options.slide) 272 | this.options.pause == 'hover' && this.$element 273 | .on('mouseenter', $.proxy(this.pause, this)) 274 | .on('mouseleave', $.proxy(this.cycle, this)) 275 | } 276 | 277 | Carousel.prototype = { 278 | 279 | cycle: function (e) { 280 | if (!e) this.paused = false 281 | this.options.interval 282 | && !this.paused 283 | && (this.interval = setInterval($.proxy(this.next, this), this.options.interval)) 284 | return this 285 | } 286 | 287 | , to: function (pos) { 288 | var $active = this.$element.find('.item.active') 289 | , children = $active.parent().children() 290 | , activePos = children.index($active) 291 | , that = this 292 | 293 | if (pos > (children.length - 1) || pos < 0) return 294 | 295 | if (this.sliding) { 296 | return this.$element.one('slid', function () { 297 | that.to(pos) 298 | }) 299 | } 300 | 301 | if (activePos == pos) { 302 | return this.pause().cycle() 303 | } 304 | 305 | return this.slide(pos > activePos ? 'next' : 'prev', $(children[pos])) 306 | } 307 | 308 | , pause: function (e) { 309 | if (!e) this.paused = true 310 | if (this.$element.find('.next, .prev').length && $.support.transition.end) { 311 | this.$element.trigger($.support.transition.end) 312 | this.cycle() 313 | } 314 | clearInterval(this.interval) 315 | this.interval = null 316 | return this 317 | } 318 | 319 | , next: function () { 320 | if (this.sliding) return 321 | return this.slide('next') 322 | } 323 | 324 | , prev: function () { 325 | if (this.sliding) return 326 | return this.slide('prev') 327 | } 328 | 329 | , slide: function (type, next) { 330 | var $active = this.$element.find('.item.active') 331 | , $next = next || $active[type]() 332 | , isCycling = this.interval 333 | , direction = type == 'next' ? 'left' : 'right' 334 | , fallback = type == 'next' ? 'first' : 'last' 335 | , that = this 336 | , e 337 | 338 | this.sliding = true 339 | 340 | isCycling && this.pause() 341 | 342 | $next = $next.length ? $next : this.$element.find('.item')[fallback]() 343 | 344 | e = $.Event('slide', { 345 | relatedTarget: $next[0] 346 | }) 347 | 348 | if ($next.hasClass('active')) return 349 | 350 | if ($.support.transition && this.$element.hasClass('slide')) { 351 | this.$element.trigger(e) 352 | if (e.isDefaultPrevented()) return 353 | $next.addClass(type) 354 | $next[0].offsetWidth // force reflow 355 | $active.addClass(direction) 356 | $next.addClass(direction) 357 | this.$element.one($.support.transition.end, function () { 358 | $next.removeClass([type, direction].join(' ')).addClass('active') 359 | $active.removeClass(['active', direction].join(' ')) 360 | that.sliding = false 361 | setTimeout(function () { that.$element.trigger('slid') }, 0) 362 | }) 363 | } else { 364 | this.$element.trigger(e) 365 | if (e.isDefaultPrevented()) return 366 | $active.removeClass('active') 367 | $next.addClass('active') 368 | this.sliding = false 369 | this.$element.trigger('slid') 370 | } 371 | 372 | isCycling && this.cycle() 373 | 374 | return this 375 | } 376 | 377 | } 378 | 379 | 380 | /* CAROUSEL PLUGIN DEFINITION 381 | * ========================== */ 382 | 383 | $.fn.carousel = function (option) { 384 | return this.each(function () { 385 | var $this = $(this) 386 | , data = $this.data('carousel') 387 | , options = $.extend({}, $.fn.carousel.defaults, typeof option == 'object' && option) 388 | , action = typeof option == 'string' ? option : options.slide 389 | if (!data) $this.data('carousel', (data = new Carousel(this, options))) 390 | if (typeof option == 'number') data.to(option) 391 | else if (action) data[action]() 392 | else if (options.interval) data.cycle() 393 | }) 394 | } 395 | 396 | $.fn.carousel.defaults = { 397 | interval: 5000 398 | , pause: 'hover' 399 | } 400 | 401 | $.fn.carousel.Constructor = Carousel 402 | 403 | 404 | /* CAROUSEL DATA-API 405 | * ================= */ 406 | 407 | $(document).on('click.carousel.data-api', '[data-slide]', function (e) { 408 | var $this = $(this), href 409 | , $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7 410 | , options = $.extend({}, $target.data(), $this.data()) 411 | $target.carousel(options) 412 | e.preventDefault() 413 | }) 414 | 415 | }(window.jQuery);/* ============================================================= 416 | * bootstrap-collapse.js v2.2.1 417 | * http://twitter.github.com/bootstrap/javascript.html#collapse 418 | * ============================================================= 419 | * Copyright 2012 Twitter, Inc. 420 | * 421 | * Licensed under the Apache License, Version 2.0 (the "License"); 422 | * you may not use this file except in compliance with the License. 423 | * You may obtain a copy of the License at 424 | * 425 | * http://www.apache.org/licenses/LICENSE-2.0 426 | * 427 | * Unless required by applicable law or agreed to in writing, software 428 | * distributed under the License is distributed on an "AS IS" BASIS, 429 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 430 | * See the License for the specific language governing permissions and 431 | * limitations under the License. 432 | * ============================================================ */ 433 | 434 | 435 | !function ($) { 436 | 437 | "use strict"; // jshint ;_; 438 | 439 | 440 | /* COLLAPSE PUBLIC CLASS DEFINITION 441 | * ================================ */ 442 | 443 | var Collapse = function (element, options) { 444 | this.$element = $(element) 445 | this.options = $.extend({}, $.fn.collapse.defaults, options) 446 | 447 | if (this.options.parent) { 448 | this.$parent = $(this.options.parent) 449 | } 450 | 451 | this.options.toggle && this.toggle() 452 | } 453 | 454 | Collapse.prototype = { 455 | 456 | constructor: Collapse 457 | 458 | , dimension: function () { 459 | var hasWidth = this.$element.hasClass('width') 460 | return hasWidth ? 'width' : 'height' 461 | } 462 | 463 | , show: function () { 464 | var dimension 465 | , scroll 466 | , actives 467 | , hasData 468 | 469 | if (this.transitioning) return 470 | 471 | dimension = this.dimension() 472 | scroll = $.camelCase(['scroll', dimension].join('-')) 473 | actives = this.$parent && this.$parent.find('> .accordion-group > .in') 474 | 475 | if (actives && actives.length) { 476 | hasData = actives.data('collapse') 477 | if (hasData && hasData.transitioning) return 478 | actives.collapse('hide') 479 | hasData || actives.data('collapse', null) 480 | } 481 | 482 | this.$element[dimension](0) 483 | this.transition('addClass', $.Event('show'), 'shown') 484 | $.support.transition && this.$element[dimension](this.$element[0][scroll]) 485 | } 486 | 487 | , hide: function () { 488 | var dimension 489 | if (this.transitioning) return 490 | dimension = this.dimension() 491 | this.reset(this.$element[dimension]()) 492 | this.transition('removeClass', $.Event('hide'), 'hidden') 493 | this.$element[dimension](0) 494 | } 495 | 496 | , reset: function (size) { 497 | var dimension = this.dimension() 498 | 499 | this.$element 500 | .removeClass('collapse') 501 | [dimension](size || 'auto') 502 | [0].offsetWidth 503 | 504 | this.$element[size !== null ? 'addClass' : 'removeClass']('collapse') 505 | 506 | return this 507 | } 508 | 509 | , transition: function (method, startEvent, completeEvent) { 510 | var that = this 511 | , complete = function () { 512 | if (startEvent.type == 'show') that.reset() 513 | that.transitioning = 0 514 | that.$element.trigger(completeEvent) 515 | } 516 | 517 | this.$element.trigger(startEvent) 518 | 519 | if (startEvent.isDefaultPrevented()) return 520 | 521 | this.transitioning = 1 522 | 523 | this.$element[method]('in') 524 | 525 | $.support.transition && this.$element.hasClass('collapse') ? 526 | this.$element.one($.support.transition.end, complete) : 527 | complete() 528 | } 529 | 530 | , toggle: function () { 531 | this[this.$element.hasClass('in') ? 'hide' : 'show']() 532 | } 533 | 534 | } 535 | 536 | 537 | /* COLLAPSIBLE PLUGIN DEFINITION 538 | * ============================== */ 539 | 540 | $.fn.collapse = function (option) { 541 | return this.each(function () { 542 | var $this = $(this) 543 | , data = $this.data('collapse') 544 | , options = typeof option == 'object' && option 545 | if (!data) $this.data('collapse', (data = new Collapse(this, options))) 546 | if (typeof option == 'string') data[option]() 547 | }) 548 | } 549 | 550 | $.fn.collapse.defaults = { 551 | toggle: true 552 | } 553 | 554 | $.fn.collapse.Constructor = Collapse 555 | 556 | 557 | /* COLLAPSIBLE DATA-API 558 | * ==================== */ 559 | 560 | $(document).on('click.collapse.data-api', '[data-toggle=collapse]', function (e) { 561 | var $this = $(this), href 562 | , target = $this.attr('data-target') 563 | || e.preventDefault() 564 | || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') //strip for ie7 565 | , option = $(target).data('collapse') ? 'toggle' : $this.data() 566 | $this[$(target).hasClass('in') ? 'addClass' : 'removeClass']('collapsed') 567 | $(target).collapse(option) 568 | }) 569 | 570 | }(window.jQuery);/* ============================================================ 571 | * bootstrap-dropdown.js v2.2.1 572 | * http://twitter.github.com/bootstrap/javascript.html#dropdowns 573 | * ============================================================ 574 | * Copyright 2012 Twitter, Inc. 575 | * 576 | * Licensed under the Apache License, Version 2.0 (the "License"); 577 | * you may not use this file except in compliance with the License. 578 | * You may obtain a copy of the License at 579 | * 580 | * http://www.apache.org/licenses/LICENSE-2.0 581 | * 582 | * Unless required by applicable law or agreed to in writing, software 583 | * distributed under the License is distributed on an "AS IS" BASIS, 584 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 585 | * See the License for the specific language governing permissions and 586 | * limitations under the License. 587 | * ============================================================ */ 588 | 589 | 590 | !function ($) { 591 | 592 | "use strict"; // jshint ;_; 593 | 594 | 595 | /* DROPDOWN CLASS DEFINITION 596 | * ========================= */ 597 | 598 | var toggle = '[data-toggle=dropdown]' 599 | , Dropdown = function (element) { 600 | var $el = $(element).on('click.dropdown.data-api', this.toggle) 601 | $('html').on('click.dropdown.data-api', function () { 602 | $el.parent().removeClass('open') 603 | }) 604 | } 605 | 606 | Dropdown.prototype = { 607 | 608 | constructor: Dropdown 609 | 610 | , toggle: function (e) { 611 | var $this = $(this) 612 | , $parent 613 | , isActive 614 | 615 | if ($this.is('.disabled, :disabled')) return 616 | 617 | $parent = getParent($this) 618 | 619 | isActive = $parent.hasClass('open') 620 | 621 | clearMenus() 622 | 623 | if (!isActive) { 624 | $parent.toggleClass('open') 625 | $this.focus() 626 | } 627 | 628 | return false 629 | } 630 | 631 | , keydown: function (e) { 632 | var $this 633 | , $items 634 | , $active 635 | , $parent 636 | , isActive 637 | , index 638 | 639 | if (!/(38|40|27)/.test(e.keyCode)) return 640 | 641 | $this = $(this) 642 | 643 | e.preventDefault() 644 | e.stopPropagation() 645 | 646 | if ($this.is('.disabled, :disabled')) return 647 | 648 | $parent = getParent($this) 649 | 650 | isActive = $parent.hasClass('open') 651 | 652 | if (!isActive || (isActive && e.keyCode == 27)) return $this.click() 653 | 654 | $items = $('[role=menu] li:not(.divider) a', $parent) 655 | 656 | if (!$items.length) return 657 | 658 | index = $items.index($items.filter(':focus')) 659 | 660 | if (e.keyCode == 38 && index > 0) index-- // up 661 | if (e.keyCode == 40 && index < $items.length - 1) index++ // down 662 | if (!~index) index = 0 663 | 664 | $items 665 | .eq(index) 666 | .focus() 667 | } 668 | 669 | } 670 | 671 | function clearMenus() { 672 | $(toggle).each(function () { 673 | getParent($(this)).removeClass('open') 674 | }) 675 | } 676 | 677 | function getParent($this) { 678 | var selector = $this.attr('data-target') 679 | , $parent 680 | 681 | if (!selector) { 682 | selector = $this.attr('href') 683 | selector = selector && /#/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7 684 | } 685 | 686 | $parent = $(selector) 687 | $parent.length || ($parent = $this.parent()) 688 | 689 | return $parent 690 | } 691 | 692 | 693 | /* DROPDOWN PLUGIN DEFINITION 694 | * ========================== */ 695 | 696 | $.fn.dropdown = function (option) { 697 | return this.each(function () { 698 | var $this = $(this) 699 | , data = $this.data('dropdown') 700 | if (!data) $this.data('dropdown', (data = new Dropdown(this))) 701 | if (typeof option == 'string') data[option].call($this) 702 | }) 703 | } 704 | 705 | $.fn.dropdown.Constructor = Dropdown 706 | 707 | 708 | /* APPLY TO STANDARD DROPDOWN ELEMENTS 709 | * =================================== */ 710 | 711 | $(document) 712 | .on('click.dropdown.data-api touchstart.dropdown.data-api', clearMenus) 713 | .on('click.dropdown touchstart.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() }) 714 | .on('click.dropdown.data-api touchstart.dropdown.data-api' , toggle, Dropdown.prototype.toggle) 715 | .on('keydown.dropdown.data-api touchstart.dropdown.data-api', toggle + ', [role=menu]' , Dropdown.prototype.keydown) 716 | 717 | }(window.jQuery);/* ========================================================= 718 | * bootstrap-modal.js v2.2.1 719 | * http://twitter.github.com/bootstrap/javascript.html#modals 720 | * ========================================================= 721 | * Copyright 2012 Twitter, Inc. 722 | * 723 | * Licensed under the Apache License, Version 2.0 (the "License"); 724 | * you may not use this file except in compliance with the License. 725 | * You may obtain a copy of the License at 726 | * 727 | * http://www.apache.org/licenses/LICENSE-2.0 728 | * 729 | * Unless required by applicable law or agreed to in writing, software 730 | * distributed under the License is distributed on an "AS IS" BASIS, 731 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 732 | * See the License for the specific language governing permissions and 733 | * limitations under the License. 734 | * ========================================================= */ 735 | 736 | 737 | !function ($) { 738 | 739 | "use strict"; // jshint ;_; 740 | 741 | 742 | /* MODAL CLASS DEFINITION 743 | * ====================== */ 744 | 745 | var Modal = function (element, options) { 746 | this.options = options 747 | this.$element = $(element) 748 | .delegate('[data-dismiss="modal"]', 'click.dismiss.modal', $.proxy(this.hide, this)) 749 | this.options.remote && this.$element.find('.modal-body').load(this.options.remote) 750 | } 751 | 752 | Modal.prototype = { 753 | 754 | constructor: Modal 755 | 756 | , toggle: function () { 757 | return this[!this.isShown ? 'show' : 'hide']() 758 | } 759 | 760 | , show: function () { 761 | var that = this 762 | , e = $.Event('show') 763 | 764 | this.$element.trigger(e) 765 | 766 | if (this.isShown || e.isDefaultPrevented()) return 767 | 768 | this.isShown = true 769 | 770 | this.escape() 771 | 772 | this.backdrop(function () { 773 | var transition = $.support.transition && that.$element.hasClass('fade') 774 | 775 | if (!that.$element.parent().length) { 776 | that.$element.appendTo(document.body) //don't move modals dom position 777 | } 778 | 779 | that.$element 780 | .show() 781 | 782 | if (transition) { 783 | that.$element[0].offsetWidth // force reflow 784 | } 785 | 786 | that.$element 787 | .addClass('in') 788 | .attr('aria-hidden', false) 789 | 790 | that.enforceFocus() 791 | 792 | transition ? 793 | that.$element.one($.support.transition.end, function () { that.$element.focus().trigger('shown') }) : 794 | that.$element.focus().trigger('shown') 795 | 796 | }) 797 | } 798 | 799 | , hide: function (e) { 800 | e && e.preventDefault() 801 | 802 | var that = this 803 | 804 | e = $.Event('hide') 805 | 806 | this.$element.trigger(e) 807 | 808 | if (!this.isShown || e.isDefaultPrevented()) return 809 | 810 | this.isShown = false 811 | 812 | this.escape() 813 | 814 | $(document).off('focusin.modal') 815 | 816 | this.$element 817 | .removeClass('in') 818 | .attr('aria-hidden', true) 819 | 820 | $.support.transition && this.$element.hasClass('fade') ? 821 | this.hideWithTransition() : 822 | this.hideModal() 823 | } 824 | 825 | , enforceFocus: function () { 826 | var that = this 827 | $(document).on('focusin.modal', function (e) { 828 | if (that.$element[0] !== e.target && !that.$element.has(e.target).length) { 829 | that.$element.focus() 830 | } 831 | }) 832 | } 833 | 834 | , escape: function () { 835 | var that = this 836 | if (this.isShown && this.options.keyboard) { 837 | this.$element.on('keyup.dismiss.modal', function ( e ) { 838 | e.which == 27 && that.hide() 839 | }) 840 | } else if (!this.isShown) { 841 | this.$element.off('keyup.dismiss.modal') 842 | } 843 | } 844 | 845 | , hideWithTransition: function () { 846 | var that = this 847 | , timeout = setTimeout(function () { 848 | that.$element.off($.support.transition.end) 849 | that.hideModal() 850 | }, 500) 851 | 852 | this.$element.one($.support.transition.end, function () { 853 | clearTimeout(timeout) 854 | that.hideModal() 855 | }) 856 | } 857 | 858 | , hideModal: function (that) { 859 | this.$element 860 | .hide() 861 | .trigger('hidden') 862 | 863 | this.backdrop() 864 | } 865 | 866 | , removeBackdrop: function () { 867 | this.$backdrop.remove() 868 | this.$backdrop = null 869 | } 870 | 871 | , backdrop: function (callback) { 872 | var that = this 873 | , animate = this.$element.hasClass('fade') ? 'fade' : '' 874 | 875 | if (this.isShown && this.options.backdrop) { 876 | var doAnimate = $.support.transition && animate 877 | 878 | this.$backdrop = $('
') 879 | .appendTo(document.body) 880 | 881 | this.$backdrop.click( 882 | this.options.backdrop == 'static' ? 883 | $.proxy(this.$element[0].focus, this.$element[0]) 884 | : $.proxy(this.hide, this) 885 | ) 886 | 887 | if (doAnimate) this.$backdrop[0].offsetWidth // force reflow 888 | 889 | this.$backdrop.addClass('in') 890 | 891 | doAnimate ? 892 | this.$backdrop.one($.support.transition.end, callback) : 893 | callback() 894 | 895 | } else if (!this.isShown && this.$backdrop) { 896 | this.$backdrop.removeClass('in') 897 | 898 | $.support.transition && this.$element.hasClass('fade')? 899 | this.$backdrop.one($.support.transition.end, $.proxy(this.removeBackdrop, this)) : 900 | this.removeBackdrop() 901 | 902 | } else if (callback) { 903 | callback() 904 | } 905 | } 906 | } 907 | 908 | 909 | /* MODAL PLUGIN DEFINITION 910 | * ======================= */ 911 | 912 | $.fn.modal = function (option) { 913 | return this.each(function () { 914 | var $this = $(this) 915 | , data = $this.data('modal') 916 | , options = $.extend({}, $.fn.modal.defaults, $this.data(), typeof option == 'object' && option) 917 | if (!data) $this.data('modal', (data = new Modal(this, options))) 918 | if (typeof option == 'string') data[option]() 919 | else if (options.show) data.show() 920 | }) 921 | } 922 | 923 | $.fn.modal.defaults = { 924 | backdrop: true 925 | , keyboard: true 926 | , show: true 927 | } 928 | 929 | $.fn.modal.Constructor = Modal 930 | 931 | 932 | /* MODAL DATA-API 933 | * ============== */ 934 | 935 | $(document).on('click.modal.data-api', '[data-toggle="modal"]', function (e) { 936 | var $this = $(this) 937 | , href = $this.attr('href') 938 | , $target = $($this.attr('data-target') || (href && href.replace(/.*(?=#[^\s]+$)/, ''))) //strip for ie7 939 | , option = $target.data('modal') ? 'toggle' : $.extend({ remote:!/#/.test(href) && href }, $target.data(), $this.data()) 940 | 941 | e.preventDefault() 942 | 943 | $target 944 | .modal(option) 945 | .one('hide', function () { 946 | $this.focus() 947 | }) 948 | }) 949 | 950 | }(window.jQuery); 951 | /* =========================================================== 952 | * bootstrap-tooltip.js v2.2.1 953 | * http://twitter.github.com/bootstrap/javascript.html#tooltips 954 | * Inspired by the original jQuery.tipsy by Jason Frame 955 | * =========================================================== 956 | * Copyright 2012 Twitter, Inc. 957 | * 958 | * Licensed under the Apache License, Version 2.0 (the "License"); 959 | * you may not use this file except in compliance with the License. 960 | * You may obtain a copy of the License at 961 | * 962 | * http://www.apache.org/licenses/LICENSE-2.0 963 | * 964 | * Unless required by applicable law or agreed to in writing, software 965 | * distributed under the License is distributed on an "AS IS" BASIS, 966 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 967 | * See the License for the specific language governing permissions and 968 | * limitations under the License. 969 | * ========================================================== */ 970 | 971 | 972 | !function ($) { 973 | 974 | "use strict"; // jshint ;_; 975 | 976 | 977 | /* TOOLTIP PUBLIC CLASS DEFINITION 978 | * =============================== */ 979 | 980 | var Tooltip = function (element, options) { 981 | this.init('tooltip', element, options) 982 | } 983 | 984 | Tooltip.prototype = { 985 | 986 | constructor: Tooltip 987 | 988 | , init: function (type, element, options) { 989 | var eventIn 990 | , eventOut 991 | 992 | this.type = type 993 | this.$element = $(element) 994 | this.options = this.getOptions(options) 995 | this.enabled = true 996 | 997 | if (this.options.trigger == 'click') { 998 | this.$element.on('click.' + this.type, this.options.selector, $.proxy(this.toggle, this)) 999 | } else if (this.options.trigger != 'manual') { 1000 | eventIn = this.options.trigger == 'hover' ? 'mouseenter' : 'focus' 1001 | eventOut = this.options.trigger == 'hover' ? 'mouseleave' : 'blur' 1002 | this.$element.on(eventIn + '.' + this.type, this.options.selector, $.proxy(this.enter, this)) 1003 | this.$element.on(eventOut + '.' + this.type, this.options.selector, $.proxy(this.leave, this)) 1004 | } 1005 | 1006 | this.options.selector ? 1007 | (this._options = $.extend({}, this.options, { trigger: 'manual', selector: '' })) : 1008 | this.fixTitle() 1009 | } 1010 | 1011 | , getOptions: function (options) { 1012 | options = $.extend({}, $.fn[this.type].defaults, options, this.$element.data()) 1013 | 1014 | if (options.delay && typeof options.delay == 'number') { 1015 | options.delay = { 1016 | show: options.delay 1017 | , hide: options.delay 1018 | } 1019 | } 1020 | 1021 | return options 1022 | } 1023 | 1024 | , enter: function (e) { 1025 | var self = $(e.currentTarget)[this.type](this._options).data(this.type) 1026 | 1027 | if (!self.options.delay || !self.options.delay.show) return self.show() 1028 | 1029 | clearTimeout(this.timeout) 1030 | self.hoverState = 'in' 1031 | this.timeout = setTimeout(function() { 1032 | if (self.hoverState == 'in') self.show() 1033 | }, self.options.delay.show) 1034 | } 1035 | 1036 | , leave: function (e) { 1037 | var self = $(e.currentTarget)[this.type](this._options).data(this.type) 1038 | 1039 | if (this.timeout) clearTimeout(this.timeout) 1040 | if (!self.options.delay || !self.options.delay.hide) return self.hide() 1041 | 1042 | self.hoverState = 'out' 1043 | this.timeout = setTimeout(function() { 1044 | if (self.hoverState == 'out') self.hide() 1045 | }, self.options.delay.hide) 1046 | } 1047 | 1048 | , show: function () { 1049 | var $tip 1050 | , inside 1051 | , pos 1052 | , actualWidth 1053 | , actualHeight 1054 | , placement 1055 | , tp 1056 | 1057 | if (this.hasContent() && this.enabled) { 1058 | $tip = this.tip() 1059 | this.setContent() 1060 | 1061 | if (this.options.animation) { 1062 | $tip.addClass('fade') 1063 | } 1064 | 1065 | placement = typeof this.options.placement == 'function' ? 1066 | this.options.placement.call(this, $tip[0], this.$element[0]) : 1067 | this.options.placement 1068 | 1069 | inside = /in/.test(placement) 1070 | 1071 | $tip 1072 | .detach() 1073 | .css({ top: 0, left: 0, display: 'block' }) 1074 | .insertAfter(this.$element) 1075 | 1076 | pos = this.getPosition(inside) 1077 | 1078 | actualWidth = $tip[0].offsetWidth 1079 | actualHeight = $tip[0].offsetHeight 1080 | 1081 | switch (inside ? placement.split(' ')[1] : placement) { 1082 | case 'bottom': 1083 | tp = {top: pos.top + pos.height, left: pos.left + pos.width / 2 - actualWidth / 2} 1084 | break 1085 | case 'top': 1086 | tp = {top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2} 1087 | break 1088 | case 'left': 1089 | tp = {top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth} 1090 | break 1091 | case 'right': 1092 | tp = {top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width} 1093 | break 1094 | } 1095 | 1096 | $tip 1097 | .offset(tp) 1098 | .addClass(placement) 1099 | .addClass('in') 1100 | } 1101 | } 1102 | 1103 | , setContent: function () { 1104 | var $tip = this.tip() 1105 | , title = this.getTitle() 1106 | 1107 | $tip.find('.tooltip-inner')[this.options.html ? 'html' : 'text'](title) 1108 | $tip.removeClass('fade in top bottom left right') 1109 | } 1110 | 1111 | , hide: function () { 1112 | var that = this 1113 | , $tip = this.tip() 1114 | 1115 | $tip.removeClass('in') 1116 | 1117 | function removeWithAnimation() { 1118 | var timeout = setTimeout(function () { 1119 | $tip.off($.support.transition.end).detach() 1120 | }, 500) 1121 | 1122 | $tip.one($.support.transition.end, function () { 1123 | clearTimeout(timeout) 1124 | $tip.detach() 1125 | }) 1126 | } 1127 | 1128 | $.support.transition && this.$tip.hasClass('fade') ? 1129 | removeWithAnimation() : 1130 | $tip.detach() 1131 | 1132 | return this 1133 | } 1134 | 1135 | , fixTitle: function () { 1136 | var $e = this.$element 1137 | if ($e.attr('title') || typeof($e.attr('data-original-title')) != 'string') { 1138 | $e.attr('data-original-title', $e.attr('title') || '').removeAttr('title') 1139 | } 1140 | } 1141 | 1142 | , hasContent: function () { 1143 | return this.getTitle() 1144 | } 1145 | 1146 | , getPosition: function (inside) { 1147 | return $.extend({}, (inside ? {top: 0, left: 0} : this.$element.offset()), { 1148 | width: this.$element[0].offsetWidth 1149 | , height: this.$element[0].offsetHeight 1150 | }) 1151 | } 1152 | 1153 | , getTitle: function () { 1154 | var title 1155 | , $e = this.$element 1156 | , o = this.options 1157 | 1158 | title = $e.attr('data-original-title') 1159 | || (typeof o.title == 'function' ? o.title.call($e[0]) : o.title) 1160 | 1161 | return title 1162 | } 1163 | 1164 | , tip: function () { 1165 | return this.$tip = this.$tip || $(this.options.template) 1166 | } 1167 | 1168 | , validate: function () { 1169 | if (!this.$element[0].parentNode) { 1170 | this.hide() 1171 | this.$element = null 1172 | this.options = null 1173 | } 1174 | } 1175 | 1176 | , enable: function () { 1177 | this.enabled = true 1178 | } 1179 | 1180 | , disable: function () { 1181 | this.enabled = false 1182 | } 1183 | 1184 | , toggleEnabled: function () { 1185 | this.enabled = !this.enabled 1186 | } 1187 | 1188 | , toggle: function (e) { 1189 | var self = $(e.currentTarget)[this.type](this._options).data(this.type) 1190 | self[self.tip().hasClass('in') ? 'hide' : 'show']() 1191 | } 1192 | 1193 | , destroy: function () { 1194 | this.hide().$element.off('.' + this.type).removeData(this.type) 1195 | } 1196 | 1197 | } 1198 | 1199 | 1200 | /* TOOLTIP PLUGIN DEFINITION 1201 | * ========================= */ 1202 | 1203 | $.fn.tooltip = function ( option ) { 1204 | return this.each(function () { 1205 | var $this = $(this) 1206 | , data = $this.data('tooltip') 1207 | , options = typeof option == 'object' && option 1208 | if (!data) $this.data('tooltip', (data = new Tooltip(this, options))) 1209 | if (typeof option == 'string') data[option]() 1210 | }) 1211 | } 1212 | 1213 | $.fn.tooltip.Constructor = Tooltip 1214 | 1215 | $.fn.tooltip.defaults = { 1216 | animation: true 1217 | , placement: 'top' 1218 | , selector: false 1219 | , template: '