├── README.md
├── src
└── main
│ ├── java
│ └── com
│ │ └── kite
│ │ └── search
│ │ ├── Search.java
│ │ ├── BingSearch.java
│ │ ├── SimpleSearch.java
│ │ ├── model
│ │ ├── Request.java
│ │ ├── Resource.java
│ │ └── Response.java
│ │ ├── analysis
│ │ ├── AnalysisHtml.java
│ │ └── AnalysisBingHtml.java
│ │ ├── common
│ │ ├── enums
│ │ │ ├── ErrorEnum.java
│ │ │ └── SearchTypeEnum.java
│ │ └── exceptions
│ │ │ └── PanException.java
│ │ ├── factory
│ │ ├── SearchFactory.java
│ │ └── AnalysisHtmlFactory.java
│ │ └── servlet
│ │ └── SearchServlet.java
│ └── webapp
│ ├── static
│ └── bootstrap
│ │ ├── fonts
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.ttf
│ │ ├── glyphicons-halflings-regular.woff
│ │ └── glyphicons-halflings-regular.woff2
│ │ ├── js
│ │ ├── npm.js
│ │ ├── bootstrap.min.js
│ │ └── bootstrap.js
│ │ └── css
│ │ ├── bootstrap-theme.min.css
│ │ ├── bootstrap-theme.css
│ │ └── bootstrap-theme.css.map
│ ├── index.jsp
│ ├── search.jsp
│ └── search.html
├── .gitignore
├── test
└── main
│ └── java
│ └── com
│ └── kite
│ └── pan
│ └── test
│ └── SearchTest.java
└── pom.xml
/README.md:
--------------------------------------------------------------------------------
1 | # pan-search
2 | 基于搜索引擎实现网盘搜索
3 | # pan-search-springboot
4 | > 基于必应 site:pan.baidu.com keyword 实现
5 |
--------------------------------------------------------------------------------
/src/main/java/com/kite/search/Search.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mykite/pan-search/HEAD/src/main/java/com/kite/search/Search.java
--------------------------------------------------------------------------------
/src/main/java/com/kite/search/BingSearch.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mykite/pan-search/HEAD/src/main/java/com/kite/search/BingSearch.java
--------------------------------------------------------------------------------
/src/main/java/com/kite/search/SimpleSearch.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mykite/pan-search/HEAD/src/main/java/com/kite/search/SimpleSearch.java
--------------------------------------------------------------------------------
/src/main/java/com/kite/search/model/Request.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mykite/pan-search/HEAD/src/main/java/com/kite/search/model/Request.java
--------------------------------------------------------------------------------
/src/main/java/com/kite/search/model/Resource.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mykite/pan-search/HEAD/src/main/java/com/kite/search/model/Resource.java
--------------------------------------------------------------------------------
/src/main/java/com/kite/search/model/Response.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mykite/pan-search/HEAD/src/main/java/com/kite/search/model/Response.java
--------------------------------------------------------------------------------
/src/main/java/com/kite/search/analysis/AnalysisHtml.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mykite/pan-search/HEAD/src/main/java/com/kite/search/analysis/AnalysisHtml.java
--------------------------------------------------------------------------------
/src/main/java/com/kite/search/common/enums/ErrorEnum.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mykite/pan-search/HEAD/src/main/java/com/kite/search/common/enums/ErrorEnum.java
--------------------------------------------------------------------------------
/src/main/java/com/kite/search/factory/SearchFactory.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mykite/pan-search/HEAD/src/main/java/com/kite/search/factory/SearchFactory.java
--------------------------------------------------------------------------------
/src/main/java/com/kite/search/servlet/SearchServlet.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mykite/pan-search/HEAD/src/main/java/com/kite/search/servlet/SearchServlet.java
--------------------------------------------------------------------------------
/src/main/java/com/kite/search/analysis/AnalysisBingHtml.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mykite/pan-search/HEAD/src/main/java/com/kite/search/analysis/AnalysisBingHtml.java
--------------------------------------------------------------------------------
/src/main/java/com/kite/search/common/enums/SearchTypeEnum.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mykite/pan-search/HEAD/src/main/java/com/kite/search/common/enums/SearchTypeEnum.java
--------------------------------------------------------------------------------
/src/main/java/com/kite/search/factory/AnalysisHtmlFactory.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mykite/pan-search/HEAD/src/main/java/com/kite/search/factory/AnalysisHtmlFactory.java
--------------------------------------------------------------------------------
/src/main/java/com/kite/search/common/exceptions/PanException.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mykite/pan-search/HEAD/src/main/java/com/kite/search/common/exceptions/PanException.java
--------------------------------------------------------------------------------
/src/main/webapp/static/bootstrap/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mykite/pan-search/HEAD/src/main/webapp/static/bootstrap/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/src/main/webapp/static/bootstrap/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mykite/pan-search/HEAD/src/main/webapp/static/bootstrap/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/src/main/webapp/static/bootstrap/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mykite/pan-search/HEAD/src/main/webapp/static/bootstrap/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/src/main/webapp/static/bootstrap/fonts/glyphicons-halflings-regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mykite/pan-search/HEAD/src/main/webapp/static/bootstrap/fonts/glyphicons-halflings-regular.woff2
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | target/*
2 | includeLib/*
3 | lib/*
4 | classes/*
5 | .class
6 | .exe
7 | .log
8 | .prefs
9 | .project
10 | .classpath
11 | .metadata
12 | .settings
13 | .DS_Store
14 | Thumbs.db
15 | .project
16 | *.iml
17 | *.ipr
18 | *.iws
19 | *.tar.gz
20 | .idea
21 | target
22 |
--------------------------------------------------------------------------------
/src/main/webapp/static/bootstrap/js/npm.js:
--------------------------------------------------------------------------------
1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment.
2 | require('../../js/transition.js')
3 | require('../../js/alert.js')
4 | require('../../js/button.js')
5 | require('../../js/carousel.js')
6 | require('../../js/collapse.js')
7 | require('../../js/dropdown.js')
8 | require('../../js/modal.js')
9 | require('../../js/tooltip.js')
10 | require('../../js/popover.js')
11 | require('../../js/scrollspy.js')
12 | require('../../js/tab.js')
13 | require('../../js/affix.js')
--------------------------------------------------------------------------------
/test/main/java/com/kite/pan/test/SearchTest.java:
--------------------------------------------------------------------------------
1 | package com.kite.pan.test;
2 |
3 |
4 | import org.junit.Test;
5 |
6 | import com.kite.search.BingSearch;
7 | import com.kite.search.Search;
8 | import com.kite.search.model.Request;
9 | import com.kite.search.model.Response;
10 |
11 |
12 | public class SearchTest {
13 |
14 | @Test
15 | public void testSearch() {
16 | Search search = new BingSearch();
17 | Request request = new Request();
18 | request.setKeyword("java");
19 | Response response = search.searchByKeyword(request);
20 | System.out.println("response:" + response);
21 |
22 | }
23 |
24 | }
25 |
--------------------------------------------------------------------------------
/src/main/webapp/index.jsp:
--------------------------------------------------------------------------------
1 | <%@ page language="java" contentType="text/html;charset=UTF-8"%>
2 |
3 |
4 |
5 | 百度网盘搜索
6 |
7 |
8 |
9 |
17 |
18 |
19 |
20 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/src/main/webapp/search.jsp:
--------------------------------------------------------------------------------
1 | <%@ page language="java" contentType="text/html;charset=UTF-8"%>
2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
3 |
4 |
5 |
6 | 百度网盘搜索
7 |
8 |
9 |
10 |
11 |
12 |
14 |
15 |
16 |
17 |
23 |
24 |
没有查询到结果,请重试.....
25 |
26 |
27 |
28 | ${data.title }
29 |
30 | ${data.desc}
31 |
32 |
33 |
61 |
62 |
63 |
64 |
65 |
--------------------------------------------------------------------------------
/src/main/webapp/search.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 百度网盘搜索
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
21 |
22 |
没有查询到结果,请重试.....
23 |
24 |
25 |
26 | ${data.title }
27 |
28 | ${data.desc}
29 |
30 |
31 |
59 |
60 |
61 |
73 |
74 |
75 |
--------------------------------------------------------------------------------
/pom.xml:
--------------------------------------------------------------------------------
1 |
3 | 4.0.0
4 | com.kite.search
5 | pan-search
6 | war
7 | 0.0.1-SNAPSHOT
8 | pan-search Maven Webapp
9 | http://maven.apache.org
10 |
11 | 4.10
12 | 1.8.3
13 | 4.5.1
14 | 3.1.0
15 | 1.16.6
16 | 1.7.12
17 | 1.1.3
18 | 18.0
19 | 3.3.2
20 | 1.2.1
21 | 2.2
22 | 1.1.2
23 |
24 |
25 |
26 | junit
27 | junit
28 | ${junit.version}
29 | test
30 |
31 |
32 | org.jsoup
33 | jsoup
34 | ${jsoup.version}
35 |
36 |
37 | org.apache.httpcomponents
38 | httpclient
39 | ${httpcliet.version}
40 |
41 |
42 | javax.servlet
43 | javax.servlet-api
44 | ${servlet.version}
45 |
46 |
47 | org.projectlombok
48 | lombok
49 | ${lombok.version}
50 |
51 |
52 |
53 | org.slf4j
54 | slf4j-api
55 | ${slf4j.version}
56 |
57 |
58 | ch.qos.logback
59 | logback-classic
60 | ${logback.version}
61 |
62 |
63 |
64 | com.google.guava
65 | guava
66 | ${guava.version}
67 |
68 |
69 |
70 | org.apache.commons
71 | commons-lang3
72 | ${commons.lang3.version}
73 |
74 |
75 |
76 | javax.servlet.jsp.jstl
77 | javax.servlet.jsp.jstl-api
78 | ${jsp.jstl.version}
79 |
80 |
81 | javax.servlet.jsp
82 | jsp-api
83 | ${jsp.version}
84 |
85 |
86 | taglibs
87 | standard
88 | ${taglibs.version}
89 |
90 |
91 |
92 |
93 | pan-search
94 |
95 |
96 | maven-compiler-plugin
97 | 3.0
98 |
99 | 1.7
100 | 1.7
101 |
102 |
103 |
104 | org.mortbay.jetty
105 | jetty-maven-plugin
106 |
107 | 10
108 | manual
109 |
110 | /
111 |
112 |
113 |
114 | 8080
115 | 60000
116 |
117 |
118 |
119 |
120 |
121 | org.apache.maven.plugins
122 | maven-war-plugin
123 | 2.4
124 |
125 | false
126 |
127 |
128 |
135 |
136 |
137 |
138 |
--------------------------------------------------------------------------------
/src/main/webapp/static/bootstrap/css/bootstrap-theme.min.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * Bootstrap v3.3.5 (http://getbootstrap.com)
3 | * Copyright 2011-2015 Twitter, Inc.
4 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
5 | */.btn-danger,.btn-default,.btn-info,.btn-primary,.btn-success,.btn-warning{text-shadow:0 -1px 0 rgba(0,0,0,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-danger.active,.btn-danger:active,.btn-default.active,.btn-default:active,.btn-info.active,.btn-info:active,.btn-primary.active,.btn-primary:active,.btn-success.active,.btn-success:active,.btn-warning.active,.btn-warning:active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-danger.disabled,.btn-danger[disabled],.btn-default.disabled,.btn-default[disabled],.btn-info.disabled,.btn-info[disabled],.btn-primary.disabled,.btn-primary[disabled],.btn-success.disabled,.btn-success[disabled],.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-danger,fieldset[disabled] .btn-default,fieldset[disabled] .btn-info,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-success,fieldset[disabled] .btn-warning{-webkit-box-shadow:none;box-shadow:none}.btn-danger .badge,.btn-default .badge,.btn-info .badge,.btn-primary .badge,.btn-success .badge,.btn-warning .badge{text-shadow:none}.btn.active,.btn:active{background-image:none}.btn-default{text-shadow:0 1px 0 #fff;background-image:-webkit-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-o-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e0e0e0));background-image:linear-gradient(to bottom,#fff 0,#e0e0e0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#dbdbdb;border-color:#ccc}.btn-default:focus,.btn-default:hover{background-color:#e0e0e0;background-position:0 -15px}.btn-default.active,.btn-default:active{background-color:#e0e0e0;border-color:#dbdbdb}.btn-default.disabled,.btn-default.disabled.active,.btn-default.disabled.focus,.btn-default.disabled:active,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled],.btn-default[disabled].active,.btn-default[disabled].focus,.btn-default[disabled]:active,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default.active,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#e0e0e0;background-image:none}.btn-primary{background-image:-webkit-linear-gradient(top,#337ab7 0,#265a88 100%);background-image:-o-linear-gradient(top,#337ab7 0,#265a88 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#265a88));background-image:linear-gradient(to bottom,#337ab7 0,#265a88 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#245580}.btn-primary:focus,.btn-primary:hover{background-color:#265a88;background-position:0 -15px}.btn-primary.active,.btn-primary:active{background-color:#265a88;border-color:#245580}.btn-primary.disabled,.btn-primary.disabled.active,.btn-primary.disabled.focus,.btn-primary.disabled:active,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled],.btn-primary[disabled].active,.btn-primary[disabled].focus,.btn-primary[disabled]:active,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-primary.active,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:active,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#265a88;background-image:none}.btn-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:-o-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#419641));background-image:linear-gradient(to bottom,#5cb85c 0,#419641 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#3e8f3e}.btn-success:focus,.btn-success:hover{background-color:#419641;background-position:0 -15px}.btn-success.active,.btn-success:active{background-color:#419641;border-color:#3e8f3e}.btn-success.disabled,.btn-success.disabled.active,.btn-success.disabled.focus,.btn-success.disabled:active,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled],.btn-success[disabled].active,.btn-success[disabled].focus,.btn-success[disabled]:active,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success,fieldset[disabled] .btn-success.active,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:active,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#419641;background-image:none}.btn-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:-o-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#2aabd2));background-image:linear-gradient(to bottom,#5bc0de 0,#2aabd2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#28a4c9}.btn-info:focus,.btn-info:hover{background-color:#2aabd2;background-position:0 -15px}.btn-info.active,.btn-info:active{background-color:#2aabd2;border-color:#28a4c9}.btn-info.disabled,.btn-info.disabled.active,.btn-info.disabled.focus,.btn-info.disabled:active,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled],.btn-info[disabled].active,.btn-info[disabled].focus,.btn-info[disabled]:active,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info,fieldset[disabled] .btn-info.active,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:active,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#2aabd2;background-image:none}.btn-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:-o-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#eb9316));background-image:linear-gradient(to bottom,#f0ad4e 0,#eb9316 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#e38d13}.btn-warning:focus,.btn-warning:hover{background-color:#eb9316;background-position:0 -15px}.btn-warning.active,.btn-warning:active{background-color:#eb9316;border-color:#e38d13}.btn-warning.disabled,.btn-warning.disabled.active,.btn-warning.disabled.focus,.btn-warning.disabled:active,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled],.btn-warning[disabled].active,.btn-warning[disabled].focus,.btn-warning[disabled]:active,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning,fieldset[disabled] .btn-warning.active,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:active,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#eb9316;background-image:none}.btn-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:-o-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c12e2a));background-image:linear-gradient(to bottom,#d9534f 0,#c12e2a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#b92c28}.btn-danger:focus,.btn-danger:hover{background-color:#c12e2a;background-position:0 -15px}.btn-danger.active,.btn-danger:active{background-color:#c12e2a;border-color:#b92c28}.btn-danger.disabled,.btn-danger.disabled.active,.btn-danger.disabled.focus,.btn-danger.disabled:active,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled],.btn-danger[disabled].active,.btn-danger[disabled].focus,.btn-danger[disabled]:active,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger,fieldset[disabled] .btn-danger.active,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:active,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#c12e2a;background-image:none}.img-thumbnail,.thumbnail{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{background-color:#e8e8e8;background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-repeat:repeat-x}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{background-color:#2e6da4;background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}.navbar-default{background-image:-webkit-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:-o-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#f8f8f8));background-image:linear-gradient(to bottom,#fff 0,#f8f8f8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075)}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.open>a{background-image:-webkit-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%);background-image:-o-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dbdbdb),to(#e2e2e2));background-image:linear-gradient(to bottom,#dbdbdb 0,#e2e2e2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.075);box-shadow:inset 0 3px 9px rgba(0,0,0,.075)}.navbar-brand,.navbar-nav>li>a{text-shadow:0 1px 0 rgba(255,255,255,.25)}.navbar-inverse{background-image:-webkit-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:-o-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#3c3c3c),to(#222));background-image:linear-gradient(to bottom,#3c3c3c 0,#222 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-radius:4px}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.open>a{background-image:-webkit-linear-gradient(top,#080808 0,#0f0f0f 100%);background-image:-o-linear-gradient(top,#080808 0,#0f0f0f 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#080808),to(#0f0f0f));background-image:linear-gradient(to bottom,#080808 0,#0f0f0f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.25);box-shadow:inset 0 3px 9px rgba(0,0,0,.25)}.navbar-inverse .navbar-brand,.navbar-inverse .navbar-nav>li>a{text-shadow:0 -1px 0 rgba(0,0,0,.25)}.navbar-fixed-bottom,.navbar-fixed-top,.navbar-static-top{border-radius:0}@media (max-width:767px){.navbar .navbar-nav .open .dropdown-menu>.active>a,.navbar .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}}.alert{text-shadow:0 1px 0 rgba(255,255,255,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05)}.alert-success{background-image:-webkit-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:-o-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#c8e5bc));background-image:linear-gradient(to bottom,#dff0d8 0,#c8e5bc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);background-repeat:repeat-x;border-color:#b2dba1}.alert-info{background-image:-webkit-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:-o-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#b9def0));background-image:linear-gradient(to bottom,#d9edf7 0,#b9def0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);background-repeat:repeat-x;border-color:#9acfea}.alert-warning{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:-o-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#f8efc0));background-image:linear-gradient(to bottom,#fcf8e3 0,#f8efc0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);background-repeat:repeat-x;border-color:#f5e79e}.alert-danger{background-image:-webkit-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:-o-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#e7c3c3));background-image:linear-gradient(to bottom,#f2dede 0,#e7c3c3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);background-repeat:repeat-x;border-color:#dca7a7}.progress{background-image:-webkit-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#f5f5f5));background-image:linear-gradient(to bottom,#ebebeb 0,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);background-repeat:repeat-x}.progress-bar{background-image:-webkit-linear-gradient(top,#337ab7 0,#286090 100%);background-image:-o-linear-gradient(top,#337ab7 0,#286090 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#286090));background-image:linear-gradient(to bottom,#337ab7 0,#286090 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);background-repeat:repeat-x}.progress-bar-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:-o-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#449d44));background-image:linear-gradient(to bottom,#5cb85c 0,#449d44 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);background-repeat:repeat-x}.progress-bar-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:-o-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#31b0d5));background-image:linear-gradient(to bottom,#5bc0de 0,#31b0d5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);background-repeat:repeat-x}.progress-bar-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:-o-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#ec971f));background-image:linear-gradient(to bottom,#f0ad4e 0,#ec971f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);background-repeat:repeat-x}.progress-bar-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:-o-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c9302c));background-image:linear-gradient(to bottom,#d9534f 0,#c9302c 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);background-repeat:repeat-x}.progress-bar-striped{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.list-group{border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{text-shadow:0 -1px 0 #286090;background-image:-webkit-linear-gradient(top,#337ab7 0,#2b669a 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2b669a 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2b669a));background-image:linear-gradient(to bottom,#337ab7 0,#2b669a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);background-repeat:repeat-x;border-color:#2b669a}.list-group-item.active .badge,.list-group-item.active:focus .badge,.list-group-item.active:hover .badge{text-shadow:none}.panel{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.05);box-shadow:0 1px 2px rgba(0,0,0,.05)}.panel-default>.panel-heading{background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-repeat:repeat-x}.panel-primary>.panel-heading{background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}.panel-success>.panel-heading{background-image:-webkit-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:-o-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#d0e9c6));background-image:linear-gradient(to bottom,#dff0d8 0,#d0e9c6 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);background-repeat:repeat-x}.panel-info>.panel-heading{background-image:-webkit-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:-o-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#c4e3f3));background-image:linear-gradient(to bottom,#d9edf7 0,#c4e3f3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);background-repeat:repeat-x}.panel-warning>.panel-heading{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:-o-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#faf2cc));background-image:linear-gradient(to bottom,#fcf8e3 0,#faf2cc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);background-repeat:repeat-x}.panel-danger>.panel-heading{background-image:-webkit-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:-o-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#ebcccc));background-image:linear-gradient(to bottom,#f2dede 0,#ebcccc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);background-repeat:repeat-x}.well{background-image:-webkit-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#e8e8e8),to(#f5f5f5));background-image:linear-gradient(to bottom,#e8e8e8 0,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);background-repeat:repeat-x;border-color:#dcdcdc;-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1)}
--------------------------------------------------------------------------------
/src/main/webapp/static/bootstrap/css/bootstrap-theme.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * Bootstrap v3.3.5 (http://getbootstrap.com)
3 | * Copyright 2011-2015 Twitter, Inc.
4 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
5 | */
6 | .btn-default,
7 | .btn-primary,
8 | .btn-success,
9 | .btn-info,
10 | .btn-warning,
11 | .btn-danger {
12 | text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
13 | -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
14 | box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
15 | }
16 | .btn-default:active,
17 | .btn-primary:active,
18 | .btn-success:active,
19 | .btn-info:active,
20 | .btn-warning:active,
21 | .btn-danger:active,
22 | .btn-default.active,
23 | .btn-primary.active,
24 | .btn-success.active,
25 | .btn-info.active,
26 | .btn-warning.active,
27 | .btn-danger.active {
28 | -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
29 | box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
30 | }
31 | .btn-default.disabled,
32 | .btn-primary.disabled,
33 | .btn-success.disabled,
34 | .btn-info.disabled,
35 | .btn-warning.disabled,
36 | .btn-danger.disabled,
37 | .btn-default[disabled],
38 | .btn-primary[disabled],
39 | .btn-success[disabled],
40 | .btn-info[disabled],
41 | .btn-warning[disabled],
42 | .btn-danger[disabled],
43 | fieldset[disabled] .btn-default,
44 | fieldset[disabled] .btn-primary,
45 | fieldset[disabled] .btn-success,
46 | fieldset[disabled] .btn-info,
47 | fieldset[disabled] .btn-warning,
48 | fieldset[disabled] .btn-danger {
49 | -webkit-box-shadow: none;
50 | box-shadow: none;
51 | }
52 | .btn-default .badge,
53 | .btn-primary .badge,
54 | .btn-success .badge,
55 | .btn-info .badge,
56 | .btn-warning .badge,
57 | .btn-danger .badge {
58 | text-shadow: none;
59 | }
60 | .btn:active,
61 | .btn.active {
62 | background-image: none;
63 | }
64 | .btn-default {
65 | text-shadow: 0 1px 0 #fff;
66 | background-image: -webkit-linear-gradient(top, #fff 0%, #e0e0e0 100%);
67 | background-image: -o-linear-gradient(top, #fff 0%, #e0e0e0 100%);
68 | background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e0e0e0));
69 | background-image: linear-gradient(to bottom, #fff 0%, #e0e0e0 100%);
70 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);
71 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
72 | background-repeat: repeat-x;
73 | border-color: #dbdbdb;
74 | border-color: #ccc;
75 | }
76 | .btn-default:hover,
77 | .btn-default:focus {
78 | background-color: #e0e0e0;
79 | background-position: 0 -15px;
80 | }
81 | .btn-default:active,
82 | .btn-default.active {
83 | background-color: #e0e0e0;
84 | border-color: #dbdbdb;
85 | }
86 | .btn-default.disabled,
87 | .btn-default[disabled],
88 | fieldset[disabled] .btn-default,
89 | .btn-default.disabled:hover,
90 | .btn-default[disabled]:hover,
91 | fieldset[disabled] .btn-default:hover,
92 | .btn-default.disabled:focus,
93 | .btn-default[disabled]:focus,
94 | fieldset[disabled] .btn-default:focus,
95 | .btn-default.disabled.focus,
96 | .btn-default[disabled].focus,
97 | fieldset[disabled] .btn-default.focus,
98 | .btn-default.disabled:active,
99 | .btn-default[disabled]:active,
100 | fieldset[disabled] .btn-default:active,
101 | .btn-default.disabled.active,
102 | .btn-default[disabled].active,
103 | fieldset[disabled] .btn-default.active {
104 | background-color: #e0e0e0;
105 | background-image: none;
106 | }
107 | .btn-primary {
108 | background-image: -webkit-linear-gradient(top, #337ab7 0%, #265a88 100%);
109 | background-image: -o-linear-gradient(top, #337ab7 0%, #265a88 100%);
110 | background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#265a88));
111 | background-image: linear-gradient(to bottom, #337ab7 0%, #265a88 100%);
112 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);
113 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
114 | background-repeat: repeat-x;
115 | border-color: #245580;
116 | }
117 | .btn-primary:hover,
118 | .btn-primary:focus {
119 | background-color: #265a88;
120 | background-position: 0 -15px;
121 | }
122 | .btn-primary:active,
123 | .btn-primary.active {
124 | background-color: #265a88;
125 | border-color: #245580;
126 | }
127 | .btn-primary.disabled,
128 | .btn-primary[disabled],
129 | fieldset[disabled] .btn-primary,
130 | .btn-primary.disabled:hover,
131 | .btn-primary[disabled]:hover,
132 | fieldset[disabled] .btn-primary:hover,
133 | .btn-primary.disabled:focus,
134 | .btn-primary[disabled]:focus,
135 | fieldset[disabled] .btn-primary:focus,
136 | .btn-primary.disabled.focus,
137 | .btn-primary[disabled].focus,
138 | fieldset[disabled] .btn-primary.focus,
139 | .btn-primary.disabled:active,
140 | .btn-primary[disabled]:active,
141 | fieldset[disabled] .btn-primary:active,
142 | .btn-primary.disabled.active,
143 | .btn-primary[disabled].active,
144 | fieldset[disabled] .btn-primary.active {
145 | background-color: #265a88;
146 | background-image: none;
147 | }
148 | .btn-success {
149 | background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%);
150 | background-image: -o-linear-gradient(top, #5cb85c 0%, #419641 100%);
151 | background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#419641));
152 | background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%);
153 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);
154 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
155 | background-repeat: repeat-x;
156 | border-color: #3e8f3e;
157 | }
158 | .btn-success:hover,
159 | .btn-success:focus {
160 | background-color: #419641;
161 | background-position: 0 -15px;
162 | }
163 | .btn-success:active,
164 | .btn-success.active {
165 | background-color: #419641;
166 | border-color: #3e8f3e;
167 | }
168 | .btn-success.disabled,
169 | .btn-success[disabled],
170 | fieldset[disabled] .btn-success,
171 | .btn-success.disabled:hover,
172 | .btn-success[disabled]:hover,
173 | fieldset[disabled] .btn-success:hover,
174 | .btn-success.disabled:focus,
175 | .btn-success[disabled]:focus,
176 | fieldset[disabled] .btn-success:focus,
177 | .btn-success.disabled.focus,
178 | .btn-success[disabled].focus,
179 | fieldset[disabled] .btn-success.focus,
180 | .btn-success.disabled:active,
181 | .btn-success[disabled]:active,
182 | fieldset[disabled] .btn-success:active,
183 | .btn-success.disabled.active,
184 | .btn-success[disabled].active,
185 | fieldset[disabled] .btn-success.active {
186 | background-color: #419641;
187 | background-image: none;
188 | }
189 | .btn-info {
190 | background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
191 | background-image: -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
192 | background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#2aabd2));
193 | background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%);
194 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);
195 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
196 | background-repeat: repeat-x;
197 | border-color: #28a4c9;
198 | }
199 | .btn-info:hover,
200 | .btn-info:focus {
201 | background-color: #2aabd2;
202 | background-position: 0 -15px;
203 | }
204 | .btn-info:active,
205 | .btn-info.active {
206 | background-color: #2aabd2;
207 | border-color: #28a4c9;
208 | }
209 | .btn-info.disabled,
210 | .btn-info[disabled],
211 | fieldset[disabled] .btn-info,
212 | .btn-info.disabled:hover,
213 | .btn-info[disabled]:hover,
214 | fieldset[disabled] .btn-info:hover,
215 | .btn-info.disabled:focus,
216 | .btn-info[disabled]:focus,
217 | fieldset[disabled] .btn-info:focus,
218 | .btn-info.disabled.focus,
219 | .btn-info[disabled].focus,
220 | fieldset[disabled] .btn-info.focus,
221 | .btn-info.disabled:active,
222 | .btn-info[disabled]:active,
223 | fieldset[disabled] .btn-info:active,
224 | .btn-info.disabled.active,
225 | .btn-info[disabled].active,
226 | fieldset[disabled] .btn-info.active {
227 | background-color: #2aabd2;
228 | background-image: none;
229 | }
230 | .btn-warning {
231 | background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
232 | background-image: -o-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
233 | background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#eb9316));
234 | background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%);
235 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);
236 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
237 | background-repeat: repeat-x;
238 | border-color: #e38d13;
239 | }
240 | .btn-warning:hover,
241 | .btn-warning:focus {
242 | background-color: #eb9316;
243 | background-position: 0 -15px;
244 | }
245 | .btn-warning:active,
246 | .btn-warning.active {
247 | background-color: #eb9316;
248 | border-color: #e38d13;
249 | }
250 | .btn-warning.disabled,
251 | .btn-warning[disabled],
252 | fieldset[disabled] .btn-warning,
253 | .btn-warning.disabled:hover,
254 | .btn-warning[disabled]:hover,
255 | fieldset[disabled] .btn-warning:hover,
256 | .btn-warning.disabled:focus,
257 | .btn-warning[disabled]:focus,
258 | fieldset[disabled] .btn-warning:focus,
259 | .btn-warning.disabled.focus,
260 | .btn-warning[disabled].focus,
261 | fieldset[disabled] .btn-warning.focus,
262 | .btn-warning.disabled:active,
263 | .btn-warning[disabled]:active,
264 | fieldset[disabled] .btn-warning:active,
265 | .btn-warning.disabled.active,
266 | .btn-warning[disabled].active,
267 | fieldset[disabled] .btn-warning.active {
268 | background-color: #eb9316;
269 | background-image: none;
270 | }
271 | .btn-danger {
272 | background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
273 | background-image: -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
274 | background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c12e2a));
275 | background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%);
276 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);
277 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
278 | background-repeat: repeat-x;
279 | border-color: #b92c28;
280 | }
281 | .btn-danger:hover,
282 | .btn-danger:focus {
283 | background-color: #c12e2a;
284 | background-position: 0 -15px;
285 | }
286 | .btn-danger:active,
287 | .btn-danger.active {
288 | background-color: #c12e2a;
289 | border-color: #b92c28;
290 | }
291 | .btn-danger.disabled,
292 | .btn-danger[disabled],
293 | fieldset[disabled] .btn-danger,
294 | .btn-danger.disabled:hover,
295 | .btn-danger[disabled]:hover,
296 | fieldset[disabled] .btn-danger:hover,
297 | .btn-danger.disabled:focus,
298 | .btn-danger[disabled]:focus,
299 | fieldset[disabled] .btn-danger:focus,
300 | .btn-danger.disabled.focus,
301 | .btn-danger[disabled].focus,
302 | fieldset[disabled] .btn-danger.focus,
303 | .btn-danger.disabled:active,
304 | .btn-danger[disabled]:active,
305 | fieldset[disabled] .btn-danger:active,
306 | .btn-danger.disabled.active,
307 | .btn-danger[disabled].active,
308 | fieldset[disabled] .btn-danger.active {
309 | background-color: #c12e2a;
310 | background-image: none;
311 | }
312 | .thumbnail,
313 | .img-thumbnail {
314 | -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
315 | box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
316 | }
317 | .dropdown-menu > li > a:hover,
318 | .dropdown-menu > li > a:focus {
319 | background-color: #e8e8e8;
320 | background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
321 | background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
322 | background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8));
323 | background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
324 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
325 | background-repeat: repeat-x;
326 | }
327 | .dropdown-menu > .active > a,
328 | .dropdown-menu > .active > a:hover,
329 | .dropdown-menu > .active > a:focus {
330 | background-color: #2e6da4;
331 | background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
332 | background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
333 | background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));
334 | background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
335 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
336 | background-repeat: repeat-x;
337 | }
338 | .navbar-default {
339 | background-image: -webkit-linear-gradient(top, #fff 0%, #f8f8f8 100%);
340 | background-image: -o-linear-gradient(top, #fff 0%, #f8f8f8 100%);
341 | background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f8f8f8));
342 | background-image: linear-gradient(to bottom, #fff 0%, #f8f8f8 100%);
343 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);
344 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
345 | background-repeat: repeat-x;
346 | border-radius: 4px;
347 | -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075);
348 | box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075);
349 | }
350 | .navbar-default .navbar-nav > .open > a,
351 | .navbar-default .navbar-nav > .active > a {
352 | background-image: -webkit-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);
353 | background-image: -o-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);
354 | background-image: -webkit-gradient(linear, left top, left bottom, from(#dbdbdb), to(#e2e2e2));
355 | background-image: linear-gradient(to bottom, #dbdbdb 0%, #e2e2e2 100%);
356 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);
357 | background-repeat: repeat-x;
358 | -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075);
359 | box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075);
360 | }
361 | .navbar-brand,
362 | .navbar-nav > li > a {
363 | text-shadow: 0 1px 0 rgba(255, 255, 255, .25);
364 | }
365 | .navbar-inverse {
366 | background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222 100%);
367 | background-image: -o-linear-gradient(top, #3c3c3c 0%, #222 100%);
368 | background-image: -webkit-gradient(linear, left top, left bottom, from(#3c3c3c), to(#222));
369 | background-image: linear-gradient(to bottom, #3c3c3c 0%, #222 100%);
370 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);
371 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
372 | background-repeat: repeat-x;
373 | border-radius: 4px;
374 | }
375 | .navbar-inverse .navbar-nav > .open > a,
376 | .navbar-inverse .navbar-nav > .active > a {
377 | background-image: -webkit-linear-gradient(top, #080808 0%, #0f0f0f 100%);
378 | background-image: -o-linear-gradient(top, #080808 0%, #0f0f0f 100%);
379 | background-image: -webkit-gradient(linear, left top, left bottom, from(#080808), to(#0f0f0f));
380 | background-image: linear-gradient(to bottom, #080808 0%, #0f0f0f 100%);
381 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);
382 | background-repeat: repeat-x;
383 | -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25);
384 | box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25);
385 | }
386 | .navbar-inverse .navbar-brand,
387 | .navbar-inverse .navbar-nav > li > a {
388 | text-shadow: 0 -1px 0 rgba(0, 0, 0, .25);
389 | }
390 | .navbar-static-top,
391 | .navbar-fixed-top,
392 | .navbar-fixed-bottom {
393 | border-radius: 0;
394 | }
395 | @media (max-width: 767px) {
396 | .navbar .navbar-nav .open .dropdown-menu > .active > a,
397 | .navbar .navbar-nav .open .dropdown-menu > .active > a:hover,
398 | .navbar .navbar-nav .open .dropdown-menu > .active > a:focus {
399 | color: #fff;
400 | background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
401 | background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
402 | background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));
403 | background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
404 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
405 | background-repeat: repeat-x;
406 | }
407 | }
408 | .alert {
409 | text-shadow: 0 1px 0 rgba(255, 255, 255, .2);
410 | -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05);
411 | box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05);
412 | }
413 | .alert-success {
414 | background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
415 | background-image: -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
416 | background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#c8e5bc));
417 | background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);
418 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);
419 | background-repeat: repeat-x;
420 | border-color: #b2dba1;
421 | }
422 | .alert-info {
423 | background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
424 | background-image: -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
425 | background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#b9def0));
426 | background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);
427 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);
428 | background-repeat: repeat-x;
429 | border-color: #9acfea;
430 | }
431 | .alert-warning {
432 | background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
433 | background-image: -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
434 | background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#f8efc0));
435 | background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);
436 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);
437 | background-repeat: repeat-x;
438 | border-color: #f5e79e;
439 | }
440 | .alert-danger {
441 | background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
442 | background-image: -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
443 | background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#e7c3c3));
444 | background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%);
445 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);
446 | background-repeat: repeat-x;
447 | border-color: #dca7a7;
448 | }
449 | .progress {
450 | background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
451 | background-image: -o-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
452 | background-image: -webkit-gradient(linear, left top, left bottom, from(#ebebeb), to(#f5f5f5));
453 | background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%);
454 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);
455 | background-repeat: repeat-x;
456 | }
457 | .progress-bar {
458 | background-image: -webkit-linear-gradient(top, #337ab7 0%, #286090 100%);
459 | background-image: -o-linear-gradient(top, #337ab7 0%, #286090 100%);
460 | background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#286090));
461 | background-image: linear-gradient(to bottom, #337ab7 0%, #286090 100%);
462 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);
463 | background-repeat: repeat-x;
464 | }
465 | .progress-bar-success {
466 | background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%);
467 | background-image: -o-linear-gradient(top, #5cb85c 0%, #449d44 100%);
468 | background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#449d44));
469 | background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);
470 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);
471 | background-repeat: repeat-x;
472 | }
473 | .progress-bar-info {
474 | background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
475 | background-image: -o-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
476 | background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#31b0d5));
477 | background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);
478 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);
479 | background-repeat: repeat-x;
480 | }
481 | .progress-bar-warning {
482 | background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
483 | background-image: -o-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
484 | background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#ec971f));
485 | background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);
486 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);
487 | background-repeat: repeat-x;
488 | }
489 | .progress-bar-danger {
490 | background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%);
491 | background-image: -o-linear-gradient(top, #d9534f 0%, #c9302c 100%);
492 | background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c9302c));
493 | background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);
494 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);
495 | background-repeat: repeat-x;
496 | }
497 | .progress-bar-striped {
498 | background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
499 | background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
500 | background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
501 | }
502 | .list-group {
503 | border-radius: 4px;
504 | -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
505 | box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
506 | }
507 | .list-group-item.active,
508 | .list-group-item.active:hover,
509 | .list-group-item.active:focus {
510 | text-shadow: 0 -1px 0 #286090;
511 | background-image: -webkit-linear-gradient(top, #337ab7 0%, #2b669a 100%);
512 | background-image: -o-linear-gradient(top, #337ab7 0%, #2b669a 100%);
513 | background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2b669a));
514 | background-image: linear-gradient(to bottom, #337ab7 0%, #2b669a 100%);
515 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);
516 | background-repeat: repeat-x;
517 | border-color: #2b669a;
518 | }
519 | .list-group-item.active .badge,
520 | .list-group-item.active:hover .badge,
521 | .list-group-item.active:focus .badge {
522 | text-shadow: none;
523 | }
524 | .panel {
525 | -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
526 | box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
527 | }
528 | .panel-default > .panel-heading {
529 | background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
530 | background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
531 | background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8));
532 | background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
533 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
534 | background-repeat: repeat-x;
535 | }
536 | .panel-primary > .panel-heading {
537 | background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
538 | background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
539 | background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));
540 | background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
541 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
542 | background-repeat: repeat-x;
543 | }
544 | .panel-success > .panel-heading {
545 | background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);
546 | background-image: -o-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);
547 | background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#d0e9c6));
548 | background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%);
549 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);
550 | background-repeat: repeat-x;
551 | }
552 | .panel-info > .panel-heading {
553 | background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);
554 | background-image: -o-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);
555 | background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#c4e3f3));
556 | background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%);
557 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);
558 | background-repeat: repeat-x;
559 | }
560 | .panel-warning > .panel-heading {
561 | background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);
562 | background-image: -o-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);
563 | background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#faf2cc));
564 | background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%);
565 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);
566 | background-repeat: repeat-x;
567 | }
568 | .panel-danger > .panel-heading {
569 | background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
570 | background-image: -o-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
571 | background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#ebcccc));
572 | background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%);
573 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);
574 | background-repeat: repeat-x;
575 | }
576 | .well {
577 | background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);
578 | background-image: -o-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);
579 | background-image: -webkit-gradient(linear, left top, left bottom, from(#e8e8e8), to(#f5f5f5));
580 | background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%);
581 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);
582 | background-repeat: repeat-x;
583 | border-color: #dcdcdc;
584 | -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1);
585 | box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1);
586 | }
587 | /*# sourceMappingURL=bootstrap-theme.css.map */
588 |
--------------------------------------------------------------------------------
/src/main/webapp/static/bootstrap/js/bootstrap.min.js:
--------------------------------------------------------------------------------
1 | /*!
2 | * Bootstrap v3.3.5 (http://getbootstrap.com)
3 | * Copyright 2011-2015 Twitter, Inc.
4 | * Licensed under the MIT license
5 | */
6 | if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" ")[0].split(".");if(b[0]<2&&b[1]<9||1==b[0]&&9==b[1]&&b[2]<1)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher")}(jQuery),+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){return a(b.target).is(this)?b.handleObj.handler.apply(this,arguments):void 0}})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new d(this)),"string"==typeof b&&e[b].call(c)})}var c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.3.5",d.TRANSITION_DURATION=150,d.prototype.close=function(b){function c(){g.detach().trigger("closed.bs.alert").remove()}var e=a(this),f=e.attr("data-target");f||(f=e.attr("href"),f=f&&f.replace(/.*(?=#[^\s]*$)/,""));var g=a(f);b&&b.preventDefault(),g.length||(g=e.closest(".alert")),g.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(g.removeClass("in"),a.support.transition&&g.hasClass("fade")?g.one("bsTransitionEnd",c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof b&&b;e||d.data("bs.button",e=new c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.3.5",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),setTimeout(a.proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c))},this),0)},c.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")?(c.prop("checked")&&(a=!1),b.find(".active").removeClass("active"),this.$element.addClass("active")):"checkbox"==c.prop("type")&&(c.prop("checked")!==this.$element.hasClass("active")&&(a=!1),this.$element.toggleClass("active")),c.prop("checked",this.$element.hasClass("active")),a&&c.trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active")),this.$element.toggleClass("active")};var d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var d=a(c.target);d.hasClass("btn")||(d=d.closest(".btn")),b.call(d,"toggle"),a(c.target).is('input[type="radio"]')||a(c.target).is('input[type="checkbox"]')||c.preventDefault()}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(b){a(b.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new c(this,f)),"number"==typeof b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",a.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.3.5",c.TRANSITION_DURATION=600,c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},c.prototype.keydown=function(a){if(!/input|textarea/i.test(a.target.tagName)){switch(a.which){case 37:this.prev();break;case 39:this.next();break;default:return}a.preventDefault()}},c.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},c.prototype.getItemIndex=function(a){return this.$items=a.parent().children(".item"),this.$items.index(a||this.$active)},c.prototype.getItemForDirection=function(a,b){var c=this.getItemIndex(b),d="prev"==a&&0===c||"next"==a&&c==this.$items.length-1;if(d&&!this.options.wrap)return b;var e="prev"==a?-1:1,f=(c+e)%this.$items.length;return this.$items.eq(f)},c.prototype.to=function(a){var b=this,c=this.getItemIndex(this.$active=this.$element.find(".item.active"));return a>this.$items.length-1||0>a?void 0:this.sliding?this.$element.one("slid.bs.carousel",function(){b.to(a)}):c==a?this.pause().cycle():this.slide(a>c?"next":"prev",this.$items.eq(a))},c.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){return this.sliding?void 0:this.slide("next")},c.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},c.prototype.slide=function(b,d){var e=this.$element.find(".item.active"),f=d||this.getItemForDirection(b,e),g=this.interval,h="next"==b?"left":"right",i=this;if(f.hasClass("active"))return this.sliding=!1;var j=f[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:h});if(this.$element.trigger(k),!k.isDefaultPrevented()){if(this.sliding=!0,g&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var l=a(this.$indicators.children()[this.getItemIndex(f)]);l&&l.addClass("active")}var m=a.Event("slid.bs.carousel",{relatedTarget:j,direction:h});return a.support.transition&&this.$element.hasClass("slide")?(f.addClass(b),f[0].offsetWidth,e.addClass(h),f.addClass(h),e.one("bsTransitionEnd",function(){f.removeClass([b,h].join(" ")).addClass("active"),e.removeClass(["active",h].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger(m)},0)}).emulateTransitionEnd(c.TRANSITION_DURATION)):(e.removeClass("active"),f.addClass("active"),this.sliding=!1,this.$element.trigger(m)),g&&this.cycle(),this}};var d=a.fn.carousel;a.fn.carousel=b,a.fn.carousel.Constructor=c,a.fn.carousel.noConflict=function(){return a.fn.carousel=d,this};var e=function(c){var d,e=a(this),f=a(e.attr("data-target")||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""));if(f.hasClass("carousel")){var g=a.extend({},f.data(),e.data()),h=e.attr("data-slide-to");h&&(g.interval=!1),b.call(f,g),h&&f.data("bs.carousel").to(h),c.preventDefault()}};a(document).on("click.bs.carousel.data-api","[data-slide]",e).on("click.bs.carousel.data-api","[data-slide-to]",e),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var c=a(this);b.call(c,c.data())})})}(jQuery),+function(a){"use strict";function b(b){var c,d=b.attr("data-target")||(c=b.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"");return a(d)}function c(b){return this.each(function(){var c=a(this),e=c.data("bs.collapse"),f=a.extend({},d.DEFAULTS,c.data(),"object"==typeof b&&b);!e&&f.toggle&&/show|hide/.test(b)&&(f.toggle=!1),e||c.data("bs.collapse",e=new d(this,f)),"string"==typeof b&&e[b]()})}var d=function(b,c){this.$element=a(b),this.options=a.extend({},d.DEFAULTS,c),this.$trigger=a('[data-toggle="collapse"][href="#'+b.id+'"],[data-toggle="collapse"][data-target="#'+b.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};d.VERSION="3.3.5",d.TRANSITION_DURATION=350,d.DEFAULTS={toggle:!0},d.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},d.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b,e=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(e&&e.length&&(b=e.data("bs.collapse"),b&&b.transitioning))){var f=a.Event("show.bs.collapse");if(this.$element.trigger(f),!f.isDefaultPrevented()){e&&e.length&&(c.call(e,"hide"),b||e.data("bs.collapse",null));var g=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[g](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var h=function(){this.$element.removeClass("collapsing").addClass("collapse in")[g](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return h.call(this);var i=a.camelCase(["scroll",g].join("-"));this.$element.one("bsTransitionEnd",a.proxy(h,this)).emulateTransitionEnd(d.TRANSITION_DURATION)[g](this.$element[0][i])}}}},d.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var e=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return a.support.transition?void this.$element[c](0).one("bsTransitionEnd",a.proxy(e,this)).emulateTransitionEnd(d.TRANSITION_DURATION):e.call(this)}}},d.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},d.prototype.getParent=function(){return a(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(a.proxy(function(c,d){var e=a(d);this.addAriaAndCollapsedClass(b(e),e)},this)).end()},d.prototype.addAriaAndCollapsedClass=function(a,b){var c=a.hasClass("in");a.attr("aria-expanded",c),b.toggleClass("collapsed",!c).attr("aria-expanded",c)};var e=a.fn.collapse;a.fn.collapse=c,a.fn.collapse.Constructor=d,a.fn.collapse.noConflict=function(){return a.fn.collapse=e,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(d){var e=a(this);e.attr("data-target")||d.preventDefault();var f=b(e),g=f.data("bs.collapse"),h=g?"toggle":e.data();c.call(f,h)})}(jQuery),+function(a){"use strict";function b(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}function c(c){c&&3===c.which||(a(e).remove(),a(f).each(function(){var d=a(this),e=b(d),f={relatedTarget:this};e.hasClass("open")&&(c&&"click"==c.type&&/input|textarea/i.test(c.target.tagName)&&a.contains(e[0],c.target)||(e.trigger(c=a.Event("hide.bs.dropdown",f)),c.isDefaultPrevented()||(d.attr("aria-expanded","false"),e.removeClass("open").trigger("hidden.bs.dropdown",f))))}))}function d(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new g(this)),"string"==typeof b&&d[b].call(c)})}var e=".dropdown-backdrop",f='[data-toggle="dropdown"]',g=function(b){a(b).on("click.bs.dropdown",this.toggle)};g.VERSION="3.3.5",g.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=b(e),g=f.hasClass("open");if(c(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a(document.createElement("div")).addClass("dropdown-backdrop").insertAfter(a(this)).on("click",c);var h={relatedTarget:this};if(f.trigger(d=a.Event("show.bs.dropdown",h)),d.isDefaultPrevented())return;e.trigger("focus").attr("aria-expanded","true"),f.toggleClass("open").trigger("shown.bs.dropdown",h)}return!1}},g.prototype.keydown=function(c){if(/(38|40|27|32)/.test(c.which)&&!/input|textarea/i.test(c.target.tagName)){var d=a(this);if(c.preventDefault(),c.stopPropagation(),!d.is(".disabled, :disabled")){var e=b(d),g=e.hasClass("open");if(!g&&27!=c.which||g&&27==c.which)return 27==c.which&&e.find(f).trigger("focus"),d.trigger("click");var h=" li:not(.disabled):visible a",i=e.find(".dropdown-menu"+h);if(i.length){var j=i.index(c.target);38==c.which&&j>0&&j--,40==c.which&&jdocument.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&a?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!a?this.scrollbarWidth:""})},c.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},c.prototype.checkScrollbar=function(){var a=window.innerWidth;if(!a){var b=document.documentElement.getBoundingClientRect();a=b.right-Math.abs(b.left)}this.bodyIsOverflowing=document.body.clientWidth',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},c.prototype.init=function(b,c,d){if(this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.$viewport=this.options.viewport&&a(a.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var e=this.options.trigger.split(" "),f=e.length;f--;){var g=e[f];if("click"==g)this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this));else if("manual"!=g){var h="hover"==g?"mouseenter":"focusin",i="hover"==g?"mouseleave":"focusout";this.$element.on(h+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(i+"."+this.type,this.options.selector,a.proxy(this.leave,this))}}this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.getOptions=function(b){return b=a.extend({},this.getDefaults(),this.$element.data(),b),b.delay&&"number"==typeof b.delay&&(b.delay={show:b.delay,hide:b.delay}),b},c.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},c.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusin"==b.type?"focus":"hover"]=!0),c.tip().hasClass("in")||"in"==c.hoverState?void(c.hoverState="in"):(clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):c.show())},c.prototype.isInStateTrue=function(){for(var a in this.inState)if(this.inState[a])return!0;return!1},c.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusout"==b.type?"focus":"hover"]=!1),c.isInStateTrue()?void 0:(clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):c.hide())},c.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(b);var d=a.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(b.isDefaultPrevented()||!d)return;var e=this,f=this.tip(),g=this.getUID(this.type);this.setContent(),f.attr("id",g),this.$element.attr("aria-describedby",g),this.options.animation&&f.addClass("fade");var h="function"==typeof this.options.placement?this.options.placement.call(this,f[0],this.$element[0]):this.options.placement,i=/\s?auto?\s?/i,j=i.test(h);j&&(h=h.replace(i,"")||"top"),f.detach().css({top:0,left:0,display:"block"}).addClass(h).data("bs."+this.type,this),this.options.container?f.appendTo(this.options.container):f.insertAfter(this.$element),this.$element.trigger("inserted.bs."+this.type);var k=this.getPosition(),l=f[0].offsetWidth,m=f[0].offsetHeight;if(j){var n=h,o=this.getPosition(this.$viewport);h="bottom"==h&&k.bottom+m>o.bottom?"top":"top"==h&&k.top-mo.width?"left":"left"==h&&k.left-lg.top+g.height&&(e.top=g.top+g.height-i)}else{var j=b.left-f,k=b.left+f+c;jg.right&&(e.left=g.left+g.width-k)}return e},c.prototype.getTitle=function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||("function"==typeof c.title?c.title.call(b[0]):c.title)},c.prototype.getUID=function(a){do a+=~~(1e6*Math.random());while(document.getElementById(a));return a},c.prototype.tip=function(){if(!this.$tip&&(this.$tip=a(this.options.template),1!=this.$tip.length))throw new Error(this.type+" `template` option must consist of exactly 1 top-level element!");return this.$tip},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},c.prototype.enable=function(){this.enabled=!0},c.prototype.disable=function(){this.enabled=!1},c.prototype.toggleEnabled=function(){this.enabled=!this.enabled},c.prototype.toggle=function(b){var c=this;b&&(c=a(b.currentTarget).data("bs."+this.type),c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c))),b?(c.inState.click=!c.inState.click,c.isInStateTrue()?c.enter(c):c.leave(c)):c.tip().hasClass("in")?c.leave(c):c.enter(c)},c.prototype.destroy=function(){var a=this;clearTimeout(this.timeout),this.hide(function(){a.$element.off("."+a.type).removeData("bs."+a.type),a.$tip&&a.$tip.detach(),a.$tip=null,a.$arrow=null,a.$viewport=null})};var d=a.fn.tooltip;a.fn.tooltip=b,a.fn.tooltip.Constructor=c,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=d,this}}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof b&&b;(e||!/destroy|hide/.test(b))&&(e||d.data("bs.popover",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");c.VERSION="3.3.5",c.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:''}),c.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),c.prototype.constructor=c,c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content").children().detach().end()[this.options.html?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},c.prototype.hasContent=function(){return this.getTitle()||this.getContent()},c.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var d=a.fn.popover;a.fn.popover=b,a.fn.popover.Constructor=c,a.fn.popover.noConflict=function(){return a.fn.popover=d,this}}(jQuery),+function(a){"use strict";function b(c,d){this.$body=a(document.body),this.$scrollElement=a(a(c).is(document.body)?window:c),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",a.proxy(this.process,this)),this.refresh(),this.process()}function c(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})}b.VERSION="3.3.5",b.DEFAULTS={offset:10},b.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},b.prototype.refresh=function(){var b=this,c="offset",d=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),a.isWindow(this.$scrollElement[0])||(c="position",d=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var b=a(this),e=b.data("target")||b.attr("href"),f=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[f[c]().top+d,e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.getScrollHeight(),d=this.options.offset+c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(this.scrollHeight!=c&&this.refresh(),b>=d)return g!=(a=f[f.length-1])&&this.activate(a);if(g&&b=e[a]&&(void 0===e[a+1]||b .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),b.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),h?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu").length&&b.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),e&&e()}var g=d.find("> .active"),h=e&&a.support.transition&&(g.length&&g.hasClass("fade")||!!d.find("> .fade").length);g.length&&h?g.one("bsTransitionEnd",f).emulateTransitionEnd(c.TRANSITION_DURATION):f(),g.removeClass("in")};var d=a.fn.tab;a.fn.tab=b,a.fn.tab.Constructor=c,a.fn.tab.noConflict=function(){return a.fn.tab=d,this};var e=function(c){c.preventDefault(),b.call(a(this),"show")};a(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',e).on("click.bs.tab.data-api",'[data-toggle="pill"]',e)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof b&&b;e||d.data("bs.affix",e=new c(this,f)),"string"==typeof b&&e[b]()})}var c=function(b,d){this.options=a.extend({},c.DEFAULTS,d),this.$target=a(this.options.target).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(b),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};c.VERSION="3.3.5",c.RESET="affix affix-top affix-bottom",c.DEFAULTS={offset:0,target:window},c.prototype.getState=function(a,b,c,d){var e=this.$target.scrollTop(),f=this.$element.offset(),g=this.$target.height();if(null!=c&&"top"==this.affixed)return c>e?"top":!1;if("bottom"==this.affixed)return null!=c?e+this.unpin<=f.top?!1:"bottom":a-d>=e+g?!1:"bottom";var h=null==this.affixed,i=h?e:f.top,j=h?g:b;return null!=c&&c>=e?"top":null!=d&&i+j>=a-d?"bottom":!1},c.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(c.RESET).addClass("affix");var a=this.$target.scrollTop(),b=this.$element.offset();return this.pinnedOffset=b.top-a},c.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},c.prototype.checkPosition=function(){if(this.$element.is(":visible")){var b=this.$element.height(),d=this.options.offset,e=d.top,f=d.bottom,g=Math.max(a(document).height(),a(document.body).height());"object"!=typeof d&&(f=e=d),"function"==typeof e&&(e=d.top(this.$element)),"function"==typeof f&&(f=d.bottom(this.$element));var h=this.getState(g,b,e,f);if(this.affixed!=h){null!=this.unpin&&this.$element.css("top","");var i="affix"+(h?"-"+h:""),j=a.Event(i+".bs.affix");if(this.$element.trigger(j),j.isDefaultPrevented())return;this.affixed=h,this.unpin="bottom"==h?this.getPinnedOffset():null,this.$element.removeClass(c.RESET).addClass(i).trigger(i.replace("affix","affixed")+".bs.affix")}"bottom"==h&&this.$element.offset({top:g-b-f})}};var d=a.fn.affix;a.fn.affix=b,a.fn.affix.Constructor=c,a.fn.affix.noConflict=function(){return a.fn.affix=d,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var c=a(this),d=c.data();d.offset=d.offset||{},null!=d.offsetBottom&&(d.offset.bottom=d.offsetBottom),null!=d.offsetTop&&(d.offset.top=d.offsetTop),b.call(c,d)})})}(jQuery);
--------------------------------------------------------------------------------
/src/main/webapp/static/bootstrap/css/bootstrap-theme.css.map:
--------------------------------------------------------------------------------
1 | {"version":3,"sources":["bootstrap-theme.css","less/theme.less","less/mixins/vendor-prefixes.less","less/mixins/gradients.less","less/mixins/reset-filter.less"],"names":[],"mappings":"AAAA;;;;GAIG;ACeH;;;;;;EAME,yCAAA;EC2CA,4FAAA;EACQ,oFAAA;CFvDT;ACgBC;;;;;;;;;;;;ECsCA,yDAAA;EACQ,iDAAA;CFxCT;ACMC;;;;;;;;;;;;;;;;;;ECiCA,yBAAA;EACQ,iBAAA;CFnBT;AC/BD;;;;;;EAuBI,kBAAA;CDgBH;ACyBC;;EAEE,uBAAA;CDvBH;AC4BD;EErEI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EAEA,uHAAA;ECnBF,oEAAA;EH4CA,4BAAA;EACA,sBAAA;EAuC2C,0BAAA;EAA2B,mBAAA;CDjBvE;ACpBC;;EAEE,0BAAA;EACA,6BAAA;CDsBH;ACnBC;;EAEE,0BAAA;EACA,sBAAA;CDqBH;ACfG;;;;;;;;;;;;;;;;;;EAME,0BAAA;EACA,uBAAA;CD6BL;ACbD;EEtEI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EAEA,uHAAA;ECnBF,oEAAA;EH4CA,4BAAA;EACA,sBAAA;CD8DD;AC5DC;;EAEE,0BAAA;EACA,6BAAA;CD8DH;AC3DC;;EAEE,0BAAA;EACA,sBAAA;CD6DH;ACvDG;;;;;;;;;;;;;;;;;;EAME,0BAAA;EACA,uBAAA;CDqEL;ACpDD;EEvEI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EAEA,uHAAA;ECnBF,oEAAA;EH4CA,4BAAA;EACA,sBAAA;CDsGD;ACpGC;;EAEE,0BAAA;EACA,6BAAA;CDsGH;ACnGC;;EAEE,0BAAA;EACA,sBAAA;CDqGH;AC/FG;;;;;;;;;;;;;;;;;;EAME,0BAAA;EACA,uBAAA;CD6GL;AC3FD;EExEI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EAEA,uHAAA;ECnBF,oEAAA;EH4CA,4BAAA;EACA,sBAAA;CD8ID;AC5IC;;EAEE,0BAAA;EACA,6BAAA;CD8IH;AC3IC;;EAEE,0BAAA;EACA,sBAAA;CD6IH;ACvIG;;;;;;;;;;;;;;;;;;EAME,0BAAA;EACA,uBAAA;CDqJL;AClID;EEzEI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EAEA,uHAAA;ECnBF,oEAAA;EH4CA,4BAAA;EACA,sBAAA;CDsLD;ACpLC;;EAEE,0BAAA;EACA,6BAAA;CDsLH;ACnLC;;EAEE,0BAAA;EACA,sBAAA;CDqLH;AC/KG;;;;;;;;;;;;;;;;;;EAME,0BAAA;EACA,uBAAA;CD6LL;ACzKD;EE1EI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EAEA,uHAAA;ECnBF,oEAAA;EH4CA,4BAAA;EACA,sBAAA;CD8ND;AC5NC;;EAEE,0BAAA;EACA,6BAAA;CD8NH;AC3NC;;EAEE,0BAAA;EACA,sBAAA;CD6NH;ACvNG;;;;;;;;;;;;;;;;;;EAME,0BAAA;EACA,uBAAA;CDqOL;AC1MD;;EClCE,mDAAA;EACQ,2CAAA;CFgPT;ACrMD;;EE3FI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;EF0FF,0BAAA;CD2MD;ACzMD;;;EEhGI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;EFgGF,0BAAA;CD+MD;ACtMD;EE7GI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;ECnBF,oEAAA;EH+HA,mBAAA;ECjEA,4FAAA;EACQ,oFAAA;CF8QT;ACjND;;EE7GI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;ED2CF,yDAAA;EACQ,iDAAA;CFwRT;AC9MD;;EAEE,+CAAA;CDgND;AC5MD;EEhII,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;ECnBF,oEAAA;EHkJA,mBAAA;CDkND;ACrND;;EEhII,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;ED2CF,wDAAA;EACQ,gDAAA;CF+ST;AC/ND;;EAYI,0CAAA;CDuNH;AClND;;;EAGE,iBAAA;CDoND;AC/LD;EAfI;;;IAGE,YAAA;IE7JF,yEAAA;IACA,oEAAA;IACA,8FAAA;IAAA,uEAAA;IACA,4BAAA;IACA,uHAAA;GH+WD;CACF;AC3MD;EACE,8CAAA;EC3HA,2FAAA;EACQ,mFAAA;CFyUT;ACnMD;EEtLI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;EF8KF,sBAAA;CD+MD;AC1MD;EEvLI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;EF8KF,sBAAA;CDuND;ACjND;EExLI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;EF8KF,sBAAA;CD+ND;ACxND;EEzLI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;EF8KF,sBAAA;CDuOD;ACxND;EEjMI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CH4ZH;ACrND;EE3MI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CHmaH;AC3ND;EE5MI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CH0aH;ACjOD;EE7MI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CHibH;ACvOD;EE9MI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CHwbH;AC7OD;EE/MI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CH+bH;AChPD;EElLI,8MAAA;EACA,yMAAA;EACA,sMAAA;CHqaH;AC5OD;EACE,mBAAA;EC9KA,mDAAA;EACQ,2CAAA;CF6ZT;AC7OD;;;EAGE,8BAAA;EEnOE,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;EFiOF,sBAAA;CDmPD;ACxPD;;;EAQI,kBAAA;CDqPH;AC3OD;ECnME,kDAAA;EACQ,0CAAA;CFibT;ACrOD;EE5PI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CHoeH;AC3OD;EE7PI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CH2eH;ACjPD;EE9PI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CHkfH;ACvPD;EE/PI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CHyfH;AC7PD;EEhQI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CHggBH;ACnQD;EEjQI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CHugBH;ACnQD;EExQI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;EFsQF,sBAAA;EC3NA,0FAAA;EACQ,kFAAA;CFqeT","file":"bootstrap-theme.css","sourcesContent":["/*!\n * Bootstrap v3.3.5 (http://getbootstrap.com)\n * Copyright 2011-2015 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n.btn-default,\n.btn-primary,\n.btn-success,\n.btn-info,\n.btn-warning,\n.btn-danger {\n text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.btn-default:active,\n.btn-primary:active,\n.btn-success:active,\n.btn-info:active,\n.btn-warning:active,\n.btn-danger:active,\n.btn-default.active,\n.btn-primary.active,\n.btn-success.active,\n.btn-info.active,\n.btn-warning.active,\n.btn-danger.active {\n -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.btn-default.disabled,\n.btn-primary.disabled,\n.btn-success.disabled,\n.btn-info.disabled,\n.btn-warning.disabled,\n.btn-danger.disabled,\n.btn-default[disabled],\n.btn-primary[disabled],\n.btn-success[disabled],\n.btn-info[disabled],\n.btn-warning[disabled],\n.btn-danger[disabled],\nfieldset[disabled] .btn-default,\nfieldset[disabled] .btn-primary,\nfieldset[disabled] .btn-success,\nfieldset[disabled] .btn-info,\nfieldset[disabled] .btn-warning,\nfieldset[disabled] .btn-danger {\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n.btn-default .badge,\n.btn-primary .badge,\n.btn-success .badge,\n.btn-info .badge,\n.btn-warning .badge,\n.btn-danger .badge {\n text-shadow: none;\n}\n.btn:active,\n.btn.active {\n background-image: none;\n}\n.btn-default {\n background-image: -webkit-linear-gradient(top, #ffffff 0%, #e0e0e0 100%);\n background-image: -o-linear-gradient(top, #ffffff 0%, #e0e0e0 100%);\n background-image: linear-gradient(to bottom, #ffffff 0%, #e0e0e0 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #dbdbdb;\n text-shadow: 0 1px 0 #fff;\n border-color: #ccc;\n}\n.btn-default:hover,\n.btn-default:focus {\n background-color: #e0e0e0;\n background-position: 0 -15px;\n}\n.btn-default:active,\n.btn-default.active {\n background-color: #e0e0e0;\n border-color: #dbdbdb;\n}\n.btn-default.disabled,\n.btn-default[disabled],\nfieldset[disabled] .btn-default,\n.btn-default.disabled:hover,\n.btn-default[disabled]:hover,\nfieldset[disabled] .btn-default:hover,\n.btn-default.disabled:focus,\n.btn-default[disabled]:focus,\nfieldset[disabled] .btn-default:focus,\n.btn-default.disabled.focus,\n.btn-default[disabled].focus,\nfieldset[disabled] .btn-default.focus,\n.btn-default.disabled:active,\n.btn-default[disabled]:active,\nfieldset[disabled] .btn-default:active,\n.btn-default.disabled.active,\n.btn-default[disabled].active,\nfieldset[disabled] .btn-default.active {\n background-color: #e0e0e0;\n background-image: none;\n}\n.btn-primary {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #265a88 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #265a88 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #265a88 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #245580;\n}\n.btn-primary:hover,\n.btn-primary:focus {\n background-color: #265a88;\n background-position: 0 -15px;\n}\n.btn-primary:active,\n.btn-primary.active {\n background-color: #265a88;\n border-color: #245580;\n}\n.btn-primary.disabled,\n.btn-primary[disabled],\nfieldset[disabled] .btn-primary,\n.btn-primary.disabled:hover,\n.btn-primary[disabled]:hover,\nfieldset[disabled] .btn-primary:hover,\n.btn-primary.disabled:focus,\n.btn-primary[disabled]:focus,\nfieldset[disabled] .btn-primary:focus,\n.btn-primary.disabled.focus,\n.btn-primary[disabled].focus,\nfieldset[disabled] .btn-primary.focus,\n.btn-primary.disabled:active,\n.btn-primary[disabled]:active,\nfieldset[disabled] .btn-primary:active,\n.btn-primary.disabled.active,\n.btn-primary[disabled].active,\nfieldset[disabled] .btn-primary.active {\n background-color: #265a88;\n background-image: none;\n}\n.btn-success {\n background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%);\n background-image: -o-linear-gradient(top, #5cb85c 0%, #419641 100%);\n background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #3e8f3e;\n}\n.btn-success:hover,\n.btn-success:focus {\n background-color: #419641;\n background-position: 0 -15px;\n}\n.btn-success:active,\n.btn-success.active {\n background-color: #419641;\n border-color: #3e8f3e;\n}\n.btn-success.disabled,\n.btn-success[disabled],\nfieldset[disabled] .btn-success,\n.btn-success.disabled:hover,\n.btn-success[disabled]:hover,\nfieldset[disabled] .btn-success:hover,\n.btn-success.disabled:focus,\n.btn-success[disabled]:focus,\nfieldset[disabled] .btn-success:focus,\n.btn-success.disabled.focus,\n.btn-success[disabled].focus,\nfieldset[disabled] .btn-success.focus,\n.btn-success.disabled:active,\n.btn-success[disabled]:active,\nfieldset[disabled] .btn-success:active,\n.btn-success.disabled.active,\n.btn-success[disabled].active,\nfieldset[disabled] .btn-success.active {\n background-color: #419641;\n background-image: none;\n}\n.btn-info {\n background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);\n background-image: -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);\n background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #28a4c9;\n}\n.btn-info:hover,\n.btn-info:focus {\n background-color: #2aabd2;\n background-position: 0 -15px;\n}\n.btn-info:active,\n.btn-info.active {\n background-color: #2aabd2;\n border-color: #28a4c9;\n}\n.btn-info.disabled,\n.btn-info[disabled],\nfieldset[disabled] .btn-info,\n.btn-info.disabled:hover,\n.btn-info[disabled]:hover,\nfieldset[disabled] .btn-info:hover,\n.btn-info.disabled:focus,\n.btn-info[disabled]:focus,\nfieldset[disabled] .btn-info:focus,\n.btn-info.disabled.focus,\n.btn-info[disabled].focus,\nfieldset[disabled] .btn-info.focus,\n.btn-info.disabled:active,\n.btn-info[disabled]:active,\nfieldset[disabled] .btn-info:active,\n.btn-info.disabled.active,\n.btn-info[disabled].active,\nfieldset[disabled] .btn-info.active {\n background-color: #2aabd2;\n background-image: none;\n}\n.btn-warning {\n background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);\n background-image: -o-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);\n background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #e38d13;\n}\n.btn-warning:hover,\n.btn-warning:focus {\n background-color: #eb9316;\n background-position: 0 -15px;\n}\n.btn-warning:active,\n.btn-warning.active {\n background-color: #eb9316;\n border-color: #e38d13;\n}\n.btn-warning.disabled,\n.btn-warning[disabled],\nfieldset[disabled] .btn-warning,\n.btn-warning.disabled:hover,\n.btn-warning[disabled]:hover,\nfieldset[disabled] .btn-warning:hover,\n.btn-warning.disabled:focus,\n.btn-warning[disabled]:focus,\nfieldset[disabled] .btn-warning:focus,\n.btn-warning.disabled.focus,\n.btn-warning[disabled].focus,\nfieldset[disabled] .btn-warning.focus,\n.btn-warning.disabled:active,\n.btn-warning[disabled]:active,\nfieldset[disabled] .btn-warning:active,\n.btn-warning.disabled.active,\n.btn-warning[disabled].active,\nfieldset[disabled] .btn-warning.active {\n background-color: #eb9316;\n background-image: none;\n}\n.btn-danger {\n background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%);\n background-image: -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%);\n background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #b92c28;\n}\n.btn-danger:hover,\n.btn-danger:focus {\n background-color: #c12e2a;\n background-position: 0 -15px;\n}\n.btn-danger:active,\n.btn-danger.active {\n background-color: #c12e2a;\n border-color: #b92c28;\n}\n.btn-danger.disabled,\n.btn-danger[disabled],\nfieldset[disabled] .btn-danger,\n.btn-danger.disabled:hover,\n.btn-danger[disabled]:hover,\nfieldset[disabled] .btn-danger:hover,\n.btn-danger.disabled:focus,\n.btn-danger[disabled]:focus,\nfieldset[disabled] .btn-danger:focus,\n.btn-danger.disabled.focus,\n.btn-danger[disabled].focus,\nfieldset[disabled] .btn-danger.focus,\n.btn-danger.disabled:active,\n.btn-danger[disabled]:active,\nfieldset[disabled] .btn-danger:active,\n.btn-danger.disabled.active,\n.btn-danger[disabled].active,\nfieldset[disabled] .btn-danger.active {\n background-color: #c12e2a;\n background-image: none;\n}\n.thumbnail,\n.img-thumbnail {\n -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n}\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);\n background-color: #e8e8e8;\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n background-color: #2e6da4;\n}\n.navbar-default {\n background-image: -webkit-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);\n background-image: -o-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);\n background-image: linear-gradient(to bottom, #ffffff 0%, #f8f8f8 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);\n}\n.navbar-default .navbar-nav > .open > a,\n.navbar-default .navbar-nav > .active > a {\n background-image: -webkit-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);\n background-image: -o-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);\n background-image: linear-gradient(to bottom, #dbdbdb 0%, #e2e2e2 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);\n -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);\n}\n.navbar-brand,\n.navbar-nav > li > a {\n text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);\n}\n.navbar-inverse {\n background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222222 100%);\n background-image: -o-linear-gradient(top, #3c3c3c 0%, #222222 100%);\n background-image: linear-gradient(to bottom, #3c3c3c 0%, #222222 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n border-radius: 4px;\n}\n.navbar-inverse .navbar-nav > .open > a,\n.navbar-inverse .navbar-nav > .active > a {\n background-image: -webkit-linear-gradient(top, #080808 0%, #0f0f0f 100%);\n background-image: -o-linear-gradient(top, #080808 0%, #0f0f0f 100%);\n background-image: linear-gradient(to bottom, #080808 0%, #0f0f0f 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);\n -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);\n box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);\n}\n.navbar-inverse .navbar-brand,\n.navbar-inverse .navbar-nav > li > a {\n text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);\n}\n.navbar-static-top,\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n border-radius: 0;\n}\n@media (max-width: 767px) {\n .navbar .navbar-nav .open .dropdown-menu > .active > a,\n .navbar .navbar-nav .open .dropdown-menu > .active > a:hover,\n .navbar .navbar-nav .open .dropdown-menu > .active > a:focus {\n color: #fff;\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n }\n}\n.alert {\n text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);\n}\n.alert-success {\n background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);\n background-image: -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);\n background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);\n border-color: #b2dba1;\n}\n.alert-info {\n background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%);\n background-image: -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%);\n background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);\n border-color: #9acfea;\n}\n.alert-warning {\n background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);\n background-image: -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);\n background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);\n border-color: #f5e79e;\n}\n.alert-danger {\n background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);\n background-image: -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);\n background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);\n border-color: #dca7a7;\n}\n.progress {\n background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);\n background-image: -o-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);\n background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);\n}\n.progress-bar {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #286090 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #286090 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #286090 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);\n}\n.progress-bar-success {\n background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%);\n background-image: -o-linear-gradient(top, #5cb85c 0%, #449d44 100%);\n background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);\n}\n.progress-bar-info {\n background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);\n background-image: -o-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);\n background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);\n}\n.progress-bar-warning {\n background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);\n background-image: -o-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);\n background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);\n}\n.progress-bar-danger {\n background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%);\n background-image: -o-linear-gradient(top, #d9534f 0%, #c9302c 100%);\n background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);\n}\n.progress-bar-striped {\n 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);\n 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);\n 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);\n}\n.list-group {\n border-radius: 4px;\n -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n text-shadow: 0 -1px 0 #286090;\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2b669a 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2b669a 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2b669a 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);\n border-color: #2b669a;\n}\n.list-group-item.active .badge,\n.list-group-item.active:hover .badge,\n.list-group-item.active:focus .badge {\n text-shadow: none;\n}\n.panel {\n -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);\n box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);\n}\n.panel-default > .panel-heading {\n background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);\n}\n.panel-primary > .panel-heading {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n}\n.panel-success > .panel-heading {\n background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);\n background-image: -o-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);\n background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);\n}\n.panel-info > .panel-heading {\n background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);\n background-image: -o-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);\n background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);\n}\n.panel-warning > .panel-heading {\n background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);\n background-image: -o-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);\n background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);\n}\n.panel-danger > .panel-heading {\n background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%);\n background-image: -o-linear-gradient(top, #f2dede 0%, #ebcccc 100%);\n background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);\n}\n.well {\n background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);\n background-image: -o-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);\n background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);\n border-color: #dcdcdc;\n -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);\n box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);\n}\n/*# sourceMappingURL=bootstrap-theme.css.map */","/*!\n * Bootstrap v3.3.5 (http://getbootstrap.com)\n * Copyright 2011-2015 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n\n//\n// Load core variables and mixins\n// --------------------------------------------------\n\n@import \"variables.less\";\n@import \"mixins.less\";\n\n\n//\n// Buttons\n// --------------------------------------------------\n\n// Common styles\n.btn-default,\n.btn-primary,\n.btn-success,\n.btn-info,\n.btn-warning,\n.btn-danger {\n text-shadow: 0 -1px 0 rgba(0,0,0,.2);\n @shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 1px rgba(0,0,0,.075);\n .box-shadow(@shadow);\n\n // Reset the shadow\n &:active,\n &.active {\n .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n }\n\n &.disabled,\n &[disabled],\n fieldset[disabled] & {\n .box-shadow(none);\n }\n\n .badge {\n text-shadow: none;\n }\n}\n\n// Mixin for generating new styles\n.btn-styles(@btn-color: #555) {\n #gradient > .vertical(@start-color: @btn-color; @end-color: darken(@btn-color, 12%));\n .reset-filter(); // Disable gradients for IE9 because filter bleeds through rounded corners; see https://github.com/twbs/bootstrap/issues/10620\n background-repeat: repeat-x;\n border-color: darken(@btn-color, 14%);\n\n &:hover,\n &:focus {\n background-color: darken(@btn-color, 12%);\n background-position: 0 -15px;\n }\n\n &:active,\n &.active {\n background-color: darken(@btn-color, 12%);\n border-color: darken(@btn-color, 14%);\n }\n\n &.disabled,\n &[disabled],\n fieldset[disabled] & {\n &,\n &:hover,\n &:focus,\n &.focus,\n &:active,\n &.active {\n background-color: darken(@btn-color, 12%);\n background-image: none;\n }\n }\n}\n\n// Common styles\n.btn {\n // Remove the gradient for the pressed/active state\n &:active,\n &.active {\n background-image: none;\n }\n}\n\n// Apply the mixin to the buttons\n.btn-default { .btn-styles(@btn-default-bg); text-shadow: 0 1px 0 #fff; border-color: #ccc; }\n.btn-primary { .btn-styles(@btn-primary-bg); }\n.btn-success { .btn-styles(@btn-success-bg); }\n.btn-info { .btn-styles(@btn-info-bg); }\n.btn-warning { .btn-styles(@btn-warning-bg); }\n.btn-danger { .btn-styles(@btn-danger-bg); }\n\n\n//\n// Images\n// --------------------------------------------------\n\n.thumbnail,\n.img-thumbnail {\n .box-shadow(0 1px 2px rgba(0,0,0,.075));\n}\n\n\n//\n// Dropdowns\n// --------------------------------------------------\n\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n #gradient > .vertical(@start-color: @dropdown-link-hover-bg; @end-color: darken(@dropdown-link-hover-bg, 5%));\n background-color: darken(@dropdown-link-hover-bg, 5%);\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n #gradient > .vertical(@start-color: @dropdown-link-active-bg; @end-color: darken(@dropdown-link-active-bg, 5%));\n background-color: darken(@dropdown-link-active-bg, 5%);\n}\n\n\n//\n// Navbar\n// --------------------------------------------------\n\n// Default navbar\n.navbar-default {\n #gradient > .vertical(@start-color: lighten(@navbar-default-bg, 10%); @end-color: @navbar-default-bg);\n .reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered\n border-radius: @navbar-border-radius;\n @shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 5px rgba(0,0,0,.075);\n .box-shadow(@shadow);\n\n .navbar-nav > .open > a,\n .navbar-nav > .active > a {\n #gradient > .vertical(@start-color: darken(@navbar-default-link-active-bg, 5%); @end-color: darken(@navbar-default-link-active-bg, 2%));\n .box-shadow(inset 0 3px 9px rgba(0,0,0,.075));\n }\n}\n.navbar-brand,\n.navbar-nav > li > a {\n text-shadow: 0 1px 0 rgba(255,255,255,.25);\n}\n\n// Inverted navbar\n.navbar-inverse {\n #gradient > .vertical(@start-color: lighten(@navbar-inverse-bg, 10%); @end-color: @navbar-inverse-bg);\n .reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered; see https://github.com/twbs/bootstrap/issues/10257\n border-radius: @navbar-border-radius;\n .navbar-nav > .open > a,\n .navbar-nav > .active > a {\n #gradient > .vertical(@start-color: @navbar-inverse-link-active-bg; @end-color: lighten(@navbar-inverse-link-active-bg, 2.5%));\n .box-shadow(inset 0 3px 9px rgba(0,0,0,.25));\n }\n\n .navbar-brand,\n .navbar-nav > li > a {\n text-shadow: 0 -1px 0 rgba(0,0,0,.25);\n }\n}\n\n// Undo rounded corners in static and fixed navbars\n.navbar-static-top,\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n border-radius: 0;\n}\n\n// Fix active state of dropdown items in collapsed mode\n@media (max-width: @grid-float-breakpoint-max) {\n .navbar .navbar-nav .open .dropdown-menu > .active > a {\n &,\n &:hover,\n &:focus {\n color: #fff;\n #gradient > .vertical(@start-color: @dropdown-link-active-bg; @end-color: darken(@dropdown-link-active-bg, 5%));\n }\n }\n}\n\n\n//\n// Alerts\n// --------------------------------------------------\n\n// Common styles\n.alert {\n text-shadow: 0 1px 0 rgba(255,255,255,.2);\n @shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 1px 2px rgba(0,0,0,.05);\n .box-shadow(@shadow);\n}\n\n// Mixin for generating new styles\n.alert-styles(@color) {\n #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 7.5%));\n border-color: darken(@color, 15%);\n}\n\n// Apply the mixin to the alerts\n.alert-success { .alert-styles(@alert-success-bg); }\n.alert-info { .alert-styles(@alert-info-bg); }\n.alert-warning { .alert-styles(@alert-warning-bg); }\n.alert-danger { .alert-styles(@alert-danger-bg); }\n\n\n//\n// Progress bars\n// --------------------------------------------------\n\n// Give the progress background some depth\n.progress {\n #gradient > .vertical(@start-color: darken(@progress-bg, 4%); @end-color: @progress-bg)\n}\n\n// Mixin for generating new styles\n.progress-bar-styles(@color) {\n #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 10%));\n}\n\n// Apply the mixin to the progress bars\n.progress-bar { .progress-bar-styles(@progress-bar-bg); }\n.progress-bar-success { .progress-bar-styles(@progress-bar-success-bg); }\n.progress-bar-info { .progress-bar-styles(@progress-bar-info-bg); }\n.progress-bar-warning { .progress-bar-styles(@progress-bar-warning-bg); }\n.progress-bar-danger { .progress-bar-styles(@progress-bar-danger-bg); }\n\n// Reset the striped class because our mixins don't do multiple gradients and\n// the above custom styles override the new `.progress-bar-striped` in v3.2.0.\n.progress-bar-striped {\n #gradient > .striped();\n}\n\n\n//\n// List groups\n// --------------------------------------------------\n\n.list-group {\n border-radius: @border-radius-base;\n .box-shadow(0 1px 2px rgba(0,0,0,.075));\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n text-shadow: 0 -1px 0 darken(@list-group-active-bg, 10%);\n #gradient > .vertical(@start-color: @list-group-active-bg; @end-color: darken(@list-group-active-bg, 7.5%));\n border-color: darken(@list-group-active-border, 7.5%);\n\n .badge {\n text-shadow: none;\n }\n}\n\n\n//\n// Panels\n// --------------------------------------------------\n\n// Common styles\n.panel {\n .box-shadow(0 1px 2px rgba(0,0,0,.05));\n}\n\n// Mixin for generating new styles\n.panel-heading-styles(@color) {\n #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 5%));\n}\n\n// Apply the mixin to the panel headings only\n.panel-default > .panel-heading { .panel-heading-styles(@panel-default-heading-bg); }\n.panel-primary > .panel-heading { .panel-heading-styles(@panel-primary-heading-bg); }\n.panel-success > .panel-heading { .panel-heading-styles(@panel-success-heading-bg); }\n.panel-info > .panel-heading { .panel-heading-styles(@panel-info-heading-bg); }\n.panel-warning > .panel-heading { .panel-heading-styles(@panel-warning-heading-bg); }\n.panel-danger > .panel-heading { .panel-heading-styles(@panel-danger-heading-bg); }\n\n\n//\n// Wells\n// --------------------------------------------------\n\n.well {\n #gradient > .vertical(@start-color: darken(@well-bg, 5%); @end-color: @well-bg);\n border-color: darken(@well-bg, 10%);\n @shadow: inset 0 1px 3px rgba(0,0,0,.05), 0 1px 0 rgba(255,255,255,.1);\n .box-shadow(@shadow);\n}\n","// Vendor Prefixes\n//\n// All vendor mixins are deprecated as of v3.2.0 due to the introduction of\n// Autoprefixer in our Gruntfile. They will be removed in v4.\n\n// - Animations\n// - Backface visibility\n// - Box shadow\n// - Box sizing\n// - Content columns\n// - Hyphens\n// - Placeholder text\n// - Transformations\n// - Transitions\n// - User Select\n\n\n// Animations\n.animation(@animation) {\n -webkit-animation: @animation;\n -o-animation: @animation;\n animation: @animation;\n}\n.animation-name(@name) {\n -webkit-animation-name: @name;\n animation-name: @name;\n}\n.animation-duration(@duration) {\n -webkit-animation-duration: @duration;\n animation-duration: @duration;\n}\n.animation-timing-function(@timing-function) {\n -webkit-animation-timing-function: @timing-function;\n animation-timing-function: @timing-function;\n}\n.animation-delay(@delay) {\n -webkit-animation-delay: @delay;\n animation-delay: @delay;\n}\n.animation-iteration-count(@iteration-count) {\n -webkit-animation-iteration-count: @iteration-count;\n animation-iteration-count: @iteration-count;\n}\n.animation-direction(@direction) {\n -webkit-animation-direction: @direction;\n animation-direction: @direction;\n}\n.animation-fill-mode(@fill-mode) {\n -webkit-animation-fill-mode: @fill-mode;\n animation-fill-mode: @fill-mode;\n}\n\n// Backface visibility\n// Prevent browsers from flickering when using CSS 3D transforms.\n// Default value is `visible`, but can be changed to `hidden`\n\n.backface-visibility(@visibility){\n -webkit-backface-visibility: @visibility;\n -moz-backface-visibility: @visibility;\n backface-visibility: @visibility;\n}\n\n// Drop shadows\n//\n// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's\n// supported browsers that have box shadow capabilities now support it.\n\n.box-shadow(@shadow) {\n -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n box-shadow: @shadow;\n}\n\n// Box sizing\n.box-sizing(@boxmodel) {\n -webkit-box-sizing: @boxmodel;\n -moz-box-sizing: @boxmodel;\n box-sizing: @boxmodel;\n}\n\n// CSS3 Content Columns\n.content-columns(@column-count; @column-gap: @grid-gutter-width) {\n -webkit-column-count: @column-count;\n -moz-column-count: @column-count;\n column-count: @column-count;\n -webkit-column-gap: @column-gap;\n -moz-column-gap: @column-gap;\n column-gap: @column-gap;\n}\n\n// Optional hyphenation\n.hyphens(@mode: auto) {\n word-wrap: break-word;\n -webkit-hyphens: @mode;\n -moz-hyphens: @mode;\n -ms-hyphens: @mode; // IE10+\n -o-hyphens: @mode;\n hyphens: @mode;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n // Firefox\n &::-moz-placeholder {\n color: @color;\n opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526\n }\n &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+\n &::-webkit-input-placeholder { color: @color; } // Safari and Chrome\n}\n\n// Transformations\n.scale(@ratio) {\n -webkit-transform: scale(@ratio);\n -ms-transform: scale(@ratio); // IE9 only\n -o-transform: scale(@ratio);\n transform: scale(@ratio);\n}\n.scale(@ratioX; @ratioY) {\n -webkit-transform: scale(@ratioX, @ratioY);\n -ms-transform: scale(@ratioX, @ratioY); // IE9 only\n -o-transform: scale(@ratioX, @ratioY);\n transform: scale(@ratioX, @ratioY);\n}\n.scaleX(@ratio) {\n -webkit-transform: scaleX(@ratio);\n -ms-transform: scaleX(@ratio); // IE9 only\n -o-transform: scaleX(@ratio);\n transform: scaleX(@ratio);\n}\n.scaleY(@ratio) {\n -webkit-transform: scaleY(@ratio);\n -ms-transform: scaleY(@ratio); // IE9 only\n -o-transform: scaleY(@ratio);\n transform: scaleY(@ratio);\n}\n.skew(@x; @y) {\n -webkit-transform: skewX(@x) skewY(@y);\n -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+\n -o-transform: skewX(@x) skewY(@y);\n transform: skewX(@x) skewY(@y);\n}\n.translate(@x; @y) {\n -webkit-transform: translate(@x, @y);\n -ms-transform: translate(@x, @y); // IE9 only\n -o-transform: translate(@x, @y);\n transform: translate(@x, @y);\n}\n.translate3d(@x; @y; @z) {\n -webkit-transform: translate3d(@x, @y, @z);\n transform: translate3d(@x, @y, @z);\n}\n.rotate(@degrees) {\n -webkit-transform: rotate(@degrees);\n -ms-transform: rotate(@degrees); // IE9 only\n -o-transform: rotate(@degrees);\n transform: rotate(@degrees);\n}\n.rotateX(@degrees) {\n -webkit-transform: rotateX(@degrees);\n -ms-transform: rotateX(@degrees); // IE9 only\n -o-transform: rotateX(@degrees);\n transform: rotateX(@degrees);\n}\n.rotateY(@degrees) {\n -webkit-transform: rotateY(@degrees);\n -ms-transform: rotateY(@degrees); // IE9 only\n -o-transform: rotateY(@degrees);\n transform: rotateY(@degrees);\n}\n.perspective(@perspective) {\n -webkit-perspective: @perspective;\n -moz-perspective: @perspective;\n perspective: @perspective;\n}\n.perspective-origin(@perspective) {\n -webkit-perspective-origin: @perspective;\n -moz-perspective-origin: @perspective;\n perspective-origin: @perspective;\n}\n.transform-origin(@origin) {\n -webkit-transform-origin: @origin;\n -moz-transform-origin: @origin;\n -ms-transform-origin: @origin; // IE9 only\n transform-origin: @origin;\n}\n\n\n// Transitions\n\n.transition(@transition) {\n -webkit-transition: @transition;\n -o-transition: @transition;\n transition: @transition;\n}\n.transition-property(@transition-property) {\n -webkit-transition-property: @transition-property;\n transition-property: @transition-property;\n}\n.transition-delay(@transition-delay) {\n -webkit-transition-delay: @transition-delay;\n transition-delay: @transition-delay;\n}\n.transition-duration(@transition-duration) {\n -webkit-transition-duration: @transition-duration;\n transition-duration: @transition-duration;\n}\n.transition-timing-function(@timing-function) {\n -webkit-transition-timing-function: @timing-function;\n transition-timing-function: @timing-function;\n}\n.transition-transform(@transition) {\n -webkit-transition: -webkit-transform @transition;\n -moz-transition: -moz-transform @transition;\n -o-transition: -o-transform @transition;\n transition: transform @transition;\n}\n\n\n// User select\n// For selecting text on the page\n\n.user-select(@select) {\n -webkit-user-select: @select;\n -moz-user-select: @select;\n -ms-user-select: @select; // IE10+\n user-select: @select;\n}\n","// Gradients\n\n#gradient {\n\n // Horizontal gradient, from left to right\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Opera 12\n background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n // Vertical gradient, from top to bottom\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Opera 12\n background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {\n background-repeat: repeat-x;\n background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(@deg, @start-color, @end-color); // Opera 12\n background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n }\n .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: -o-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-image: -o-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .radial(@inner-color: #555; @outer-color: #333) {\n background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);\n background-image: radial-gradient(circle, @inner-color, @outer-color);\n background-repeat: no-repeat;\n }\n .striped(@color: rgba(255,255,255,.15); @angle: 45deg) {\n background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n }\n}\n","// Reset filters for IE\n//\n// When you need to remove a gradient background, do not forget to use this to reset\n// the IE filter for IE9 and below.\n\n.reset-filter() {\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(enabled = false)\"));\n}\n"]}
--------------------------------------------------------------------------------
/src/main/webapp/static/bootstrap/js/bootstrap.js:
--------------------------------------------------------------------------------
1 | /*!
2 | * Bootstrap v3.3.5 (http://getbootstrap.com)
3 | * Copyright 2011-2015 Twitter, Inc.
4 | * Licensed under the MIT license
5 | */
6 |
7 | if (typeof jQuery === 'undefined') {
8 | throw new Error('Bootstrap\'s JavaScript requires jQuery')
9 | }
10 |
11 | +function ($) {
12 | 'use strict';
13 | var version = $.fn.jquery.split(' ')[0].split('.')
14 | if ((version[0] < 2 && version[1] < 9) || (version[0] == 1 && version[1] == 9 && version[2] < 1)) {
15 | throw new Error('Bootstrap\'s JavaScript requires jQuery version 1.9.1 or higher')
16 | }
17 | }(jQuery);
18 |
19 | /* ========================================================================
20 | * Bootstrap: transition.js v3.3.5
21 | * http://getbootstrap.com/javascript/#transitions
22 | * ========================================================================
23 | * Copyright 2011-2015 Twitter, Inc.
24 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
25 | * ======================================================================== */
26 |
27 |
28 | +function ($) {
29 | 'use strict';
30 |
31 | // CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/)
32 | // ============================================================
33 |
34 | function transitionEnd() {
35 | var el = document.createElement('bootstrap')
36 |
37 | var transEndEventNames = {
38 | WebkitTransition : 'webkitTransitionEnd',
39 | MozTransition : 'transitionend',
40 | OTransition : 'oTransitionEnd otransitionend',
41 | transition : 'transitionend'
42 | }
43 |
44 | for (var name in transEndEventNames) {
45 | if (el.style[name] !== undefined) {
46 | return { end: transEndEventNames[name] }
47 | }
48 | }
49 |
50 | return false // explicit for ie8 ( ._.)
51 | }
52 |
53 | // http://blog.alexmaccaw.com/css-transitions
54 | $.fn.emulateTransitionEnd = function (duration) {
55 | var called = false
56 | var $el = this
57 | $(this).one('bsTransitionEnd', function () { called = true })
58 | var callback = function () { if (!called) $($el).trigger($.support.transition.end) }
59 | setTimeout(callback, duration)
60 | return this
61 | }
62 |
63 | $(function () {
64 | $.support.transition = transitionEnd()
65 |
66 | if (!$.support.transition) return
67 |
68 | $.event.special.bsTransitionEnd = {
69 | bindType: $.support.transition.end,
70 | delegateType: $.support.transition.end,
71 | handle: function (e) {
72 | if ($(e.target).is(this)) return e.handleObj.handler.apply(this, arguments)
73 | }
74 | }
75 | })
76 |
77 | }(jQuery);
78 |
79 | /* ========================================================================
80 | * Bootstrap: alert.js v3.3.5
81 | * http://getbootstrap.com/javascript/#alerts
82 | * ========================================================================
83 | * Copyright 2011-2015 Twitter, Inc.
84 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
85 | * ======================================================================== */
86 |
87 |
88 | +function ($) {
89 | 'use strict';
90 |
91 | // ALERT CLASS DEFINITION
92 | // ======================
93 |
94 | var dismiss = '[data-dismiss="alert"]'
95 | var Alert = function (el) {
96 | $(el).on('click', dismiss, this.close)
97 | }
98 |
99 | Alert.VERSION = '3.3.5'
100 |
101 | Alert.TRANSITION_DURATION = 150
102 |
103 | Alert.prototype.close = function (e) {
104 | var $this = $(this)
105 | var selector = $this.attr('data-target')
106 |
107 | if (!selector) {
108 | selector = $this.attr('href')
109 | selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7
110 | }
111 |
112 | var $parent = $(selector)
113 |
114 | if (e) e.preventDefault()
115 |
116 | if (!$parent.length) {
117 | $parent = $this.closest('.alert')
118 | }
119 |
120 | $parent.trigger(e = $.Event('close.bs.alert'))
121 |
122 | if (e.isDefaultPrevented()) return
123 |
124 | $parent.removeClass('in')
125 |
126 | function removeElement() {
127 | // detach from parent, fire event then clean up data
128 | $parent.detach().trigger('closed.bs.alert').remove()
129 | }
130 |
131 | $.support.transition && $parent.hasClass('fade') ?
132 | $parent
133 | .one('bsTransitionEnd', removeElement)
134 | .emulateTransitionEnd(Alert.TRANSITION_DURATION) :
135 | removeElement()
136 | }
137 |
138 |
139 | // ALERT PLUGIN DEFINITION
140 | // =======================
141 |
142 | function Plugin(option) {
143 | return this.each(function () {
144 | var $this = $(this)
145 | var data = $this.data('bs.alert')
146 |
147 | if (!data) $this.data('bs.alert', (data = new Alert(this)))
148 | if (typeof option == 'string') data[option].call($this)
149 | })
150 | }
151 |
152 | var old = $.fn.alert
153 |
154 | $.fn.alert = Plugin
155 | $.fn.alert.Constructor = Alert
156 |
157 |
158 | // ALERT NO CONFLICT
159 | // =================
160 |
161 | $.fn.alert.noConflict = function () {
162 | $.fn.alert = old
163 | return this
164 | }
165 |
166 |
167 | // ALERT DATA-API
168 | // ==============
169 |
170 | $(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close)
171 |
172 | }(jQuery);
173 |
174 | /* ========================================================================
175 | * Bootstrap: button.js v3.3.5
176 | * http://getbootstrap.com/javascript/#buttons
177 | * ========================================================================
178 | * Copyright 2011-2015 Twitter, Inc.
179 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
180 | * ======================================================================== */
181 |
182 |
183 | +function ($) {
184 | 'use strict';
185 |
186 | // BUTTON PUBLIC CLASS DEFINITION
187 | // ==============================
188 |
189 | var Button = function (element, options) {
190 | this.$element = $(element)
191 | this.options = $.extend({}, Button.DEFAULTS, options)
192 | this.isLoading = false
193 | }
194 |
195 | Button.VERSION = '3.3.5'
196 |
197 | Button.DEFAULTS = {
198 | loadingText: 'loading...'
199 | }
200 |
201 | Button.prototype.setState = function (state) {
202 | var d = 'disabled'
203 | var $el = this.$element
204 | var val = $el.is('input') ? 'val' : 'html'
205 | var data = $el.data()
206 |
207 | state += 'Text'
208 |
209 | if (data.resetText == null) $el.data('resetText', $el[val]())
210 |
211 | // push to event loop to allow forms to submit
212 | setTimeout($.proxy(function () {
213 | $el[val](data[state] == null ? this.options[state] : data[state])
214 |
215 | if (state == 'loadingText') {
216 | this.isLoading = true
217 | $el.addClass(d).attr(d, d)
218 | } else if (this.isLoading) {
219 | this.isLoading = false
220 | $el.removeClass(d).removeAttr(d)
221 | }
222 | }, this), 0)
223 | }
224 |
225 | Button.prototype.toggle = function () {
226 | var changed = true
227 | var $parent = this.$element.closest('[data-toggle="buttons"]')
228 |
229 | if ($parent.length) {
230 | var $input = this.$element.find('input')
231 | if ($input.prop('type') == 'radio') {
232 | if ($input.prop('checked')) changed = false
233 | $parent.find('.active').removeClass('active')
234 | this.$element.addClass('active')
235 | } else if ($input.prop('type') == 'checkbox') {
236 | if (($input.prop('checked')) !== this.$element.hasClass('active')) changed = false
237 | this.$element.toggleClass('active')
238 | }
239 | $input.prop('checked', this.$element.hasClass('active'))
240 | if (changed) $input.trigger('change')
241 | } else {
242 | this.$element.attr('aria-pressed', !this.$element.hasClass('active'))
243 | this.$element.toggleClass('active')
244 | }
245 | }
246 |
247 |
248 | // BUTTON PLUGIN DEFINITION
249 | // ========================
250 |
251 | function Plugin(option) {
252 | return this.each(function () {
253 | var $this = $(this)
254 | var data = $this.data('bs.button')
255 | var options = typeof option == 'object' && option
256 |
257 | if (!data) $this.data('bs.button', (data = new Button(this, options)))
258 |
259 | if (option == 'toggle') data.toggle()
260 | else if (option) data.setState(option)
261 | })
262 | }
263 |
264 | var old = $.fn.button
265 |
266 | $.fn.button = Plugin
267 | $.fn.button.Constructor = Button
268 |
269 |
270 | // BUTTON NO CONFLICT
271 | // ==================
272 |
273 | $.fn.button.noConflict = function () {
274 | $.fn.button = old
275 | return this
276 | }
277 |
278 |
279 | // BUTTON DATA-API
280 | // ===============
281 |
282 | $(document)
283 | .on('click.bs.button.data-api', '[data-toggle^="button"]', function (e) {
284 | var $btn = $(e.target)
285 | if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn')
286 | Plugin.call($btn, 'toggle')
287 | if (!($(e.target).is('input[type="radio"]') || $(e.target).is('input[type="checkbox"]'))) e.preventDefault()
288 | })
289 | .on('focus.bs.button.data-api blur.bs.button.data-api', '[data-toggle^="button"]', function (e) {
290 | $(e.target).closest('.btn').toggleClass('focus', /^focus(in)?$/.test(e.type))
291 | })
292 |
293 | }(jQuery);
294 |
295 | /* ========================================================================
296 | * Bootstrap: carousel.js v3.3.5
297 | * http://getbootstrap.com/javascript/#carousel
298 | * ========================================================================
299 | * Copyright 2011-2015 Twitter, Inc.
300 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
301 | * ======================================================================== */
302 |
303 |
304 | +function ($) {
305 | 'use strict';
306 |
307 | // CAROUSEL CLASS DEFINITION
308 | // =========================
309 |
310 | var Carousel = function (element, options) {
311 | this.$element = $(element)
312 | this.$indicators = this.$element.find('.carousel-indicators')
313 | this.options = options
314 | this.paused = null
315 | this.sliding = null
316 | this.interval = null
317 | this.$active = null
318 | this.$items = null
319 |
320 | this.options.keyboard && this.$element.on('keydown.bs.carousel', $.proxy(this.keydown, this))
321 |
322 | this.options.pause == 'hover' && !('ontouchstart' in document.documentElement) && this.$element
323 | .on('mouseenter.bs.carousel', $.proxy(this.pause, this))
324 | .on('mouseleave.bs.carousel', $.proxy(this.cycle, this))
325 | }
326 |
327 | Carousel.VERSION = '3.3.5'
328 |
329 | Carousel.TRANSITION_DURATION = 600
330 |
331 | Carousel.DEFAULTS = {
332 | interval: 5000,
333 | pause: 'hover',
334 | wrap: true,
335 | keyboard: true
336 | }
337 |
338 | Carousel.prototype.keydown = function (e) {
339 | if (/input|textarea/i.test(e.target.tagName)) return
340 | switch (e.which) {
341 | case 37: this.prev(); break
342 | case 39: this.next(); break
343 | default: return
344 | }
345 |
346 | e.preventDefault()
347 | }
348 |
349 | Carousel.prototype.cycle = function (e) {
350 | e || (this.paused = false)
351 |
352 | this.interval && clearInterval(this.interval)
353 |
354 | this.options.interval
355 | && !this.paused
356 | && (this.interval = setInterval($.proxy(this.next, this), this.options.interval))
357 |
358 | return this
359 | }
360 |
361 | Carousel.prototype.getItemIndex = function (item) {
362 | this.$items = item.parent().children('.item')
363 | return this.$items.index(item || this.$active)
364 | }
365 |
366 | Carousel.prototype.getItemForDirection = function (direction, active) {
367 | var activeIndex = this.getItemIndex(active)
368 | var willWrap = (direction == 'prev' && activeIndex === 0)
369 | || (direction == 'next' && activeIndex == (this.$items.length - 1))
370 | if (willWrap && !this.options.wrap) return active
371 | var delta = direction == 'prev' ? -1 : 1
372 | var itemIndex = (activeIndex + delta) % this.$items.length
373 | return this.$items.eq(itemIndex)
374 | }
375 |
376 | Carousel.prototype.to = function (pos) {
377 | var that = this
378 | var activeIndex = this.getItemIndex(this.$active = this.$element.find('.item.active'))
379 |
380 | if (pos > (this.$items.length - 1) || pos < 0) return
381 |
382 | if (this.sliding) return this.$element.one('slid.bs.carousel', function () { that.to(pos) }) // yes, "slid"
383 | if (activeIndex == pos) return this.pause().cycle()
384 |
385 | return this.slide(pos > activeIndex ? 'next' : 'prev', this.$items.eq(pos))
386 | }
387 |
388 | Carousel.prototype.pause = function (e) {
389 | e || (this.paused = true)
390 |
391 | if (this.$element.find('.next, .prev').length && $.support.transition) {
392 | this.$element.trigger($.support.transition.end)
393 | this.cycle(true)
394 | }
395 |
396 | this.interval = clearInterval(this.interval)
397 |
398 | return this
399 | }
400 |
401 | Carousel.prototype.next = function () {
402 | if (this.sliding) return
403 | return this.slide('next')
404 | }
405 |
406 | Carousel.prototype.prev = function () {
407 | if (this.sliding) return
408 | return this.slide('prev')
409 | }
410 |
411 | Carousel.prototype.slide = function (type, next) {
412 | var $active = this.$element.find('.item.active')
413 | var $next = next || this.getItemForDirection(type, $active)
414 | var isCycling = this.interval
415 | var direction = type == 'next' ? 'left' : 'right'
416 | var that = this
417 |
418 | if ($next.hasClass('active')) return (this.sliding = false)
419 |
420 | var relatedTarget = $next[0]
421 | var slideEvent = $.Event('slide.bs.carousel', {
422 | relatedTarget: relatedTarget,
423 | direction: direction
424 | })
425 | this.$element.trigger(slideEvent)
426 | if (slideEvent.isDefaultPrevented()) return
427 |
428 | this.sliding = true
429 |
430 | isCycling && this.pause()
431 |
432 | if (this.$indicators.length) {
433 | this.$indicators.find('.active').removeClass('active')
434 | var $nextIndicator = $(this.$indicators.children()[this.getItemIndex($next)])
435 | $nextIndicator && $nextIndicator.addClass('active')
436 | }
437 |
438 | var slidEvent = $.Event('slid.bs.carousel', { relatedTarget: relatedTarget, direction: direction }) // yes, "slid"
439 | if ($.support.transition && this.$element.hasClass('slide')) {
440 | $next.addClass(type)
441 | $next[0].offsetWidth // force reflow
442 | $active.addClass(direction)
443 | $next.addClass(direction)
444 | $active
445 | .one('bsTransitionEnd', function () {
446 | $next.removeClass([type, direction].join(' ')).addClass('active')
447 | $active.removeClass(['active', direction].join(' '))
448 | that.sliding = false
449 | setTimeout(function () {
450 | that.$element.trigger(slidEvent)
451 | }, 0)
452 | })
453 | .emulateTransitionEnd(Carousel.TRANSITION_DURATION)
454 | } else {
455 | $active.removeClass('active')
456 | $next.addClass('active')
457 | this.sliding = false
458 | this.$element.trigger(slidEvent)
459 | }
460 |
461 | isCycling && this.cycle()
462 |
463 | return this
464 | }
465 |
466 |
467 | // CAROUSEL PLUGIN DEFINITION
468 | // ==========================
469 |
470 | function Plugin(option) {
471 | return this.each(function () {
472 | var $this = $(this)
473 | var data = $this.data('bs.carousel')
474 | var options = $.extend({}, Carousel.DEFAULTS, $this.data(), typeof option == 'object' && option)
475 | var action = typeof option == 'string' ? option : options.slide
476 |
477 | if (!data) $this.data('bs.carousel', (data = new Carousel(this, options)))
478 | if (typeof option == 'number') data.to(option)
479 | else if (action) data[action]()
480 | else if (options.interval) data.pause().cycle()
481 | })
482 | }
483 |
484 | var old = $.fn.carousel
485 |
486 | $.fn.carousel = Plugin
487 | $.fn.carousel.Constructor = Carousel
488 |
489 |
490 | // CAROUSEL NO CONFLICT
491 | // ====================
492 |
493 | $.fn.carousel.noConflict = function () {
494 | $.fn.carousel = old
495 | return this
496 | }
497 |
498 |
499 | // CAROUSEL DATA-API
500 | // =================
501 |
502 | var clickHandler = function (e) {
503 | var href
504 | var $this = $(this)
505 | var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) // strip for ie7
506 | if (!$target.hasClass('carousel')) return
507 | var options = $.extend({}, $target.data(), $this.data())
508 | var slideIndex = $this.attr('data-slide-to')
509 | if (slideIndex) options.interval = false
510 |
511 | Plugin.call($target, options)
512 |
513 | if (slideIndex) {
514 | $target.data('bs.carousel').to(slideIndex)
515 | }
516 |
517 | e.preventDefault()
518 | }
519 |
520 | $(document)
521 | .on('click.bs.carousel.data-api', '[data-slide]', clickHandler)
522 | .on('click.bs.carousel.data-api', '[data-slide-to]', clickHandler)
523 |
524 | $(window).on('load', function () {
525 | $('[data-ride="carousel"]').each(function () {
526 | var $carousel = $(this)
527 | Plugin.call($carousel, $carousel.data())
528 | })
529 | })
530 |
531 | }(jQuery);
532 |
533 | /* ========================================================================
534 | * Bootstrap: collapse.js v3.3.5
535 | * http://getbootstrap.com/javascript/#collapse
536 | * ========================================================================
537 | * Copyright 2011-2015 Twitter, Inc.
538 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
539 | * ======================================================================== */
540 |
541 |
542 | +function ($) {
543 | 'use strict';
544 |
545 | // COLLAPSE PUBLIC CLASS DEFINITION
546 | // ================================
547 |
548 | var Collapse = function (element, options) {
549 | this.$element = $(element)
550 | this.options = $.extend({}, Collapse.DEFAULTS, options)
551 | this.$trigger = $('[data-toggle="collapse"][href="#' + element.id + '"],' +
552 | '[data-toggle="collapse"][data-target="#' + element.id + '"]')
553 | this.transitioning = null
554 |
555 | if (this.options.parent) {
556 | this.$parent = this.getParent()
557 | } else {
558 | this.addAriaAndCollapsedClass(this.$element, this.$trigger)
559 | }
560 |
561 | if (this.options.toggle) this.toggle()
562 | }
563 |
564 | Collapse.VERSION = '3.3.5'
565 |
566 | Collapse.TRANSITION_DURATION = 350
567 |
568 | Collapse.DEFAULTS = {
569 | toggle: true
570 | }
571 |
572 | Collapse.prototype.dimension = function () {
573 | var hasWidth = this.$element.hasClass('width')
574 | return hasWidth ? 'width' : 'height'
575 | }
576 |
577 | Collapse.prototype.show = function () {
578 | if (this.transitioning || this.$element.hasClass('in')) return
579 |
580 | var activesData
581 | var actives = this.$parent && this.$parent.children('.panel').children('.in, .collapsing')
582 |
583 | if (actives && actives.length) {
584 | activesData = actives.data('bs.collapse')
585 | if (activesData && activesData.transitioning) return
586 | }
587 |
588 | var startEvent = $.Event('show.bs.collapse')
589 | this.$element.trigger(startEvent)
590 | if (startEvent.isDefaultPrevented()) return
591 |
592 | if (actives && actives.length) {
593 | Plugin.call(actives, 'hide')
594 | activesData || actives.data('bs.collapse', null)
595 | }
596 |
597 | var dimension = this.dimension()
598 |
599 | this.$element
600 | .removeClass('collapse')
601 | .addClass('collapsing')[dimension](0)
602 | .attr('aria-expanded', true)
603 |
604 | this.$trigger
605 | .removeClass('collapsed')
606 | .attr('aria-expanded', true)
607 |
608 | this.transitioning = 1
609 |
610 | var complete = function () {
611 | this.$element
612 | .removeClass('collapsing')
613 | .addClass('collapse in')[dimension]('')
614 | this.transitioning = 0
615 | this.$element
616 | .trigger('shown.bs.collapse')
617 | }
618 |
619 | if (!$.support.transition) return complete.call(this)
620 |
621 | var scrollSize = $.camelCase(['scroll', dimension].join('-'))
622 |
623 | this.$element
624 | .one('bsTransitionEnd', $.proxy(complete, this))
625 | .emulateTransitionEnd(Collapse.TRANSITION_DURATION)[dimension](this.$element[0][scrollSize])
626 | }
627 |
628 | Collapse.prototype.hide = function () {
629 | if (this.transitioning || !this.$element.hasClass('in')) return
630 |
631 | var startEvent = $.Event('hide.bs.collapse')
632 | this.$element.trigger(startEvent)
633 | if (startEvent.isDefaultPrevented()) return
634 |
635 | var dimension = this.dimension()
636 |
637 | this.$element[dimension](this.$element[dimension]())[0].offsetHeight
638 |
639 | this.$element
640 | .addClass('collapsing')
641 | .removeClass('collapse in')
642 | .attr('aria-expanded', false)
643 |
644 | this.$trigger
645 | .addClass('collapsed')
646 | .attr('aria-expanded', false)
647 |
648 | this.transitioning = 1
649 |
650 | var complete = function () {
651 | this.transitioning = 0
652 | this.$element
653 | .removeClass('collapsing')
654 | .addClass('collapse')
655 | .trigger('hidden.bs.collapse')
656 | }
657 |
658 | if (!$.support.transition) return complete.call(this)
659 |
660 | this.$element
661 | [dimension](0)
662 | .one('bsTransitionEnd', $.proxy(complete, this))
663 | .emulateTransitionEnd(Collapse.TRANSITION_DURATION)
664 | }
665 |
666 | Collapse.prototype.toggle = function () {
667 | this[this.$element.hasClass('in') ? 'hide' : 'show']()
668 | }
669 |
670 | Collapse.prototype.getParent = function () {
671 | return $(this.options.parent)
672 | .find('[data-toggle="collapse"][data-parent="' + this.options.parent + '"]')
673 | .each($.proxy(function (i, element) {
674 | var $element = $(element)
675 | this.addAriaAndCollapsedClass(getTargetFromTrigger($element), $element)
676 | }, this))
677 | .end()
678 | }
679 |
680 | Collapse.prototype.addAriaAndCollapsedClass = function ($element, $trigger) {
681 | var isOpen = $element.hasClass('in')
682 |
683 | $element.attr('aria-expanded', isOpen)
684 | $trigger
685 | .toggleClass('collapsed', !isOpen)
686 | .attr('aria-expanded', isOpen)
687 | }
688 |
689 | function getTargetFromTrigger($trigger) {
690 | var href
691 | var target = $trigger.attr('data-target')
692 | || (href = $trigger.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') // strip for ie7
693 |
694 | return $(target)
695 | }
696 |
697 |
698 | // COLLAPSE PLUGIN DEFINITION
699 | // ==========================
700 |
701 | function Plugin(option) {
702 | return this.each(function () {
703 | var $this = $(this)
704 | var data = $this.data('bs.collapse')
705 | var options = $.extend({}, Collapse.DEFAULTS, $this.data(), typeof option == 'object' && option)
706 |
707 | if (!data && options.toggle && /show|hide/.test(option)) options.toggle = false
708 | if (!data) $this.data('bs.collapse', (data = new Collapse(this, options)))
709 | if (typeof option == 'string') data[option]()
710 | })
711 | }
712 |
713 | var old = $.fn.collapse
714 |
715 | $.fn.collapse = Plugin
716 | $.fn.collapse.Constructor = Collapse
717 |
718 |
719 | // COLLAPSE NO CONFLICT
720 | // ====================
721 |
722 | $.fn.collapse.noConflict = function () {
723 | $.fn.collapse = old
724 | return this
725 | }
726 |
727 |
728 | // COLLAPSE DATA-API
729 | // =================
730 |
731 | $(document).on('click.bs.collapse.data-api', '[data-toggle="collapse"]', function (e) {
732 | var $this = $(this)
733 |
734 | if (!$this.attr('data-target')) e.preventDefault()
735 |
736 | var $target = getTargetFromTrigger($this)
737 | var data = $target.data('bs.collapse')
738 | var option = data ? 'toggle' : $this.data()
739 |
740 | Plugin.call($target, option)
741 | })
742 |
743 | }(jQuery);
744 |
745 | /* ========================================================================
746 | * Bootstrap: dropdown.js v3.3.5
747 | * http://getbootstrap.com/javascript/#dropdowns
748 | * ========================================================================
749 | * Copyright 2011-2015 Twitter, Inc.
750 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
751 | * ======================================================================== */
752 |
753 |
754 | +function ($) {
755 | 'use strict';
756 |
757 | // DROPDOWN CLASS DEFINITION
758 | // =========================
759 |
760 | var backdrop = '.dropdown-backdrop'
761 | var toggle = '[data-toggle="dropdown"]'
762 | var Dropdown = function (element) {
763 | $(element).on('click.bs.dropdown', this.toggle)
764 | }
765 |
766 | Dropdown.VERSION = '3.3.5'
767 |
768 | function getParent($this) {
769 | var selector = $this.attr('data-target')
770 |
771 | if (!selector) {
772 | selector = $this.attr('href')
773 | selector = selector && /#[A-Za-z]/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7
774 | }
775 |
776 | var $parent = selector && $(selector)
777 |
778 | return $parent && $parent.length ? $parent : $this.parent()
779 | }
780 |
781 | function clearMenus(e) {
782 | if (e && e.which === 3) return
783 | $(backdrop).remove()
784 | $(toggle).each(function () {
785 | var $this = $(this)
786 | var $parent = getParent($this)
787 | var relatedTarget = { relatedTarget: this }
788 |
789 | if (!$parent.hasClass('open')) return
790 |
791 | if (e && e.type == 'click' && /input|textarea/i.test(e.target.tagName) && $.contains($parent[0], e.target)) return
792 |
793 | $parent.trigger(e = $.Event('hide.bs.dropdown', relatedTarget))
794 |
795 | if (e.isDefaultPrevented()) return
796 |
797 | $this.attr('aria-expanded', 'false')
798 | $parent.removeClass('open').trigger('hidden.bs.dropdown', relatedTarget)
799 | })
800 | }
801 |
802 | Dropdown.prototype.toggle = function (e) {
803 | var $this = $(this)
804 |
805 | if ($this.is('.disabled, :disabled')) return
806 |
807 | var $parent = getParent($this)
808 | var isActive = $parent.hasClass('open')
809 |
810 | clearMenus()
811 |
812 | if (!isActive) {
813 | if ('ontouchstart' in document.documentElement && !$parent.closest('.navbar-nav').length) {
814 | // if mobile we use a backdrop because click events don't delegate
815 | $(document.createElement('div'))
816 | .addClass('dropdown-backdrop')
817 | .insertAfter($(this))
818 | .on('click', clearMenus)
819 | }
820 |
821 | var relatedTarget = { relatedTarget: this }
822 | $parent.trigger(e = $.Event('show.bs.dropdown', relatedTarget))
823 |
824 | if (e.isDefaultPrevented()) return
825 |
826 | $this
827 | .trigger('focus')
828 | .attr('aria-expanded', 'true')
829 |
830 | $parent
831 | .toggleClass('open')
832 | .trigger('shown.bs.dropdown', relatedTarget)
833 | }
834 |
835 | return false
836 | }
837 |
838 | Dropdown.prototype.keydown = function (e) {
839 | if (!/(38|40|27|32)/.test(e.which) || /input|textarea/i.test(e.target.tagName)) return
840 |
841 | var $this = $(this)
842 |
843 | e.preventDefault()
844 | e.stopPropagation()
845 |
846 | if ($this.is('.disabled, :disabled')) return
847 |
848 | var $parent = getParent($this)
849 | var isActive = $parent.hasClass('open')
850 |
851 | if (!isActive && e.which != 27 || isActive && e.which == 27) {
852 | if (e.which == 27) $parent.find(toggle).trigger('focus')
853 | return $this.trigger('click')
854 | }
855 |
856 | var desc = ' li:not(.disabled):visible a'
857 | var $items = $parent.find('.dropdown-menu' + desc)
858 |
859 | if (!$items.length) return
860 |
861 | var index = $items.index(e.target)
862 |
863 | if (e.which == 38 && index > 0) index-- // up
864 | if (e.which == 40 && index < $items.length - 1) index++ // down
865 | if (!~index) index = 0
866 |
867 | $items.eq(index).trigger('focus')
868 | }
869 |
870 |
871 | // DROPDOWN PLUGIN DEFINITION
872 | // ==========================
873 |
874 | function Plugin(option) {
875 | return this.each(function () {
876 | var $this = $(this)
877 | var data = $this.data('bs.dropdown')
878 |
879 | if (!data) $this.data('bs.dropdown', (data = new Dropdown(this)))
880 | if (typeof option == 'string') data[option].call($this)
881 | })
882 | }
883 |
884 | var old = $.fn.dropdown
885 |
886 | $.fn.dropdown = Plugin
887 | $.fn.dropdown.Constructor = Dropdown
888 |
889 |
890 | // DROPDOWN NO CONFLICT
891 | // ====================
892 |
893 | $.fn.dropdown.noConflict = function () {
894 | $.fn.dropdown = old
895 | return this
896 | }
897 |
898 |
899 | // APPLY TO STANDARD DROPDOWN ELEMENTS
900 | // ===================================
901 |
902 | $(document)
903 | .on('click.bs.dropdown.data-api', clearMenus)
904 | .on('click.bs.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() })
905 | .on('click.bs.dropdown.data-api', toggle, Dropdown.prototype.toggle)
906 | .on('keydown.bs.dropdown.data-api', toggle, Dropdown.prototype.keydown)
907 | .on('keydown.bs.dropdown.data-api', '.dropdown-menu', Dropdown.prototype.keydown)
908 |
909 | }(jQuery);
910 |
911 | /* ========================================================================
912 | * Bootstrap: modal.js v3.3.5
913 | * http://getbootstrap.com/javascript/#modals
914 | * ========================================================================
915 | * Copyright 2011-2015 Twitter, Inc.
916 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
917 | * ======================================================================== */
918 |
919 |
920 | +function ($) {
921 | 'use strict';
922 |
923 | // MODAL CLASS DEFINITION
924 | // ======================
925 |
926 | var Modal = function (element, options) {
927 | this.options = options
928 | this.$body = $(document.body)
929 | this.$element = $(element)
930 | this.$dialog = this.$element.find('.modal-dialog')
931 | this.$backdrop = null
932 | this.isShown = null
933 | this.originalBodyPad = null
934 | this.scrollbarWidth = 0
935 | this.ignoreBackdropClick = false
936 |
937 | if (this.options.remote) {
938 | this.$element
939 | .find('.modal-content')
940 | .load(this.options.remote, $.proxy(function () {
941 | this.$element.trigger('loaded.bs.modal')
942 | }, this))
943 | }
944 | }
945 |
946 | Modal.VERSION = '3.3.5'
947 |
948 | Modal.TRANSITION_DURATION = 300
949 | Modal.BACKDROP_TRANSITION_DURATION = 150
950 |
951 | Modal.DEFAULTS = {
952 | backdrop: true,
953 | keyboard: true,
954 | show: true
955 | }
956 |
957 | Modal.prototype.toggle = function (_relatedTarget) {
958 | return this.isShown ? this.hide() : this.show(_relatedTarget)
959 | }
960 |
961 | Modal.prototype.show = function (_relatedTarget) {
962 | var that = this
963 | var e = $.Event('show.bs.modal', { relatedTarget: _relatedTarget })
964 |
965 | this.$element.trigger(e)
966 |
967 | if (this.isShown || e.isDefaultPrevented()) return
968 |
969 | this.isShown = true
970 |
971 | this.checkScrollbar()
972 | this.setScrollbar()
973 | this.$body.addClass('modal-open')
974 |
975 | this.escape()
976 | this.resize()
977 |
978 | this.$element.on('click.dismiss.bs.modal', '[data-dismiss="modal"]', $.proxy(this.hide, this))
979 |
980 | this.$dialog.on('mousedown.dismiss.bs.modal', function () {
981 | that.$element.one('mouseup.dismiss.bs.modal', function (e) {
982 | if ($(e.target).is(that.$element)) that.ignoreBackdropClick = true
983 | })
984 | })
985 |
986 | this.backdrop(function () {
987 | var transition = $.support.transition && that.$element.hasClass('fade')
988 |
989 | if (!that.$element.parent().length) {
990 | that.$element.appendTo(that.$body) // don't move modals dom position
991 | }
992 |
993 | that.$element
994 | .show()
995 | .scrollTop(0)
996 |
997 | that.adjustDialog()
998 |
999 | if (transition) {
1000 | that.$element[0].offsetWidth // force reflow
1001 | }
1002 |
1003 | that.$element.addClass('in')
1004 |
1005 | that.enforceFocus()
1006 |
1007 | var e = $.Event('shown.bs.modal', { relatedTarget: _relatedTarget })
1008 |
1009 | transition ?
1010 | that.$dialog // wait for modal to slide in
1011 | .one('bsTransitionEnd', function () {
1012 | that.$element.trigger('focus').trigger(e)
1013 | })
1014 | .emulateTransitionEnd(Modal.TRANSITION_DURATION) :
1015 | that.$element.trigger('focus').trigger(e)
1016 | })
1017 | }
1018 |
1019 | Modal.prototype.hide = function (e) {
1020 | if (e) e.preventDefault()
1021 |
1022 | e = $.Event('hide.bs.modal')
1023 |
1024 | this.$element.trigger(e)
1025 |
1026 | if (!this.isShown || e.isDefaultPrevented()) return
1027 |
1028 | this.isShown = false
1029 |
1030 | this.escape()
1031 | this.resize()
1032 |
1033 | $(document).off('focusin.bs.modal')
1034 |
1035 | this.$element
1036 | .removeClass('in')
1037 | .off('click.dismiss.bs.modal')
1038 | .off('mouseup.dismiss.bs.modal')
1039 |
1040 | this.$dialog.off('mousedown.dismiss.bs.modal')
1041 |
1042 | $.support.transition && this.$element.hasClass('fade') ?
1043 | this.$element
1044 | .one('bsTransitionEnd', $.proxy(this.hideModal, this))
1045 | .emulateTransitionEnd(Modal.TRANSITION_DURATION) :
1046 | this.hideModal()
1047 | }
1048 |
1049 | Modal.prototype.enforceFocus = function () {
1050 | $(document)
1051 | .off('focusin.bs.modal') // guard against infinite focus loop
1052 | .on('focusin.bs.modal', $.proxy(function (e) {
1053 | if (this.$element[0] !== e.target && !this.$element.has(e.target).length) {
1054 | this.$element.trigger('focus')
1055 | }
1056 | }, this))
1057 | }
1058 |
1059 | Modal.prototype.escape = function () {
1060 | if (this.isShown && this.options.keyboard) {
1061 | this.$element.on('keydown.dismiss.bs.modal', $.proxy(function (e) {
1062 | e.which == 27 && this.hide()
1063 | }, this))
1064 | } else if (!this.isShown) {
1065 | this.$element.off('keydown.dismiss.bs.modal')
1066 | }
1067 | }
1068 |
1069 | Modal.prototype.resize = function () {
1070 | if (this.isShown) {
1071 | $(window).on('resize.bs.modal', $.proxy(this.handleUpdate, this))
1072 | } else {
1073 | $(window).off('resize.bs.modal')
1074 | }
1075 | }
1076 |
1077 | Modal.prototype.hideModal = function () {
1078 | var that = this
1079 | this.$element.hide()
1080 | this.backdrop(function () {
1081 | that.$body.removeClass('modal-open')
1082 | that.resetAdjustments()
1083 | that.resetScrollbar()
1084 | that.$element.trigger('hidden.bs.modal')
1085 | })
1086 | }
1087 |
1088 | Modal.prototype.removeBackdrop = function () {
1089 | this.$backdrop && this.$backdrop.remove()
1090 | this.$backdrop = null
1091 | }
1092 |
1093 | Modal.prototype.backdrop = function (callback) {
1094 | var that = this
1095 | var animate = this.$element.hasClass('fade') ? 'fade' : ''
1096 |
1097 | if (this.isShown && this.options.backdrop) {
1098 | var doAnimate = $.support.transition && animate
1099 |
1100 | this.$backdrop = $(document.createElement('div'))
1101 | .addClass('modal-backdrop ' + animate)
1102 | .appendTo(this.$body)
1103 |
1104 | this.$element.on('click.dismiss.bs.modal', $.proxy(function (e) {
1105 | if (this.ignoreBackdropClick) {
1106 | this.ignoreBackdropClick = false
1107 | return
1108 | }
1109 | if (e.target !== e.currentTarget) return
1110 | this.options.backdrop == 'static'
1111 | ? this.$element[0].focus()
1112 | : this.hide()
1113 | }, this))
1114 |
1115 | if (doAnimate) this.$backdrop[0].offsetWidth // force reflow
1116 |
1117 | this.$backdrop.addClass('in')
1118 |
1119 | if (!callback) return
1120 |
1121 | doAnimate ?
1122 | this.$backdrop
1123 | .one('bsTransitionEnd', callback)
1124 | .emulateTransitionEnd(Modal.BACKDROP_TRANSITION_DURATION) :
1125 | callback()
1126 |
1127 | } else if (!this.isShown && this.$backdrop) {
1128 | this.$backdrop.removeClass('in')
1129 |
1130 | var callbackRemove = function () {
1131 | that.removeBackdrop()
1132 | callback && callback()
1133 | }
1134 | $.support.transition && this.$element.hasClass('fade') ?
1135 | this.$backdrop
1136 | .one('bsTransitionEnd', callbackRemove)
1137 | .emulateTransitionEnd(Modal.BACKDROP_TRANSITION_DURATION) :
1138 | callbackRemove()
1139 |
1140 | } else if (callback) {
1141 | callback()
1142 | }
1143 | }
1144 |
1145 | // these following methods are used to handle overflowing modals
1146 |
1147 | Modal.prototype.handleUpdate = function () {
1148 | this.adjustDialog()
1149 | }
1150 |
1151 | Modal.prototype.adjustDialog = function () {
1152 | var modalIsOverflowing = this.$element[0].scrollHeight > document.documentElement.clientHeight
1153 |
1154 | this.$element.css({
1155 | paddingLeft: !this.bodyIsOverflowing && modalIsOverflowing ? this.scrollbarWidth : '',
1156 | paddingRight: this.bodyIsOverflowing && !modalIsOverflowing ? this.scrollbarWidth : ''
1157 | })
1158 | }
1159 |
1160 | Modal.prototype.resetAdjustments = function () {
1161 | this.$element.css({
1162 | paddingLeft: '',
1163 | paddingRight: ''
1164 | })
1165 | }
1166 |
1167 | Modal.prototype.checkScrollbar = function () {
1168 | var fullWindowWidth = window.innerWidth
1169 | if (!fullWindowWidth) { // workaround for missing window.innerWidth in IE8
1170 | var documentElementRect = document.documentElement.getBoundingClientRect()
1171 | fullWindowWidth = documentElementRect.right - Math.abs(documentElementRect.left)
1172 | }
1173 | this.bodyIsOverflowing = document.body.clientWidth < fullWindowWidth
1174 | this.scrollbarWidth = this.measureScrollbar()
1175 | }
1176 |
1177 | Modal.prototype.setScrollbar = function () {
1178 | var bodyPad = parseInt((this.$body.css('padding-right') || 0), 10)
1179 | this.originalBodyPad = document.body.style.paddingRight || ''
1180 | if (this.bodyIsOverflowing) this.$body.css('padding-right', bodyPad + this.scrollbarWidth)
1181 | }
1182 |
1183 | Modal.prototype.resetScrollbar = function () {
1184 | this.$body.css('padding-right', this.originalBodyPad)
1185 | }
1186 |
1187 | Modal.prototype.measureScrollbar = function () { // thx walsh
1188 | var scrollDiv = document.createElement('div')
1189 | scrollDiv.className = 'modal-scrollbar-measure'
1190 | this.$body.append(scrollDiv)
1191 | var scrollbarWidth = scrollDiv.offsetWidth - scrollDiv.clientWidth
1192 | this.$body[0].removeChild(scrollDiv)
1193 | return scrollbarWidth
1194 | }
1195 |
1196 |
1197 | // MODAL PLUGIN DEFINITION
1198 | // =======================
1199 |
1200 | function Plugin(option, _relatedTarget) {
1201 | return this.each(function () {
1202 | var $this = $(this)
1203 | var data = $this.data('bs.modal')
1204 | var options = $.extend({}, Modal.DEFAULTS, $this.data(), typeof option == 'object' && option)
1205 |
1206 | if (!data) $this.data('bs.modal', (data = new Modal(this, options)))
1207 | if (typeof option == 'string') data[option](_relatedTarget)
1208 | else if (options.show) data.show(_relatedTarget)
1209 | })
1210 | }
1211 |
1212 | var old = $.fn.modal
1213 |
1214 | $.fn.modal = Plugin
1215 | $.fn.modal.Constructor = Modal
1216 |
1217 |
1218 | // MODAL NO CONFLICT
1219 | // =================
1220 |
1221 | $.fn.modal.noConflict = function () {
1222 | $.fn.modal = old
1223 | return this
1224 | }
1225 |
1226 |
1227 | // MODAL DATA-API
1228 | // ==============
1229 |
1230 | $(document).on('click.bs.modal.data-api', '[data-toggle="modal"]', function (e) {
1231 | var $this = $(this)
1232 | var href = $this.attr('href')
1233 | var $target = $($this.attr('data-target') || (href && href.replace(/.*(?=#[^\s]+$)/, ''))) // strip for ie7
1234 | var option = $target.data('bs.modal') ? 'toggle' : $.extend({ remote: !/#/.test(href) && href }, $target.data(), $this.data())
1235 |
1236 | if ($this.is('a')) e.preventDefault()
1237 |
1238 | $target.one('show.bs.modal', function (showEvent) {
1239 | if (showEvent.isDefaultPrevented()) return // only register focus restorer if modal will actually get shown
1240 | $target.one('hidden.bs.modal', function () {
1241 | $this.is(':visible') && $this.trigger('focus')
1242 | })
1243 | })
1244 | Plugin.call($target, option, this)
1245 | })
1246 |
1247 | }(jQuery);
1248 |
1249 | /* ========================================================================
1250 | * Bootstrap: tooltip.js v3.3.5
1251 | * http://getbootstrap.com/javascript/#tooltip
1252 | * Inspired by the original jQuery.tipsy by Jason Frame
1253 | * ========================================================================
1254 | * Copyright 2011-2015 Twitter, Inc.
1255 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
1256 | * ======================================================================== */
1257 |
1258 |
1259 | +function ($) {
1260 | 'use strict';
1261 |
1262 | // TOOLTIP PUBLIC CLASS DEFINITION
1263 | // ===============================
1264 |
1265 | var Tooltip = function (element, options) {
1266 | this.type = null
1267 | this.options = null
1268 | this.enabled = null
1269 | this.timeout = null
1270 | this.hoverState = null
1271 | this.$element = null
1272 | this.inState = null
1273 |
1274 | this.init('tooltip', element, options)
1275 | }
1276 |
1277 | Tooltip.VERSION = '3.3.5'
1278 |
1279 | Tooltip.TRANSITION_DURATION = 150
1280 |
1281 | Tooltip.DEFAULTS = {
1282 | animation: true,
1283 | placement: 'top',
1284 | selector: false,
1285 | template: '',
1286 | trigger: 'hover focus',
1287 | title: '',
1288 | delay: 0,
1289 | html: false,
1290 | container: false,
1291 | viewport: {
1292 | selector: 'body',
1293 | padding: 0
1294 | }
1295 | }
1296 |
1297 | Tooltip.prototype.init = function (type, element, options) {
1298 | this.enabled = true
1299 | this.type = type
1300 | this.$element = $(element)
1301 | this.options = this.getOptions(options)
1302 | this.$viewport = this.options.viewport && $($.isFunction(this.options.viewport) ? this.options.viewport.call(this, this.$element) : (this.options.viewport.selector || this.options.viewport))
1303 | this.inState = { click: false, hover: false, focus: false }
1304 |
1305 | if (this.$element[0] instanceof document.constructor && !this.options.selector) {
1306 | throw new Error('`selector` option must be specified when initializing ' + this.type + ' on the window.document object!')
1307 | }
1308 |
1309 | var triggers = this.options.trigger.split(' ')
1310 |
1311 | for (var i = triggers.length; i--;) {
1312 | var trigger = triggers[i]
1313 |
1314 | if (trigger == 'click') {
1315 | this.$element.on('click.' + this.type, this.options.selector, $.proxy(this.toggle, this))
1316 | } else if (trigger != 'manual') {
1317 | var eventIn = trigger == 'hover' ? 'mouseenter' : 'focusin'
1318 | var eventOut = trigger == 'hover' ? 'mouseleave' : 'focusout'
1319 |
1320 | this.$element.on(eventIn + '.' + this.type, this.options.selector, $.proxy(this.enter, this))
1321 | this.$element.on(eventOut + '.' + this.type, this.options.selector, $.proxy(this.leave, this))
1322 | }
1323 | }
1324 |
1325 | this.options.selector ?
1326 | (this._options = $.extend({}, this.options, { trigger: 'manual', selector: '' })) :
1327 | this.fixTitle()
1328 | }
1329 |
1330 | Tooltip.prototype.getDefaults = function () {
1331 | return Tooltip.DEFAULTS
1332 | }
1333 |
1334 | Tooltip.prototype.getOptions = function (options) {
1335 | options = $.extend({}, this.getDefaults(), this.$element.data(), options)
1336 |
1337 | if (options.delay && typeof options.delay == 'number') {
1338 | options.delay = {
1339 | show: options.delay,
1340 | hide: options.delay
1341 | }
1342 | }
1343 |
1344 | return options
1345 | }
1346 |
1347 | Tooltip.prototype.getDelegateOptions = function () {
1348 | var options = {}
1349 | var defaults = this.getDefaults()
1350 |
1351 | this._options && $.each(this._options, function (key, value) {
1352 | if (defaults[key] != value) options[key] = value
1353 | })
1354 |
1355 | return options
1356 | }
1357 |
1358 | Tooltip.prototype.enter = function (obj) {
1359 | var self = obj instanceof this.constructor ?
1360 | obj : $(obj.currentTarget).data('bs.' + this.type)
1361 |
1362 | if (!self) {
1363 | self = new this.constructor(obj.currentTarget, this.getDelegateOptions())
1364 | $(obj.currentTarget).data('bs.' + this.type, self)
1365 | }
1366 |
1367 | if (obj instanceof $.Event) {
1368 | self.inState[obj.type == 'focusin' ? 'focus' : 'hover'] = true
1369 | }
1370 |
1371 | if (self.tip().hasClass('in') || self.hoverState == 'in') {
1372 | self.hoverState = 'in'
1373 | return
1374 | }
1375 |
1376 | clearTimeout(self.timeout)
1377 |
1378 | self.hoverState = 'in'
1379 |
1380 | if (!self.options.delay || !self.options.delay.show) return self.show()
1381 |
1382 | self.timeout = setTimeout(function () {
1383 | if (self.hoverState == 'in') self.show()
1384 | }, self.options.delay.show)
1385 | }
1386 |
1387 | Tooltip.prototype.isInStateTrue = function () {
1388 | for (var key in this.inState) {
1389 | if (this.inState[key]) return true
1390 | }
1391 |
1392 | return false
1393 | }
1394 |
1395 | Tooltip.prototype.leave = function (obj) {
1396 | var self = obj instanceof this.constructor ?
1397 | obj : $(obj.currentTarget).data('bs.' + this.type)
1398 |
1399 | if (!self) {
1400 | self = new this.constructor(obj.currentTarget, this.getDelegateOptions())
1401 | $(obj.currentTarget).data('bs.' + this.type, self)
1402 | }
1403 |
1404 | if (obj instanceof $.Event) {
1405 | self.inState[obj.type == 'focusout' ? 'focus' : 'hover'] = false
1406 | }
1407 |
1408 | if (self.isInStateTrue()) return
1409 |
1410 | clearTimeout(self.timeout)
1411 |
1412 | self.hoverState = 'out'
1413 |
1414 | if (!self.options.delay || !self.options.delay.hide) return self.hide()
1415 |
1416 | self.timeout = setTimeout(function () {
1417 | if (self.hoverState == 'out') self.hide()
1418 | }, self.options.delay.hide)
1419 | }
1420 |
1421 | Tooltip.prototype.show = function () {
1422 | var e = $.Event('show.bs.' + this.type)
1423 |
1424 | if (this.hasContent() && this.enabled) {
1425 | this.$element.trigger(e)
1426 |
1427 | var inDom = $.contains(this.$element[0].ownerDocument.documentElement, this.$element[0])
1428 | if (e.isDefaultPrevented() || !inDom) return
1429 | var that = this
1430 |
1431 | var $tip = this.tip()
1432 |
1433 | var tipId = this.getUID(this.type)
1434 |
1435 | this.setContent()
1436 | $tip.attr('id', tipId)
1437 | this.$element.attr('aria-describedby', tipId)
1438 |
1439 | if (this.options.animation) $tip.addClass('fade')
1440 |
1441 | var placement = typeof this.options.placement == 'function' ?
1442 | this.options.placement.call(this, $tip[0], this.$element[0]) :
1443 | this.options.placement
1444 |
1445 | var autoToken = /\s?auto?\s?/i
1446 | var autoPlace = autoToken.test(placement)
1447 | if (autoPlace) placement = placement.replace(autoToken, '') || 'top'
1448 |
1449 | $tip
1450 | .detach()
1451 | .css({ top: 0, left: 0, display: 'block' })
1452 | .addClass(placement)
1453 | .data('bs.' + this.type, this)
1454 |
1455 | this.options.container ? $tip.appendTo(this.options.container) : $tip.insertAfter(this.$element)
1456 | this.$element.trigger('inserted.bs.' + this.type)
1457 |
1458 | var pos = this.getPosition()
1459 | var actualWidth = $tip[0].offsetWidth
1460 | var actualHeight = $tip[0].offsetHeight
1461 |
1462 | if (autoPlace) {
1463 | var orgPlacement = placement
1464 | var viewportDim = this.getPosition(this.$viewport)
1465 |
1466 | placement = placement == 'bottom' && pos.bottom + actualHeight > viewportDim.bottom ? 'top' :
1467 | placement == 'top' && pos.top - actualHeight < viewportDim.top ? 'bottom' :
1468 | placement == 'right' && pos.right + actualWidth > viewportDim.width ? 'left' :
1469 | placement == 'left' && pos.left - actualWidth < viewportDim.left ? 'right' :
1470 | placement
1471 |
1472 | $tip
1473 | .removeClass(orgPlacement)
1474 | .addClass(placement)
1475 | }
1476 |
1477 | var calculatedOffset = this.getCalculatedOffset(placement, pos, actualWidth, actualHeight)
1478 |
1479 | this.applyPlacement(calculatedOffset, placement)
1480 |
1481 | var complete = function () {
1482 | var prevHoverState = that.hoverState
1483 | that.$element.trigger('shown.bs.' + that.type)
1484 | that.hoverState = null
1485 |
1486 | if (prevHoverState == 'out') that.leave(that)
1487 | }
1488 |
1489 | $.support.transition && this.$tip.hasClass('fade') ?
1490 | $tip
1491 | .one('bsTransitionEnd', complete)
1492 | .emulateTransitionEnd(Tooltip.TRANSITION_DURATION) :
1493 | complete()
1494 | }
1495 | }
1496 |
1497 | Tooltip.prototype.applyPlacement = function (offset, placement) {
1498 | var $tip = this.tip()
1499 | var width = $tip[0].offsetWidth
1500 | var height = $tip[0].offsetHeight
1501 |
1502 | // manually read margins because getBoundingClientRect includes difference
1503 | var marginTop = parseInt($tip.css('margin-top'), 10)
1504 | var marginLeft = parseInt($tip.css('margin-left'), 10)
1505 |
1506 | // we must check for NaN for ie 8/9
1507 | if (isNaN(marginTop)) marginTop = 0
1508 | if (isNaN(marginLeft)) marginLeft = 0
1509 |
1510 | offset.top += marginTop
1511 | offset.left += marginLeft
1512 |
1513 | // $.fn.offset doesn't round pixel values
1514 | // so we use setOffset directly with our own function B-0
1515 | $.offset.setOffset($tip[0], $.extend({
1516 | using: function (props) {
1517 | $tip.css({
1518 | top: Math.round(props.top),
1519 | left: Math.round(props.left)
1520 | })
1521 | }
1522 | }, offset), 0)
1523 |
1524 | $tip.addClass('in')
1525 |
1526 | // check to see if placing tip in new offset caused the tip to resize itself
1527 | var actualWidth = $tip[0].offsetWidth
1528 | var actualHeight = $tip[0].offsetHeight
1529 |
1530 | if (placement == 'top' && actualHeight != height) {
1531 | offset.top = offset.top + height - actualHeight
1532 | }
1533 |
1534 | var delta = this.getViewportAdjustedDelta(placement, offset, actualWidth, actualHeight)
1535 |
1536 | if (delta.left) offset.left += delta.left
1537 | else offset.top += delta.top
1538 |
1539 | var isVertical = /top|bottom/.test(placement)
1540 | var arrowDelta = isVertical ? delta.left * 2 - width + actualWidth : delta.top * 2 - height + actualHeight
1541 | var arrowOffsetPosition = isVertical ? 'offsetWidth' : 'offsetHeight'
1542 |
1543 | $tip.offset(offset)
1544 | this.replaceArrow(arrowDelta, $tip[0][arrowOffsetPosition], isVertical)
1545 | }
1546 |
1547 | Tooltip.prototype.replaceArrow = function (delta, dimension, isVertical) {
1548 | this.arrow()
1549 | .css(isVertical ? 'left' : 'top', 50 * (1 - delta / dimension) + '%')
1550 | .css(isVertical ? 'top' : 'left', '')
1551 | }
1552 |
1553 | Tooltip.prototype.setContent = function () {
1554 | var $tip = this.tip()
1555 | var title = this.getTitle()
1556 |
1557 | $tip.find('.tooltip-inner')[this.options.html ? 'html' : 'text'](title)
1558 | $tip.removeClass('fade in top bottom left right')
1559 | }
1560 |
1561 | Tooltip.prototype.hide = function (callback) {
1562 | var that = this
1563 | var $tip = $(this.$tip)
1564 | var e = $.Event('hide.bs.' + this.type)
1565 |
1566 | function complete() {
1567 | if (that.hoverState != 'in') $tip.detach()
1568 | that.$element
1569 | .removeAttr('aria-describedby')
1570 | .trigger('hidden.bs.' + that.type)
1571 | callback && callback()
1572 | }
1573 |
1574 | this.$element.trigger(e)
1575 |
1576 | if (e.isDefaultPrevented()) return
1577 |
1578 | $tip.removeClass('in')
1579 |
1580 | $.support.transition && $tip.hasClass('fade') ?
1581 | $tip
1582 | .one('bsTransitionEnd', complete)
1583 | .emulateTransitionEnd(Tooltip.TRANSITION_DURATION) :
1584 | complete()
1585 |
1586 | this.hoverState = null
1587 |
1588 | return this
1589 | }
1590 |
1591 | Tooltip.prototype.fixTitle = function () {
1592 | var $e = this.$element
1593 | if ($e.attr('title') || typeof $e.attr('data-original-title') != 'string') {
1594 | $e.attr('data-original-title', $e.attr('title') || '').attr('title', '')
1595 | }
1596 | }
1597 |
1598 | Tooltip.prototype.hasContent = function () {
1599 | return this.getTitle()
1600 | }
1601 |
1602 | Tooltip.prototype.getPosition = function ($element) {
1603 | $element = $element || this.$element
1604 |
1605 | var el = $element[0]
1606 | var isBody = el.tagName == 'BODY'
1607 |
1608 | var elRect = el.getBoundingClientRect()
1609 | if (elRect.width == null) {
1610 | // width and height are missing in IE8, so compute them manually; see https://github.com/twbs/bootstrap/issues/14093
1611 | elRect = $.extend({}, elRect, { width: elRect.right - elRect.left, height: elRect.bottom - elRect.top })
1612 | }
1613 | var elOffset = isBody ? { top: 0, left: 0 } : $element.offset()
1614 | var scroll = { scroll: isBody ? document.documentElement.scrollTop || document.body.scrollTop : $element.scrollTop() }
1615 | var outerDims = isBody ? { width: $(window).width(), height: $(window).height() } : null
1616 |
1617 | return $.extend({}, elRect, scroll, outerDims, elOffset)
1618 | }
1619 |
1620 | Tooltip.prototype.getCalculatedOffset = function (placement, pos, actualWidth, actualHeight) {
1621 | return placement == 'bottom' ? { top: pos.top + pos.height, left: pos.left + pos.width / 2 - actualWidth / 2 } :
1622 | placement == 'top' ? { top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2 } :
1623 | placement == 'left' ? { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth } :
1624 | /* placement == 'right' */ { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width }
1625 |
1626 | }
1627 |
1628 | Tooltip.prototype.getViewportAdjustedDelta = function (placement, pos, actualWidth, actualHeight) {
1629 | var delta = { top: 0, left: 0 }
1630 | if (!this.$viewport) return delta
1631 |
1632 | var viewportPadding = this.options.viewport && this.options.viewport.padding || 0
1633 | var viewportDimensions = this.getPosition(this.$viewport)
1634 |
1635 | if (/right|left/.test(placement)) {
1636 | var topEdgeOffset = pos.top - viewportPadding - viewportDimensions.scroll
1637 | var bottomEdgeOffset = pos.top + viewportPadding - viewportDimensions.scroll + actualHeight
1638 | if (topEdgeOffset < viewportDimensions.top) { // top overflow
1639 | delta.top = viewportDimensions.top - topEdgeOffset
1640 | } else if (bottomEdgeOffset > viewportDimensions.top + viewportDimensions.height) { // bottom overflow
1641 | delta.top = viewportDimensions.top + viewportDimensions.height - bottomEdgeOffset
1642 | }
1643 | } else {
1644 | var leftEdgeOffset = pos.left - viewportPadding
1645 | var rightEdgeOffset = pos.left + viewportPadding + actualWidth
1646 | if (leftEdgeOffset < viewportDimensions.left) { // left overflow
1647 | delta.left = viewportDimensions.left - leftEdgeOffset
1648 | } else if (rightEdgeOffset > viewportDimensions.right) { // right overflow
1649 | delta.left = viewportDimensions.left + viewportDimensions.width - rightEdgeOffset
1650 | }
1651 | }
1652 |
1653 | return delta
1654 | }
1655 |
1656 | Tooltip.prototype.getTitle = function () {
1657 | var title
1658 | var $e = this.$element
1659 | var o = this.options
1660 |
1661 | title = $e.attr('data-original-title')
1662 | || (typeof o.title == 'function' ? o.title.call($e[0]) : o.title)
1663 |
1664 | return title
1665 | }
1666 |
1667 | Tooltip.prototype.getUID = function (prefix) {
1668 | do prefix += ~~(Math.random() * 1000000)
1669 | while (document.getElementById(prefix))
1670 | return prefix
1671 | }
1672 |
1673 | Tooltip.prototype.tip = function () {
1674 | if (!this.$tip) {
1675 | this.$tip = $(this.options.template)
1676 | if (this.$tip.length != 1) {
1677 | throw new Error(this.type + ' `template` option must consist of exactly 1 top-level element!')
1678 | }
1679 | }
1680 | return this.$tip
1681 | }
1682 |
1683 | Tooltip.prototype.arrow = function () {
1684 | return (this.$arrow = this.$arrow || this.tip().find('.tooltip-arrow'))
1685 | }
1686 |
1687 | Tooltip.prototype.enable = function () {
1688 | this.enabled = true
1689 | }
1690 |
1691 | Tooltip.prototype.disable = function () {
1692 | this.enabled = false
1693 | }
1694 |
1695 | Tooltip.prototype.toggleEnabled = function () {
1696 | this.enabled = !this.enabled
1697 | }
1698 |
1699 | Tooltip.prototype.toggle = function (e) {
1700 | var self = this
1701 | if (e) {
1702 | self = $(e.currentTarget).data('bs.' + this.type)
1703 | if (!self) {
1704 | self = new this.constructor(e.currentTarget, this.getDelegateOptions())
1705 | $(e.currentTarget).data('bs.' + this.type, self)
1706 | }
1707 | }
1708 |
1709 | if (e) {
1710 | self.inState.click = !self.inState.click
1711 | if (self.isInStateTrue()) self.enter(self)
1712 | else self.leave(self)
1713 | } else {
1714 | self.tip().hasClass('in') ? self.leave(self) : self.enter(self)
1715 | }
1716 | }
1717 |
1718 | Tooltip.prototype.destroy = function () {
1719 | var that = this
1720 | clearTimeout(this.timeout)
1721 | this.hide(function () {
1722 | that.$element.off('.' + that.type).removeData('bs.' + that.type)
1723 | if (that.$tip) {
1724 | that.$tip.detach()
1725 | }
1726 | that.$tip = null
1727 | that.$arrow = null
1728 | that.$viewport = null
1729 | })
1730 | }
1731 |
1732 |
1733 | // TOOLTIP PLUGIN DEFINITION
1734 | // =========================
1735 |
1736 | function Plugin(option) {
1737 | return this.each(function () {
1738 | var $this = $(this)
1739 | var data = $this.data('bs.tooltip')
1740 | var options = typeof option == 'object' && option
1741 |
1742 | if (!data && /destroy|hide/.test(option)) return
1743 | if (!data) $this.data('bs.tooltip', (data = new Tooltip(this, options)))
1744 | if (typeof option == 'string') data[option]()
1745 | })
1746 | }
1747 |
1748 | var old = $.fn.tooltip
1749 |
1750 | $.fn.tooltip = Plugin
1751 | $.fn.tooltip.Constructor = Tooltip
1752 |
1753 |
1754 | // TOOLTIP NO CONFLICT
1755 | // ===================
1756 |
1757 | $.fn.tooltip.noConflict = function () {
1758 | $.fn.tooltip = old
1759 | return this
1760 | }
1761 |
1762 | }(jQuery);
1763 |
1764 | /* ========================================================================
1765 | * Bootstrap: popover.js v3.3.5
1766 | * http://getbootstrap.com/javascript/#popovers
1767 | * ========================================================================
1768 | * Copyright 2011-2015 Twitter, Inc.
1769 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
1770 | * ======================================================================== */
1771 |
1772 |
1773 | +function ($) {
1774 | 'use strict';
1775 |
1776 | // POPOVER PUBLIC CLASS DEFINITION
1777 | // ===============================
1778 |
1779 | var Popover = function (element, options) {
1780 | this.init('popover', element, options)
1781 | }
1782 |
1783 | if (!$.fn.tooltip) throw new Error('Popover requires tooltip.js')
1784 |
1785 | Popover.VERSION = '3.3.5'
1786 |
1787 | Popover.DEFAULTS = $.extend({}, $.fn.tooltip.Constructor.DEFAULTS, {
1788 | placement: 'right',
1789 | trigger: 'click',
1790 | content: '',
1791 | template: ''
1792 | })
1793 |
1794 |
1795 | // NOTE: POPOVER EXTENDS tooltip.js
1796 | // ================================
1797 |
1798 | Popover.prototype = $.extend({}, $.fn.tooltip.Constructor.prototype)
1799 |
1800 | Popover.prototype.constructor = Popover
1801 |
1802 | Popover.prototype.getDefaults = function () {
1803 | return Popover.DEFAULTS
1804 | }
1805 |
1806 | Popover.prototype.setContent = function () {
1807 | var $tip = this.tip()
1808 | var title = this.getTitle()
1809 | var content = this.getContent()
1810 |
1811 | $tip.find('.popover-title')[this.options.html ? 'html' : 'text'](title)
1812 | $tip.find('.popover-content').children().detach().end()[ // we use append for html objects to maintain js events
1813 | this.options.html ? (typeof content == 'string' ? 'html' : 'append') : 'text'
1814 | ](content)
1815 |
1816 | $tip.removeClass('fade top bottom left right in')
1817 |
1818 | // IE8 doesn't accept hiding via the `:empty` pseudo selector, we have to do
1819 | // this manually by checking the contents.
1820 | if (!$tip.find('.popover-title').html()) $tip.find('.popover-title').hide()
1821 | }
1822 |
1823 | Popover.prototype.hasContent = function () {
1824 | return this.getTitle() || this.getContent()
1825 | }
1826 |
1827 | Popover.prototype.getContent = function () {
1828 | var $e = this.$element
1829 | var o = this.options
1830 |
1831 | return $e.attr('data-content')
1832 | || (typeof o.content == 'function' ?
1833 | o.content.call($e[0]) :
1834 | o.content)
1835 | }
1836 |
1837 | Popover.prototype.arrow = function () {
1838 | return (this.$arrow = this.$arrow || this.tip().find('.arrow'))
1839 | }
1840 |
1841 |
1842 | // POPOVER PLUGIN DEFINITION
1843 | // =========================
1844 |
1845 | function Plugin(option) {
1846 | return this.each(function () {
1847 | var $this = $(this)
1848 | var data = $this.data('bs.popover')
1849 | var options = typeof option == 'object' && option
1850 |
1851 | if (!data && /destroy|hide/.test(option)) return
1852 | if (!data) $this.data('bs.popover', (data = new Popover(this, options)))
1853 | if (typeof option == 'string') data[option]()
1854 | })
1855 | }
1856 |
1857 | var old = $.fn.popover
1858 |
1859 | $.fn.popover = Plugin
1860 | $.fn.popover.Constructor = Popover
1861 |
1862 |
1863 | // POPOVER NO CONFLICT
1864 | // ===================
1865 |
1866 | $.fn.popover.noConflict = function () {
1867 | $.fn.popover = old
1868 | return this
1869 | }
1870 |
1871 | }(jQuery);
1872 |
1873 | /* ========================================================================
1874 | * Bootstrap: scrollspy.js v3.3.5
1875 | * http://getbootstrap.com/javascript/#scrollspy
1876 | * ========================================================================
1877 | * Copyright 2011-2015 Twitter, Inc.
1878 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
1879 | * ======================================================================== */
1880 |
1881 |
1882 | +function ($) {
1883 | 'use strict';
1884 |
1885 | // SCROLLSPY CLASS DEFINITION
1886 | // ==========================
1887 |
1888 | function ScrollSpy(element, options) {
1889 | this.$body = $(document.body)
1890 | this.$scrollElement = $(element).is(document.body) ? $(window) : $(element)
1891 | this.options = $.extend({}, ScrollSpy.DEFAULTS, options)
1892 | this.selector = (this.options.target || '') + ' .nav li > a'
1893 | this.offsets = []
1894 | this.targets = []
1895 | this.activeTarget = null
1896 | this.scrollHeight = 0
1897 |
1898 | this.$scrollElement.on('scroll.bs.scrollspy', $.proxy(this.process, this))
1899 | this.refresh()
1900 | this.process()
1901 | }
1902 |
1903 | ScrollSpy.VERSION = '3.3.5'
1904 |
1905 | ScrollSpy.DEFAULTS = {
1906 | offset: 10
1907 | }
1908 |
1909 | ScrollSpy.prototype.getScrollHeight = function () {
1910 | return this.$scrollElement[0].scrollHeight || Math.max(this.$body[0].scrollHeight, document.documentElement.scrollHeight)
1911 | }
1912 |
1913 | ScrollSpy.prototype.refresh = function () {
1914 | var that = this
1915 | var offsetMethod = 'offset'
1916 | var offsetBase = 0
1917 |
1918 | this.offsets = []
1919 | this.targets = []
1920 | this.scrollHeight = this.getScrollHeight()
1921 |
1922 | if (!$.isWindow(this.$scrollElement[0])) {
1923 | offsetMethod = 'position'
1924 | offsetBase = this.$scrollElement.scrollTop()
1925 | }
1926 |
1927 | this.$body
1928 | .find(this.selector)
1929 | .map(function () {
1930 | var $el = $(this)
1931 | var href = $el.data('target') || $el.attr('href')
1932 | var $href = /^#./.test(href) && $(href)
1933 |
1934 | return ($href
1935 | && $href.length
1936 | && $href.is(':visible')
1937 | && [[$href[offsetMethod]().top + offsetBase, href]]) || null
1938 | })
1939 | .sort(function (a, b) { return a[0] - b[0] })
1940 | .each(function () {
1941 | that.offsets.push(this[0])
1942 | that.targets.push(this[1])
1943 | })
1944 | }
1945 |
1946 | ScrollSpy.prototype.process = function () {
1947 | var scrollTop = this.$scrollElement.scrollTop() + this.options.offset
1948 | var scrollHeight = this.getScrollHeight()
1949 | var maxScroll = this.options.offset + scrollHeight - this.$scrollElement.height()
1950 | var offsets = this.offsets
1951 | var targets = this.targets
1952 | var activeTarget = this.activeTarget
1953 | var i
1954 |
1955 | if (this.scrollHeight != scrollHeight) {
1956 | this.refresh()
1957 | }
1958 |
1959 | if (scrollTop >= maxScroll) {
1960 | return activeTarget != (i = targets[targets.length - 1]) && this.activate(i)
1961 | }
1962 |
1963 | if (activeTarget && scrollTop < offsets[0]) {
1964 | this.activeTarget = null
1965 | return this.clear()
1966 | }
1967 |
1968 | for (i = offsets.length; i--;) {
1969 | activeTarget != targets[i]
1970 | && scrollTop >= offsets[i]
1971 | && (offsets[i + 1] === undefined || scrollTop < offsets[i + 1])
1972 | && this.activate(targets[i])
1973 | }
1974 | }
1975 |
1976 | ScrollSpy.prototype.activate = function (target) {
1977 | this.activeTarget = target
1978 |
1979 | this.clear()
1980 |
1981 | var selector = this.selector +
1982 | '[data-target="' + target + '"],' +
1983 | this.selector + '[href="' + target + '"]'
1984 |
1985 | var active = $(selector)
1986 | .parents('li')
1987 | .addClass('active')
1988 |
1989 | if (active.parent('.dropdown-menu').length) {
1990 | active = active
1991 | .closest('li.dropdown')
1992 | .addClass('active')
1993 | }
1994 |
1995 | active.trigger('activate.bs.scrollspy')
1996 | }
1997 |
1998 | ScrollSpy.prototype.clear = function () {
1999 | $(this.selector)
2000 | .parentsUntil(this.options.target, '.active')
2001 | .removeClass('active')
2002 | }
2003 |
2004 |
2005 | // SCROLLSPY PLUGIN DEFINITION
2006 | // ===========================
2007 |
2008 | function Plugin(option) {
2009 | return this.each(function () {
2010 | var $this = $(this)
2011 | var data = $this.data('bs.scrollspy')
2012 | var options = typeof option == 'object' && option
2013 |
2014 | if (!data) $this.data('bs.scrollspy', (data = new ScrollSpy(this, options)))
2015 | if (typeof option == 'string') data[option]()
2016 | })
2017 | }
2018 |
2019 | var old = $.fn.scrollspy
2020 |
2021 | $.fn.scrollspy = Plugin
2022 | $.fn.scrollspy.Constructor = ScrollSpy
2023 |
2024 |
2025 | // SCROLLSPY NO CONFLICT
2026 | // =====================
2027 |
2028 | $.fn.scrollspy.noConflict = function () {
2029 | $.fn.scrollspy = old
2030 | return this
2031 | }
2032 |
2033 |
2034 | // SCROLLSPY DATA-API
2035 | // ==================
2036 |
2037 | $(window).on('load.bs.scrollspy.data-api', function () {
2038 | $('[data-spy="scroll"]').each(function () {
2039 | var $spy = $(this)
2040 | Plugin.call($spy, $spy.data())
2041 | })
2042 | })
2043 |
2044 | }(jQuery);
2045 |
2046 | /* ========================================================================
2047 | * Bootstrap: tab.js v3.3.5
2048 | * http://getbootstrap.com/javascript/#tabs
2049 | * ========================================================================
2050 | * Copyright 2011-2015 Twitter, Inc.
2051 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
2052 | * ======================================================================== */
2053 |
2054 |
2055 | +function ($) {
2056 | 'use strict';
2057 |
2058 | // TAB CLASS DEFINITION
2059 | // ====================
2060 |
2061 | var Tab = function (element) {
2062 | // jscs:disable requireDollarBeforejQueryAssignment
2063 | this.element = $(element)
2064 | // jscs:enable requireDollarBeforejQueryAssignment
2065 | }
2066 |
2067 | Tab.VERSION = '3.3.5'
2068 |
2069 | Tab.TRANSITION_DURATION = 150
2070 |
2071 | Tab.prototype.show = function () {
2072 | var $this = this.element
2073 | var $ul = $this.closest('ul:not(.dropdown-menu)')
2074 | var selector = $this.data('target')
2075 |
2076 | if (!selector) {
2077 | selector = $this.attr('href')
2078 | selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7
2079 | }
2080 |
2081 | if ($this.parent('li').hasClass('active')) return
2082 |
2083 | var $previous = $ul.find('.active:last a')
2084 | var hideEvent = $.Event('hide.bs.tab', {
2085 | relatedTarget: $this[0]
2086 | })
2087 | var showEvent = $.Event('show.bs.tab', {
2088 | relatedTarget: $previous[0]
2089 | })
2090 |
2091 | $previous.trigger(hideEvent)
2092 | $this.trigger(showEvent)
2093 |
2094 | if (showEvent.isDefaultPrevented() || hideEvent.isDefaultPrevented()) return
2095 |
2096 | var $target = $(selector)
2097 |
2098 | this.activate($this.closest('li'), $ul)
2099 | this.activate($target, $target.parent(), function () {
2100 | $previous.trigger({
2101 | type: 'hidden.bs.tab',
2102 | relatedTarget: $this[0]
2103 | })
2104 | $this.trigger({
2105 | type: 'shown.bs.tab',
2106 | relatedTarget: $previous[0]
2107 | })
2108 | })
2109 | }
2110 |
2111 | Tab.prototype.activate = function (element, container, callback) {
2112 | var $active = container.find('> .active')
2113 | var transition = callback
2114 | && $.support.transition
2115 | && ($active.length && $active.hasClass('fade') || !!container.find('> .fade').length)
2116 |
2117 | function next() {
2118 | $active
2119 | .removeClass('active')
2120 | .find('> .dropdown-menu > .active')
2121 | .removeClass('active')
2122 | .end()
2123 | .find('[data-toggle="tab"]')
2124 | .attr('aria-expanded', false)
2125 |
2126 | element
2127 | .addClass('active')
2128 | .find('[data-toggle="tab"]')
2129 | .attr('aria-expanded', true)
2130 |
2131 | if (transition) {
2132 | element[0].offsetWidth // reflow for transition
2133 | element.addClass('in')
2134 | } else {
2135 | element.removeClass('fade')
2136 | }
2137 |
2138 | if (element.parent('.dropdown-menu').length) {
2139 | element
2140 | .closest('li.dropdown')
2141 | .addClass('active')
2142 | .end()
2143 | .find('[data-toggle="tab"]')
2144 | .attr('aria-expanded', true)
2145 | }
2146 |
2147 | callback && callback()
2148 | }
2149 |
2150 | $active.length && transition ?
2151 | $active
2152 | .one('bsTransitionEnd', next)
2153 | .emulateTransitionEnd(Tab.TRANSITION_DURATION) :
2154 | next()
2155 |
2156 | $active.removeClass('in')
2157 | }
2158 |
2159 |
2160 | // TAB PLUGIN DEFINITION
2161 | // =====================
2162 |
2163 | function Plugin(option) {
2164 | return this.each(function () {
2165 | var $this = $(this)
2166 | var data = $this.data('bs.tab')
2167 |
2168 | if (!data) $this.data('bs.tab', (data = new Tab(this)))
2169 | if (typeof option == 'string') data[option]()
2170 | })
2171 | }
2172 |
2173 | var old = $.fn.tab
2174 |
2175 | $.fn.tab = Plugin
2176 | $.fn.tab.Constructor = Tab
2177 |
2178 |
2179 | // TAB NO CONFLICT
2180 | // ===============
2181 |
2182 | $.fn.tab.noConflict = function () {
2183 | $.fn.tab = old
2184 | return this
2185 | }
2186 |
2187 |
2188 | // TAB DATA-API
2189 | // ============
2190 |
2191 | var clickHandler = function (e) {
2192 | e.preventDefault()
2193 | Plugin.call($(this), 'show')
2194 | }
2195 |
2196 | $(document)
2197 | .on('click.bs.tab.data-api', '[data-toggle="tab"]', clickHandler)
2198 | .on('click.bs.tab.data-api', '[data-toggle="pill"]', clickHandler)
2199 |
2200 | }(jQuery);
2201 |
2202 | /* ========================================================================
2203 | * Bootstrap: affix.js v3.3.5
2204 | * http://getbootstrap.com/javascript/#affix
2205 | * ========================================================================
2206 | * Copyright 2011-2015 Twitter, Inc.
2207 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
2208 | * ======================================================================== */
2209 |
2210 |
2211 | +function ($) {
2212 | 'use strict';
2213 |
2214 | // AFFIX CLASS DEFINITION
2215 | // ======================
2216 |
2217 | var Affix = function (element, options) {
2218 | this.options = $.extend({}, Affix.DEFAULTS, options)
2219 |
2220 | this.$target = $(this.options.target)
2221 | .on('scroll.bs.affix.data-api', $.proxy(this.checkPosition, this))
2222 | .on('click.bs.affix.data-api', $.proxy(this.checkPositionWithEventLoop, this))
2223 |
2224 | this.$element = $(element)
2225 | this.affixed = null
2226 | this.unpin = null
2227 | this.pinnedOffset = null
2228 |
2229 | this.checkPosition()
2230 | }
2231 |
2232 | Affix.VERSION = '3.3.5'
2233 |
2234 | Affix.RESET = 'affix affix-top affix-bottom'
2235 |
2236 | Affix.DEFAULTS = {
2237 | offset: 0,
2238 | target: window
2239 | }
2240 |
2241 | Affix.prototype.getState = function (scrollHeight, height, offsetTop, offsetBottom) {
2242 | var scrollTop = this.$target.scrollTop()
2243 | var position = this.$element.offset()
2244 | var targetHeight = this.$target.height()
2245 |
2246 | if (offsetTop != null && this.affixed == 'top') return scrollTop < offsetTop ? 'top' : false
2247 |
2248 | if (this.affixed == 'bottom') {
2249 | if (offsetTop != null) return (scrollTop + this.unpin <= position.top) ? false : 'bottom'
2250 | return (scrollTop + targetHeight <= scrollHeight - offsetBottom) ? false : 'bottom'
2251 | }
2252 |
2253 | var initializing = this.affixed == null
2254 | var colliderTop = initializing ? scrollTop : position.top
2255 | var colliderHeight = initializing ? targetHeight : height
2256 |
2257 | if (offsetTop != null && scrollTop <= offsetTop) return 'top'
2258 | if (offsetBottom != null && (colliderTop + colliderHeight >= scrollHeight - offsetBottom)) return 'bottom'
2259 |
2260 | return false
2261 | }
2262 |
2263 | Affix.prototype.getPinnedOffset = function () {
2264 | if (this.pinnedOffset) return this.pinnedOffset
2265 | this.$element.removeClass(Affix.RESET).addClass('affix')
2266 | var scrollTop = this.$target.scrollTop()
2267 | var position = this.$element.offset()
2268 | return (this.pinnedOffset = position.top - scrollTop)
2269 | }
2270 |
2271 | Affix.prototype.checkPositionWithEventLoop = function () {
2272 | setTimeout($.proxy(this.checkPosition, this), 1)
2273 | }
2274 |
2275 | Affix.prototype.checkPosition = function () {
2276 | if (!this.$element.is(':visible')) return
2277 |
2278 | var height = this.$element.height()
2279 | var offset = this.options.offset
2280 | var offsetTop = offset.top
2281 | var offsetBottom = offset.bottom
2282 | var scrollHeight = Math.max($(document).height(), $(document.body).height())
2283 |
2284 | if (typeof offset != 'object') offsetBottom = offsetTop = offset
2285 | if (typeof offsetTop == 'function') offsetTop = offset.top(this.$element)
2286 | if (typeof offsetBottom == 'function') offsetBottom = offset.bottom(this.$element)
2287 |
2288 | var affix = this.getState(scrollHeight, height, offsetTop, offsetBottom)
2289 |
2290 | if (this.affixed != affix) {
2291 | if (this.unpin != null) this.$element.css('top', '')
2292 |
2293 | var affixType = 'affix' + (affix ? '-' + affix : '')
2294 | var e = $.Event(affixType + '.bs.affix')
2295 |
2296 | this.$element.trigger(e)
2297 |
2298 | if (e.isDefaultPrevented()) return
2299 |
2300 | this.affixed = affix
2301 | this.unpin = affix == 'bottom' ? this.getPinnedOffset() : null
2302 |
2303 | this.$element
2304 | .removeClass(Affix.RESET)
2305 | .addClass(affixType)
2306 | .trigger(affixType.replace('affix', 'affixed') + '.bs.affix')
2307 | }
2308 |
2309 | if (affix == 'bottom') {
2310 | this.$element.offset({
2311 | top: scrollHeight - height - offsetBottom
2312 | })
2313 | }
2314 | }
2315 |
2316 |
2317 | // AFFIX PLUGIN DEFINITION
2318 | // =======================
2319 |
2320 | function Plugin(option) {
2321 | return this.each(function () {
2322 | var $this = $(this)
2323 | var data = $this.data('bs.affix')
2324 | var options = typeof option == 'object' && option
2325 |
2326 | if (!data) $this.data('bs.affix', (data = new Affix(this, options)))
2327 | if (typeof option == 'string') data[option]()
2328 | })
2329 | }
2330 |
2331 | var old = $.fn.affix
2332 |
2333 | $.fn.affix = Plugin
2334 | $.fn.affix.Constructor = Affix
2335 |
2336 |
2337 | // AFFIX NO CONFLICT
2338 | // =================
2339 |
2340 | $.fn.affix.noConflict = function () {
2341 | $.fn.affix = old
2342 | return this
2343 | }
2344 |
2345 |
2346 | // AFFIX DATA-API
2347 | // ==============
2348 |
2349 | $(window).on('load', function () {
2350 | $('[data-spy="affix"]').each(function () {
2351 | var $spy = $(this)
2352 | var data = $spy.data()
2353 |
2354 | data.offset = data.offset || {}
2355 |
2356 | if (data.offsetBottom != null) data.offset.bottom = data.offsetBottom
2357 | if (data.offsetTop != null) data.offset.top = data.offsetTop
2358 |
2359 | Plugin.call($spy, data)
2360 | })
2361 | })
2362 |
2363 | }(jQuery);
2364 |
--------------------------------------------------------------------------------