├── .gitignore ├── resources └── public │ ├── img │ ├── glyphicons-halflings.png │ └── glyphicons-halflings-white.png │ ├── css │ ├── bootstrap-responsive.min.css │ ├── docs.css │ └── bootstrap-responsive.css │ └── js │ ├── bootstrap.min.js │ └── bootstrap.js ├── project.clj ├── src └── url_shorten │ ├── server.clj │ ├── views.clj │ ├── shorten.clj │ └── common.clj └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | pom.xml 2 | *jar 3 | /lib/ 4 | /classes/ 5 | .lein-deps-sum 6 | .cake 7 | target/ 8 | -------------------------------------------------------------------------------- /resources/public/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrypnz/url-shorten/master/resources/public/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /resources/public/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrypnz/url-shorten/master/resources/public/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /project.clj: -------------------------------------------------------------------------------- 1 | (defproject url-shorten "0.1.0" 2 | :description "Little URL Shortener Powered By Noir and Redis" 3 | :dependencies [[org.clojure/clojure "1.4.0"] 4 | [noir "1.3.0-beta3"] 5 | [clj-redis "0.0.12"]] 6 | :main url-shorten.server) 7 | 8 | -------------------------------------------------------------------------------- /src/url_shorten/server.clj: -------------------------------------------------------------------------------- 1 | (ns url-shorten.server 2 | (:require [noir.server :as server])) 3 | 4 | (server/load-views-ns 'url-shorten.views) 5 | 6 | (defn -main [& m] 7 | (let [mode (keyword (or (first m) :dev)) 8 | port (Integer. (get (System/getenv) "PORT" "8080"))] 9 | (server/start port {:mode mode 10 | :ns 'url-shorten}))) 11 | 12 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Little URL Shortener 2 | 3 | A weekend demo project using Clojure, Noir and Redis. 4 | 5 | ## Usage 6 | 7 | If you use cake, substitute 'lein' with 'cake' below. Everything should work fine. 8 | 9 | ```bash 10 | lein deps 11 | lein run 12 | ``` 13 | 14 | ## License 15 | 16 | Copyright (C) 2011 Jerry Peng 17 | 18 | Distributed under the Eclipse Public License, the same as Clojure. 19 | 20 | -------------------------------------------------------------------------------- /src/url_shorten/views.clj: -------------------------------------------------------------------------------- 1 | (ns url-shorten.views 2 | (:use [url-shorten.common] 3 | [url-shorten.shorten] 4 | [noir.core :only [defpage defpartial]] 5 | [hiccup.form :only [form-to text-field submit-button]] 6 | [hiccup.element :only [link-to]]) 7 | (:require [noir.response :as resp] 8 | [noir.request :as req])) 9 | 10 | (defn- short-url-link 11 | [id] 12 | (let [{:keys [scheme server-name server-port]} (req/ring-request) 13 | host (if (= server-port 80) 14 | server-name 15 | (str server-name ":" server-port))] 16 | (link-to (str "/" id) 17 | (str (name scheme) "://" host "/" id)))) 18 | 19 | (defpage "/" [] 20 | (layout 21 | [:h3 "Welcome to Little URL Shortener"] 22 | [:div.row-fluid 23 | [:div.span12 24 | (form-to {:class "form-inline"} 25 | [:post "/"] 26 | [:input {:type "url" 27 | :name "url" 28 | :class "span8" 29 | :place-holder "Please input an URL"}] 30 | (submit-button {:class "btn btn-success span2 offset2"} 31 | "Shorten It!")) 32 | [:legend "Hottest URLs:"] 33 | [:table.table.table-hover 34 | [:thead 35 | [:tr [:td "Short URL"] [:td "Original URL"]]] 36 | [:tbody 37 | (map (fn [[id url]] 38 | [:tr [:td (short-url-link id)] [:td (link-to url url)]]) 39 | (get-urls))]] 40 | ]])) 41 | 42 | (defpage [:post "/"] {:keys [url]} 43 | (layout 44 | [:h3 "Here is your shortened URL"] 45 | [:h3 (short-url-link (shorten-url! url))] 46 | [:p (link-to "/" "Back")])) 47 | 48 | (defpage "/:id" {:keys [id]} 49 | (if-let [url (access-url! id)] 50 | (resp/redirect url) 51 | (resp/status 52 | 404 53 | (layout 54 | [:h3 "404 Not Found"] 55 | [:div.alert 56 | [:strong "Oops!"] "I'm sorry but the URL is not found on this site."] 57 | [:p (link-to "/" "Back")])))) 58 | 59 | 60 | -------------------------------------------------------------------------------- /src/url_shorten/shorten.clj: -------------------------------------------------------------------------------- 1 | (ns url-shorten.shorten 2 | (:require [clj-redis.client :as redis])) 3 | 4 | (def ^:private alphabetics 5 | "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789") 6 | 7 | (def ^:private alpha->num (zipmap alphabetics (range))) 8 | 9 | (def ^:private alpha-len (count alphabetics)) 10 | 11 | (defn encode-id 12 | "Encode an ID to a string of characters" 13 | [id] 14 | (apply str 15 | (if (= id 0) 16 | (first alphabetics) 17 | (loop [n id chars []] 18 | (if (= n 0) 19 | chars 20 | (recur (quot n alpha-len) 21 | (conj chars (nth alphabetics (mod n alpha-len))))))))) 22 | 23 | (defn decode-id 24 | "Decode an ID to a number" 25 | [idstr] 26 | (apply + (map-indexed 27 | #(* (long (Math/pow alpha-len %1)) (alpha->num %2)) 28 | idstr))) 29 | 30 | (def ^:private counter-key "urlshorten.idcounter") 31 | 32 | (def ^:private url-id-key "urlshorten.url2id") 33 | 34 | (def ^:private id-url-key "urlshorten.id2url") 35 | 36 | (def ^:private url-access "urlshorten.access") 37 | 38 | (defonce db (redis/init)) 39 | 40 | (redis/setnx db counter-key "10000") 41 | 42 | (defn shorten-url! 43 | "Shorten an URL" 44 | [url] 45 | (or (redis/hget db url-id-key url) 46 | (let [id (encode-id (redis/incr db counter-key))] 47 | (redis/hset db url-id-key url id) 48 | (redis/hset db id-url-key id url) 49 | (redis/zadd db url-access 0 id) 50 | id))) 51 | 52 | (defn- get-real-url 53 | "Decode the given id and find the real URL" 54 | [id] 55 | (redis/hget db id-url-key id)) 56 | 57 | (defn access-url! 58 | "Access an URL, increment the access number" 59 | [id] 60 | (when-let [url (get-real-url id)] 61 | (redis/zincrby db url-access 1 id) 62 | url)) 63 | 64 | (defn get-urls 65 | "Get a list of the ID and URLs" 66 | [] 67 | (let [ids (redis/zrevrange db url-access 0 50)] 68 | (if-not (= (count ids) 0) 69 | (map vector ids (apply redis/hmget db id-url-key ids))))) 70 | -------------------------------------------------------------------------------- /src/url_shorten/common.clj: -------------------------------------------------------------------------------- 1 | (ns url-shorten.common 2 | (:use [noir.core :only [defpartial defpage url-for]] 3 | [hiccup.page :only [include-js include-css html5]] 4 | [hiccup.element :only [mail-to link-to]])) 5 | 6 | (def links 7 | [["Clojure" "http://clojure.org"] 8 | ["Noir" "http://www.webnoir.org"] 9 | ["Blog" "http://jerrypeng.me"] 10 | ["Github" "http://github.com/moonranger/url-shorten"]]) 11 | 12 | (defpartial layout [& content] 13 | (html5 14 | [:head 15 | [:title "Little URL Shortener"] 16 | (include-css "/css/bootstrap.css") 17 | (include-css "/css/bootstrap-responsive.css") 18 | (include-css "/css/docs.css")] 19 | [:body 20 | [:a {:href "https://github.com/moonranger/url-shorten"} 21 | [:img {:style "position: absolute; z-index: 9999; top: 0; right: 0; border: 0;" 22 | :src "https://s3.amazonaws.com/github/ribbons/forkme_right_orange_ff7600.png" 23 | :alt "Fork me on Github"}]] 24 | [:div.navbar.navbar-inverse.navbar-fixed-top 25 | [:div.navbar-inner 26 | [:div.container 27 | [:button.btn.btn-navbar {:type "button" 28 | :data-toggle "collapse" 29 | :data-target ".nav-collapse"} 30 | [:span.icon-bar] 31 | [:span.icon-bar] 32 | [:span.icon-bar]] 33 | [:div.nav-collapse.collapse 34 | [:ul.nav 35 | [:li (link-to "/" "Home")] 36 | [:li (link-to "/about/me" "About")]]]]]] 37 | [:div.container 38 | content] 39 | [:footer.footer 40 | [:div.container 41 | [:p "Powered by Clojure and Noir"] 42 | [:ul.footer-links 43 | (interleave (map (fn [[k v]] [:li (link-to v k)]) links) 44 | (repeat [:li.muted "·"]))]]] 45 | (include-js "/js/jquery.js") 46 | (include-js "/js/bootstrap.js")])) 47 | 48 | (defpage "/about/me" [] 49 | (layout 50 | [:h3 "Jerry's first Noir project, a small URL shortener."] 51 | [:p "Clojure is cool, Noir is cool, Reddis is cool!"] 52 | [:p "This is a small weekend project for practising web development with all 53 | these cool stuff."])) 54 | -------------------------------------------------------------------------------- /resources/public/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap Responsive v2.2.1 3 | * 4 | * Copyright 2012 Twitter, Inc 5 | * Licensed under the Apache License v2.0 6 | * http://www.apache.org/licenses/LICENSE-2.0 7 | * 8 | * Designed and built with all the love in the world @twitter by @mdo and @fat. 9 | */.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;line-height:0;content:""}.clearfix:after{clear:both}.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.hidden{display:none;visibility:hidden}.visible-phone{display:none!important}.visible-tablet{display:none!important}.hidden-desktop{display:none!important}.visible-desktop{display:inherit!important}@media(min-width:768px) and (max-width:979px){.hidden-desktop{display:inherit!important}.visible-desktop{display:none!important}.visible-tablet{display:inherit!important}.hidden-tablet{display:none!important}}@media(max-width:767px){.hidden-desktop{display:inherit!important}.visible-desktop{display:none!important}.visible-phone{display:inherit!important}.hidden-phone{display:none!important}}@media(min-width:1200px){.row{margin-left:-30px;*zoom:1}.row:before,.row:after{display:table;line-height:0;content:""}.row:after{clear:both}[class*="span"]{float:left;min-height:1px;margin-left:30px}.container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:1170px}.span12{width:1170px}.span11{width:1070px}.span10{width:970px}.span9{width:870px}.span8{width:770px}.span7{width:670px}.span6{width:570px}.span5{width:470px}.span4{width:370px}.span3{width:270px}.span2{width:170px}.span1{width:70px}.offset12{margin-left:1230px}.offset11{margin-left:1130px}.offset10{margin-left:1030px}.offset9{margin-left:930px}.offset8{margin-left:830px}.offset7{margin-left:730px}.offset6{margin-left:630px}.offset5{margin-left:530px}.offset4{margin-left:430px}.offset3{margin-left:330px}.offset2{margin-left:230px}.offset1{margin-left:130px}.row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;line-height:0;content:""}.row-fluid:after{clear:both}.row-fluid [class*="span"]{display:block;float:left;width:100%;min-height:30px;margin-left:2.564102564102564%;*margin-left:2.5109110747408616%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.row-fluid [class*="span"]:first-child{margin-left:0}.row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.564102564102564%}.row-fluid .span12{width:100%;*width:99.94680851063829%}.row-fluid .span11{width:91.45299145299145%;*width:91.39979996362975%}.row-fluid .span10{width:82.90598290598291%;*width:82.8527914166212%}.row-fluid .span9{width:74.35897435897436%;*width:74.30578286961266%}.row-fluid .span8{width:65.81196581196582%;*width:65.75877432260411%}.row-fluid .span7{width:57.26495726495726%;*width:57.21176577559556%}.row-fluid .span6{width:48.717948717948715%;*width:48.664757228587014%}.row-fluid .span5{width:40.17094017094017%;*width:40.11774868157847%}.row-fluid .span4{width:31.623931623931625%;*width:31.570740134569924%}.row-fluid .span3{width:23.076923076923077%;*width:23.023731587561375%}.row-fluid .span2{width:14.52991452991453%;*width:14.476723040552828%}.row-fluid .span1{width:5.982905982905983%;*width:5.929714493544281%}.row-fluid .offset12{margin-left:105.12820512820512%;*margin-left:105.02182214948171%}.row-fluid .offset12:first-child{margin-left:102.56410256410257%;*margin-left:102.45771958537915%}.row-fluid .offset11{margin-left:96.58119658119658%;*margin-left:96.47481360247316%}.row-fluid .offset11:first-child{margin-left:94.01709401709402%;*margin-left:93.91071103837061%}.row-fluid .offset10{margin-left:88.03418803418803%;*margin-left:87.92780505546462%}.row-fluid .offset10:first-child{margin-left:85.47008547008548%;*margin-left:85.36370249136206%}.row-fluid .offset9{margin-left:79.48717948717949%;*margin-left:79.38079650845607%}.row-fluid .offset9:first-child{margin-left:76.92307692307693%;*margin-left:76.81669394435352%}.row-fluid .offset8{margin-left:70.94017094017094%;*margin-left:70.83378796144753%}.row-fluid .offset8:first-child{margin-left:68.37606837606839%;*margin-left:68.26968539734497%}.row-fluid .offset7{margin-left:62.393162393162385%;*margin-left:62.28677941443899%}.row-fluid .offset7:first-child{margin-left:59.82905982905982%;*margin-left:59.72267685033642%}.row-fluid .offset6{margin-left:53.84615384615384%;*margin-left:53.739770867430444%}.row-fluid .offset6:first-child{margin-left:51.28205128205128%;*margin-left:51.175668303327875%}.row-fluid .offset5{margin-left:45.299145299145295%;*margin-left:45.1927623204219%}.row-fluid .offset5:first-child{margin-left:42.73504273504273%;*margin-left:42.62865975631933%}.row-fluid .offset4{margin-left:36.75213675213675%;*margin-left:36.645753773413354%}.row-fluid .offset4:first-child{margin-left:34.18803418803419%;*margin-left:34.081651209310785%}.row-fluid .offset3{margin-left:28.205128205128204%;*margin-left:28.0987452264048%}.row-fluid .offset3:first-child{margin-left:25.641025641025642%;*margin-left:25.53464266230224%}.row-fluid .offset2{margin-left:19.65811965811966%;*margin-left:19.551736679396257%}.row-fluid .offset2:first-child{margin-left:17.094017094017094%;*margin-left:16.98763411529369%}.row-fluid .offset1{margin-left:11.11111111111111%;*margin-left:11.004728132387708%}.row-fluid .offset1:first-child{margin-left:8.547008547008547%;*margin-left:8.440625568285142%}input,textarea,.uneditable-input{margin-left:0}.controls-row [class*="span"]+[class*="span"]{margin-left:30px}input.span12,textarea.span12,.uneditable-input.span12{width:1156px}input.span11,textarea.span11,.uneditable-input.span11{width:1056px}input.span10,textarea.span10,.uneditable-input.span10{width:956px}input.span9,textarea.span9,.uneditable-input.span9{width:856px}input.span8,textarea.span8,.uneditable-input.span8{width:756px}input.span7,textarea.span7,.uneditable-input.span7{width:656px}input.span6,textarea.span6,.uneditable-input.span6{width:556px}input.span5,textarea.span5,.uneditable-input.span5{width:456px}input.span4,textarea.span4,.uneditable-input.span4{width:356px}input.span3,textarea.span3,.uneditable-input.span3{width:256px}input.span2,textarea.span2,.uneditable-input.span2{width:156px}input.span1,textarea.span1,.uneditable-input.span1{width:56px}.thumbnails{margin-left:-30px}.thumbnails>li{margin-left:30px}.row-fluid .thumbnails{margin-left:0}}@media(min-width:768px) and (max-width:979px){.row{margin-left:-20px;*zoom:1}.row:before,.row:after{display:table;line-height:0;content:""}.row:after{clear:both}[class*="span"]{float:left;min-height:1px;margin-left:20px}.container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:724px}.span12{width:724px}.span11{width:662px}.span10{width:600px}.span9{width:538px}.span8{width:476px}.span7{width:414px}.span6{width:352px}.span5{width:290px}.span4{width:228px}.span3{width:166px}.span2{width:104px}.span1{width:42px}.offset12{margin-left:764px}.offset11{margin-left:702px}.offset10{margin-left:640px}.offset9{margin-left:578px}.offset8{margin-left:516px}.offset7{margin-left:454px}.offset6{margin-left:392px}.offset5{margin-left:330px}.offset4{margin-left:268px}.offset3{margin-left:206px}.offset2{margin-left:144px}.offset1{margin-left:82px}.row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;line-height:0;content:""}.row-fluid:after{clear:both}.row-fluid [class*="span"]{display:block;float:left;width:100%;min-height:30px;margin-left:2.7624309392265194%;*margin-left:2.709239449864817%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.row-fluid [class*="span"]:first-child{margin-left:0}.row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.7624309392265194%}.row-fluid .span12{width:100%;*width:99.94680851063829%}.row-fluid .span11{width:91.43646408839778%;*width:91.38327259903608%}.row-fluid .span10{width:82.87292817679558%;*width:82.81973668743387%}.row-fluid .span9{width:74.30939226519337%;*width:74.25620077583166%}.row-fluid .span8{width:65.74585635359117%;*width:65.69266486422946%}.row-fluid .span7{width:57.18232044198895%;*width:57.12912895262725%}.row-fluid .span6{width:48.61878453038674%;*width:48.56559304102504%}.row-fluid .span5{width:40.05524861878453%;*width:40.00205712942283%}.row-fluid .span4{width:31.491712707182323%;*width:31.43852121782062%}.row-fluid .span3{width:22.92817679558011%;*width:22.87498530621841%}.row-fluid .span2{width:14.3646408839779%;*width:14.311449394616199%}.row-fluid .span1{width:5.801104972375691%;*width:5.747913483013988%}.row-fluid .offset12{margin-left:105.52486187845304%;*margin-left:105.41847889972962%}.row-fluid .offset12:first-child{margin-left:102.76243093922652%;*margin-left:102.6560479605031%}.row-fluid .offset11{margin-left:96.96132596685082%;*margin-left:96.8549429881274%}.row-fluid .offset11:first-child{margin-left:94.1988950276243%;*margin-left:94.09251204890089%}.row-fluid .offset10{margin-left:88.39779005524862%;*margin-left:88.2914070765252%}.row-fluid .offset10:first-child{margin-left:85.6353591160221%;*margin-left:85.52897613729868%}.row-fluid .offset9{margin-left:79.8342541436464%;*margin-left:79.72787116492299%}.row-fluid .offset9:first-child{margin-left:77.07182320441989%;*margin-left:76.96544022569647%}.row-fluid .offset8{margin-left:71.2707182320442%;*margin-left:71.16433525332079%}.row-fluid .offset8:first-child{margin-left:68.50828729281768%;*margin-left:68.40190431409427%}.row-fluid .offset7{margin-left:62.70718232044199%;*margin-left:62.600799341718584%}.row-fluid .offset7:first-child{margin-left:59.94475138121547%;*margin-left:59.838368402492065%}.row-fluid .offset6{margin-left:54.14364640883978%;*margin-left:54.037263430116376%}.row-fluid .offset6:first-child{margin-left:51.38121546961326%;*margin-left:51.27483249088986%}.row-fluid .offset5{margin-left:45.58011049723757%;*margin-left:45.47372751851417%}.row-fluid .offset5:first-child{margin-left:42.81767955801105%;*margin-left:42.71129657928765%}.row-fluid .offset4{margin-left:37.01657458563536%;*margin-left:36.91019160691196%}.row-fluid .offset4:first-child{margin-left:34.25414364640884%;*margin-left:34.14776066768544%}.row-fluid .offset3{margin-left:28.45303867403315%;*margin-left:28.346655695309746%}.row-fluid .offset3:first-child{margin-left:25.69060773480663%;*margin-left:25.584224756083227%}.row-fluid .offset2{margin-left:19.88950276243094%;*margin-left:19.783119783707537%}.row-fluid .offset2:first-child{margin-left:17.12707182320442%;*margin-left:17.02068884448102%}.row-fluid .offset1{margin-left:11.32596685082873%;*margin-left:11.219583872105325%}.row-fluid .offset1:first-child{margin-left:8.56353591160221%;*margin-left:8.457152932878806%}input,textarea,.uneditable-input{margin-left:0}.controls-row [class*="span"]+[class*="span"]{margin-left:20px}input.span12,textarea.span12,.uneditable-input.span12{width:710px}input.span11,textarea.span11,.uneditable-input.span11{width:648px}input.span10,textarea.span10,.uneditable-input.span10{width:586px}input.span9,textarea.span9,.uneditable-input.span9{width:524px}input.span8,textarea.span8,.uneditable-input.span8{width:462px}input.span7,textarea.span7,.uneditable-input.span7{width:400px}input.span6,textarea.span6,.uneditable-input.span6{width:338px}input.span5,textarea.span5,.uneditable-input.span5{width:276px}input.span4,textarea.span4,.uneditable-input.span4{width:214px}input.span3,textarea.span3,.uneditable-input.span3{width:152px}input.span2,textarea.span2,.uneditable-input.span2{width:90px}input.span1,textarea.span1,.uneditable-input.span1{width:28px}}@media(max-width:767px){body{padding-right:20px;padding-left:20px}.navbar-fixed-top,.navbar-fixed-bottom,.navbar-static-top{margin-right:-20px;margin-left:-20px}.container-fluid{padding:0}.dl-horizontal dt{float:none;width:auto;clear:none;text-align:left}.dl-horizontal dd{margin-left:0}.container{width:auto}.row-fluid{width:100%}.row,.thumbnails{margin-left:0}.thumbnails>li{float:none;margin-left:0}[class*="span"],.uneditable-input[class*="span"],.row-fluid [class*="span"]{display:block;float:none;width:100%;margin-left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.span12,.row-fluid .span12{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.row-fluid [class*="offset"]:first-child{margin-left:0}.input-large,.input-xlarge,.input-xxlarge,input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.input-prepend input,.input-append input,.input-prepend input[class*="span"],.input-append input[class*="span"]{display:inline-block;width:auto}.controls-row [class*="span"]+[class*="span"]{margin-left:0}.modal{position:fixed;top:20px;right:20px;left:20px;width:auto;margin:0}.modal.fade{top:-100px}.modal.fade.in{top:20px}}@media(max-width:480px){.nav-collapse{-webkit-transform:translate3d(0,0,0)}.page-header h1 small{display:block;line-height:20px}input[type="checkbox"],input[type="radio"]{border:1px solid #ccc}.form-horizontal .control-label{float:none;width:auto;padding-top:0;text-align:left}.form-horizontal .controls{margin-left:0}.form-horizontal .control-list{padding-top:0}.form-horizontal .form-actions{padding-right:10px;padding-left:10px}.media .pull-left,.media .pull-right{display:block;float:none;margin-bottom:10px}.media-object{margin-right:0;margin-left:0}.modal{top:10px;right:10px;left:10px}.modal-header .close{padding:10px;margin:-10px}.carousel-caption{position:static}}@media(max-width:979px){body{padding-top:0}.navbar-fixed-top,.navbar-fixed-bottom{position:static}.navbar-fixed-top{margin-bottom:20px}.navbar-fixed-bottom{margin-top:20px}.navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding:5px}.navbar .container{width:auto;padding:0}.navbar .brand{padding-right:10px;padding-left:10px;margin:0 0 0 -5px}.nav-collapse{clear:both}.nav-collapse .nav{float:none;margin:0 0 10px}.nav-collapse .nav>li{float:none}.nav-collapse .nav>li>a{margin-bottom:2px}.nav-collapse .nav>.divider-vertical{display:none}.nav-collapse .nav .nav-header{color:#777;text-shadow:none}.nav-collapse .nav>li>a,.nav-collapse .dropdown-menu a{padding:9px 15px;font-weight:bold;color:#777;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.nav-collapse .btn{padding:4px 10px 4px;font-weight:normal;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.nav-collapse .dropdown-menu li+li a{margin-bottom:2px}.nav-collapse .nav>li>a:hover,.nav-collapse .dropdown-menu a:hover{background-color:#f2f2f2}.navbar-inverse .nav-collapse .nav>li>a,.navbar-inverse .nav-collapse .dropdown-menu a{color:#999}.navbar-inverse .nav-collapse .nav>li>a:hover,.navbar-inverse .nav-collapse .dropdown-menu a:hover{background-color:#111}.nav-collapse.in .btn-group{padding:0;margin-top:5px}.nav-collapse .dropdown-menu{position:static;top:auto;left:auto;display:none;float:none;max-width:none;padding:0;margin:0 15px;background-color:transparent;border:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.nav-collapse .open>.dropdown-menu{display:block}.nav-collapse .dropdown-menu:before,.nav-collapse .dropdown-menu:after{display:none}.nav-collapse .dropdown-menu .divider{display:none}.nav-collapse .nav>li>.dropdown-menu:before,.nav-collapse .nav>li>.dropdown-menu:after{display:none}.nav-collapse .navbar-form,.nav-collapse .navbar-search{float:none;padding:10px 15px;margin:10px 0;border-top:1px solid #f2f2f2;border-bottom:1px solid #f2f2f2;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1)}.navbar-inverse .nav-collapse .navbar-form,.navbar-inverse .nav-collapse .navbar-search{border-top-color:#111;border-bottom-color:#111}.navbar .nav-collapse .nav.pull-right{float:none;margin-left:0}.nav-collapse,.nav-collapse.collapse{height:0;overflow:hidden}.navbar .btn-navbar{display:block}.navbar-static .navbar-inner{padding-right:10px;padding-left:10px}}@media(min-width:980px){.nav-collapse.collapse{height:auto!important;overflow:visible!important}} 10 | -------------------------------------------------------------------------------- /resources/public/js/bootstrap.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap.js by @fat & @mdo 3 | * Copyright 2012 Twitter, Inc. 4 | * http://www.apache.org/licenses/LICENSE-2.0.txt 5 | */ 6 | !function(e){"use strict";e(function(){e.support.transition=function(){var e=function(){var e=document.createElement("bootstrap"),t={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"},n;for(n in t)if(e.style[n]!==undefined)return t[n]}();return e&&{end:e}}()})}(window.jQuery),!function(e){"use strict";var t='[data-dismiss="alert"]',n=function(n){e(n).on("click",t,this.close)};n.prototype.close=function(t){function s(){i.trigger("closed").remove()}var n=e(this),r=n.attr("data-target"),i;r||(r=n.attr("href"),r=r&&r.replace(/.*(?=#[^\s]*$)/,"")),i=e(r),t&&t.preventDefault(),i.length||(i=n.hasClass("alert")?n:n.parent()),i.trigger(t=e.Event("close"));if(t.isDefaultPrevented())return;i.removeClass("in"),e.support.transition&&i.hasClass("fade")?i.on(e.support.transition.end,s):s()},e.fn.alert=function(t){return this.each(function(){var r=e(this),i=r.data("alert");i||r.data("alert",i=new n(this)),typeof t=="string"&&i[t].call(r)})},e.fn.alert.Constructor=n,e(document).on("click.alert.data-api",t,n.prototype.close)}(window.jQuery),!function(e){"use strict";var t=function(t,n){this.$element=e(t),this.options=e.extend({},e.fn.button.defaults,n)};t.prototype.setState=function(e){var t="disabled",n=this.$element,r=n.data(),i=n.is("input")?"val":"html";e+="Text",r.resetText||n.data("resetText",n[i]()),n[i](r[e]||this.options[e]),setTimeout(function(){e=="loadingText"?n.addClass(t).attr(t,t):n.removeClass(t).removeAttr(t)},0)},t.prototype.toggle=function(){var e=this.$element.closest('[data-toggle="buttons-radio"]');e&&e.find(".active").removeClass("active"),this.$element.toggleClass("active")},e.fn.button=function(n){return this.each(function(){var r=e(this),i=r.data("button"),s=typeof n=="object"&&n;i||r.data("button",i=new t(this,s)),n=="toggle"?i.toggle():n&&i.setState(n)})},e.fn.button.defaults={loadingText:"loading..."},e.fn.button.Constructor=t,e(document).on("click.button.data-api","[data-toggle^=button]",function(t){var n=e(t.target);n.hasClass("btn")||(n=n.closest(".btn")),n.button("toggle")})}(window.jQuery),!function(e){"use strict";var t=function(t,n){this.$element=e(t),this.options=n,this.options.slide&&this.slide(this.options.slide),this.options.pause=="hover"&&this.$element.on("mouseenter",e.proxy(this.pause,this)).on("mouseleave",e.proxy(this.cycle,this))};t.prototype={cycle:function(t){return t||(this.paused=!1),this.options.interval&&!this.paused&&(this.interval=setInterval(e.proxy(this.next,this),this.options.interval)),this},to:function(t){var n=this.$element.find(".item.active"),r=n.parent().children(),i=r.index(n),s=this;if(t>r.length-1||t<0)return;return this.sliding?this.$element.one("slid",function(){s.to(t)}):i==t?this.pause().cycle():this.slide(t>i?"next":"prev",e(r[t]))},pause:function(t){return t||(this.paused=!0),this.$element.find(".next, .prev").length&&e.support.transition.end&&(this.$element.trigger(e.support.transition.end),this.cycle()),clearInterval(this.interval),this.interval=null,this},next:function(){if(this.sliding)return;return this.slide("next")},prev:function(){if(this.sliding)return;return this.slide("prev")},slide:function(t,n){var r=this.$element.find(".item.active"),i=n||r[t](),s=this.interval,o=t=="next"?"left":"right",u=t=="next"?"first":"last",a=this,f;this.sliding=!0,s&&this.pause(),i=i.length?i:this.$element.find(".item")[u](),f=e.Event("slide",{relatedTarget:i[0]});if(i.hasClass("active"))return;if(e.support.transition&&this.$element.hasClass("slide")){this.$element.trigger(f);if(f.isDefaultPrevented())return;i.addClass(t),i[0].offsetWidth,r.addClass(o),i.addClass(o),this.$element.one(e.support.transition.end,function(){i.removeClass([t,o].join(" ")).addClass("active"),r.removeClass(["active",o].join(" ")),a.sliding=!1,setTimeout(function(){a.$element.trigger("slid")},0)})}else{this.$element.trigger(f);if(f.isDefaultPrevented())return;r.removeClass("active"),i.addClass("active"),this.sliding=!1,this.$element.trigger("slid")}return s&&this.cycle(),this}},e.fn.carousel=function(n){return this.each(function(){var r=e(this),i=r.data("carousel"),s=e.extend({},e.fn.carousel.defaults,typeof n=="object"&&n),o=typeof n=="string"?n:s.slide;i||r.data("carousel",i=new t(this,s)),typeof n=="number"?i.to(n):o?i[o]():s.interval&&i.cycle()})},e.fn.carousel.defaults={interval:5e3,pause:"hover"},e.fn.carousel.Constructor=t,e(document).on("click.carousel.data-api","[data-slide]",function(t){var n=e(this),r,i=e(n.attr("data-target")||(r=n.attr("href"))&&r.replace(/.*(?=#[^\s]+$)/,"")),s=e.extend({},i.data(),n.data());i.carousel(s),t.preventDefault()})}(window.jQuery),!function(e){"use strict";var t=function(t,n){this.$element=e(t),this.options=e.extend({},e.fn.collapse.defaults,n),this.options.parent&&(this.$parent=e(this.options.parent)),this.options.toggle&&this.toggle()};t.prototype={constructor:t,dimension:function(){var e=this.$element.hasClass("width");return e?"width":"height"},show:function(){var t,n,r,i;if(this.transitioning)return;t=this.dimension(),n=e.camelCase(["scroll",t].join("-")),r=this.$parent&&this.$parent.find("> .accordion-group > .in");if(r&&r.length){i=r.data("collapse");if(i&&i.transitioning)return;r.collapse("hide"),i||r.data("collapse",null)}this.$element[t](0),this.transition("addClass",e.Event("show"),"shown"),e.support.transition&&this.$element[t](this.$element[0][n])},hide:function(){var t;if(this.transitioning)return;t=this.dimension(),this.reset(this.$element[t]()),this.transition("removeClass",e.Event("hide"),"hidden"),this.$element[t](0)},reset:function(e){var t=this.dimension();return this.$element.removeClass("collapse")[t](e||"auto")[0].offsetWidth,this.$element[e!==null?"addClass":"removeClass"]("collapse"),this},transition:function(t,n,r){var i=this,s=function(){n.type=="show"&&i.reset(),i.transitioning=0,i.$element.trigger(r)};this.$element.trigger(n);if(n.isDefaultPrevented())return;this.transitioning=1,this.$element[t]("in"),e.support.transition&&this.$element.hasClass("collapse")?this.$element.one(e.support.transition.end,s):s()},toggle:function(){this[this.$element.hasClass("in")?"hide":"show"]()}},e.fn.collapse=function(n){return this.each(function(){var r=e(this),i=r.data("collapse"),s=typeof n=="object"&&n;i||r.data("collapse",i=new t(this,s)),typeof n=="string"&&i[n]()})},e.fn.collapse.defaults={toggle:!0},e.fn.collapse.Constructor=t,e(document).on("click.collapse.data-api","[data-toggle=collapse]",function(t){var n=e(this),r,i=n.attr("data-target")||t.preventDefault()||(r=n.attr("href"))&&r.replace(/.*(?=#[^\s]+$)/,""),s=e(i).data("collapse")?"toggle":n.data();n[e(i).hasClass("in")?"addClass":"removeClass"]("collapsed"),e(i).collapse(s)})}(window.jQuery),!function(e){"use strict";function r(){e(t).each(function(){i(e(this)).removeClass("open")})}function i(t){var n=t.attr("data-target"),r;return n||(n=t.attr("href"),n=n&&/#/.test(n)&&n.replace(/.*(?=#[^\s]*$)/,"")),r=e(n),r.length||(r=t.parent()),r}var t="[data-toggle=dropdown]",n=function(t){var n=e(t).on("click.dropdown.data-api",this.toggle);e("html").on("click.dropdown.data-api",function(){n.parent().removeClass("open")})};n.prototype={constructor:n,toggle:function(t){var n=e(this),s,o;if(n.is(".disabled, :disabled"))return;return s=i(n),o=s.hasClass("open"),r(),o||(s.toggleClass("open"),n.focus()),!1},keydown:function(t){var n,r,s,o,u,a;if(!/(38|40|27)/.test(t.keyCode))return;n=e(this),t.preventDefault(),t.stopPropagation();if(n.is(".disabled, :disabled"))return;o=i(n),u=o.hasClass("open");if(!u||u&&t.keyCode==27)return n.click();r=e("[role=menu] li:not(.divider) a",o);if(!r.length)return;a=r.index(r.filter(":focus")),t.keyCode==38&&a>0&&a--,t.keyCode==40&&a').appendTo(document.body),this.$backdrop.click(this.options.backdrop=="static"?e.proxy(this.$element[0].focus,this.$element[0]):e.proxy(this.hide,this)),i&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),i?this.$backdrop.one(e.support.transition.end,t):t()}else!this.isShown&&this.$backdrop?(this.$backdrop.removeClass("in"),e.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one(e.support.transition.end,e.proxy(this.removeBackdrop,this)):this.removeBackdrop()):t&&t()}},e.fn.modal=function(n){return this.each(function(){var r=e(this),i=r.data("modal"),s=e.extend({},e.fn.modal.defaults,r.data(),typeof n=="object"&&n);i||r.data("modal",i=new t(this,s)),typeof n=="string"?i[n]():s.show&&i.show()})},e.fn.modal.defaults={backdrop:!0,keyboard:!0,show:!0},e.fn.modal.Constructor=t,e(document).on("click.modal.data-api",'[data-toggle="modal"]',function(t){var n=e(this),r=n.attr("href"),i=e(n.attr("data-target")||r&&r.replace(/.*(?=#[^\s]+$)/,"")),s=i.data("modal")?"toggle":e.extend({remote:!/#/.test(r)&&r},i.data(),n.data());t.preventDefault(),i.modal(s).one("hide",function(){n.focus()})})}(window.jQuery),!function(e){"use strict";var t=function(e,t){this.init("tooltip",e,t)};t.prototype={constructor:t,init:function(t,n,r){var i,s;this.type=t,this.$element=e(n),this.options=this.getOptions(r),this.enabled=!0,this.options.trigger=="click"?this.$element.on("click."+this.type,this.options.selector,e.proxy(this.toggle,this)):this.options.trigger!="manual"&&(i=this.options.trigger=="hover"?"mouseenter":"focus",s=this.options.trigger=="hover"?"mouseleave":"blur",this.$element.on(i+"."+this.type,this.options.selector,e.proxy(this.enter,this)),this.$element.on(s+"."+this.type,this.options.selector,e.proxy(this.leave,this))),this.options.selector?this._options=e.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},getOptions:function(t){return t=e.extend({},e.fn[this.type].defaults,t,this.$element.data()),t.delay&&typeof t.delay=="number"&&(t.delay={show:t.delay,hide:t.delay}),t},enter:function(t){var n=e(t.currentTarget)[this.type](this._options).data(this.type);if(!n.options.delay||!n.options.delay.show)return n.show();clearTimeout(this.timeout),n.hoverState="in",this.timeout=setTimeout(function(){n.hoverState=="in"&&n.show()},n.options.delay.show)},leave:function(t){var n=e(t.currentTarget)[this.type](this._options).data(this.type);this.timeout&&clearTimeout(this.timeout);if(!n.options.delay||!n.options.delay.hide)return n.hide();n.hoverState="out",this.timeout=setTimeout(function(){n.hoverState=="out"&&n.hide()},n.options.delay.hide)},show:function(){var e,t,n,r,i,s,o;if(this.hasContent()&&this.enabled){e=this.tip(),this.setContent(),this.options.animation&&e.addClass("fade"),s=typeof this.options.placement=="function"?this.options.placement.call(this,e[0],this.$element[0]):this.options.placement,t=/in/.test(s),e.detach().css({top:0,left:0,display:"block"}).insertAfter(this.$element),n=this.getPosition(t),r=e[0].offsetWidth,i=e[0].offsetHeight;switch(t?s.split(" ")[1]:s){case"bottom":o={top:n.top+n.height,left:n.left+n.width/2-r/2};break;case"top":o={top:n.top-i,left:n.left+n.width/2-r/2};break;case"left":o={top:n.top+n.height/2-i/2,left:n.left-r};break;case"right":o={top:n.top+n.height/2-i/2,left:n.left+n.width}}e.offset(o).addClass(s).addClass("in")}},setContent:function(){var e=this.tip(),t=this.getTitle();e.find(".tooltip-inner")[this.options.html?"html":"text"](t),e.removeClass("fade in top bottom left right")},hide:function(){function r(){var t=setTimeout(function(){n.off(e.support.transition.end).detach()},500);n.one(e.support.transition.end,function(){clearTimeout(t),n.detach()})}var t=this,n=this.tip();return n.removeClass("in"),e.support.transition&&this.$tip.hasClass("fade")?r():n.detach(),this},fixTitle:function(){var e=this.$element;(e.attr("title")||typeof e.attr("data-original-title")!="string")&&e.attr("data-original-title",e.attr("title")||"").removeAttr("title")},hasContent:function(){return this.getTitle()},getPosition:function(t){return e.extend({},t?{top:0,left:0}:this.$element.offset(),{width:this.$element[0].offsetWidth,height:this.$element[0].offsetHeight})},getTitle:function(){var e,t=this.$element,n=this.options;return e=t.attr("data-original-title")||(typeof n.title=="function"?n.title.call(t[0]):n.title),e},tip:function(){return this.$tip=this.$tip||e(this.options.template)},validate:function(){this.$element[0].parentNode||(this.hide(),this.$element=null,this.options=null)},enable:function(){this.enabled=!0},disable:function(){this.enabled=!1},toggleEnabled:function(){this.enabled=!this.enabled},toggle:function(t){var n=e(t.currentTarget)[this.type](this._options).data(this.type);n[n.tip().hasClass("in")?"hide":"show"]()},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}},e.fn.tooltip=function(n){return this.each(function(){var r=e(this),i=r.data("tooltip"),s=typeof n=="object"&&n;i||r.data("tooltip",i=new t(this,s)),typeof n=="string"&&i[n]()})},e.fn.tooltip.Constructor=t,e.fn.tooltip.defaults={animation:!0,placement:"top",selector:!1,template:'
',trigger:"hover",title:"",delay:0,html:!1}}(window.jQuery),!function(e){"use strict";var t=function(e,t){this.init("popover",e,t)};t.prototype=e.extend({},e.fn.tooltip.Constructor.prototype,{constructor:t,setContent:function(){var e=this.tip(),t=this.getTitle(),n=this.getContent();e.find(".popover-title")[this.options.html?"html":"text"](t),e.find(".popover-content > *")[this.options.html?"html":"text"](n),e.removeClass("fade top bottom left right in")},hasContent:function(){return this.getTitle()||this.getContent()},getContent:function(){var e,t=this.$element,n=this.options;return e=t.attr("data-content")||(typeof n.content=="function"?n.content.call(t[0]):n.content),e},tip:function(){return this.$tip||(this.$tip=e(this.options.template)),this.$tip},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}}),e.fn.popover=function(n){return this.each(function(){var r=e(this),i=r.data("popover"),s=typeof n=="object"&&n;i||r.data("popover",i=new t(this,s)),typeof n=="string"&&i[n]()})},e.fn.popover.Constructor=t,e.fn.popover.defaults=e.extend({},e.fn.tooltip.defaults,{placement:"right",trigger:"click",content:"",template:'

'})}(window.jQuery),!function(e){"use strict";function t(t,n){var r=e.proxy(this.process,this),i=e(t).is("body")?e(window):e(t),s;this.options=e.extend({},e.fn.scrollspy.defaults,n),this.$scrollElement=i.on("scroll.scroll-spy.data-api",r),this.selector=(this.options.target||(s=e(t).attr("href"))&&s.replace(/.*(?=#[^\s]+$)/,"")||"")+" .nav li > a",this.$body=e("body"),this.refresh(),this.process()}t.prototype={constructor:t,refresh:function(){var t=this,n;this.offsets=e([]),this.targets=e([]),n=this.$body.find(this.selector).map(function(){var t=e(this),n=t.data("target")||t.attr("href"),r=/^#\w/.test(n)&&e(n);return r&&r.length&&[[r.position().top,n]]||null}).sort(function(e,t){return e[0]-t[0]}).each(function(){t.offsets.push(this[0]),t.targets.push(this[1])})},process:function(){var e=this.$scrollElement.scrollTop()+this.options.offset,t=this.$scrollElement[0].scrollHeight||this.$body[0].scrollHeight,n=t-this.$scrollElement.height(),r=this.offsets,i=this.targets,s=this.activeTarget,o;if(e>=n)return s!=(o=i.last()[0])&&this.activate(o);for(o=r.length;o--;)s!=i[o]&&e>=r[o]&&(!r[o+1]||e<=r[o+1])&&this.activate(i[o])},activate:function(t){var n,r;this.activeTarget=t,e(this.selector).parent(".active").removeClass("active"),r=this.selector+'[data-target="'+t+'"],'+this.selector+'[href="'+t+'"]',n=e(r).parent("li").addClass("active"),n.parent(".dropdown-menu").length&&(n=n.closest("li.dropdown").addClass("active")),n.trigger("activate")}},e.fn.scrollspy=function(n){return this.each(function(){var r=e(this),i=r.data("scrollspy"),s=typeof n=="object"&&n;i||r.data("scrollspy",i=new t(this,s)),typeof n=="string"&&i[n]()})},e.fn.scrollspy.Constructor=t,e.fn.scrollspy.defaults={offset:10},e(window).on("load",function(){e('[data-spy="scroll"]').each(function(){var t=e(this);t.scrollspy(t.data())})})}(window.jQuery),!function(e){"use strict";var t=function(t){this.element=e(t)};t.prototype={constructor:t,show:function(){var t=this.element,n=t.closest("ul:not(.dropdown-menu)"),r=t.attr("data-target"),i,s,o;r||(r=t.attr("href"),r=r&&r.replace(/.*(?=#[^\s]*$)/,""));if(t.parent("li").hasClass("active"))return;i=n.find(".active:last a")[0],o=e.Event("show",{relatedTarget:i}),t.trigger(o);if(o.isDefaultPrevented())return;s=e(r),this.activate(t.parent("li"),n),this.activate(s,s.parent(),function(){t.trigger({type:"shown",relatedTarget:i})})},activate:function(t,n,r){function o(){i.removeClass("active").find("> .dropdown-menu > .active").removeClass("active"),t.addClass("active"),s?(t[0].offsetWidth,t.addClass("in")):t.removeClass("fade"),t.parent(".dropdown-menu")&&t.closest("li.dropdown").addClass("active"),r&&r()}var i=n.find("> .active"),s=r&&e.support.transition&&i.hasClass("fade");s?i.one(e.support.transition.end,o):o(),i.removeClass("in")}},e.fn.tab=function(n){return this.each(function(){var r=e(this),i=r.data("tab");i||r.data("tab",i=new t(this)),typeof n=="string"&&i[n]()})},e.fn.tab.Constructor=t,e(document).on("click.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"]',function(t){t.preventDefault(),e(this).tab("show")})}(window.jQuery),!function(e){"use strict";var t=function(t,n){this.$element=e(t),this.options=e.extend({},e.fn.typeahead.defaults,n),this.matcher=this.options.matcher||this.matcher,this.sorter=this.options.sorter||this.sorter,this.highlighter=this.options.highlighter||this.highlighter,this.updater=this.options.updater||this.updater,this.$menu=e(this.options.menu).appendTo("body"),this.source=this.options.source,this.shown=!1,this.listen()};t.prototype={constructor:t,select:function(){var e=this.$menu.find(".active").attr("data-value");return this.$element.val(this.updater(e)).change(),this.hide()},updater:function(e){return e},show:function(){var t=e.extend({},this.$element.offset(),{height:this.$element[0].offsetHeight});return this.$menu.css({top:t.top+t.height,left:t.left}),this.$menu.show(),this.shown=!0,this},hide:function(){return this.$menu.hide(),this.shown=!1,this},lookup:function(t){var n;return this.query=this.$element.val(),!this.query||this.query.length"+t+""})},render:function(t){var n=this;return t=e(t).map(function(t,r){return t=e(n.options.item).attr("data-value",r),t.find("a").html(n.highlighter(r)),t[0]}),t.first().addClass("active"),this.$menu.html(t),this},next:function(t){var n=this.$menu.find(".active").removeClass("active"),r=n.next();r.length||(r=e(this.$menu.find("li")[0])),r.addClass("active")},prev:function(e){var t=this.$menu.find(".active").removeClass("active"),n=t.prev();n.length||(n=this.$menu.find("li").last()),n.addClass("active")},listen:function(){this.$element.on("blur",e.proxy(this.blur,this)).on("keypress",e.proxy(this.keypress,this)).on("keyup",e.proxy(this.keyup,this)),this.eventSupported("keydown")&&this.$element.on("keydown",e.proxy(this.keydown,this)),this.$menu.on("click",e.proxy(this.click,this)).on("mouseenter","li",e.proxy(this.mouseenter,this))},eventSupported:function(e){var t=e in this.$element;return t||(this.$element.setAttribute(e,"return;"),t=typeof this.$element[e]=="function"),t},move:function(e){if(!this.shown)return;switch(e.keyCode){case 9:case 13:case 27:e.preventDefault();break;case 38:e.preventDefault(),this.prev();break;case 40:e.preventDefault(),this.next()}e.stopPropagation()},keydown:function(t){this.suppressKeyPressRepeat=!~e.inArray(t.keyCode,[40,38,9,13,27]),this.move(t)},keypress:function(e){if(this.suppressKeyPressRepeat)return;this.move(e)},keyup:function(e){switch(e.keyCode){case 40:case 38:case 16:case 17:case 18:break;case 9:case 13:if(!this.shown)return;this.select();break;case 27:if(!this.shown)return;this.hide();break;default:this.lookup()}e.stopPropagation(),e.preventDefault()},blur:function(e){var t=this;setTimeout(function(){t.hide()},150)},click:function(e){e.stopPropagation(),e.preventDefault(),this.select()},mouseenter:function(t){this.$menu.find(".active").removeClass("active"),e(t.currentTarget).addClass("active")}},e.fn.typeahead=function(n){return this.each(function(){var r=e(this),i=r.data("typeahead"),s=typeof n=="object"&&n;i||r.data("typeahead",i=new t(this,s)),typeof n=="string"&&i[n]()})},e.fn.typeahead.defaults={source:[],items:8,menu:'',item:'
  • ',minLength:1},e.fn.typeahead.Constructor=t,e(document).on("focus.typeahead.data-api",'[data-provide="typeahead"]',function(t){var n=e(this);if(n.data("typeahead"))return;t.preventDefault(),n.typeahead(n.data())})}(window.jQuery),!function(e){"use strict";var t=function(t,n){this.options=e.extend({},e.fn.affix.defaults,n),this.$window=e(window).on("scroll.affix.data-api",e.proxy(this.checkPosition,this)).on("click.affix.data-api",e.proxy(function(){setTimeout(e.proxy(this.checkPosition,this),1)},this)),this.$element=e(t),this.checkPosition()};t.prototype.checkPosition=function(){if(!this.$element.is(":visible"))return;var t=e(document).height(),n=this.$window.scrollTop(),r=this.$element.offset(),i=this.options.offset,s=i.bottom,o=i.top,u="affix affix-top affix-bottom",a;typeof i!="object"&&(s=o=i),typeof o=="function"&&(o=i.top()),typeof s=="function"&&(s=i.bottom()),a=this.unpin!=null&&n+this.unpin<=r.top?!1:s!=null&&r.top+this.$element.height()>=t-s?"bottom":o!=null&&n<=o?"top":!1;if(this.affixed===a)return;this.affixed=a,this.unpin=a=="bottom"?r.top-n:null,this.$element.removeClass(u).addClass("affix"+(a?"-"+a:""))},e.fn.affix=function(n){return this.each(function(){var r=e(this),i=r.data("affix"),s=typeof n=="object"&&n;i||r.data("affix",i=new t(this,s)),typeof n=="string"&&i[n]()})},e.fn.affix.Constructor=t,e.fn.affix.defaults={offset:0},e(window).on("load",function(){e('[data-spy="affix"]').each(function(){var t=e(this),n=t.data();n.offset=n.offset||{},n.offsetBottom&&(n.offset.bottom=n.offsetBottom),n.offsetTop&&(n.offset.top=n.offsetTop),t.affix(n)})})}(window.jQuery); -------------------------------------------------------------------------------- /resources/public/css/docs.css: -------------------------------------------------------------------------------- 1 | /* Add additional stylesheets below 2 | -------------------------------------------------- */ 3 | /* 4 | Bootstrap's documentation styles 5 | Special styles for presenting Bootstrap's documentation and examples 6 | */ 7 | 8 | 9 | 10 | /* Body and structure 11 | -------------------------------------------------- */ 12 | 13 | body { 14 | position: relative; 15 | padding-top: 40px; 16 | } 17 | 18 | /* Code in headings */ 19 | h3 code { 20 | font-size: 14px; 21 | font-weight: normal; 22 | } 23 | 24 | 25 | 26 | /* Tweak navbar brand link to be super sleek 27 | -------------------------------------------------- */ 28 | 29 | body > .navbar { 30 | font-size: 13px; 31 | } 32 | 33 | /* Change the docs' brand */ 34 | body > .navbar .brand { 35 | padding-right: 0; 36 | padding-left: 0; 37 | margin-left: 20px; 38 | float: right; 39 | font-weight: bold; 40 | color: #000; 41 | text-shadow: 0 1px 0 rgba(255,255,255,.1), 0 0 30px rgba(255,255,255,.125); 42 | -webkit-transition: all .2s linear; 43 | -moz-transition: all .2s linear; 44 | transition: all .2s linear; 45 | } 46 | body > .navbar .brand:hover { 47 | text-decoration: none; 48 | text-shadow: 0 1px 0 rgba(255,255,255,.1), 0 0 30px rgba(255,255,255,.4); 49 | } 50 | 51 | 52 | /* Sections 53 | -------------------------------------------------- */ 54 | 55 | /* padding for in-page bookmarks and fixed navbar */ 56 | section { 57 | padding-top: 30px; 58 | } 59 | section > .page-header, 60 | section > .lead { 61 | color: #5a5a5a; 62 | } 63 | section > ul li { 64 | margin-bottom: 5px; 65 | } 66 | 67 | /* Separators (hr) */ 68 | .bs-docs-separator { 69 | margin: 40px 0 39px; 70 | } 71 | 72 | /* Faded out hr */ 73 | hr.soften { 74 | height: 1px; 75 | margin: 70px 0; 76 | background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,.1), rgba(0,0,0,0)); 77 | background-image: -moz-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,.1), rgba(0,0,0,0)); 78 | background-image: -ms-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,.1), rgba(0,0,0,0)); 79 | background-image: -o-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,.1), rgba(0,0,0,0)); 80 | border: 0; 81 | } 82 | 83 | 84 | 85 | /* Jumbotrons 86 | -------------------------------------------------- */ 87 | 88 | /* Base class 89 | ------------------------- */ 90 | .jumbotron { 91 | position: relative; 92 | padding: 40px 0; 93 | color: #fff; 94 | text-align: center; 95 | text-shadow: 0 1px 3px rgba(0,0,0,.4), 0 0 30px rgba(0,0,0,.075); 96 | background: #020031; /* Old browsers */ 97 | background: -moz-linear-gradient(45deg, #020031 0%, #6d3353 100%); /* FF3.6+ */ 98 | background: -webkit-gradient(linear, left bottom, right top, color-stop(0%,#020031), color-stop(100%,#6d3353)); /* Chrome,Safari4+ */ 99 | background: -webkit-linear-gradient(45deg, #020031 0%,#6d3353 100%); /* Chrome10+,Safari5.1+ */ 100 | background: -o-linear-gradient(45deg, #020031 0%,#6d3353 100%); /* Opera 11.10+ */ 101 | background: -ms-linear-gradient(45deg, #020031 0%,#6d3353 100%); /* IE10+ */ 102 | background: linear-gradient(45deg, #020031 0%,#6d3353 100%); /* W3C */ 103 | filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#020031', endColorstr='#6d3353',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */ 104 | -webkit-box-shadow: inset 0 3px 7px rgba(0,0,0,.2), inset 0 -3px 7px rgba(0,0,0,.2); 105 | -moz-box-shadow: inset 0 3px 7px rgba(0,0,0,.2), inset 0 -3px 7px rgba(0,0,0,.2); 106 | box-shadow: inset 0 3px 7px rgba(0,0,0,.2), inset 0 -3px 7px rgba(0,0,0,.2); 107 | } 108 | .jumbotron h1 { 109 | font-size: 80px; 110 | font-weight: bold; 111 | letter-spacing: -1px; 112 | line-height: 1; 113 | } 114 | .jumbotron p { 115 | font-size: 24px; 116 | font-weight: 300; 117 | line-height: 1.25; 118 | margin-bottom: 30px; 119 | } 120 | 121 | /* Link styles (used on .masthead-links as well) */ 122 | .jumbotron a { 123 | color: #fff; 124 | color: rgba(255,255,255,.5); 125 | -webkit-transition: all .2s ease-in-out; 126 | -moz-transition: all .2s ease-in-out; 127 | transition: all .2s ease-in-out; 128 | } 129 | .jumbotron a:hover { 130 | color: #fff; 131 | text-shadow: 0 0 10px rgba(255,255,255,.25); 132 | } 133 | 134 | /* Download button */ 135 | .masthead .btn { 136 | padding: 19px 24px; 137 | font-size: 24px; 138 | font-weight: 200; 139 | color: #fff; /* redeclare to override the `.jumbotron a` */ 140 | border: 0; 141 | -webkit-border-radius: 6px; 142 | -moz-border-radius: 6px; 143 | border-radius: 6px; 144 | -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 5px rgba(0,0,0,.25); 145 | -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 5px rgba(0,0,0,.25); 146 | box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 5px rgba(0,0,0,.25); 147 | -webkit-transition: none; 148 | -moz-transition: none; 149 | transition: none; 150 | } 151 | .masthead .btn:hover { 152 | -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 5px rgba(0,0,0,.25); 153 | -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 5px rgba(0,0,0,.25); 154 | box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 5px rgba(0,0,0,.25); 155 | } 156 | .masthead .btn:active { 157 | -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.1); 158 | -moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.1); 159 | box-shadow: inset 0 2px 4px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.1); 160 | } 161 | 162 | 163 | /* Pattern overlay 164 | ------------------------- */ 165 | .jumbotron .container { 166 | position: relative; 167 | z-index: 2; 168 | } 169 | .jumbotron:after { 170 | content: ''; 171 | display: block; 172 | position: absolute; 173 | top: 0; 174 | right: 0; 175 | bottom: 0; 176 | left: 0; 177 | background: url(../img/bs-docs-masthead-pattern.png) repeat center center; 178 | opacity: .4; 179 | } 180 | 181 | /* Masthead (docs home) 182 | ------------------------- */ 183 | .masthead { 184 | padding: 70px 0 80px; 185 | margin-bottom: 0; 186 | color: #fff; 187 | } 188 | .masthead h1 { 189 | font-size: 120px; 190 | line-height: 1; 191 | letter-spacing: -2px; 192 | } 193 | .masthead p { 194 | font-size: 40px; 195 | font-weight: 200; 196 | line-height: 1.25; 197 | } 198 | 199 | /* Textual links in masthead */ 200 | .masthead-links { 201 | margin: 0; 202 | list-style: none; 203 | } 204 | .masthead-links li { 205 | display: inline; 206 | padding: 0 10px; 207 | color: rgba(255,255,255,.25); 208 | } 209 | 210 | /* Social proof buttons from GitHub & Twitter */ 211 | .bs-docs-social { 212 | padding: 15px 0; 213 | text-align: center; 214 | background-color: #f5f5f5; 215 | border-top: 1px solid #fff; 216 | border-bottom: 1px solid #ddd; 217 | } 218 | 219 | /* Quick links on Home */ 220 | .bs-docs-social-buttons { 221 | margin-left: 0; 222 | margin-bottom: 0; 223 | padding-left: 0; 224 | list-style: none; 225 | } 226 | .bs-docs-social-buttons li { 227 | display: inline-block; 228 | padding: 5px 8px; 229 | line-height: 1; 230 | *display: inline; 231 | *zoom: 1; 232 | } 233 | 234 | /* Subhead (other pages) 235 | ------------------------- */ 236 | .subhead { 237 | text-align: left; 238 | border-bottom: 1px solid #ddd; 239 | } 240 | .subhead h1 { 241 | font-size: 60px; 242 | } 243 | .subhead p { 244 | margin-bottom: 20px; 245 | } 246 | .subhead .navbar { 247 | display: none; 248 | } 249 | 250 | 251 | 252 | /* Marketing section of Overview 253 | -------------------------------------------------- */ 254 | 255 | .marketing { 256 | text-align: center; 257 | color: #5a5a5a; 258 | } 259 | .marketing h1 { 260 | margin: 60px 0 10px; 261 | font-size: 60px; 262 | font-weight: 200; 263 | line-height: 1; 264 | letter-spacing: -1px; 265 | } 266 | .marketing h2 { 267 | font-weight: 200; 268 | margin-bottom: 5px; 269 | } 270 | .marketing p { 271 | font-size: 16px; 272 | line-height: 1.5; 273 | } 274 | .marketing .marketing-byline { 275 | margin-bottom: 40px; 276 | font-size: 20px; 277 | font-weight: 300; 278 | line-height: 1.25; 279 | color: #999; 280 | } 281 | .marketing img { 282 | display: block; 283 | margin: 0 auto 30px; 284 | } 285 | 286 | 287 | 288 | /* Footer 289 | -------------------------------------------------- */ 290 | 291 | .footer { 292 | padding: 70px 0; 293 | margin-top: 70px; 294 | border-top: 1px solid #e5e5e5; 295 | background-color: #f5f5f5; 296 | } 297 | .footer p { 298 | margin-bottom: 0; 299 | color: #777; 300 | } 301 | .footer-links { 302 | margin: 10px 0; 303 | } 304 | .footer-links li { 305 | display: inline; 306 | padding: 0 2px; 307 | } 308 | .footer-links li:first-child { 309 | padding-left: 0; 310 | } 311 | 312 | 313 | 314 | /* Special grid styles 315 | -------------------------------------------------- */ 316 | 317 | .show-grid { 318 | margin-top: 10px; 319 | margin-bottom: 20px; 320 | } 321 | .show-grid [class*="span"] { 322 | background-color: #eee; 323 | text-align: center; 324 | -webkit-border-radius: 3px; 325 | -moz-border-radius: 3px; 326 | border-radius: 3px; 327 | min-height: 40px; 328 | line-height: 40px; 329 | } 330 | .show-grid:hover [class*="span"] { 331 | background: #ddd; 332 | } 333 | .show-grid .show-grid { 334 | margin-top: 0; 335 | margin-bottom: 0; 336 | } 337 | .show-grid .show-grid [class*="span"] { 338 | background-color: #ccc; 339 | } 340 | 341 | 342 | 343 | /* Mini layout previews 344 | -------------------------------------------------- */ 345 | .mini-layout { 346 | border: 1px solid #ddd; 347 | -webkit-border-radius: 6px; 348 | -moz-border-radius: 6px; 349 | border-radius: 6px; 350 | -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.075); 351 | -moz-box-shadow: 0 1px 2px rgba(0,0,0,.075); 352 | box-shadow: 0 1px 2px rgba(0,0,0,.075); 353 | } 354 | .mini-layout, 355 | .mini-layout .mini-layout-body, 356 | .mini-layout.fluid .mini-layout-sidebar { 357 | height: 300px; 358 | } 359 | .mini-layout { 360 | margin-bottom: 20px; 361 | padding: 9px; 362 | } 363 | .mini-layout div { 364 | -webkit-border-radius: 3px; 365 | -moz-border-radius: 3px; 366 | border-radius: 3px; 367 | } 368 | .mini-layout .mini-layout-body { 369 | background-color: #dceaf4; 370 | margin: 0 auto; 371 | width: 70%; 372 | } 373 | .mini-layout.fluid .mini-layout-sidebar, 374 | .mini-layout.fluid .mini-layout-header, 375 | .mini-layout.fluid .mini-layout-body { 376 | float: left; 377 | } 378 | .mini-layout.fluid .mini-layout-sidebar { 379 | background-color: #bbd8e9; 380 | width: 20%; 381 | } 382 | .mini-layout.fluid .mini-layout-body { 383 | width: 77.5%; 384 | margin-left: 2.5%; 385 | } 386 | 387 | 388 | 389 | /* Download page 390 | -------------------------------------------------- */ 391 | 392 | .download .page-header { 393 | margin-top: 36px; 394 | } 395 | .page-header .toggle-all { 396 | margin-top: 5px; 397 | } 398 | 399 | /* Space out h3s when following a section */ 400 | .download h3 { 401 | margin-bottom: 5px; 402 | } 403 | .download-builder input + h3, 404 | .download-builder .checkbox + h3 { 405 | margin-top: 9px; 406 | } 407 | 408 | /* Fields for variables */ 409 | .download-builder input[type=text] { 410 | margin-bottom: 9px; 411 | font-family: Menlo, Monaco, "Courier New", monospace; 412 | font-size: 12px; 413 | color: #d14; 414 | } 415 | .download-builder input[type=text]:focus { 416 | background-color: #fff; 417 | } 418 | 419 | /* Custom, larger checkbox labels */ 420 | .download .checkbox { 421 | padding: 6px 10px 6px 25px; 422 | font-size: 13px; 423 | line-height: 18px; 424 | color: #555; 425 | background-color: #f9f9f9; 426 | -webkit-border-radius: 3px; 427 | -moz-border-radius: 3px; 428 | border-radius: 3px; 429 | cursor: pointer; 430 | } 431 | .download .checkbox:hover { 432 | color: #333; 433 | background-color: #f5f5f5; 434 | } 435 | .download .checkbox small { 436 | font-size: 12px; 437 | color: #777; 438 | } 439 | 440 | /* Variables section */ 441 | #variables label { 442 | margin-bottom: 0; 443 | } 444 | 445 | /* Giant download button */ 446 | .download-btn { 447 | margin: 36px 0 108px; 448 | } 449 | #download p, 450 | #download h4 { 451 | max-width: 50%; 452 | margin: 0 auto; 453 | color: #999; 454 | text-align: center; 455 | } 456 | #download h4 { 457 | margin-bottom: 0; 458 | } 459 | #download p { 460 | margin-bottom: 18px; 461 | } 462 | .download-btn .btn { 463 | display: block; 464 | width: auto; 465 | padding: 19px 24px; 466 | margin-bottom: 27px; 467 | font-size: 30px; 468 | line-height: 1; 469 | text-align: center; 470 | -webkit-border-radius: 6px; 471 | -moz-border-radius: 6px; 472 | border-radius: 6px; 473 | } 474 | 475 | 476 | 477 | /* Misc 478 | -------------------------------------------------- */ 479 | 480 | /* Make tables spaced out a bit more */ 481 | h2 + table, 482 | h3 + table, 483 | h4 + table, 484 | h2 + .row { 485 | margin-top: 5px; 486 | } 487 | 488 | /* Example sites showcase */ 489 | .example-sites { 490 | xmargin-left: 20px; 491 | } 492 | .example-sites img { 493 | max-width: 100%; 494 | margin: 0 auto; 495 | } 496 | 497 | .scrollspy-example { 498 | height: 200px; 499 | overflow: auto; 500 | position: relative; 501 | } 502 | 503 | 504 | /* Fake the :focus state to demo it */ 505 | .focused { 506 | border-color: rgba(82,168,236,.8); 507 | -webkit-box-shadow: inset 0 1px 3px rgba(0,0,0,.1), 0 0 8px rgba(82,168,236,.6); 508 | -moz-box-shadow: inset 0 1px 3px rgba(0,0,0,.1), 0 0 8px rgba(82,168,236,.6); 509 | box-shadow: inset 0 1px 3px rgba(0,0,0,.1), 0 0 8px rgba(82,168,236,.6); 510 | outline: 0; 511 | } 512 | 513 | /* For input sizes, make them display block */ 514 | .docs-input-sizes select, 515 | .docs-input-sizes input[type=text] { 516 | display: block; 517 | margin-bottom: 9px; 518 | } 519 | 520 | /* Icons 521 | ------------------------- */ 522 | .the-icons { 523 | margin-left: 0; 524 | list-style: none; 525 | } 526 | .the-icons li { 527 | float: left; 528 | width: 25%; 529 | line-height: 25px; 530 | } 531 | .the-icons i:hover { 532 | background-color: rgba(255,0,0,.25); 533 | } 534 | 535 | /* Example page 536 | ------------------------- */ 537 | .bootstrap-examples p { 538 | font-size: 13px; 539 | line-height: 18px; 540 | } 541 | .bootstrap-examples .thumbnail { 542 | margin-bottom: 9px; 543 | background-color: #fff; 544 | } 545 | 546 | 547 | 548 | /* Bootstrap code examples 549 | -------------------------------------------------- */ 550 | 551 | /* Base class */ 552 | .bs-docs-example { 553 | position: relative; 554 | margin: 15px 0; 555 | padding: 39px 19px 14px; 556 | *padding-top: 19px; 557 | background-color: #fff; 558 | border: 1px solid #ddd; 559 | -webkit-border-radius: 4px; 560 | -moz-border-radius: 4px; 561 | border-radius: 4px; 562 | } 563 | 564 | /* Echo out a label for the example */ 565 | .bs-docs-example:after { 566 | content: "Example"; 567 | position: absolute; 568 | top: -1px; 569 | left: -1px; 570 | padding: 3px 7px; 571 | font-size: 12px; 572 | font-weight: bold; 573 | background-color: #f5f5f5; 574 | border: 1px solid #ddd; 575 | color: #9da0a4; 576 | -webkit-border-radius: 4px 0 4px 0; 577 | -moz-border-radius: 4px 0 4px 0; 578 | border-radius: 4px 0 4px 0; 579 | } 580 | 581 | /* Remove spacing between an example and it's code */ 582 | .bs-docs-example + .prettyprint { 583 | margin-top: -20px; 584 | padding-top: 15px; 585 | } 586 | 587 | /* Tweak examples 588 | ------------------------- */ 589 | .bs-docs-example > p:last-child { 590 | margin-bottom: 0; 591 | } 592 | .bs-docs-example .table, 593 | .bs-docs-example .progress, 594 | .bs-docs-example .well, 595 | .bs-docs-example .alert, 596 | .bs-docs-example .hero-unit, 597 | .bs-docs-example .pagination, 598 | .bs-docs-example .navbar, 599 | .bs-docs-example > .nav, 600 | .bs-docs-example blockquote { 601 | margin-bottom: 5px; 602 | } 603 | .bs-docs-example .pagination { 604 | margin-top: 0; 605 | } 606 | .bs-navbar-top-example, 607 | .bs-navbar-bottom-example { 608 | z-index: 1; 609 | padding: 0; 610 | height: 90px; 611 | overflow: hidden; /* cut the drop shadows off */ 612 | } 613 | .bs-navbar-top-example .navbar-fixed-top, 614 | .bs-navbar-bottom-example .navbar-fixed-bottom { 615 | margin-left: 0; 616 | margin-right: 0; 617 | } 618 | .bs-navbar-top-example { 619 | -webkit-border-radius: 0 0 4px 4px; 620 | -moz-border-radius: 0 0 4px 4px; 621 | border-radius: 0 0 4px 4px; 622 | } 623 | .bs-navbar-top-example:after { 624 | top: auto; 625 | bottom: -1px; 626 | -webkit-border-radius: 0 4px 0 4px; 627 | -moz-border-radius: 0 4px 0 4px; 628 | border-radius: 0 4px 0 4px; 629 | } 630 | .bs-navbar-bottom-example { 631 | -webkit-border-radius: 4px 4px 0 0; 632 | -moz-border-radius: 4px 4px 0 0; 633 | border-radius: 4px 4px 0 0; 634 | } 635 | .bs-navbar-bottom-example .navbar { 636 | margin-bottom: 0; 637 | } 638 | form.bs-docs-example { 639 | padding-bottom: 19px; 640 | } 641 | 642 | /* Images */ 643 | .bs-docs-example-images img { 644 | margin: 10px; 645 | display: inline-block; 646 | } 647 | 648 | /* Tooltips */ 649 | .bs-docs-tooltip-examples { 650 | text-align: center; 651 | margin: 0 0 10px; 652 | list-style: none; 653 | } 654 | .bs-docs-tooltip-examples li { 655 | display: inline; 656 | padding: 0 10px; 657 | } 658 | 659 | /* Popovers */ 660 | .bs-docs-example-popover { 661 | padding-bottom: 24px; 662 | background-color: #f9f9f9; 663 | } 664 | .bs-docs-example-popover .popover { 665 | position: relative; 666 | display: block; 667 | float: left; 668 | width: 260px; 669 | margin: 20px; 670 | } 671 | 672 | 673 | 674 | /* Responsive docs 675 | -------------------------------------------------- */ 676 | 677 | /* Utility classes table 678 | ------------------------- */ 679 | .responsive-utilities th small { 680 | display: block; 681 | font-weight: normal; 682 | color: #999; 683 | } 684 | .responsive-utilities tbody th { 685 | font-weight: normal; 686 | } 687 | .responsive-utilities td { 688 | text-align: center; 689 | } 690 | .responsive-utilities td.is-visible { 691 | color: #468847; 692 | background-color: #dff0d8 !important; 693 | } 694 | .responsive-utilities td.is-hidden { 695 | color: #ccc; 696 | background-color: #f9f9f9 !important; 697 | } 698 | 699 | /* Responsive tests 700 | ------------------------- */ 701 | .responsive-utilities-test { 702 | margin-top: 5px; 703 | margin-left: 0; 704 | list-style: none; 705 | overflow: hidden; /* clear floats */ 706 | } 707 | .responsive-utilities-test li { 708 | position: relative; 709 | float: left; 710 | width: 25%; 711 | height: 43px; 712 | font-size: 14px; 713 | font-weight: bold; 714 | line-height: 43px; 715 | color: #999; 716 | text-align: center; 717 | border: 1px solid #ddd; 718 | -webkit-border-radius: 4px; 719 | -moz-border-radius: 4px; 720 | border-radius: 4px; 721 | } 722 | .responsive-utilities-test li + li { 723 | margin-left: 10px; 724 | } 725 | .responsive-utilities-test span { 726 | position: absolute; 727 | top: -1px; 728 | left: -1px; 729 | right: -1px; 730 | bottom: -1px; 731 | -webkit-border-radius: 4px; 732 | -moz-border-radius: 4px; 733 | border-radius: 4px; 734 | } 735 | .responsive-utilities-test span { 736 | color: #468847; 737 | background-color: #dff0d8; 738 | border: 1px solid #d6e9c6; 739 | } 740 | 741 | 742 | 743 | /* Sidenav for Docs 744 | -------------------------------------------------- */ 745 | 746 | .bs-docs-sidenav { 747 | width: 228px; 748 | margin: 30px 0 0; 749 | padding: 0; 750 | background-color: #fff; 751 | -webkit-border-radius: 6px; 752 | -moz-border-radius: 6px; 753 | border-radius: 6px; 754 | -webkit-box-shadow: 0 1px 4px rgba(0,0,0,.065); 755 | -moz-box-shadow: 0 1px 4px rgba(0,0,0,.065); 756 | box-shadow: 0 1px 4px rgba(0,0,0,.065); 757 | } 758 | .bs-docs-sidenav > li > a { 759 | display: block; 760 | width: 190px \9; 761 | margin: 0 0 -1px; 762 | padding: 8px 14px; 763 | border: 1px solid #e5e5e5; 764 | } 765 | .bs-docs-sidenav > li:first-child > a { 766 | -webkit-border-radius: 6px 6px 0 0; 767 | -moz-border-radius: 6px 6px 0 0; 768 | border-radius: 6px 6px 0 0; 769 | } 770 | .bs-docs-sidenav > li:last-child > a { 771 | -webkit-border-radius: 0 0 6px 6px; 772 | -moz-border-radius: 0 0 6px 6px; 773 | border-radius: 0 0 6px 6px; 774 | } 775 | .bs-docs-sidenav > .active > a { 776 | position: relative; 777 | z-index: 2; 778 | padding: 9px 15px; 779 | border: 0; 780 | text-shadow: 0 1px 0 rgba(0,0,0,.15); 781 | -webkit-box-shadow: inset 1px 0 0 rgba(0,0,0,.1), inset -1px 0 0 rgba(0,0,0,.1); 782 | -moz-box-shadow: inset 1px 0 0 rgba(0,0,0,.1), inset -1px 0 0 rgba(0,0,0,.1); 783 | box-shadow: inset 1px 0 0 rgba(0,0,0,.1), inset -1px 0 0 rgba(0,0,0,.1); 784 | } 785 | /* Chevrons */ 786 | .bs-docs-sidenav .icon-chevron-right { 787 | float: right; 788 | margin-top: 2px; 789 | margin-right: -6px; 790 | opacity: .25; 791 | } 792 | .bs-docs-sidenav > li > a:hover { 793 | background-color: #f5f5f5; 794 | } 795 | .bs-docs-sidenav a:hover .icon-chevron-right { 796 | opacity: .5; 797 | } 798 | .bs-docs-sidenav .active .icon-chevron-right, 799 | .bs-docs-sidenav .active a:hover .icon-chevron-right { 800 | background-image: url(../img/glyphicons-halflings-white.png); 801 | opacity: 1; 802 | } 803 | .bs-docs-sidenav.affix { 804 | top: 40px; 805 | } 806 | .bs-docs-sidenav.affix-bottom { 807 | position: absolute; 808 | top: auto; 809 | bottom: 270px; 810 | } 811 | 812 | 813 | 814 | 815 | /* Responsive 816 | -------------------------------------------------- */ 817 | 818 | /* Desktop large 819 | ------------------------- */ 820 | @media (min-width: 1200px) { 821 | .bs-docs-container { 822 | max-width: 970px; 823 | } 824 | .bs-docs-sidenav { 825 | width: 258px; 826 | } 827 | .bs-docs-sidenav > li > a { 828 | width: 230px \9; /* Override the previous IE8-9 hack */ 829 | } 830 | } 831 | 832 | /* Desktop 833 | ------------------------- */ 834 | @media (max-width: 980px) { 835 | /* Unfloat brand */ 836 | body > .navbar-fixed-top .brand { 837 | float: left; 838 | margin-left: 0; 839 | padding-left: 10px; 840 | padding-right: 10px; 841 | } 842 | 843 | /* Inline-block quick links for more spacing */ 844 | .quick-links li { 845 | display: inline-block; 846 | margin: 5px; 847 | } 848 | 849 | /* When affixed, space properly */ 850 | .bs-docs-sidenav { 851 | top: 0; 852 | margin-top: 30px; 853 | margin-right: 0; 854 | } 855 | } 856 | 857 | /* Tablet to desktop 858 | ------------------------- */ 859 | @media (min-width: 768px) and (max-width: 980px) { 860 | /* Remove any padding from the body */ 861 | body { 862 | padding-top: 0; 863 | } 864 | /* Widen masthead and social buttons to fill body padding */ 865 | .jumbotron { 866 | margin-top: -20px; /* Offset bottom margin on .navbar */ 867 | } 868 | /* Adjust sidenav width */ 869 | .bs-docs-sidenav { 870 | width: 166px; 871 | margin-top: 20px; 872 | } 873 | .bs-docs-sidenav.affix { 874 | top: 0; 875 | } 876 | } 877 | 878 | /* Tablet 879 | ------------------------- */ 880 | @media (max-width: 767px) { 881 | /* Remove any padding from the body */ 882 | body { 883 | padding-top: 0; 884 | } 885 | 886 | /* Widen masthead and social buttons to fill body padding */ 887 | .jumbotron { 888 | padding: 40px 20px; 889 | margin-top: -20px; /* Offset bottom margin on .navbar */ 890 | margin-right: -20px; 891 | margin-left: -20px; 892 | } 893 | .masthead h1 { 894 | font-size: 90px; 895 | } 896 | .masthead p, 897 | .masthead .btn { 898 | font-size: 24px; 899 | } 900 | .marketing .span4 { 901 | margin-bottom: 40px; 902 | } 903 | .bs-docs-social { 904 | margin: 0 -20px; 905 | } 906 | 907 | /* Space out the show-grid examples */ 908 | .show-grid [class*="span"] { 909 | margin-bottom: 5px; 910 | } 911 | 912 | /* Sidenav */ 913 | .bs-docs-sidenav { 914 | width: auto; 915 | margin-bottom: 20px; 916 | } 917 | .bs-docs-sidenav.affix { 918 | position: static; 919 | width: auto; 920 | top: 0; 921 | } 922 | 923 | /* Unfloat the back to top link in footer */ 924 | .footer { 925 | margin-left: -20px; 926 | margin-right: -20px; 927 | padding-left: 20px; 928 | padding-right: 20px; 929 | } 930 | .footer p { 931 | margin-bottom: 9px; 932 | } 933 | } 934 | 935 | /* Landscape phones 936 | ------------------------- */ 937 | @media (max-width: 480px) { 938 | /* Remove padding above jumbotron */ 939 | body { 940 | padding-top: 0; 941 | } 942 | 943 | /* Change up some type stuff */ 944 | h2 small { 945 | display: block; 946 | } 947 | 948 | /* Downsize the jumbotrons */ 949 | .jumbotron h1 { 950 | font-size: 45px; 951 | } 952 | .jumbotron p, 953 | .jumbotron .btn { 954 | font-size: 18px; 955 | } 956 | .jumbotron .btn { 957 | display: block; 958 | margin: 0 auto; 959 | } 960 | 961 | /* center align subhead text like the masthead */ 962 | .subhead h1, 963 | .subhead p { 964 | text-align: center; 965 | } 966 | 967 | /* Marketing on home */ 968 | .marketing h1 { 969 | font-size: 30px; 970 | } 971 | .marketing-byline { 972 | font-size: 18px; 973 | } 974 | 975 | /* center example sites */ 976 | .example-sites { 977 | margin-left: 0; 978 | } 979 | .example-sites > li { 980 | float: none; 981 | display: block; 982 | max-width: 280px; 983 | margin: 0 auto 18px; 984 | text-align: center; 985 | } 986 | .example-sites .thumbnail > img { 987 | max-width: 270px; 988 | } 989 | 990 | /* Do our best to make tables work in narrow viewports */ 991 | table code { 992 | white-space: normal; 993 | word-wrap: break-word; 994 | word-break: break-all; 995 | } 996 | 997 | /* Modal example */ 998 | .modal-example .modal { 999 | position: relative; 1000 | top: auto; 1001 | right: auto; 1002 | bottom: auto; 1003 | left: auto; 1004 | } 1005 | 1006 | /* Tighten up footer */ 1007 | .footer { 1008 | padding-top: 20px; 1009 | padding-bottom: 20px; 1010 | } 1011 | /* Unfloat the back to top in footer to prevent odd text wrapping */ 1012 | .footer .pull-right { 1013 | float: none; 1014 | } 1015 | } 1016 | -------------------------------------------------------------------------------- /resources/public/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap Responsive v2.2.1 3 | * 4 | * Copyright 2012 Twitter, Inc 5 | * Licensed under the Apache License v2.0 6 | * http://www.apache.org/licenses/LICENSE-2.0 7 | * 8 | * Designed and built with all the love in the world @twitter by @mdo and @fat. 9 | */ 10 | 11 | .clearfix { 12 | *zoom: 1; 13 | } 14 | 15 | .clearfix:before, 16 | .clearfix:after { 17 | display: table; 18 | line-height: 0; 19 | content: ""; 20 | } 21 | 22 | .clearfix:after { 23 | clear: both; 24 | } 25 | 26 | .hide-text { 27 | font: 0/0 a; 28 | color: transparent; 29 | text-shadow: none; 30 | background-color: transparent; 31 | border: 0; 32 | } 33 | 34 | .input-block-level { 35 | display: block; 36 | width: 100%; 37 | min-height: 30px; 38 | -webkit-box-sizing: border-box; 39 | -moz-box-sizing: border-box; 40 | box-sizing: border-box; 41 | } 42 | 43 | .hidden { 44 | display: none; 45 | visibility: hidden; 46 | } 47 | 48 | .visible-phone { 49 | display: none !important; 50 | } 51 | 52 | .visible-tablet { 53 | display: none !important; 54 | } 55 | 56 | .hidden-desktop { 57 | display: none !important; 58 | } 59 | 60 | .visible-desktop { 61 | display: inherit !important; 62 | } 63 | 64 | @media (min-width: 768px) and (max-width: 979px) { 65 | .hidden-desktop { 66 | display: inherit !important; 67 | } 68 | .visible-desktop { 69 | display: none !important ; 70 | } 71 | .visible-tablet { 72 | display: inherit !important; 73 | } 74 | .hidden-tablet { 75 | display: none !important; 76 | } 77 | } 78 | 79 | @media (max-width: 767px) { 80 | .hidden-desktop { 81 | display: inherit !important; 82 | } 83 | .visible-desktop { 84 | display: none !important; 85 | } 86 | .visible-phone { 87 | display: inherit !important; 88 | } 89 | .hidden-phone { 90 | display: none !important; 91 | } 92 | } 93 | 94 | @media (min-width: 1200px) { 95 | .row { 96 | margin-left: -30px; 97 | *zoom: 1; 98 | } 99 | .row:before, 100 | .row:after { 101 | display: table; 102 | line-height: 0; 103 | content: ""; 104 | } 105 | .row:after { 106 | clear: both; 107 | } 108 | [class*="span"] { 109 | float: left; 110 | min-height: 1px; 111 | margin-left: 30px; 112 | } 113 | .container, 114 | .navbar-static-top .container, 115 | .navbar-fixed-top .container, 116 | .navbar-fixed-bottom .container { 117 | width: 1170px; 118 | } 119 | .span12 { 120 | width: 1170px; 121 | } 122 | .span11 { 123 | width: 1070px; 124 | } 125 | .span10 { 126 | width: 970px; 127 | } 128 | .span9 { 129 | width: 870px; 130 | } 131 | .span8 { 132 | width: 770px; 133 | } 134 | .span7 { 135 | width: 670px; 136 | } 137 | .span6 { 138 | width: 570px; 139 | } 140 | .span5 { 141 | width: 470px; 142 | } 143 | .span4 { 144 | width: 370px; 145 | } 146 | .span3 { 147 | width: 270px; 148 | } 149 | .span2 { 150 | width: 170px; 151 | } 152 | .span1 { 153 | width: 70px; 154 | } 155 | .offset12 { 156 | margin-left: 1230px; 157 | } 158 | .offset11 { 159 | margin-left: 1130px; 160 | } 161 | .offset10 { 162 | margin-left: 1030px; 163 | } 164 | .offset9 { 165 | margin-left: 930px; 166 | } 167 | .offset8 { 168 | margin-left: 830px; 169 | } 170 | .offset7 { 171 | margin-left: 730px; 172 | } 173 | .offset6 { 174 | margin-left: 630px; 175 | } 176 | .offset5 { 177 | margin-left: 530px; 178 | } 179 | .offset4 { 180 | margin-left: 430px; 181 | } 182 | .offset3 { 183 | margin-left: 330px; 184 | } 185 | .offset2 { 186 | margin-left: 230px; 187 | } 188 | .offset1 { 189 | margin-left: 130px; 190 | } 191 | .row-fluid { 192 | width: 100%; 193 | *zoom: 1; 194 | } 195 | .row-fluid:before, 196 | .row-fluid:after { 197 | display: table; 198 | line-height: 0; 199 | content: ""; 200 | } 201 | .row-fluid:after { 202 | clear: both; 203 | } 204 | .row-fluid [class*="span"] { 205 | display: block; 206 | float: left; 207 | width: 100%; 208 | min-height: 30px; 209 | margin-left: 2.564102564102564%; 210 | *margin-left: 2.5109110747408616%; 211 | -webkit-box-sizing: border-box; 212 | -moz-box-sizing: border-box; 213 | box-sizing: border-box; 214 | } 215 | .row-fluid [class*="span"]:first-child { 216 | margin-left: 0; 217 | } 218 | .row-fluid .controls-row [class*="span"] + [class*="span"] { 219 | margin-left: 2.564102564102564%; 220 | } 221 | .row-fluid .span12 { 222 | width: 100%; 223 | *width: 99.94680851063829%; 224 | } 225 | .row-fluid .span11 { 226 | width: 91.45299145299145%; 227 | *width: 91.39979996362975%; 228 | } 229 | .row-fluid .span10 { 230 | width: 82.90598290598291%; 231 | *width: 82.8527914166212%; 232 | } 233 | .row-fluid .span9 { 234 | width: 74.35897435897436%; 235 | *width: 74.30578286961266%; 236 | } 237 | .row-fluid .span8 { 238 | width: 65.81196581196582%; 239 | *width: 65.75877432260411%; 240 | } 241 | .row-fluid .span7 { 242 | width: 57.26495726495726%; 243 | *width: 57.21176577559556%; 244 | } 245 | .row-fluid .span6 { 246 | width: 48.717948717948715%; 247 | *width: 48.664757228587014%; 248 | } 249 | .row-fluid .span5 { 250 | width: 40.17094017094017%; 251 | *width: 40.11774868157847%; 252 | } 253 | .row-fluid .span4 { 254 | width: 31.623931623931625%; 255 | *width: 31.570740134569924%; 256 | } 257 | .row-fluid .span3 { 258 | width: 23.076923076923077%; 259 | *width: 23.023731587561375%; 260 | } 261 | .row-fluid .span2 { 262 | width: 14.52991452991453%; 263 | *width: 14.476723040552828%; 264 | } 265 | .row-fluid .span1 { 266 | width: 5.982905982905983%; 267 | *width: 5.929714493544281%; 268 | } 269 | .row-fluid .offset12 { 270 | margin-left: 105.12820512820512%; 271 | *margin-left: 105.02182214948171%; 272 | } 273 | .row-fluid .offset12:first-child { 274 | margin-left: 102.56410256410257%; 275 | *margin-left: 102.45771958537915%; 276 | } 277 | .row-fluid .offset11 { 278 | margin-left: 96.58119658119658%; 279 | *margin-left: 96.47481360247316%; 280 | } 281 | .row-fluid .offset11:first-child { 282 | margin-left: 94.01709401709402%; 283 | *margin-left: 93.91071103837061%; 284 | } 285 | .row-fluid .offset10 { 286 | margin-left: 88.03418803418803%; 287 | *margin-left: 87.92780505546462%; 288 | } 289 | .row-fluid .offset10:first-child { 290 | margin-left: 85.47008547008548%; 291 | *margin-left: 85.36370249136206%; 292 | } 293 | .row-fluid .offset9 { 294 | margin-left: 79.48717948717949%; 295 | *margin-left: 79.38079650845607%; 296 | } 297 | .row-fluid .offset9:first-child { 298 | margin-left: 76.92307692307693%; 299 | *margin-left: 76.81669394435352%; 300 | } 301 | .row-fluid .offset8 { 302 | margin-left: 70.94017094017094%; 303 | *margin-left: 70.83378796144753%; 304 | } 305 | .row-fluid .offset8:first-child { 306 | margin-left: 68.37606837606839%; 307 | *margin-left: 68.26968539734497%; 308 | } 309 | .row-fluid .offset7 { 310 | margin-left: 62.393162393162385%; 311 | *margin-left: 62.28677941443899%; 312 | } 313 | .row-fluid .offset7:first-child { 314 | margin-left: 59.82905982905982%; 315 | *margin-left: 59.72267685033642%; 316 | } 317 | .row-fluid .offset6 { 318 | margin-left: 53.84615384615384%; 319 | *margin-left: 53.739770867430444%; 320 | } 321 | .row-fluid .offset6:first-child { 322 | margin-left: 51.28205128205128%; 323 | *margin-left: 51.175668303327875%; 324 | } 325 | .row-fluid .offset5 { 326 | margin-left: 45.299145299145295%; 327 | *margin-left: 45.1927623204219%; 328 | } 329 | .row-fluid .offset5:first-child { 330 | margin-left: 42.73504273504273%; 331 | *margin-left: 42.62865975631933%; 332 | } 333 | .row-fluid .offset4 { 334 | margin-left: 36.75213675213675%; 335 | *margin-left: 36.645753773413354%; 336 | } 337 | .row-fluid .offset4:first-child { 338 | margin-left: 34.18803418803419%; 339 | *margin-left: 34.081651209310785%; 340 | } 341 | .row-fluid .offset3 { 342 | margin-left: 28.205128205128204%; 343 | *margin-left: 28.0987452264048%; 344 | } 345 | .row-fluid .offset3:first-child { 346 | margin-left: 25.641025641025642%; 347 | *margin-left: 25.53464266230224%; 348 | } 349 | .row-fluid .offset2 { 350 | margin-left: 19.65811965811966%; 351 | *margin-left: 19.551736679396257%; 352 | } 353 | .row-fluid .offset2:first-child { 354 | margin-left: 17.094017094017094%; 355 | *margin-left: 16.98763411529369%; 356 | } 357 | .row-fluid .offset1 { 358 | margin-left: 11.11111111111111%; 359 | *margin-left: 11.004728132387708%; 360 | } 361 | .row-fluid .offset1:first-child { 362 | margin-left: 8.547008547008547%; 363 | *margin-left: 8.440625568285142%; 364 | } 365 | input, 366 | textarea, 367 | .uneditable-input { 368 | margin-left: 0; 369 | } 370 | .controls-row [class*="span"] + [class*="span"] { 371 | margin-left: 30px; 372 | } 373 | input.span12, 374 | textarea.span12, 375 | .uneditable-input.span12 { 376 | width: 1156px; 377 | } 378 | input.span11, 379 | textarea.span11, 380 | .uneditable-input.span11 { 381 | width: 1056px; 382 | } 383 | input.span10, 384 | textarea.span10, 385 | .uneditable-input.span10 { 386 | width: 956px; 387 | } 388 | input.span9, 389 | textarea.span9, 390 | .uneditable-input.span9 { 391 | width: 856px; 392 | } 393 | input.span8, 394 | textarea.span8, 395 | .uneditable-input.span8 { 396 | width: 756px; 397 | } 398 | input.span7, 399 | textarea.span7, 400 | .uneditable-input.span7 { 401 | width: 656px; 402 | } 403 | input.span6, 404 | textarea.span6, 405 | .uneditable-input.span6 { 406 | width: 556px; 407 | } 408 | input.span5, 409 | textarea.span5, 410 | .uneditable-input.span5 { 411 | width: 456px; 412 | } 413 | input.span4, 414 | textarea.span4, 415 | .uneditable-input.span4 { 416 | width: 356px; 417 | } 418 | input.span3, 419 | textarea.span3, 420 | .uneditable-input.span3 { 421 | width: 256px; 422 | } 423 | input.span2, 424 | textarea.span2, 425 | .uneditable-input.span2 { 426 | width: 156px; 427 | } 428 | input.span1, 429 | textarea.span1, 430 | .uneditable-input.span1 { 431 | width: 56px; 432 | } 433 | .thumbnails { 434 | margin-left: -30px; 435 | } 436 | .thumbnails > li { 437 | margin-left: 30px; 438 | } 439 | .row-fluid .thumbnails { 440 | margin-left: 0; 441 | } 442 | } 443 | 444 | @media (min-width: 768px) and (max-width: 979px) { 445 | .row { 446 | margin-left: -20px; 447 | *zoom: 1; 448 | } 449 | .row:before, 450 | .row:after { 451 | display: table; 452 | line-height: 0; 453 | content: ""; 454 | } 455 | .row:after { 456 | clear: both; 457 | } 458 | [class*="span"] { 459 | float: left; 460 | min-height: 1px; 461 | margin-left: 20px; 462 | } 463 | .container, 464 | .navbar-static-top .container, 465 | .navbar-fixed-top .container, 466 | .navbar-fixed-bottom .container { 467 | width: 724px; 468 | } 469 | .span12 { 470 | width: 724px; 471 | } 472 | .span11 { 473 | width: 662px; 474 | } 475 | .span10 { 476 | width: 600px; 477 | } 478 | .span9 { 479 | width: 538px; 480 | } 481 | .span8 { 482 | width: 476px; 483 | } 484 | .span7 { 485 | width: 414px; 486 | } 487 | .span6 { 488 | width: 352px; 489 | } 490 | .span5 { 491 | width: 290px; 492 | } 493 | .span4 { 494 | width: 228px; 495 | } 496 | .span3 { 497 | width: 166px; 498 | } 499 | .span2 { 500 | width: 104px; 501 | } 502 | .span1 { 503 | width: 42px; 504 | } 505 | .offset12 { 506 | margin-left: 764px; 507 | } 508 | .offset11 { 509 | margin-left: 702px; 510 | } 511 | .offset10 { 512 | margin-left: 640px; 513 | } 514 | .offset9 { 515 | margin-left: 578px; 516 | } 517 | .offset8 { 518 | margin-left: 516px; 519 | } 520 | .offset7 { 521 | margin-left: 454px; 522 | } 523 | .offset6 { 524 | margin-left: 392px; 525 | } 526 | .offset5 { 527 | margin-left: 330px; 528 | } 529 | .offset4 { 530 | margin-left: 268px; 531 | } 532 | .offset3 { 533 | margin-left: 206px; 534 | } 535 | .offset2 { 536 | margin-left: 144px; 537 | } 538 | .offset1 { 539 | margin-left: 82px; 540 | } 541 | .row-fluid { 542 | width: 100%; 543 | *zoom: 1; 544 | } 545 | .row-fluid:before, 546 | .row-fluid:after { 547 | display: table; 548 | line-height: 0; 549 | content: ""; 550 | } 551 | .row-fluid:after { 552 | clear: both; 553 | } 554 | .row-fluid [class*="span"] { 555 | display: block; 556 | float: left; 557 | width: 100%; 558 | min-height: 30px; 559 | margin-left: 2.7624309392265194%; 560 | *margin-left: 2.709239449864817%; 561 | -webkit-box-sizing: border-box; 562 | -moz-box-sizing: border-box; 563 | box-sizing: border-box; 564 | } 565 | .row-fluid [class*="span"]:first-child { 566 | margin-left: 0; 567 | } 568 | .row-fluid .controls-row [class*="span"] + [class*="span"] { 569 | margin-left: 2.7624309392265194%; 570 | } 571 | .row-fluid .span12 { 572 | width: 100%; 573 | *width: 99.94680851063829%; 574 | } 575 | .row-fluid .span11 { 576 | width: 91.43646408839778%; 577 | *width: 91.38327259903608%; 578 | } 579 | .row-fluid .span10 { 580 | width: 82.87292817679558%; 581 | *width: 82.81973668743387%; 582 | } 583 | .row-fluid .span9 { 584 | width: 74.30939226519337%; 585 | *width: 74.25620077583166%; 586 | } 587 | .row-fluid .span8 { 588 | width: 65.74585635359117%; 589 | *width: 65.69266486422946%; 590 | } 591 | .row-fluid .span7 { 592 | width: 57.18232044198895%; 593 | *width: 57.12912895262725%; 594 | } 595 | .row-fluid .span6 { 596 | width: 48.61878453038674%; 597 | *width: 48.56559304102504%; 598 | } 599 | .row-fluid .span5 { 600 | width: 40.05524861878453%; 601 | *width: 40.00205712942283%; 602 | } 603 | .row-fluid .span4 { 604 | width: 31.491712707182323%; 605 | *width: 31.43852121782062%; 606 | } 607 | .row-fluid .span3 { 608 | width: 22.92817679558011%; 609 | *width: 22.87498530621841%; 610 | } 611 | .row-fluid .span2 { 612 | width: 14.3646408839779%; 613 | *width: 14.311449394616199%; 614 | } 615 | .row-fluid .span1 { 616 | width: 5.801104972375691%; 617 | *width: 5.747913483013988%; 618 | } 619 | .row-fluid .offset12 { 620 | margin-left: 105.52486187845304%; 621 | *margin-left: 105.41847889972962%; 622 | } 623 | .row-fluid .offset12:first-child { 624 | margin-left: 102.76243093922652%; 625 | *margin-left: 102.6560479605031%; 626 | } 627 | .row-fluid .offset11 { 628 | margin-left: 96.96132596685082%; 629 | *margin-left: 96.8549429881274%; 630 | } 631 | .row-fluid .offset11:first-child { 632 | margin-left: 94.1988950276243%; 633 | *margin-left: 94.09251204890089%; 634 | } 635 | .row-fluid .offset10 { 636 | margin-left: 88.39779005524862%; 637 | *margin-left: 88.2914070765252%; 638 | } 639 | .row-fluid .offset10:first-child { 640 | margin-left: 85.6353591160221%; 641 | *margin-left: 85.52897613729868%; 642 | } 643 | .row-fluid .offset9 { 644 | margin-left: 79.8342541436464%; 645 | *margin-left: 79.72787116492299%; 646 | } 647 | .row-fluid .offset9:first-child { 648 | margin-left: 77.07182320441989%; 649 | *margin-left: 76.96544022569647%; 650 | } 651 | .row-fluid .offset8 { 652 | margin-left: 71.2707182320442%; 653 | *margin-left: 71.16433525332079%; 654 | } 655 | .row-fluid .offset8:first-child { 656 | margin-left: 68.50828729281768%; 657 | *margin-left: 68.40190431409427%; 658 | } 659 | .row-fluid .offset7 { 660 | margin-left: 62.70718232044199%; 661 | *margin-left: 62.600799341718584%; 662 | } 663 | .row-fluid .offset7:first-child { 664 | margin-left: 59.94475138121547%; 665 | *margin-left: 59.838368402492065%; 666 | } 667 | .row-fluid .offset6 { 668 | margin-left: 54.14364640883978%; 669 | *margin-left: 54.037263430116376%; 670 | } 671 | .row-fluid .offset6:first-child { 672 | margin-left: 51.38121546961326%; 673 | *margin-left: 51.27483249088986%; 674 | } 675 | .row-fluid .offset5 { 676 | margin-left: 45.58011049723757%; 677 | *margin-left: 45.47372751851417%; 678 | } 679 | .row-fluid .offset5:first-child { 680 | margin-left: 42.81767955801105%; 681 | *margin-left: 42.71129657928765%; 682 | } 683 | .row-fluid .offset4 { 684 | margin-left: 37.01657458563536%; 685 | *margin-left: 36.91019160691196%; 686 | } 687 | .row-fluid .offset4:first-child { 688 | margin-left: 34.25414364640884%; 689 | *margin-left: 34.14776066768544%; 690 | } 691 | .row-fluid .offset3 { 692 | margin-left: 28.45303867403315%; 693 | *margin-left: 28.346655695309746%; 694 | } 695 | .row-fluid .offset3:first-child { 696 | margin-left: 25.69060773480663%; 697 | *margin-left: 25.584224756083227%; 698 | } 699 | .row-fluid .offset2 { 700 | margin-left: 19.88950276243094%; 701 | *margin-left: 19.783119783707537%; 702 | } 703 | .row-fluid .offset2:first-child { 704 | margin-left: 17.12707182320442%; 705 | *margin-left: 17.02068884448102%; 706 | } 707 | .row-fluid .offset1 { 708 | margin-left: 11.32596685082873%; 709 | *margin-left: 11.219583872105325%; 710 | } 711 | .row-fluid .offset1:first-child { 712 | margin-left: 8.56353591160221%; 713 | *margin-left: 8.457152932878806%; 714 | } 715 | input, 716 | textarea, 717 | .uneditable-input { 718 | margin-left: 0; 719 | } 720 | .controls-row [class*="span"] + [class*="span"] { 721 | margin-left: 20px; 722 | } 723 | input.span12, 724 | textarea.span12, 725 | .uneditable-input.span12 { 726 | width: 710px; 727 | } 728 | input.span11, 729 | textarea.span11, 730 | .uneditable-input.span11 { 731 | width: 648px; 732 | } 733 | input.span10, 734 | textarea.span10, 735 | .uneditable-input.span10 { 736 | width: 586px; 737 | } 738 | input.span9, 739 | textarea.span9, 740 | .uneditable-input.span9 { 741 | width: 524px; 742 | } 743 | input.span8, 744 | textarea.span8, 745 | .uneditable-input.span8 { 746 | width: 462px; 747 | } 748 | input.span7, 749 | textarea.span7, 750 | .uneditable-input.span7 { 751 | width: 400px; 752 | } 753 | input.span6, 754 | textarea.span6, 755 | .uneditable-input.span6 { 756 | width: 338px; 757 | } 758 | input.span5, 759 | textarea.span5, 760 | .uneditable-input.span5 { 761 | width: 276px; 762 | } 763 | input.span4, 764 | textarea.span4, 765 | .uneditable-input.span4 { 766 | width: 214px; 767 | } 768 | input.span3, 769 | textarea.span3, 770 | .uneditable-input.span3 { 771 | width: 152px; 772 | } 773 | input.span2, 774 | textarea.span2, 775 | .uneditable-input.span2 { 776 | width: 90px; 777 | } 778 | input.span1, 779 | textarea.span1, 780 | .uneditable-input.span1 { 781 | width: 28px; 782 | } 783 | } 784 | 785 | @media (max-width: 767px) { 786 | body { 787 | padding-right: 20px; 788 | padding-left: 20px; 789 | } 790 | .navbar-fixed-top, 791 | .navbar-fixed-bottom, 792 | .navbar-static-top { 793 | margin-right: -20px; 794 | margin-left: -20px; 795 | } 796 | .container-fluid { 797 | padding: 0; 798 | } 799 | .dl-horizontal dt { 800 | float: none; 801 | width: auto; 802 | clear: none; 803 | text-align: left; 804 | } 805 | .dl-horizontal dd { 806 | margin-left: 0; 807 | } 808 | .container { 809 | width: auto; 810 | } 811 | .row-fluid { 812 | width: 100%; 813 | } 814 | .row, 815 | .thumbnails { 816 | margin-left: 0; 817 | } 818 | .thumbnails > li { 819 | float: none; 820 | margin-left: 0; 821 | } 822 | [class*="span"], 823 | .uneditable-input[class*="span"], 824 | .row-fluid [class*="span"] { 825 | display: block; 826 | float: none; 827 | width: 100%; 828 | margin-left: 0; 829 | -webkit-box-sizing: border-box; 830 | -moz-box-sizing: border-box; 831 | box-sizing: border-box; 832 | } 833 | .span12, 834 | .row-fluid .span12 { 835 | width: 100%; 836 | -webkit-box-sizing: border-box; 837 | -moz-box-sizing: border-box; 838 | box-sizing: border-box; 839 | } 840 | .row-fluid [class*="offset"]:first-child { 841 | margin-left: 0; 842 | } 843 | .input-large, 844 | .input-xlarge, 845 | .input-xxlarge, 846 | input[class*="span"], 847 | select[class*="span"], 848 | textarea[class*="span"], 849 | .uneditable-input { 850 | display: block; 851 | width: 100%; 852 | min-height: 30px; 853 | -webkit-box-sizing: border-box; 854 | -moz-box-sizing: border-box; 855 | box-sizing: border-box; 856 | } 857 | .input-prepend input, 858 | .input-append input, 859 | .input-prepend input[class*="span"], 860 | .input-append input[class*="span"] { 861 | display: inline-block; 862 | width: auto; 863 | } 864 | .controls-row [class*="span"] + [class*="span"] { 865 | margin-left: 0; 866 | } 867 | .modal { 868 | position: fixed; 869 | top: 20px; 870 | right: 20px; 871 | left: 20px; 872 | width: auto; 873 | margin: 0; 874 | } 875 | .modal.fade { 876 | top: -100px; 877 | } 878 | .modal.fade.in { 879 | top: 20px; 880 | } 881 | } 882 | 883 | @media (max-width: 480px) { 884 | .nav-collapse { 885 | -webkit-transform: translate3d(0, 0, 0); 886 | } 887 | .page-header h1 small { 888 | display: block; 889 | line-height: 20px; 890 | } 891 | input[type="checkbox"], 892 | input[type="radio"] { 893 | border: 1px solid #ccc; 894 | } 895 | .form-horizontal .control-label { 896 | float: none; 897 | width: auto; 898 | padding-top: 0; 899 | text-align: left; 900 | } 901 | .form-horizontal .controls { 902 | margin-left: 0; 903 | } 904 | .form-horizontal .control-list { 905 | padding-top: 0; 906 | } 907 | .form-horizontal .form-actions { 908 | padding-right: 10px; 909 | padding-left: 10px; 910 | } 911 | .media .pull-left, 912 | .media .pull-right { 913 | display: block; 914 | float: none; 915 | margin-bottom: 10px; 916 | } 917 | .media-object { 918 | margin-right: 0; 919 | margin-left: 0; 920 | } 921 | .modal { 922 | top: 10px; 923 | right: 10px; 924 | left: 10px; 925 | } 926 | .modal-header .close { 927 | padding: 10px; 928 | margin: -10px; 929 | } 930 | .carousel-caption { 931 | position: static; 932 | } 933 | } 934 | 935 | @media (max-width: 979px) { 936 | body { 937 | padding-top: 0; 938 | } 939 | .navbar-fixed-top, 940 | .navbar-fixed-bottom { 941 | position: static; 942 | } 943 | .navbar-fixed-top { 944 | margin-bottom: 20px; 945 | } 946 | .navbar-fixed-bottom { 947 | margin-top: 20px; 948 | } 949 | .navbar-fixed-top .navbar-inner, 950 | .navbar-fixed-bottom .navbar-inner { 951 | padding: 5px; 952 | } 953 | .navbar .container { 954 | width: auto; 955 | padding: 0; 956 | } 957 | .navbar .brand { 958 | padding-right: 10px; 959 | padding-left: 10px; 960 | margin: 0 0 0 -5px; 961 | } 962 | .nav-collapse { 963 | clear: both; 964 | } 965 | .nav-collapse .nav { 966 | float: none; 967 | margin: 0 0 10px; 968 | } 969 | .nav-collapse .nav > li { 970 | float: none; 971 | } 972 | .nav-collapse .nav > li > a { 973 | margin-bottom: 2px; 974 | } 975 | .nav-collapse .nav > .divider-vertical { 976 | display: none; 977 | } 978 | .nav-collapse .nav .nav-header { 979 | color: #777777; 980 | text-shadow: none; 981 | } 982 | .nav-collapse .nav > li > a, 983 | .nav-collapse .dropdown-menu a { 984 | padding: 9px 15px; 985 | font-weight: bold; 986 | color: #777777; 987 | -webkit-border-radius: 3px; 988 | -moz-border-radius: 3px; 989 | border-radius: 3px; 990 | } 991 | .nav-collapse .btn { 992 | padding: 4px 10px 4px; 993 | font-weight: normal; 994 | -webkit-border-radius: 4px; 995 | -moz-border-radius: 4px; 996 | border-radius: 4px; 997 | } 998 | .nav-collapse .dropdown-menu li + li a { 999 | margin-bottom: 2px; 1000 | } 1001 | .nav-collapse .nav > li > a:hover, 1002 | .nav-collapse .dropdown-menu a:hover { 1003 | background-color: #f2f2f2; 1004 | } 1005 | .navbar-inverse .nav-collapse .nav > li > a, 1006 | .navbar-inverse .nav-collapse .dropdown-menu a { 1007 | color: #999999; 1008 | } 1009 | .navbar-inverse .nav-collapse .nav > li > a:hover, 1010 | .navbar-inverse .nav-collapse .dropdown-menu a:hover { 1011 | background-color: #111111; 1012 | } 1013 | .nav-collapse.in .btn-group { 1014 | padding: 0; 1015 | margin-top: 5px; 1016 | } 1017 | .nav-collapse .dropdown-menu { 1018 | position: static; 1019 | top: auto; 1020 | left: auto; 1021 | display: none; 1022 | float: none; 1023 | max-width: none; 1024 | padding: 0; 1025 | margin: 0 15px; 1026 | background-color: transparent; 1027 | border: none; 1028 | -webkit-border-radius: 0; 1029 | -moz-border-radius: 0; 1030 | border-radius: 0; 1031 | -webkit-box-shadow: none; 1032 | -moz-box-shadow: none; 1033 | box-shadow: none; 1034 | } 1035 | .nav-collapse .open > .dropdown-menu { 1036 | display: block; 1037 | } 1038 | .nav-collapse .dropdown-menu:before, 1039 | .nav-collapse .dropdown-menu:after { 1040 | display: none; 1041 | } 1042 | .nav-collapse .dropdown-menu .divider { 1043 | display: none; 1044 | } 1045 | .nav-collapse .nav > li > .dropdown-menu:before, 1046 | .nav-collapse .nav > li > .dropdown-menu:after { 1047 | display: none; 1048 | } 1049 | .nav-collapse .navbar-form, 1050 | .nav-collapse .navbar-search { 1051 | float: none; 1052 | padding: 10px 15px; 1053 | margin: 10px 0; 1054 | border-top: 1px solid #f2f2f2; 1055 | border-bottom: 1px solid #f2f2f2; 1056 | -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); 1057 | -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); 1058 | box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); 1059 | } 1060 | .navbar-inverse .nav-collapse .navbar-form, 1061 | .navbar-inverse .nav-collapse .navbar-search { 1062 | border-top-color: #111111; 1063 | border-bottom-color: #111111; 1064 | } 1065 | .navbar .nav-collapse .nav.pull-right { 1066 | float: none; 1067 | margin-left: 0; 1068 | } 1069 | .nav-collapse, 1070 | .nav-collapse.collapse { 1071 | height: 0; 1072 | overflow: hidden; 1073 | } 1074 | .navbar .btn-navbar { 1075 | display: block; 1076 | } 1077 | .navbar-static .navbar-inner { 1078 | padding-right: 10px; 1079 | padding-left: 10px; 1080 | } 1081 | } 1082 | 1083 | @media (min-width: 980px) { 1084 | .nav-collapse.collapse { 1085 | height: auto !important; 1086 | overflow: visible !important; 1087 | } 1088 | } 1089 | -------------------------------------------------------------------------------- /resources/public/js/bootstrap.js: -------------------------------------------------------------------------------- 1 | /* =================================================== 2 | * bootstrap-transition.js v2.2.1 3 | * http://twitter.github.com/bootstrap/javascript.html#transitions 4 | * =================================================== 5 | * Copyright 2012 Twitter, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * ========================================================== */ 19 | 20 | 21 | !function ($) { 22 | 23 | "use strict"; // jshint ;_; 24 | 25 | 26 | /* CSS TRANSITION SUPPORT (http://www.modernizr.com/) 27 | * ======================================================= */ 28 | 29 | $(function () { 30 | 31 | $.support.transition = (function () { 32 | 33 | var transitionEnd = (function () { 34 | 35 | var el = document.createElement('bootstrap') 36 | , transEndEventNames = { 37 | 'WebkitTransition' : 'webkitTransitionEnd' 38 | , 'MozTransition' : 'transitionend' 39 | , 'OTransition' : 'oTransitionEnd otransitionend' 40 | , 'transition' : 'transitionend' 41 | } 42 | , name 43 | 44 | for (name in transEndEventNames){ 45 | if (el.style[name] !== undefined) { 46 | return transEndEventNames[name] 47 | } 48 | } 49 | 50 | }()) 51 | 52 | return transitionEnd && { 53 | end: transitionEnd 54 | } 55 | 56 | })() 57 | 58 | }) 59 | 60 | }(window.jQuery);/* ========================================================== 61 | * bootstrap-alert.js v2.2.1 62 | * http://twitter.github.com/bootstrap/javascript.html#alerts 63 | * ========================================================== 64 | * Copyright 2012 Twitter, Inc. 65 | * 66 | * Licensed under the Apache License, Version 2.0 (the "License"); 67 | * you may not use this file except in compliance with the License. 68 | * You may obtain a copy of the License at 69 | * 70 | * http://www.apache.org/licenses/LICENSE-2.0 71 | * 72 | * Unless required by applicable law or agreed to in writing, software 73 | * distributed under the License is distributed on an "AS IS" BASIS, 74 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 75 | * See the License for the specific language governing permissions and 76 | * limitations under the License. 77 | * ========================================================== */ 78 | 79 | 80 | !function ($) { 81 | 82 | "use strict"; // jshint ;_; 83 | 84 | 85 | /* ALERT CLASS DEFINITION 86 | * ====================== */ 87 | 88 | var dismiss = '[data-dismiss="alert"]' 89 | , Alert = function (el) { 90 | $(el).on('click', dismiss, this.close) 91 | } 92 | 93 | Alert.prototype.close = function (e) { 94 | var $this = $(this) 95 | , selector = $this.attr('data-target') 96 | , $parent 97 | 98 | if (!selector) { 99 | selector = $this.attr('href') 100 | selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7 101 | } 102 | 103 | $parent = $(selector) 104 | 105 | e && e.preventDefault() 106 | 107 | $parent.length || ($parent = $this.hasClass('alert') ? $this : $this.parent()) 108 | 109 | $parent.trigger(e = $.Event('close')) 110 | 111 | if (e.isDefaultPrevented()) return 112 | 113 | $parent.removeClass('in') 114 | 115 | function removeElement() { 116 | $parent 117 | .trigger('closed') 118 | .remove() 119 | } 120 | 121 | $.support.transition && $parent.hasClass('fade') ? 122 | $parent.on($.support.transition.end, removeElement) : 123 | removeElement() 124 | } 125 | 126 | 127 | /* ALERT PLUGIN DEFINITION 128 | * ======================= */ 129 | 130 | $.fn.alert = function (option) { 131 | return this.each(function () { 132 | var $this = $(this) 133 | , data = $this.data('alert') 134 | if (!data) $this.data('alert', (data = new Alert(this))) 135 | if (typeof option == 'string') data[option].call($this) 136 | }) 137 | } 138 | 139 | $.fn.alert.Constructor = Alert 140 | 141 | 142 | /* ALERT DATA-API 143 | * ============== */ 144 | 145 | $(document).on('click.alert.data-api', dismiss, Alert.prototype.close) 146 | 147 | }(window.jQuery);/* ============================================================ 148 | * bootstrap-button.js v2.2.1 149 | * http://twitter.github.com/bootstrap/javascript.html#buttons 150 | * ============================================================ 151 | * Copyright 2012 Twitter, Inc. 152 | * 153 | * Licensed under the Apache License, Version 2.0 (the "License"); 154 | * you may not use this file except in compliance with the License. 155 | * You may obtain a copy of the License at 156 | * 157 | * http://www.apache.org/licenses/LICENSE-2.0 158 | * 159 | * Unless required by applicable law or agreed to in writing, software 160 | * distributed under the License is distributed on an "AS IS" BASIS, 161 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 162 | * See the License for the specific language governing permissions and 163 | * limitations under the License. 164 | * ============================================================ */ 165 | 166 | 167 | !function ($) { 168 | 169 | "use strict"; // jshint ;_; 170 | 171 | 172 | /* BUTTON PUBLIC CLASS DEFINITION 173 | * ============================== */ 174 | 175 | var Button = function (element, options) { 176 | this.$element = $(element) 177 | this.options = $.extend({}, $.fn.button.defaults, options) 178 | } 179 | 180 | Button.prototype.setState = function (state) { 181 | var d = 'disabled' 182 | , $el = this.$element 183 | , data = $el.data() 184 | , val = $el.is('input') ? 'val' : 'html' 185 | 186 | state = state + 'Text' 187 | data.resetText || $el.data('resetText', $el[val]()) 188 | 189 | $el[val](data[state] || this.options[state]) 190 | 191 | // push to event loop to allow forms to submit 192 | setTimeout(function () { 193 | state == 'loadingText' ? 194 | $el.addClass(d).attr(d, d) : 195 | $el.removeClass(d).removeAttr(d) 196 | }, 0) 197 | } 198 | 199 | Button.prototype.toggle = function () { 200 | var $parent = this.$element.closest('[data-toggle="buttons-radio"]') 201 | 202 | $parent && $parent 203 | .find('.active') 204 | .removeClass('active') 205 | 206 | this.$element.toggleClass('active') 207 | } 208 | 209 | 210 | /* BUTTON PLUGIN DEFINITION 211 | * ======================== */ 212 | 213 | $.fn.button = function (option) { 214 | return this.each(function () { 215 | var $this = $(this) 216 | , data = $this.data('button') 217 | , options = typeof option == 'object' && option 218 | if (!data) $this.data('button', (data = new Button(this, options))) 219 | if (option == 'toggle') data.toggle() 220 | else if (option) data.setState(option) 221 | }) 222 | } 223 | 224 | $.fn.button.defaults = { 225 | loadingText: 'loading...' 226 | } 227 | 228 | $.fn.button.Constructor = Button 229 | 230 | 231 | /* BUTTON DATA-API 232 | * =============== */ 233 | 234 | $(document).on('click.button.data-api', '[data-toggle^=button]', function (e) { 235 | var $btn = $(e.target) 236 | if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn') 237 | $btn.button('toggle') 238 | }) 239 | 240 | }(window.jQuery);/* ========================================================== 241 | * bootstrap-carousel.js v2.2.1 242 | * http://twitter.github.com/bootstrap/javascript.html#carousel 243 | * ========================================================== 244 | * Copyright 2012 Twitter, Inc. 245 | * 246 | * Licensed under the Apache License, Version 2.0 (the "License"); 247 | * you may not use this file except in compliance with the License. 248 | * You may obtain a copy of the License at 249 | * 250 | * http://www.apache.org/licenses/LICENSE-2.0 251 | * 252 | * Unless required by applicable law or agreed to in writing, software 253 | * distributed under the License is distributed on an "AS IS" BASIS, 254 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 255 | * See the License for the specific language governing permissions and 256 | * limitations under the License. 257 | * ========================================================== */ 258 | 259 | 260 | !function ($) { 261 | 262 | "use strict"; // jshint ;_; 263 | 264 | 265 | /* CAROUSEL CLASS DEFINITION 266 | * ========================= */ 267 | 268 | var Carousel = function (element, options) { 269 | this.$element = $(element) 270 | this.options = options 271 | this.options.slide && this.slide(this.options.slide) 272 | this.options.pause == 'hover' && this.$element 273 | .on('mouseenter', $.proxy(this.pause, this)) 274 | .on('mouseleave', $.proxy(this.cycle, this)) 275 | } 276 | 277 | Carousel.prototype = { 278 | 279 | cycle: function (e) { 280 | if (!e) this.paused = false 281 | this.options.interval 282 | && !this.paused 283 | && (this.interval = setInterval($.proxy(this.next, this), this.options.interval)) 284 | return this 285 | } 286 | 287 | , to: function (pos) { 288 | var $active = this.$element.find('.item.active') 289 | , children = $active.parent().children() 290 | , activePos = children.index($active) 291 | , that = this 292 | 293 | if (pos > (children.length - 1) || pos < 0) return 294 | 295 | if (this.sliding) { 296 | return this.$element.one('slid', function () { 297 | that.to(pos) 298 | }) 299 | } 300 | 301 | if (activePos == pos) { 302 | return this.pause().cycle() 303 | } 304 | 305 | return this.slide(pos > activePos ? 'next' : 'prev', $(children[pos])) 306 | } 307 | 308 | , pause: function (e) { 309 | if (!e) this.paused = true 310 | if (this.$element.find('.next, .prev').length && $.support.transition.end) { 311 | this.$element.trigger($.support.transition.end) 312 | this.cycle() 313 | } 314 | clearInterval(this.interval) 315 | this.interval = null 316 | return this 317 | } 318 | 319 | , next: function () { 320 | if (this.sliding) return 321 | return this.slide('next') 322 | } 323 | 324 | , prev: function () { 325 | if (this.sliding) return 326 | return this.slide('prev') 327 | } 328 | 329 | , slide: function (type, next) { 330 | var $active = this.$element.find('.item.active') 331 | , $next = next || $active[type]() 332 | , isCycling = this.interval 333 | , direction = type == 'next' ? 'left' : 'right' 334 | , fallback = type == 'next' ? 'first' : 'last' 335 | , that = this 336 | , e 337 | 338 | this.sliding = true 339 | 340 | isCycling && this.pause() 341 | 342 | $next = $next.length ? $next : this.$element.find('.item')[fallback]() 343 | 344 | e = $.Event('slide', { 345 | relatedTarget: $next[0] 346 | }) 347 | 348 | if ($next.hasClass('active')) return 349 | 350 | if ($.support.transition && this.$element.hasClass('slide')) { 351 | this.$element.trigger(e) 352 | if (e.isDefaultPrevented()) return 353 | $next.addClass(type) 354 | $next[0].offsetWidth // force reflow 355 | $active.addClass(direction) 356 | $next.addClass(direction) 357 | this.$element.one($.support.transition.end, function () { 358 | $next.removeClass([type, direction].join(' ')).addClass('active') 359 | $active.removeClass(['active', direction].join(' ')) 360 | that.sliding = false 361 | setTimeout(function () { that.$element.trigger('slid') }, 0) 362 | }) 363 | } else { 364 | this.$element.trigger(e) 365 | if (e.isDefaultPrevented()) return 366 | $active.removeClass('active') 367 | $next.addClass('active') 368 | this.sliding = false 369 | this.$element.trigger('slid') 370 | } 371 | 372 | isCycling && this.cycle() 373 | 374 | return this 375 | } 376 | 377 | } 378 | 379 | 380 | /* CAROUSEL PLUGIN DEFINITION 381 | * ========================== */ 382 | 383 | $.fn.carousel = function (option) { 384 | return this.each(function () { 385 | var $this = $(this) 386 | , data = $this.data('carousel') 387 | , options = $.extend({}, $.fn.carousel.defaults, typeof option == 'object' && option) 388 | , action = typeof option == 'string' ? option : options.slide 389 | if (!data) $this.data('carousel', (data = new Carousel(this, options))) 390 | if (typeof option == 'number') data.to(option) 391 | else if (action) data[action]() 392 | else if (options.interval) data.cycle() 393 | }) 394 | } 395 | 396 | $.fn.carousel.defaults = { 397 | interval: 5000 398 | , pause: 'hover' 399 | } 400 | 401 | $.fn.carousel.Constructor = Carousel 402 | 403 | 404 | /* CAROUSEL DATA-API 405 | * ================= */ 406 | 407 | $(document).on('click.carousel.data-api', '[data-slide]', function (e) { 408 | var $this = $(this), href 409 | , $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7 410 | , options = $.extend({}, $target.data(), $this.data()) 411 | $target.carousel(options) 412 | e.preventDefault() 413 | }) 414 | 415 | }(window.jQuery);/* ============================================================= 416 | * bootstrap-collapse.js v2.2.1 417 | * http://twitter.github.com/bootstrap/javascript.html#collapse 418 | * ============================================================= 419 | * Copyright 2012 Twitter, Inc. 420 | * 421 | * Licensed under the Apache License, Version 2.0 (the "License"); 422 | * you may not use this file except in compliance with the License. 423 | * You may obtain a copy of the License at 424 | * 425 | * http://www.apache.org/licenses/LICENSE-2.0 426 | * 427 | * Unless required by applicable law or agreed to in writing, software 428 | * distributed under the License is distributed on an "AS IS" BASIS, 429 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 430 | * See the License for the specific language governing permissions and 431 | * limitations under the License. 432 | * ============================================================ */ 433 | 434 | 435 | !function ($) { 436 | 437 | "use strict"; // jshint ;_; 438 | 439 | 440 | /* COLLAPSE PUBLIC CLASS DEFINITION 441 | * ================================ */ 442 | 443 | var Collapse = function (element, options) { 444 | this.$element = $(element) 445 | this.options = $.extend({}, $.fn.collapse.defaults, options) 446 | 447 | if (this.options.parent) { 448 | this.$parent = $(this.options.parent) 449 | } 450 | 451 | this.options.toggle && this.toggle() 452 | } 453 | 454 | Collapse.prototype = { 455 | 456 | constructor: Collapse 457 | 458 | , dimension: function () { 459 | var hasWidth = this.$element.hasClass('width') 460 | return hasWidth ? 'width' : 'height' 461 | } 462 | 463 | , show: function () { 464 | var dimension 465 | , scroll 466 | , actives 467 | , hasData 468 | 469 | if (this.transitioning) return 470 | 471 | dimension = this.dimension() 472 | scroll = $.camelCase(['scroll', dimension].join('-')) 473 | actives = this.$parent && this.$parent.find('> .accordion-group > .in') 474 | 475 | if (actives && actives.length) { 476 | hasData = actives.data('collapse') 477 | if (hasData && hasData.transitioning) return 478 | actives.collapse('hide') 479 | hasData || actives.data('collapse', null) 480 | } 481 | 482 | this.$element[dimension](0) 483 | this.transition('addClass', $.Event('show'), 'shown') 484 | $.support.transition && this.$element[dimension](this.$element[0][scroll]) 485 | } 486 | 487 | , hide: function () { 488 | var dimension 489 | if (this.transitioning) return 490 | dimension = this.dimension() 491 | this.reset(this.$element[dimension]()) 492 | this.transition('removeClass', $.Event('hide'), 'hidden') 493 | this.$element[dimension](0) 494 | } 495 | 496 | , reset: function (size) { 497 | var dimension = this.dimension() 498 | 499 | this.$element 500 | .removeClass('collapse') 501 | [dimension](size || 'auto') 502 | [0].offsetWidth 503 | 504 | this.$element[size !== null ? 'addClass' : 'removeClass']('collapse') 505 | 506 | return this 507 | } 508 | 509 | , transition: function (method, startEvent, completeEvent) { 510 | var that = this 511 | , complete = function () { 512 | if (startEvent.type == 'show') that.reset() 513 | that.transitioning = 0 514 | that.$element.trigger(completeEvent) 515 | } 516 | 517 | this.$element.trigger(startEvent) 518 | 519 | if (startEvent.isDefaultPrevented()) return 520 | 521 | this.transitioning = 1 522 | 523 | this.$element[method]('in') 524 | 525 | $.support.transition && this.$element.hasClass('collapse') ? 526 | this.$element.one($.support.transition.end, complete) : 527 | complete() 528 | } 529 | 530 | , toggle: function () { 531 | this[this.$element.hasClass('in') ? 'hide' : 'show']() 532 | } 533 | 534 | } 535 | 536 | 537 | /* COLLAPSIBLE PLUGIN DEFINITION 538 | * ============================== */ 539 | 540 | $.fn.collapse = function (option) { 541 | return this.each(function () { 542 | var $this = $(this) 543 | , data = $this.data('collapse') 544 | , options = typeof option == 'object' && option 545 | if (!data) $this.data('collapse', (data = new Collapse(this, options))) 546 | if (typeof option == 'string') data[option]() 547 | }) 548 | } 549 | 550 | $.fn.collapse.defaults = { 551 | toggle: true 552 | } 553 | 554 | $.fn.collapse.Constructor = Collapse 555 | 556 | 557 | /* COLLAPSIBLE DATA-API 558 | * ==================== */ 559 | 560 | $(document).on('click.collapse.data-api', '[data-toggle=collapse]', function (e) { 561 | var $this = $(this), href 562 | , target = $this.attr('data-target') 563 | || e.preventDefault() 564 | || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') //strip for ie7 565 | , option = $(target).data('collapse') ? 'toggle' : $this.data() 566 | $this[$(target).hasClass('in') ? 'addClass' : 'removeClass']('collapsed') 567 | $(target).collapse(option) 568 | }) 569 | 570 | }(window.jQuery);/* ============================================================ 571 | * bootstrap-dropdown.js v2.2.1 572 | * http://twitter.github.com/bootstrap/javascript.html#dropdowns 573 | * ============================================================ 574 | * Copyright 2012 Twitter, Inc. 575 | * 576 | * Licensed under the Apache License, Version 2.0 (the "License"); 577 | * you may not use this file except in compliance with the License. 578 | * You may obtain a copy of the License at 579 | * 580 | * http://www.apache.org/licenses/LICENSE-2.0 581 | * 582 | * Unless required by applicable law or agreed to in writing, software 583 | * distributed under the License is distributed on an "AS IS" BASIS, 584 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 585 | * See the License for the specific language governing permissions and 586 | * limitations under the License. 587 | * ============================================================ */ 588 | 589 | 590 | !function ($) { 591 | 592 | "use strict"; // jshint ;_; 593 | 594 | 595 | /* DROPDOWN CLASS DEFINITION 596 | * ========================= */ 597 | 598 | var toggle = '[data-toggle=dropdown]' 599 | , Dropdown = function (element) { 600 | var $el = $(element).on('click.dropdown.data-api', this.toggle) 601 | $('html').on('click.dropdown.data-api', function () { 602 | $el.parent().removeClass('open') 603 | }) 604 | } 605 | 606 | Dropdown.prototype = { 607 | 608 | constructor: Dropdown 609 | 610 | , toggle: function (e) { 611 | var $this = $(this) 612 | , $parent 613 | , isActive 614 | 615 | if ($this.is('.disabled, :disabled')) return 616 | 617 | $parent = getParent($this) 618 | 619 | isActive = $parent.hasClass('open') 620 | 621 | clearMenus() 622 | 623 | if (!isActive) { 624 | $parent.toggleClass('open') 625 | $this.focus() 626 | } 627 | 628 | return false 629 | } 630 | 631 | , keydown: function (e) { 632 | var $this 633 | , $items 634 | , $active 635 | , $parent 636 | , isActive 637 | , index 638 | 639 | if (!/(38|40|27)/.test(e.keyCode)) return 640 | 641 | $this = $(this) 642 | 643 | e.preventDefault() 644 | e.stopPropagation() 645 | 646 | if ($this.is('.disabled, :disabled')) return 647 | 648 | $parent = getParent($this) 649 | 650 | isActive = $parent.hasClass('open') 651 | 652 | if (!isActive || (isActive && e.keyCode == 27)) return $this.click() 653 | 654 | $items = $('[role=menu] li:not(.divider) a', $parent) 655 | 656 | if (!$items.length) return 657 | 658 | index = $items.index($items.filter(':focus')) 659 | 660 | if (e.keyCode == 38 && index > 0) index-- // up 661 | if (e.keyCode == 40 && index < $items.length - 1) index++ // down 662 | if (!~index) index = 0 663 | 664 | $items 665 | .eq(index) 666 | .focus() 667 | } 668 | 669 | } 670 | 671 | function clearMenus() { 672 | $(toggle).each(function () { 673 | getParent($(this)).removeClass('open') 674 | }) 675 | } 676 | 677 | function getParent($this) { 678 | var selector = $this.attr('data-target') 679 | , $parent 680 | 681 | if (!selector) { 682 | selector = $this.attr('href') 683 | selector = selector && /#/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7 684 | } 685 | 686 | $parent = $(selector) 687 | $parent.length || ($parent = $this.parent()) 688 | 689 | return $parent 690 | } 691 | 692 | 693 | /* DROPDOWN PLUGIN DEFINITION 694 | * ========================== */ 695 | 696 | $.fn.dropdown = function (option) { 697 | return this.each(function () { 698 | var $this = $(this) 699 | , data = $this.data('dropdown') 700 | if (!data) $this.data('dropdown', (data = new Dropdown(this))) 701 | if (typeof option == 'string') data[option].call($this) 702 | }) 703 | } 704 | 705 | $.fn.dropdown.Constructor = Dropdown 706 | 707 | 708 | /* APPLY TO STANDARD DROPDOWN ELEMENTS 709 | * =================================== */ 710 | 711 | $(document) 712 | .on('click.dropdown.data-api touchstart.dropdown.data-api', clearMenus) 713 | .on('click.dropdown touchstart.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() }) 714 | .on('click.dropdown.data-api touchstart.dropdown.data-api' , toggle, Dropdown.prototype.toggle) 715 | .on('keydown.dropdown.data-api touchstart.dropdown.data-api', toggle + ', [role=menu]' , Dropdown.prototype.keydown) 716 | 717 | }(window.jQuery);/* ========================================================= 718 | * bootstrap-modal.js v2.2.1 719 | * http://twitter.github.com/bootstrap/javascript.html#modals 720 | * ========================================================= 721 | * Copyright 2012 Twitter, Inc. 722 | * 723 | * Licensed under the Apache License, Version 2.0 (the "License"); 724 | * you may not use this file except in compliance with the License. 725 | * You may obtain a copy of the License at 726 | * 727 | * http://www.apache.org/licenses/LICENSE-2.0 728 | * 729 | * Unless required by applicable law or agreed to in writing, software 730 | * distributed under the License is distributed on an "AS IS" BASIS, 731 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 732 | * See the License for the specific language governing permissions and 733 | * limitations under the License. 734 | * ========================================================= */ 735 | 736 | 737 | !function ($) { 738 | 739 | "use strict"; // jshint ;_; 740 | 741 | 742 | /* MODAL CLASS DEFINITION 743 | * ====================== */ 744 | 745 | var Modal = function (element, options) { 746 | this.options = options 747 | this.$element = $(element) 748 | .delegate('[data-dismiss="modal"]', 'click.dismiss.modal', $.proxy(this.hide, this)) 749 | this.options.remote && this.$element.find('.modal-body').load(this.options.remote) 750 | } 751 | 752 | Modal.prototype = { 753 | 754 | constructor: Modal 755 | 756 | , toggle: function () { 757 | return this[!this.isShown ? 'show' : 'hide']() 758 | } 759 | 760 | , show: function () { 761 | var that = this 762 | , e = $.Event('show') 763 | 764 | this.$element.trigger(e) 765 | 766 | if (this.isShown || e.isDefaultPrevented()) return 767 | 768 | this.isShown = true 769 | 770 | this.escape() 771 | 772 | this.backdrop(function () { 773 | var transition = $.support.transition && that.$element.hasClass('fade') 774 | 775 | if (!that.$element.parent().length) { 776 | that.$element.appendTo(document.body) //don't move modals dom position 777 | } 778 | 779 | that.$element 780 | .show() 781 | 782 | if (transition) { 783 | that.$element[0].offsetWidth // force reflow 784 | } 785 | 786 | that.$element 787 | .addClass('in') 788 | .attr('aria-hidden', false) 789 | 790 | that.enforceFocus() 791 | 792 | transition ? 793 | that.$element.one($.support.transition.end, function () { that.$element.focus().trigger('shown') }) : 794 | that.$element.focus().trigger('shown') 795 | 796 | }) 797 | } 798 | 799 | , hide: function (e) { 800 | e && e.preventDefault() 801 | 802 | var that = this 803 | 804 | e = $.Event('hide') 805 | 806 | this.$element.trigger(e) 807 | 808 | if (!this.isShown || e.isDefaultPrevented()) return 809 | 810 | this.isShown = false 811 | 812 | this.escape() 813 | 814 | $(document).off('focusin.modal') 815 | 816 | this.$element 817 | .removeClass('in') 818 | .attr('aria-hidden', true) 819 | 820 | $.support.transition && this.$element.hasClass('fade') ? 821 | this.hideWithTransition() : 822 | this.hideModal() 823 | } 824 | 825 | , enforceFocus: function () { 826 | var that = this 827 | $(document).on('focusin.modal', function (e) { 828 | if (that.$element[0] !== e.target && !that.$element.has(e.target).length) { 829 | that.$element.focus() 830 | } 831 | }) 832 | } 833 | 834 | , escape: function () { 835 | var that = this 836 | if (this.isShown && this.options.keyboard) { 837 | this.$element.on('keyup.dismiss.modal', function ( e ) { 838 | e.which == 27 && that.hide() 839 | }) 840 | } else if (!this.isShown) { 841 | this.$element.off('keyup.dismiss.modal') 842 | } 843 | } 844 | 845 | , hideWithTransition: function () { 846 | var that = this 847 | , timeout = setTimeout(function () { 848 | that.$element.off($.support.transition.end) 849 | that.hideModal() 850 | }, 500) 851 | 852 | this.$element.one($.support.transition.end, function () { 853 | clearTimeout(timeout) 854 | that.hideModal() 855 | }) 856 | } 857 | 858 | , hideModal: function (that) { 859 | this.$element 860 | .hide() 861 | .trigger('hidden') 862 | 863 | this.backdrop() 864 | } 865 | 866 | , removeBackdrop: function () { 867 | this.$backdrop.remove() 868 | this.$backdrop = null 869 | } 870 | 871 | , backdrop: function (callback) { 872 | var that = this 873 | , animate = this.$element.hasClass('fade') ? 'fade' : '' 874 | 875 | if (this.isShown && this.options.backdrop) { 876 | var doAnimate = $.support.transition && animate 877 | 878 | this.$backdrop = $('