bootstrap-rails-engine 1.2.2 → 1.2.9
Sign up to get free protection for your applications and to get access to all the features.
- data.tar.gz.sig +1 -0
- data/README.md +1 -1
- data/bootstrap-rails-engine.gemspec +3 -0
- data/gem-public_cert.pem +20 -0
- data/lib/bootstrap-rails-engine.rb +3 -5
- data/lib/bootstrap-rails-engine/version.rb +2 -2
- data/vendor/assets/javascripts/bootstrap/bootstrap.js +189 -80
- data/vendor/assets/javascripts/bootstrap/bootstrap.min.js +1 -1
- data/vendor/assets/stylesheets/bootstrap/bootstrap-responsive.css +24 -7
- data/vendor/assets/stylesheets/bootstrap/bootstrap-responsive.min.css +2 -2
- data/vendor/assets/stylesheets/bootstrap/bootstrap.css +238 -119
- data/vendor/assets/stylesheets/bootstrap/bootstrap.min.css +2 -2
- metadata +32 -4
- metadata.gz.sig +0 -0
@@ -3,4 +3,4 @@
|
|
3
3
|
* Copyright 2012 Twitter, Inc.
|
4
4
|
* http://www.apache.org/licenses/LICENSE-2.0.txt
|
5
5
|
*/
|
6
|
-
!function($){"use strict";$(function(){$.support.transition=function(){var transitionEnd=function(){var name,el=document.createElement("bootstrap"),transEndEventNames={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(name in transEndEventNames)if(void 0!==el.style[name])return transEndEventNames[name]}();return transitionEnd&&{end:transitionEnd}}()})}(window.jQuery),!function($){"use strict";var dismiss='[data-dismiss="alert"]',Alert=function(el){$(el).on("click",dismiss,this.close)};Alert.prototype.close=function(e){function removeElement(){$parent.trigger("closed").remove()}var $parent,$this=$(this),selector=$this.attr("data-target");selector||(selector=$this.attr("href"),selector=selector&&selector.replace(/.*(?=#[^\s]*$)/,"")),$parent=$(selector),e&&e.preventDefault(),$parent.length||($parent=$this.hasClass("alert")?$this:$this.parent()),$parent.trigger(e=$.Event("close")),e.isDefaultPrevented()||($parent.removeClass("in"),$.support.transition&&$parent.hasClass("fade")?$parent.on($.support.transition.end,removeElement):removeElement())};var old=$.fn.alert;$.fn.alert=function(option){return this.each(function(){var $this=$(this),data=$this.data("alert");data||$this.data("alert",data=new Alert(this)),"string"==typeof option&&data[option].call($this)})},$.fn.alert.Constructor=Alert,$.fn.alert.noConflict=function(){return $.fn.alert=old,this},$(document).on("click.alert.data-api",dismiss,Alert.prototype.close)}(window.jQuery),!function($){"use strict";var Button=function(element,options){this.$element=$(element),this.options=$.extend({},$.fn.button.defaults,options)};Button.prototype.setState=function(state){var d="disabled",$el=this.$element,data=$el.data(),val=$el.is("input")?"val":"html";state+="Text",data.resetText||$el.data("resetText",$el[val]()),$el[val](data[state]||this.options[state]),setTimeout(function(){"loadingText"==state?$el.addClass(d).attr(d,d):$el.removeClass(d).removeAttr(d)},0)},Button.prototype.toggle=function(){var $parent=this.$element.closest('[data-toggle="buttons-radio"]');$parent&&$parent.find(".active").removeClass("active"),this.$element.toggleClass("active")};var old=$.fn.button;$.fn.button=function(option){return this.each(function(){var $this=$(this),data=$this.data("button"),options="object"==typeof option&&option;data||$this.data("button",data=new Button(this,options)),"toggle"==option?data.toggle():option&&data.setState(option)})},$.fn.button.defaults={loadingText:"loading..."},$.fn.button.Constructor=Button,$.fn.button.noConflict=function(){return $.fn.button=old,this},$(document).on("click.button.data-api","[data-toggle^=button]",function(e){var $btn=$(e.target);$btn.hasClass("btn")||($btn=$btn.closest(".btn")),$btn.button("toggle")})}(window.jQuery),!function($){"use strict";var Carousel=function(element,options){this.$element=$(element),this.options=options,"hover"==this.options.pause&&this.$element.on("mouseenter",$.proxy(this.pause,this)).on("mouseleave",$.proxy(this.cycle,this))};Carousel.prototype={cycle:function(e){return e||(this.paused=!1),this.options.interval&&!this.paused&&(this.interval=setInterval($.proxy(this.next,this),this.options.interval)),this},to:function(pos){var $active=this.$element.find(".item.active"),children=$active.parent().children(),activePos=children.index($active),that=this;if(!(pos>children.length-1||0>pos))return this.sliding?this.$element.one("slid",function(){that.to(pos)}):activePos==pos?this.pause().cycle():this.slide(pos>activePos?"next":"prev",$(children[pos]))},pause:function(e){return e||(this.paused=!0),this.$element.find(".next, .prev").length&&$.support.transition.end&&(this.$element.trigger($.support.transition.end),this.cycle()),clearInterval(this.interval),this.interval=null,this},next:function(){return this.sliding?void 0:this.slide("next")},prev:function(){return this.sliding?void 0:this.slide("prev")},slide:function(type,next){var e,$active=this.$element.find(".item.active"),$next=next||$active[type](),isCycling=this.interval,direction="next"==type?"left":"right",fallback="next"==type?"first":"last",that=this;if(this.sliding=!0,isCycling&&this.pause(),$next=$next.length?$next:this.$element.find(".item")[fallback](),e=$.Event("slide",{relatedTarget:$next[0]}),!$next.hasClass("active")){if($.support.transition&&this.$element.hasClass("slide")){if(this.$element.trigger(e),e.isDefaultPrevented())return;$next.addClass(type),$next[0].offsetWidth,$active.addClass(direction),$next.addClass(direction),this.$element.one($.support.transition.end,function(){$next.removeClass([type,direction].join(" ")).addClass("active"),$active.removeClass(["active",direction].join(" ")),that.sliding=!1,setTimeout(function(){that.$element.trigger("slid")},0)})}else{if(this.$element.trigger(e),e.isDefaultPrevented())return;$active.removeClass("active"),$next.addClass("active"),this.sliding=!1,this.$element.trigger("slid")}return isCycling&&this.cycle(),this}}};var old=$.fn.carousel;$.fn.carousel=function(option){return this.each(function(){var $this=$(this),data=$this.data("carousel"),options=$.extend({},$.fn.carousel.defaults,"object"==typeof option&&option),action="string"==typeof option?option:options.slide;data||$this.data("carousel",data=new Carousel(this,options)),"number"==typeof option?data.to(option):action?data[action]():options.interval&&data.cycle()})},$.fn.carousel.defaults={interval:5e3,pause:"hover"},$.fn.carousel.Constructor=Carousel,$.fn.carousel.noConflict=function(){return $.fn.carousel=old,this},$(document).on("click.carousel.data-api","[data-slide]",function(e){var href,$this=$(this),$target=$($this.attr("data-target")||(href=$this.attr("href"))&&href.replace(/.*(?=#[^\s]+$)/,"")),options=$.extend({},$target.data(),$this.data());$target.carousel(options),e.preventDefault()})}(window.jQuery),!function($){"use strict";var Collapse=function(element,options){this.$element=$(element),this.options=$.extend({},$.fn.collapse.defaults,options),this.options.parent&&(this.$parent=$(this.options.parent)),this.options.toggle&&this.toggle()};Collapse.prototype={constructor:Collapse,dimension:function(){var hasWidth=this.$element.hasClass("width");return hasWidth?"width":"height"},show:function(){var dimension,scroll,actives,hasData;if(!this.transitioning){if(dimension=this.dimension(),scroll=$.camelCase(["scroll",dimension].join("-")),actives=this.$parent&&this.$parent.find("> .accordion-group > .in"),actives&&actives.length){if(hasData=actives.data("collapse"),hasData&&hasData.transitioning)return;actives.collapse("hide"),hasData||actives.data("collapse",null)}this.$element[dimension](0),this.transition("addClass",$.Event("show"),"shown"),$.support.transition&&this.$element[dimension](this.$element[0][scroll])}},hide:function(){var dimension;this.transitioning||(dimension=this.dimension(),this.reset(this.$element[dimension]()),this.transition("removeClass",$.Event("hide"),"hidden"),this.$element[dimension](0))},reset:function(size){var dimension=this.dimension();return this.$element.removeClass("collapse")[dimension](size||"auto")[0].offsetWidth,this.$element[null!==size?"addClass":"removeClass"]("collapse"),this},transition:function(method,startEvent,completeEvent){var that=this,complete=function(){"show"==startEvent.type&&that.reset(),that.transitioning=0,that.$element.trigger(completeEvent)};this.$element.trigger(startEvent),startEvent.isDefaultPrevented()||(this.transitioning=1,this.$element[method]("in"),$.support.transition&&this.$element.hasClass("collapse")?this.$element.one($.support.transition.end,complete):complete())},toggle:function(){this[this.$element.hasClass("in")?"hide":"show"]()}};var old=$.fn.collapse;$.fn.collapse=function(option){return this.each(function(){var $this=$(this),data=$this.data("collapse"),options="object"==typeof option&&option;data||$this.data("collapse",data=new Collapse(this,options)),"string"==typeof option&&data[option]()})},$.fn.collapse.defaults={toggle:!0},$.fn.collapse.Constructor=Collapse,$.fn.collapse.noConflict=function(){return $.fn.collapse=old,this},$(document).on("click.collapse.data-api","[data-toggle=collapse]",function(e){var href,$this=$(this),target=$this.attr("data-target")||e.preventDefault()||(href=$this.attr("href"))&&href.replace(/.*(?=#[^\s]+$)/,""),option=$(target).data("collapse")?"toggle":$this.data();$this[$(target).hasClass("in")?"addClass":"removeClass"]("collapsed"),$(target).collapse(option)})}(window.jQuery),!function($){"use strict";function clearMenus(){$(toggle).each(function(){getParent($(this)).removeClass("open")})}function getParent($this){var $parent,selector=$this.attr("data-target");return selector||(selector=$this.attr("href"),selector=selector&&/#/.test(selector)&&selector.replace(/.*(?=#[^\s]*$)/,"")),$parent=$(selector),$parent.length||($parent=$this.parent()),$parent}var toggle="[data-toggle=dropdown]",Dropdown=function(element){var $el=$(element).on("click.dropdown.data-api",this.toggle);$("html").on("click.dropdown.data-api",function(){$el.parent().removeClass("open")})};Dropdown.prototype={constructor:Dropdown,toggle:function(){var $parent,isActive,$this=$(this);if(!$this.is(".disabled, :disabled"))return $parent=getParent($this),isActive=$parent.hasClass("open"),clearMenus(),isActive||$parent.toggleClass("open"),$this.focus(),!1},keydown:function(e){var $this,$items,$parent,isActive,index;if(/(38|40|27)/.test(e.keyCode)&&($this=$(this),e.preventDefault(),e.stopPropagation(),!$this.is(".disabled, :disabled"))){if($parent=getParent($this),isActive=$parent.hasClass("open"),!isActive||isActive&&27==e.keyCode)return $this.click();$items=$("[role=menu] li:not(.divider):visible a",$parent),$items.length&&(index=$items.index($items.filter(":focus")),38==e.keyCode&&index>0&&index--,40==e.keyCode&&$items.length-1>index&&index++,~index||(index=0),$items.eq(index).focus())}}};var old=$.fn.dropdown;$.fn.dropdown=function(option){return this.each(function(){var $this=$(this),data=$this.data("dropdown");data||$this.data("dropdown",data=new Dropdown(this)),"string"==typeof option&&data[option].call($this)})},$.fn.dropdown.Constructor=Dropdown,$.fn.dropdown.noConflict=function(){return $.fn.dropdown=old,this},$(document).on("click.dropdown.data-api touchstart.dropdown.data-api",clearMenus).on("click.dropdown touchstart.dropdown.data-api",".dropdown form",function(e){e.stopPropagation()}).on("touchstart.dropdown.data-api",".dropdown-menu",function(e){e.stopPropagation()}).on("click.dropdown.data-api touchstart.dropdown.data-api",toggle,Dropdown.prototype.toggle).on("keydown.dropdown.data-api touchstart.dropdown.data-api",toggle+", [role=menu]",Dropdown.prototype.keydown)}(window.jQuery),!function($){"use strict";var Modal=function(element,options){this.options=options,this.$element=$(element).delegate('[data-dismiss="modal"]',"click.dismiss.modal",$.proxy(this.hide,this)),this.options.remote&&this.$element.find(".modal-body").load(this.options.remote)};Modal.prototype={constructor:Modal,toggle:function(){return this[this.isShown?"hide":"show"]()},show:function(){var that=this,e=$.Event("show");this.$element.trigger(e),this.isShown||e.isDefaultPrevented()||(this.isShown=!0,this.escape(),this.backdrop(function(){var transition=$.support.transition&&that.$element.hasClass("fade");that.$element.parent().length||that.$element.appendTo(document.body),that.$element.show(),transition&&that.$element[0].offsetWidth,that.$element.addClass("in").attr("aria-hidden",!1),that.enforceFocus(),transition?that.$element.one($.support.transition.end,function(){that.$element.focus().trigger("shown")}):that.$element.focus().trigger("shown")}))},hide:function(e){e&&e.preventDefault(),e=$.Event("hide"),this.$element.trigger(e),this.isShown&&!e.isDefaultPrevented()&&(this.isShown=!1,this.escape(),$(document).off("focusin.modal"),this.$element.removeClass("in").attr("aria-hidden",!0),$.support.transition&&this.$element.hasClass("fade")?this.hideWithTransition():this.hideModal())},enforceFocus:function(){var that=this;$(document).on("focusin.modal",function(e){that.$element[0]===e.target||that.$element.has(e.target).length||that.$element.focus()})},escape:function(){var that=this;this.isShown&&this.options.keyboard?this.$element.on("keyup.dismiss.modal",function(e){27==e.which&&that.hide()}):this.isShown||this.$element.off("keyup.dismiss.modal")},hideWithTransition:function(){var that=this,timeout=setTimeout(function(){that.$element.off($.support.transition.end),that.hideModal()},500);this.$element.one($.support.transition.end,function(){clearTimeout(timeout),that.hideModal()})},hideModal:function(){this.$element.hide().trigger("hidden"),this.backdrop()},removeBackdrop:function(){this.$backdrop.remove(),this.$backdrop=null},backdrop:function(callback){var animate=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var doAnimate=$.support.transition&&animate;this.$backdrop=$('<div class="modal-backdrop '+animate+'" />').appendTo(document.body),this.$backdrop.click("static"==this.options.backdrop?$.proxy(this.$element[0].focus,this.$element[0]):$.proxy(this.hide,this)),doAnimate&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),doAnimate?this.$backdrop.one($.support.transition.end,callback):callback()}else!this.isShown&&this.$backdrop?(this.$backdrop.removeClass("in"),$.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one($.support.transition.end,$.proxy(this.removeBackdrop,this)):this.removeBackdrop()):callback&&callback()}};var old=$.fn.modal;$.fn.modal=function(option){return this.each(function(){var $this=$(this),data=$this.data("modal"),options=$.extend({},$.fn.modal.defaults,$this.data(),"object"==typeof option&&option);data||$this.data("modal",data=new Modal(this,options)),"string"==typeof option?data[option]():options.show&&data.show()})},$.fn.modal.defaults={backdrop:!0,keyboard:!0,show:!0},$.fn.modal.Constructor=Modal,$.fn.modal.noConflict=function(){return $.fn.modal=old,this},$(document).on("click.modal.data-api",'[data-toggle="modal"]',function(e){var $this=$(this),href=$this.attr("href"),$target=$($this.attr("data-target")||href&&href.replace(/.*(?=#[^\s]+$)/,"")),option=$target.data("modal")?"toggle":$.extend({remote:!/#/.test(href)&&href},$target.data(),$this.data());e.preventDefault(),$target.modal(option).one("hide",function(){$this.focus()})})}(window.jQuery),!function($){"use strict";var Tooltip=function(element,options){this.init("tooltip",element,options)};Tooltip.prototype={constructor:Tooltip,init:function(type,element,options){var eventIn,eventOut;this.type=type,this.$element=$(element),this.options=this.getOptions(options),this.enabled=!0,"click"==this.options.trigger?this.$element.on("click."+this.type,this.options.selector,$.proxy(this.toggle,this)):"manual"!=this.options.trigger&&(eventIn="hover"==this.options.trigger?"mouseenter":"focus",eventOut="hover"==this.options.trigger?"mouseleave":"blur",this.$element.on(eventIn+"."+this.type,this.options.selector,$.proxy(this.enter,this)),this.$element.on(eventOut+"."+this.type,this.options.selector,$.proxy(this.leave,this))),this.options.selector?this._options=$.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},getOptions:function(options){return options=$.extend({},$.fn[this.type].defaults,options,this.$element.data()),options.delay&&"number"==typeof options.delay&&(options.delay={show:options.delay,hide:options.delay}),options},enter:function(e){var self=$(e.currentTarget)[this.type](this._options).data(this.type);return self.options.delay&&self.options.delay.show?(clearTimeout(this.timeout),self.hoverState="in",this.timeout=setTimeout(function(){"in"==self.hoverState&&self.show()},self.options.delay.show),void 0):self.show()},leave:function(e){var self=$(e.currentTarget)[this.type](this._options).data(this.type);return this.timeout&&clearTimeout(this.timeout),self.options.delay&&self.options.delay.hide?(self.hoverState="out",this.timeout=setTimeout(function(){"out"==self.hoverState&&self.hide()},self.options.delay.hide),void 0):self.hide()},show:function(){var $tip,inside,pos,actualWidth,actualHeight,placement,tp;if(this.hasContent()&&this.enabled){switch($tip=this.tip(),this.setContent(),this.options.animation&&$tip.addClass("fade"),placement="function"==typeof this.options.placement?this.options.placement.call(this,$tip[0],this.$element[0]):this.options.placement,inside=/in/.test(placement),$tip.detach().css({top:0,left:0,display:"block"}).insertAfter(this.$element),pos=this.getPosition(inside),actualWidth=$tip[0].offsetWidth,actualHeight=$tip[0].offsetHeight,inside?placement.split(" ")[1]:placement){case"bottom":tp={top:pos.top+pos.height,left:pos.left+pos.width/2-actualWidth/2};break;case"top":tp={top:pos.top-actualHeight,left:pos.left+pos.width/2-actualWidth/2};break;case"left":tp={top:pos.top+pos.height/2-actualHeight/2,left:pos.left-actualWidth};break;case"right":tp={top:pos.top+pos.height/2-actualHeight/2,left:pos.left+pos.width}}$tip.offset(tp).addClass(placement).addClass("in")}},setContent:function(){var $tip=this.tip(),title=this.getTitle();$tip.find(".tooltip-inner")[this.options.html?"html":"text"](title),$tip.removeClass("fade in top bottom left right")},hide:function(){function removeWithAnimation(){var timeout=setTimeout(function(){$tip.off($.support.transition.end).detach()},500);$tip.one($.support.transition.end,function(){clearTimeout(timeout),$tip.detach()})}var $tip=this.tip();return $tip.removeClass("in"),$.support.transition&&this.$tip.hasClass("fade")?removeWithAnimation():$tip.detach(),this},fixTitle:function(){var $e=this.$element;($e.attr("title")||"string"!=typeof $e.attr("data-original-title"))&&$e.attr("data-original-title",$e.attr("title")||"").removeAttr("title")},hasContent:function(){return this.getTitle()},getPosition:function(inside){return $.extend({},inside?{top:0,left:0}:this.$element.offset(),{width:this.$element[0].offsetWidth,height:this.$element[0].offsetHeight})},getTitle:function(){var title,$e=this.$element,o=this.options;return title=$e.attr("data-original-title")||("function"==typeof o.title?o.title.call($e[0]):o.title)},tip:function(){return this.$tip=this.$tip||$(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(e){var self=$(e.currentTarget)[this.type](this._options).data(this.type);self[self.tip().hasClass("in")?"hide":"show"]()},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}};var old=$.fn.tooltip;$.fn.tooltip=function(option){return this.each(function(){var $this=$(this),data=$this.data("tooltip"),options="object"==typeof option&&option;data||$this.data("tooltip",data=new Tooltip(this,options)),"string"==typeof option&&data[option]()})},$.fn.tooltip.Constructor=Tooltip,$.fn.tooltip.defaults={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover",title:"",delay:0,html:!1},$.fn.tooltip.noConflict=function(){return $.fn.tooltip=old,this}}(window.jQuery),!function($){"use strict";var Popover=function(element,options){this.init("popover",element,options)};Popover.prototype=$.extend({},$.fn.tooltip.Constructor.prototype,{constructor:Popover,setContent:function(){var $tip=this.tip(),title=this.getTitle(),content=this.getContent();$tip.find(".popover-title")[this.options.html?"html":"text"](title),$tip.find(".popover-content")[this.options.html?"html":"text"](content),$tip.removeClass("fade top bottom left right in")},hasContent:function(){return this.getTitle()||this.getContent()},getContent:function(){var content,$e=this.$element,o=this.options;return content=$e.attr("data-content")||("function"==typeof o.content?o.content.call($e[0]):o.content)},tip:function(){return this.$tip||(this.$tip=$(this.options.template)),this.$tip},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}});var old=$.fn.popover;$.fn.popover=function(option){return this.each(function(){var $this=$(this),data=$this.data("popover"),options="object"==typeof option&&option;data||$this.data("popover",data=new Popover(this,options)),"string"==typeof option&&data[option]()})},$.fn.popover.Constructor=Popover,$.fn.popover.defaults=$.extend({},$.fn.tooltip.defaults,{placement:"right",trigger:"click",content:"",template:'<div class="popover"><div class="arrow"></div><div class="popover-inner"><h3 class="popover-title"></h3><div class="popover-content"></div></div></div>'}),$.fn.popover.noConflict=function(){return $.fn.popover=old,this}}(window.jQuery),!function($){"use strict";function ScrollSpy(element,options){var href,process=$.proxy(this.process,this),$element=$(element).is("body")?$(window):$(element);this.options=$.extend({},$.fn.scrollspy.defaults,options),this.$scrollElement=$element.on("scroll.scroll-spy.data-api",process),this.selector=(this.options.target||(href=$(element).attr("href"))&&href.replace(/.*(?=#[^\s]+$)/,"")||"")+" .nav li > a",this.$body=$("body"),this.refresh(),this.process()}ScrollSpy.prototype={constructor:ScrollSpy,refresh:function(){var $targets,self=this;this.offsets=$([]),this.targets=$([]),$targets=this.$body.find(this.selector).map(function(){var $el=$(this),href=$el.data("target")||$el.attr("href"),$href=/^#\w/.test(href)&&$(href);return $href&&$href.length&&[[$href.position().top+self.$scrollElement.scrollTop(),href]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){self.offsets.push(this[0]),self.targets.push(this[1])})},process:function(){var i,scrollTop=this.$scrollElement.scrollTop()+this.options.offset,scrollHeight=this.$scrollElement[0].scrollHeight||this.$body[0].scrollHeight,maxScroll=scrollHeight-this.$scrollElement.height(),offsets=this.offsets,targets=this.targets,activeTarget=this.activeTarget;if(scrollTop>=maxScroll)return activeTarget!=(i=targets.last()[0])&&this.activate(i);for(i=offsets.length;i--;)activeTarget!=targets[i]&&scrollTop>=offsets[i]&&(!offsets[i+1]||offsets[i+1]>=scrollTop)&&this.activate(targets[i])},activate:function(target){var active,selector;this.activeTarget=target,$(this.selector).parent(".active").removeClass("active"),selector=this.selector+'[data-target="'+target+'"],'+this.selector+'[href="'+target+'"]',active=$(selector).parent("li").addClass("active"),active.parent(".dropdown-menu").length&&(active=active.closest("li.dropdown").addClass("active")),active.trigger("activate")}};var old=$.fn.scrollspy;$.fn.scrollspy=function(option){return this.each(function(){var $this=$(this),data=$this.data("scrollspy"),options="object"==typeof option&&option;data||$this.data("scrollspy",data=new ScrollSpy(this,options)),"string"==typeof option&&data[option]()})},$.fn.scrollspy.Constructor=ScrollSpy,$.fn.scrollspy.defaults={offset:10},$.fn.scrollspy.noConflict=function(){return $.fn.scrollspy=old,this},$(window).on("load",function(){$('[data-spy="scroll"]').each(function(){var $spy=$(this);$spy.scrollspy($spy.data())})})}(window.jQuery),!function($){"use strict";var Tab=function(element){this.element=$(element)};Tab.prototype={constructor:Tab,show:function(){var previous,$target,e,$this=this.element,$ul=$this.closest("ul:not(.dropdown-menu)"),selector=$this.attr("data-target");selector||(selector=$this.attr("href"),selector=selector&&selector.replace(/.*(?=#[^\s]*$)/,"")),$this.parent("li").hasClass("active")||(previous=$ul.find(".active:last a")[0],e=$.Event("show",{relatedTarget:previous}),$this.trigger(e),e.isDefaultPrevented()||($target=$(selector),this.activate($this.parent("li"),$ul),this.activate($target,$target.parent(),function(){$this.trigger({type:"shown",relatedTarget:previous})})))},activate:function(element,container,callback){function next(){$active.removeClass("active").find("> .dropdown-menu > .active").removeClass("active"),element.addClass("active"),transition?(element[0].offsetWidth,element.addClass("in")):element.removeClass("fade"),element.parent(".dropdown-menu")&&element.closest("li.dropdown").addClass("active"),callback&&callback()}var $active=container.find("> .active"),transition=callback&&$.support.transition&&$active.hasClass("fade");transition?$active.one($.support.transition.end,next):next(),$active.removeClass("in")}};var old=$.fn.tab;$.fn.tab=function(option){return this.each(function(){var $this=$(this),data=$this.data("tab");data||$this.data("tab",data=new Tab(this)),"string"==typeof option&&data[option]()})},$.fn.tab.Constructor=Tab,$.fn.tab.noConflict=function(){return $.fn.tab=old,this},$(document).on("click.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"]',function(e){e.preventDefault(),$(this).tab("show")})}(window.jQuery),!function($){"use strict";var Typeahead=function(element,options){this.$element=$(element),this.options=$.extend({},$.fn.typeahead.defaults,options),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.source=this.options.source,this.$menu=$(this.options.menu),this.shown=!1,this.listen()};Typeahead.prototype={constructor:Typeahead,select:function(){var val=this.$menu.find(".active").attr("data-value");return this.$element.val(this.updater(val)).change(),this.hide()},updater:function(item){return item},show:function(){var pos=$.extend({},this.$element.position(),{height:this.$element[0].offsetHeight});return this.$menu.insertAfter(this.$element).css({top:pos.top+pos.height,left:pos.left}).show(),this.shown=!0,this},hide:function(){return this.$menu.hide(),this.shown=!1,this},lookup:function(){var items;return this.query=this.$element.val(),!this.query||this.query.length<this.options.minLength?this.shown?this.hide():this:(items=$.isFunction(this.source)?this.source(this.query,$.proxy(this.process,this)):this.source,items?this.process(items):this)},process:function(items){var that=this;return items=$.grep(items,function(item){return that.matcher(item)}),items=this.sorter(items),items.length?this.render(items.slice(0,this.options.items)).show():this.shown?this.hide():this},matcher:function(item){return~item.toLowerCase().indexOf(this.query.toLowerCase())},sorter:function(items){for(var item,beginswith=[],caseSensitive=[],caseInsensitive=[];item=items.shift();)item.toLowerCase().indexOf(this.query.toLowerCase())?~item.indexOf(this.query)?caseSensitive.push(item):caseInsensitive.push(item):beginswith.push(item);return beginswith.concat(caseSensitive,caseInsensitive)},highlighter:function(item){var query=this.query.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&");return item.replace(RegExp("("+query+")","ig"),function($1,match){return"<strong>"+match+"</strong>"})},render:function(items){var that=this;return items=$(items).map(function(i,item){return i=$(that.options.item).attr("data-value",item),i.find("a").html(that.highlighter(item)),i[0]}),items.first().addClass("active"),this.$menu.html(items),this},next:function(){var active=this.$menu.find(".active").removeClass("active"),next=active.next();next.length||(next=$(this.$menu.find("li")[0])),next.addClass("active")},prev:function(){var active=this.$menu.find(".active").removeClass("active"),prev=active.prev();prev.length||(prev=this.$menu.find("li").last()),prev.addClass("active")},listen:function(){this.$element.on("blur",$.proxy(this.blur,this)).on("keypress",$.proxy(this.keypress,this)).on("keyup",$.proxy(this.keyup,this)),this.eventSupported("keydown")&&this.$element.on("keydown",$.proxy(this.keydown,this)),this.$menu.on("click",$.proxy(this.click,this)).on("mouseenter","li",$.proxy(this.mouseenter,this))},eventSupported:function(eventName){var isSupported=eventName in this.$element;return isSupported||(this.$element.setAttribute(eventName,"return;"),isSupported="function"==typeof this.$element[eventName]),isSupported},move:function(e){if(this.shown){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(e){this.suppressKeyPressRepeat=~$.inArray(e.keyCode,[40,38,9,13,27]),this.move(e)},keypress:function(e){this.suppressKeyPressRepeat||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(){var that=this;setTimeout(function(){that.hide()},150)},click:function(e){e.stopPropagation(),e.preventDefault(),this.select()},mouseenter:function(e){this.$menu.find(".active").removeClass("active"),$(e.currentTarget).addClass("active")}};var old=$.fn.typeahead;$.fn.typeahead=function(option){return this.each(function(){var $this=$(this),data=$this.data("typeahead"),options="object"==typeof option&&option;data||$this.data("typeahead",data=new Typeahead(this,options)),"string"==typeof option&&data[option]()})},$.fn.typeahead.defaults={source:[],items:8,menu:'<ul class="typeahead dropdown-menu"></ul>',item:'<li><a href="#"></a></li>',minLength:1},$.fn.typeahead.Constructor=Typeahead,$.fn.typeahead.noConflict=function(){return $.fn.typeahead=old,this},$(document).on("focus.typeahead.data-api",'[data-provide="typeahead"]',function(e){var $this=$(this);$this.data("typeahead")||(e.preventDefault(),$this.typeahead($this.data()))})}(window.jQuery),!function($){"use strict";var Affix=function(element,options){this.options=$.extend({},$.fn.affix.defaults,options),this.$window=$(window).on("scroll.affix.data-api",$.proxy(this.checkPosition,this)).on("click.affix.data-api",$.proxy(function(){setTimeout($.proxy(this.checkPosition,this),1)},this)),this.$element=$(element),this.checkPosition()};Affix.prototype.checkPosition=function(){if(this.$element.is(":visible")){var affix,scrollHeight=$(document).height(),scrollTop=this.$window.scrollTop(),position=this.$element.offset(),offset=this.options.offset,offsetBottom=offset.bottom,offsetTop=offset.top,reset="affix affix-top affix-bottom";"object"!=typeof offset&&(offsetBottom=offsetTop=offset),"function"==typeof offsetTop&&(offsetTop=offset.top()),"function"==typeof offsetBottom&&(offsetBottom=offset.bottom()),affix=null!=this.unpin&&scrollTop+this.unpin<=position.top?!1:null!=offsetBottom&&position.top+this.$element.height()>=scrollHeight-offsetBottom?"bottom":null!=offsetTop&&offsetTop>=scrollTop?"top":!1,this.affixed!==affix&&(this.affixed=affix,this.unpin="bottom"==affix?position.top-scrollTop:null,this.$element.removeClass(reset).addClass("affix"+(affix?"-"+affix:"")))}};var old=$.fn.affix;$.fn.affix=function(option){return this.each(function(){var $this=$(this),data=$this.data("affix"),options="object"==typeof option&&option;data||$this.data("affix",data=new Affix(this,options)),"string"==typeof option&&data[option]()})},$.fn.affix.Constructor=Affix,$.fn.affix.defaults={offset:0},$.fn.affix.noConflict=function(){return $.fn.affix=old,this},$(window).on("load",function(){$('[data-spy="affix"]').each(function(){var $spy=$(this),data=$spy.data();data.offset=data.offset||{},data.offsetBottom&&(data.offset.bottom=data.offsetBottom),data.offsetTop&&(data.offset.top=data.offsetTop),$spy.affix(data)})})}(window.jQuery);
|
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()};var r=e.fn.alert;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.fn.alert.noConflict=function(){return e.fn.alert=r,this},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")};var n=e.fn.button;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.fn.button.noConflict=function(){return e.fn.button=n,this},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.$indicators=this.$element.find(".carousel-indicators"),this.options=n,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.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(e.proxy(this.next,this),this.options.interval)),this},getActiveIndex:function(){return this.$active=this.$element.find(".item.active"),this.$items=this.$active.parent().children(),this.$items.index(this.$active)},to:function(t){var n=this.getActiveIndex(),r=this;if(t>this.$items.length-1||t<0)return;return this.sliding?this.$element.one("slid",function(){r.to(t)}):n==t?this.pause().cycle():this.slide(t>n?"next":"prev",e(this.$items[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],direction:o});if(i.hasClass("active"))return;this.$indicators.length&&(this.$indicators.find(".active").removeClass("active"),this.$element.one("slid",function(){var t=e(a.$indicators.children()[a.getActiveIndex()]);t&&t.addClass("active")}));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}};var n=e.fn.carousel;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.pause().cycle()})},e.fn.carousel.defaults={interval:5e3,pause:"hover"},e.fn.carousel.Constructor=t,e.fn.carousel.noConflict=function(){return e.fn.carousel=n,this},e(document).on("click.carousel.data-api","[data-slide], [data-slide-to]",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()),o;i.carousel(s),(o=n.attr("data-slide-to"))&&i.data("carousel").pause().to(o).cycle(),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||this.$element.hasClass("in"))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||!this.$element.hasClass("in"))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"]()}};var n=e.fn.collapse;e.fn.collapse=function(n){return this.each(function(){var r=e(this),i=r.data("collapse"),s=e.extend({},e.fn.collapse.defaults,r.data(),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.fn.collapse.noConflict=function(){return e.fn.collapse=n,this},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;n||(n=t.attr("href"),n=n&&/#/.test(n)&&n.replace(/.*(?=#[^\s]*$)/,"")),r=n&&e(n);if(!r||!r.length)r=t.parent();return 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(n){var r,s,o,u,a,f;if(!/(38|40|27)/.test(n.keyCode))return;r=e(this),n.preventDefault(),n.stopPropagation();if(r.is(".disabled, :disabled"))return;u=i(r),a=u.hasClass("open");if(!a||a&&n.keyCode==27)return n.which==27&&u.find(t).focus(),r.click();s=e("[role=menu] li:not(.divider):visible a",u);if(!s.length)return;f=s.index(s.filter(":focus")),n.keyCode==38&&f>0&&f--,n.keyCode==40&&f<s.length-1&&f++,~f||(f=0),s.eq(f).focus()}};var s=e.fn.dropdown;e.fn.dropdown=function(t){return this.each(function(){var r=e(this),i=r.data("dropdown");i||r.data("dropdown",i=new n(this)),typeof t=="string"&&i[t].call(r)})},e.fn.dropdown.Constructor=n,e.fn.dropdown.noConflict=function(){return e.fn.dropdown=s,this},e(document).on("click.dropdown.data-api",r).on("click.dropdown.data-api",".dropdown form",function(e){e.stopPropagation()}).on(".dropdown-menu",function(e){e.stopPropagation()}).on("click.dropdown.data-api",t,n.prototype.toggle).on("keydown.dropdown.data-api",t+", [role=menu]",n.prototype.keydown)}(window.jQuery),!function(e){"use strict";var t=function(t,n){this.options=n,this.$element=e(t).delegate('[data-dismiss="modal"]',"click.dismiss.modal",e.proxy(this.hide,this)),this.options.remote&&this.$element.find(".modal-body").load(this.options.remote)};t.prototype={constructor:t,toggle:function(){return this[this.isShown?"hide":"show"]()},show:function(){var t=this,n=e.Event("show");this.$element.trigger(n);if(this.isShown||n.isDefaultPrevented())return;this.isShown=!0,this.escape(),this.backdrop(function(){var n=e.support.transition&&t.$element.hasClass("fade");t.$element.parent().length||t.$element.appendTo(document.body),t.$element.show(),n&&t.$element[0].offsetWidth,t.$element.addClass("in").attr("aria-hidden",!1),t.enforceFocus(),n?t.$element.one(e.support.transition.end,function(){t.$element.focus().trigger("shown")}):t.$element.focus().trigger("shown")})},hide:function(t){t&&t.preventDefault();var n=this;t=e.Event("hide"),this.$element.trigger(t);if(!this.isShown||t.isDefaultPrevented())return;this.isShown=!1,this.escape(),e(document).off("focusin.modal"),this.$element.removeClass("in").attr("aria-hidden",!0),e.support.transition&&this.$element.hasClass("fade")?this.hideWithTransition():this.hideModal()},enforceFocus:function(){var t=this;e(document).on("focusin.modal",function(e){t.$element[0]!==e.target&&!t.$element.has(e.target).length&&t.$element.focus()})},escape:function(){var e=this;this.isShown&&this.options.keyboard?this.$element.on("keyup.dismiss.modal",function(t){t.which==27&&e.hide()}):this.isShown||this.$element.off("keyup.dismiss.modal")},hideWithTransition:function(){var t=this,n=setTimeout(function(){t.$element.off(e.support.transition.end),t.hideModal()},500);this.$element.one(e.support.transition.end,function(){clearTimeout(n),t.hideModal()})},hideModal:function(){var e=this;this.$element.hide(),this.backdrop(function(){e.removeBackdrop(),e.$element.trigger("hidden")})},removeBackdrop:function(){this.$backdrop.remove(),this.$backdrop=null},backdrop:function(t){var n=this,r=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var i=e.support.transition&&r;this.$backdrop=e('<div class="modal-backdrop '+r+'" />').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");if(!t)return;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,t):t()):t&&t()}};var n=e.fn.modal;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.fn.modal.noConflict=function(){return e.fn.modal=n,this},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,o,u,a;this.type=t,this.$element=e(n),this.options=this.getOptions(r),this.enabled=!0,o=this.options.trigger.split(" ");for(a=o.length;a--;)u=o[a],u=="click"?this.$element.on("click."+this.type,this.options.selector,e.proxy(this.toggle,this)):u!="manual"&&(i=u=="hover"?"mouseenter":"focus",s=u=="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,this.$element.data(),t),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 t,n,r,i,s,o,u=e.Event("show");if(this.hasContent()&&this.enabled){this.$element.trigger(u);if(u.isDefaultPrevented())return;t=this.tip(),this.setContent(),this.options.animation&&t.addClass("fade"),s=typeof this.options.placement=="function"?this.options.placement.call(this,t[0],this.$element[0]):this.options.placement,t.detach().css({top:0,left:0,display:"block"}),this.options.container?t.appendTo(this.options.container):t.insertAfter(this.$element),n=this.getPosition(),r=t[0].offsetWidth,i=t[0].offsetHeight;switch(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}}this.applyPlacement(o,s),this.$element.trigger("shown")}},applyPlacement:function(e,t){var n=this.tip(),r=n[0].offsetWidth,i=n[0].offsetHeight,s,o,u,a;n.offset(e).addClass(t).addClass("in"),s=n[0].offsetWidth,o=n[0].offsetHeight,t=="top"&&o!=i&&(e.top=e.top+i-o,a=!0),t=="bottom"||t=="top"?(u=0,e.left<0&&(u=e.left*-2,e.left=0,n.offset(e),s=n[0].offsetWidth,o=n[0].offsetHeight),this.replaceArrow(u-r+s,s,"left")):this.replaceArrow(o-i,o,"top"),a&&n.offset(e)},replaceArrow:function(e,t,n){this.arrow().css(n,e?50*(1-e/t)+"%":"")},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 i(){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(),r=e.Event("hide");this.$element.trigger(r);if(r.isDefaultPrevented())return;return n.removeClass("in"),e.support.transition&&this.$tip.hasClass("fade")?i():n.detach(),this.$element.trigger("hidden"),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")||"").attr("title","")},hasContent:function(){return this.getTitle()},getPosition:function(){var t=this.$element[0];return e.extend({},typeof t.getBoundingClientRect=="function"?t.getBoundingClientRect():{width:t.offsetWidth,height:t.offsetHeight},this.$element.offset())},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)},arrow:function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},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=t?e(t.currentTarget)[this.type](this._options).data(this.type):this;n.tip().hasClass("in")?n.hide():n.show()},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}};var n=e.fn.tooltip;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:'<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,container:!1},e.fn.tooltip.noConflict=function(){return e.fn.tooltip=n,this}}(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=(typeof n.content=="function"?n.content.call(t[0]):n.content)||t.attr("data-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)}});var n=e.fn.popover;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:'<div class="popover"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'}),e.fn.popover.noConflict=function(){return e.fn.popover=n,this}}(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 n=e(this),r=n.data("target")||n.attr("href"),i=/^#\w/.test(r)&&e(r);return i&&i.length&&[[i.position().top+(!e.isWindow(t.$scrollElement.get(0))&&t.$scrollElement.scrollTop()),r]]||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")}};var n=e.fn.scrollspy;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.fn.scrollspy.noConflict=function(){return e.fn.scrollspy=n,this},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")}};var n=e.fn.tab;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.fn.tab.noConflict=function(){return e.fn.tab=n,this},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.source=this.options.source,this.$menu=e(this.options.menu),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.position(),{height:this.$element[0].offsetHeight});return this.$menu.insertAfter(this.$element).css({top:t.top+t.height,left:t.left}).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<this.options.minLength?this.shown?this.hide():this:(n=e.isFunction(this.source)?this.source(this.query,e.proxy(this.process,this)):this.source,n?this.process(n):this)},process:function(t){var n=this;return t=e.grep(t,function(e){return n.matcher(e)}),t=this.sorter(t),t.length?this.render(t.slice(0,this.options.items)).show():this.shown?this.hide():this},matcher:function(e){return~e.toLowerCase().indexOf(this.query.toLowerCase())},sorter:function(e){var t=[],n=[],r=[],i;while(i=e.shift())i.toLowerCase().indexOf(this.query.toLowerCase())?~i.indexOf(this.query)?n.push(i):r.push(i):t.push(i);return t.concat(n,r)},highlighter:function(e){var t=this.query.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&");return e.replace(new RegExp("("+t+")","ig"),function(e,t){return"<strong>"+t+"</strong>"})},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("focus",e.proxy(this.focus,this)).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)).on("mouseleave","li",e.proxy(this.mouseleave,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()},focus:function(e){this.focused=!0},blur:function(e){this.focused=!1,!this.mousedover&&this.shown&&this.hide()},click:function(e){e.stopPropagation(),e.preventDefault(),this.select(),this.$element.focus()},mouseenter:function(t){this.mousedover=!0,this.$menu.find(".active").removeClass("active"),e(t.currentTarget).addClass("active")},mouseleave:function(e){this.mousedover=!1,!this.focused&&this.shown&&this.hide()}};var n=e.fn.typeahead;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:'<ul class="typeahead dropdown-menu"></ul>',item:'<li><a href="#"></a></li>',minLength:1},e.fn.typeahead.Constructor=t,e.fn.typeahead.noConflict=function(){return e.fn.typeahead=n,this},e(document).on("focus.typeahead.data-api",'[data-provide="typeahead"]',function(t){var n=e(this);if(n.data("typeahead"))return;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:""))};var n=e.fn.affix;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.fn.affix.noConflict=function(){return e.fn.affix=n,this},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);
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap Responsive v2.
|
2
|
+
* Bootstrap Responsive v2.3.0
|
3
3
|
*
|
4
4
|
* Copyright 2012 Twitter, Inc
|
5
5
|
* Licensed under the Apache License v2.0
|
@@ -8,10 +8,6 @@
|
|
8
8
|
* Designed and built with all the love in the world @twitter by @mdo and @fat.
|
9
9
|
*/
|
10
10
|
|
11
|
-
@-ms-viewport {
|
12
|
-
width: device-width;
|
13
|
-
}
|
14
|
-
|
15
11
|
.clearfix {
|
16
12
|
*zoom: 1;
|
17
13
|
}
|
@@ -44,6 +40,10 @@
|
|
44
40
|
box-sizing: border-box;
|
45
41
|
}
|
46
42
|
|
43
|
+
@-ms-viewport {
|
44
|
+
width: device-width;
|
45
|
+
}
|
46
|
+
|
47
47
|
.hidden {
|
48
48
|
display: none;
|
49
49
|
visibility: hidden;
|
@@ -95,6 +95,19 @@
|
|
95
95
|
}
|
96
96
|
}
|
97
97
|
|
98
|
+
.visible-print {
|
99
|
+
display: none !important;
|
100
|
+
}
|
101
|
+
|
102
|
+
@media print {
|
103
|
+
.visible-print {
|
104
|
+
display: inherit !important;
|
105
|
+
}
|
106
|
+
.hidden-print {
|
107
|
+
display: none !important;
|
108
|
+
}
|
109
|
+
}
|
110
|
+
|
98
111
|
@media (min-width: 1200px) {
|
99
112
|
.row {
|
100
113
|
margin-left: -30px;
|
@@ -1003,7 +1016,9 @@
|
|
1003
1016
|
margin-bottom: 2px;
|
1004
1017
|
}
|
1005
1018
|
.nav-collapse .nav > li > a:hover,
|
1006
|
-
.nav-collapse .
|
1019
|
+
.nav-collapse .nav > li > a:focus,
|
1020
|
+
.nav-collapse .dropdown-menu a:hover,
|
1021
|
+
.nav-collapse .dropdown-menu a:focus {
|
1007
1022
|
background-color: #f2f2f2;
|
1008
1023
|
}
|
1009
1024
|
.navbar-inverse .nav-collapse .nav > li > a,
|
@@ -1011,7 +1026,9 @@
|
|
1011
1026
|
color: #999999;
|
1012
1027
|
}
|
1013
1028
|
.navbar-inverse .nav-collapse .nav > li > a:hover,
|
1014
|
-
.navbar-inverse .nav-collapse .
|
1029
|
+
.navbar-inverse .nav-collapse .nav > li > a:focus,
|
1030
|
+
.navbar-inverse .nav-collapse .dropdown-menu a:hover,
|
1031
|
+
.navbar-inverse .nav-collapse .dropdown-menu a:focus {
|
1015
1032
|
background-color: #111111;
|
1016
1033
|
}
|
1017
1034
|
.nav-collapse.in .btn-group {
|
@@ -1,9 +1,9 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap Responsive v2.
|
2
|
+
* Bootstrap Responsive v2.3.0
|
3
3
|
*
|
4
4
|
* Copyright 2012 Twitter, Inc
|
5
5
|
* Licensed under the Apache License v2.0
|
6
6
|
* http://www.apache.org/licenses/LICENSE-2.0
|
7
7
|
*
|
8
8
|
* Designed and built with all the love in the world @twitter by @mdo and @fat.
|
9
|
-
*/@-ms-viewport{width:device-width}.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}}
|
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}@-ms-viewport{width:device-width}.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}}.visible-print{display:none!important}@media print{.visible-print{display:inherit!important}.hidden-print{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 .nav>li>a:focus,.nav-collapse .dropdown-menu a:hover,.nav-collapse .dropdown-menu a:focus{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 .nav>li>a:focus,.navbar-inverse .nav-collapse .dropdown-menu a:hover,.navbar-inverse .nav-collapse .dropdown-menu a:focus{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}}
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap v2.
|
2
|
+
* Bootstrap v2.3.0
|
3
3
|
*
|
4
4
|
* Copyright 2012 Twitter, Inc
|
5
5
|
* Licensed under the Apache License v2.0
|
@@ -8,6 +8,38 @@
|
|
8
8
|
* Designed and built with all the love in the world @twitter by @mdo and @fat.
|
9
9
|
*/
|
10
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
|
+
|
11
43
|
article,
|
12
44
|
aside,
|
13
45
|
details,
|
@@ -189,38 +221,6 @@ textarea {
|
|
189
221
|
}
|
190
222
|
}
|
191
223
|
|
192
|
-
.clearfix {
|
193
|
-
*zoom: 1;
|
194
|
-
}
|
195
|
-
|
196
|
-
.clearfix:before,
|
197
|
-
.clearfix:after {
|
198
|
-
display: table;
|
199
|
-
line-height: 0;
|
200
|
-
content: "";
|
201
|
-
}
|
202
|
-
|
203
|
-
.clearfix:after {
|
204
|
-
clear: both;
|
205
|
-
}
|
206
|
-
|
207
|
-
.hide-text {
|
208
|
-
font: 0/0 a;
|
209
|
-
color: transparent;
|
210
|
-
text-shadow: none;
|
211
|
-
background-color: transparent;
|
212
|
-
border: 0;
|
213
|
-
}
|
214
|
-
|
215
|
-
.input-block-level {
|
216
|
-
display: block;
|
217
|
-
width: 100%;
|
218
|
-
min-height: 30px;
|
219
|
-
-webkit-box-sizing: border-box;
|
220
|
-
-moz-box-sizing: border-box;
|
221
|
-
box-sizing: border-box;
|
222
|
-
}
|
223
|
-
|
224
224
|
body {
|
225
225
|
margin: 0;
|
226
226
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
@@ -235,7 +235,8 @@ a {
|
|
235
235
|
text-decoration: none;
|
236
236
|
}
|
237
237
|
|
238
|
-
a:hover
|
238
|
+
a:hover,
|
239
|
+
a:focus {
|
239
240
|
color: #005580;
|
240
241
|
text-decoration: underline;
|
241
242
|
}
|
@@ -678,7 +679,8 @@ cite {
|
|
678
679
|
color: #999999;
|
679
680
|
}
|
680
681
|
|
681
|
-
a.muted:hover
|
682
|
+
a.muted:hover,
|
683
|
+
a.muted:focus {
|
682
684
|
color: #808080;
|
683
685
|
}
|
684
686
|
|
@@ -686,7 +688,8 @@ a.muted:hover {
|
|
686
688
|
color: #c09853;
|
687
689
|
}
|
688
690
|
|
689
|
-
a.text-warning:hover
|
691
|
+
a.text-warning:hover,
|
692
|
+
a.text-warning:focus {
|
690
693
|
color: #a47e3c;
|
691
694
|
}
|
692
695
|
|
@@ -694,7 +697,8 @@ a.text-warning:hover {
|
|
694
697
|
color: #b94a48;
|
695
698
|
}
|
696
699
|
|
697
|
-
a.text-error:hover
|
700
|
+
a.text-error:hover,
|
701
|
+
a.text-error:focus {
|
698
702
|
color: #953b39;
|
699
703
|
}
|
700
704
|
|
@@ -702,7 +706,8 @@ a.text-error:hover {
|
|
702
706
|
color: #3a87ad;
|
703
707
|
}
|
704
708
|
|
705
|
-
a.text-info:hover
|
709
|
+
a.text-info:hover,
|
710
|
+
a.text-info:focus {
|
706
711
|
color: #2d6987;
|
707
712
|
}
|
708
713
|
|
@@ -710,10 +715,23 @@ a.text-info:hover {
|
|
710
715
|
color: #468847;
|
711
716
|
}
|
712
717
|
|
713
|
-
a.text-success:hover
|
718
|
+
a.text-success:hover,
|
719
|
+
a.text-success:focus {
|
714
720
|
color: #356635;
|
715
721
|
}
|
716
722
|
|
723
|
+
.text-left {
|
724
|
+
text-align: left;
|
725
|
+
}
|
726
|
+
|
727
|
+
.text-right {
|
728
|
+
text-align: right;
|
729
|
+
}
|
730
|
+
|
731
|
+
.text-center {
|
732
|
+
text-align: center;
|
733
|
+
}
|
734
|
+
|
717
735
|
h1,
|
718
736
|
h2,
|
719
737
|
h3,
|
@@ -823,8 +841,10 @@ ol.inline {
|
|
823
841
|
ul.inline > li,
|
824
842
|
ol.inline > li {
|
825
843
|
display: inline-block;
|
844
|
+
*display: inline;
|
826
845
|
padding-right: 5px;
|
827
846
|
padding-left: 5px;
|
847
|
+
*zoom: 1;
|
828
848
|
}
|
829
849
|
|
830
850
|
dl {
|
@@ -899,9 +919,9 @@ blockquote {
|
|
899
919
|
|
900
920
|
blockquote p {
|
901
921
|
margin-bottom: 0;
|
902
|
-
font-size:
|
922
|
+
font-size: 17.5px;
|
903
923
|
font-weight: 300;
|
904
|
-
line-height:
|
924
|
+
line-height: 1.25;
|
905
925
|
}
|
906
926
|
|
907
927
|
blockquote small {
|
@@ -1646,9 +1666,11 @@ select:focus:invalid:focus {
|
|
1646
1666
|
|
1647
1667
|
.input-append,
|
1648
1668
|
.input-prepend {
|
1649
|
-
|
1669
|
+
display: inline-block;
|
1670
|
+
margin-bottom: 10px;
|
1650
1671
|
font-size: 0;
|
1651
1672
|
white-space: nowrap;
|
1673
|
+
vertical-align: middle;
|
1652
1674
|
}
|
1653
1675
|
|
1654
1676
|
.input-append input,
|
@@ -1658,7 +1680,9 @@ select:focus:invalid:focus {
|
|
1658
1680
|
.input-append .uneditable-input,
|
1659
1681
|
.input-prepend .uneditable-input,
|
1660
1682
|
.input-append .dropdown-menu,
|
1661
|
-
.input-prepend .dropdown-menu
|
1683
|
+
.input-prepend .dropdown-menu,
|
1684
|
+
.input-append .popover,
|
1685
|
+
.input-prepend .popover {
|
1662
1686
|
font-size: 14px;
|
1663
1687
|
}
|
1664
1688
|
|
@@ -2049,14 +2073,16 @@ table {
|
|
2049
2073
|
}
|
2050
2074
|
|
2051
2075
|
.table-bordered thead:first-child tr:first-child > th:first-child,
|
2052
|
-
.table-bordered tbody:first-child tr:first-child > td:first-child
|
2076
|
+
.table-bordered tbody:first-child tr:first-child > td:first-child,
|
2077
|
+
.table-bordered tbody:first-child tr:first-child > th:first-child {
|
2053
2078
|
-webkit-border-top-left-radius: 4px;
|
2054
2079
|
border-top-left-radius: 4px;
|
2055
2080
|
-moz-border-radius-topleft: 4px;
|
2056
2081
|
}
|
2057
2082
|
|
2058
2083
|
.table-bordered thead:first-child tr:first-child > th:last-child,
|
2059
|
-
.table-bordered tbody:first-child tr:first-child > td:last-child
|
2084
|
+
.table-bordered tbody:first-child tr:first-child > td:last-child,
|
2085
|
+
.table-bordered tbody:first-child tr:first-child > th:last-child {
|
2060
2086
|
-webkit-border-top-right-radius: 4px;
|
2061
2087
|
border-top-right-radius: 4px;
|
2062
2088
|
-moz-border-radius-topright: 4px;
|
@@ -2064,7 +2090,9 @@ table {
|
|
2064
2090
|
|
2065
2091
|
.table-bordered thead:last-child tr:last-child > th:first-child,
|
2066
2092
|
.table-bordered tbody:last-child tr:last-child > td:first-child,
|
2067
|
-
.table-bordered
|
2093
|
+
.table-bordered tbody:last-child tr:last-child > th:first-child,
|
2094
|
+
.table-bordered tfoot:last-child tr:last-child > td:first-child,
|
2095
|
+
.table-bordered tfoot:last-child tr:last-child > th:first-child {
|
2068
2096
|
-webkit-border-bottom-left-radius: 4px;
|
2069
2097
|
border-bottom-left-radius: 4px;
|
2070
2098
|
-moz-border-radius-bottomleft: 4px;
|
@@ -2072,7 +2100,9 @@ table {
|
|
2072
2100
|
|
2073
2101
|
.table-bordered thead:last-child tr:last-child > th:last-child,
|
2074
2102
|
.table-bordered tbody:last-child tr:last-child > td:last-child,
|
2075
|
-
.table-bordered
|
2103
|
+
.table-bordered tbody:last-child tr:last-child > th:last-child,
|
2104
|
+
.table-bordered tfoot:last-child tr:last-child > td:last-child,
|
2105
|
+
.table-bordered tfoot:last-child tr:last-child > th:last-child {
|
2076
2106
|
-webkit-border-bottom-right-radius: 4px;
|
2077
2107
|
border-bottom-right-radius: 4px;
|
2078
2108
|
-moz-border-radius-bottomright: 4px;
|
@@ -2113,8 +2143,8 @@ table {
|
|
2113
2143
|
background-color: #f9f9f9;
|
2114
2144
|
}
|
2115
2145
|
|
2116
|
-
.table-hover tbody tr:hover td,
|
2117
|
-
.table-hover tbody tr:hover th {
|
2146
|
+
.table-hover tbody tr:hover > td,
|
2147
|
+
.table-hover tbody tr:hover > th {
|
2118
2148
|
background-color: #f5f5f5;
|
2119
2149
|
}
|
2120
2150
|
|
@@ -2211,35 +2241,35 @@ table th[class*="span"],
|
|
2211
2241
|
margin-left: 0;
|
2212
2242
|
}
|
2213
2243
|
|
2214
|
-
.table tbody tr.success td {
|
2244
|
+
.table tbody tr.success > td {
|
2215
2245
|
background-color: #dff0d8;
|
2216
2246
|
}
|
2217
2247
|
|
2218
|
-
.table tbody tr.error td {
|
2248
|
+
.table tbody tr.error > td {
|
2219
2249
|
background-color: #f2dede;
|
2220
2250
|
}
|
2221
2251
|
|
2222
|
-
.table tbody tr.warning td {
|
2252
|
+
.table tbody tr.warning > td {
|
2223
2253
|
background-color: #fcf8e3;
|
2224
2254
|
}
|
2225
2255
|
|
2226
|
-
.table tbody tr.info td {
|
2256
|
+
.table tbody tr.info > td {
|
2227
2257
|
background-color: #d9edf7;
|
2228
2258
|
}
|
2229
2259
|
|
2230
|
-
.table-hover tbody tr.success:hover td {
|
2260
|
+
.table-hover tbody tr.success:hover > td {
|
2231
2261
|
background-color: #d0e9c6;
|
2232
2262
|
}
|
2233
2263
|
|
2234
|
-
.table-hover tbody tr.error:hover td {
|
2264
|
+
.table-hover tbody tr.error:hover > td {
|
2235
2265
|
background-color: #ebcccc;
|
2236
2266
|
}
|
2237
2267
|
|
2238
|
-
.table-hover tbody tr.warning:hover td {
|
2268
|
+
.table-hover tbody tr.warning:hover > td {
|
2239
2269
|
background-color: #faf2cc;
|
2240
2270
|
}
|
2241
2271
|
|
2242
|
-
.table-hover tbody tr.info:hover td {
|
2272
|
+
.table-hover tbody tr.info:hover > td {
|
2243
2273
|
background-color: #c4e3f3;
|
2244
2274
|
}
|
2245
2275
|
|
@@ -2257,7 +2287,7 @@ table th[class*="span"],
|
|
2257
2287
|
background-repeat: no-repeat;
|
2258
2288
|
}
|
2259
2289
|
|
2260
|
-
/* White icons with optional class, or on hover/active states of certain elements */
|
2290
|
+
/* White icons with optional class, or on hover/focus/active states of certain elements */
|
2261
2291
|
|
2262
2292
|
.icon-white,
|
2263
2293
|
.nav-pills > .active > a > [class^="icon-"],
|
@@ -2267,11 +2297,15 @@ table th[class*="span"],
|
|
2267
2297
|
.navbar-inverse .nav > .active > a > [class^="icon-"],
|
2268
2298
|
.navbar-inverse .nav > .active > a > [class*=" icon-"],
|
2269
2299
|
.dropdown-menu > li > a:hover > [class^="icon-"],
|
2300
|
+
.dropdown-menu > li > a:focus > [class^="icon-"],
|
2270
2301
|
.dropdown-menu > li > a:hover > [class*=" icon-"],
|
2302
|
+
.dropdown-menu > li > a:focus > [class*=" icon-"],
|
2271
2303
|
.dropdown-menu > .active > a > [class^="icon-"],
|
2272
2304
|
.dropdown-menu > .active > a > [class*=" icon-"],
|
2273
2305
|
.dropdown-submenu:hover > a > [class^="icon-"],
|
2274
|
-
.dropdown-submenu:
|
2306
|
+
.dropdown-submenu:focus > a > [class^="icon-"],
|
2307
|
+
.dropdown-submenu:hover > a > [class*=" icon-"],
|
2308
|
+
.dropdown-submenu:focus > a > [class*=" icon-"] {
|
2275
2309
|
background-image: url("/assets/bootstrap/glyphicons-halflings-white.png");
|
2276
2310
|
}
|
2277
2311
|
|
@@ -2741,6 +2775,7 @@ table th[class*="span"],
|
|
2741
2775
|
}
|
2742
2776
|
|
2743
2777
|
.icon-folder-close {
|
2778
|
+
width: 16px;
|
2744
2779
|
background-position: -384px -120px;
|
2745
2780
|
}
|
2746
2781
|
|
@@ -2909,7 +2944,7 @@ table th[class*="span"],
|
|
2909
2944
|
border-bottom: 1px solid #ffffff;
|
2910
2945
|
}
|
2911
2946
|
|
2912
|
-
.dropdown-menu li > a {
|
2947
|
+
.dropdown-menu > li > a {
|
2913
2948
|
display: block;
|
2914
2949
|
padding: 3px 20px;
|
2915
2950
|
clear: both;
|
@@ -2919,9 +2954,10 @@ table th[class*="span"],
|
|
2919
2954
|
white-space: nowrap;
|
2920
2955
|
}
|
2921
2956
|
|
2922
|
-
.dropdown-menu li > a:hover,
|
2923
|
-
.dropdown-menu li > a:focus,
|
2924
|
-
.dropdown-submenu:hover > a
|
2957
|
+
.dropdown-menu > li > a:hover,
|
2958
|
+
.dropdown-menu > li > a:focus,
|
2959
|
+
.dropdown-submenu:hover > a,
|
2960
|
+
.dropdown-submenu:focus > a {
|
2925
2961
|
color: #ffffff;
|
2926
2962
|
text-decoration: none;
|
2927
2963
|
background-color: #0081c2;
|
@@ -2934,8 +2970,9 @@ table th[class*="span"],
|
|
2934
2970
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);
|
2935
2971
|
}
|
2936
2972
|
|
2937
|
-
.dropdown-menu .active > a,
|
2938
|
-
.dropdown-menu .active > a:hover
|
2973
|
+
.dropdown-menu > .active > a,
|
2974
|
+
.dropdown-menu > .active > a:hover,
|
2975
|
+
.dropdown-menu > .active > a:focus {
|
2939
2976
|
color: #ffffff;
|
2940
2977
|
text-decoration: none;
|
2941
2978
|
background-color: #0081c2;
|
@@ -2949,12 +2986,14 @@ table th[class*="span"],
|
|
2949
2986
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);
|
2950
2987
|
}
|
2951
2988
|
|
2952
|
-
.dropdown-menu .disabled > a,
|
2953
|
-
.dropdown-menu .disabled > a:hover
|
2989
|
+
.dropdown-menu > .disabled > a,
|
2990
|
+
.dropdown-menu > .disabled > a:hover,
|
2991
|
+
.dropdown-menu > .disabled > a:focus {
|
2954
2992
|
color: #999999;
|
2955
2993
|
}
|
2956
2994
|
|
2957
|
-
.dropdown-menu .disabled > a:hover
|
2995
|
+
.dropdown-menu > .disabled > a:hover,
|
2996
|
+
.dropdown-menu > .disabled > a:focus {
|
2958
2997
|
text-decoration: none;
|
2959
2998
|
cursor: default;
|
2960
2999
|
background-color: transparent;
|
@@ -3130,7 +3169,8 @@ table th[class*="span"],
|
|
3130
3169
|
filter: alpha(opacity=20);
|
3131
3170
|
}
|
3132
3171
|
|
3133
|
-
.close:hover
|
3172
|
+
.close:hover,
|
3173
|
+
.close:focus {
|
3134
3174
|
color: #000000;
|
3135
3175
|
text-decoration: none;
|
3136
3176
|
cursor: pointer;
|
@@ -3167,11 +3207,11 @@ button.close {
|
|
3167
3207
|
background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
|
3168
3208
|
background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
|
3169
3209
|
background-repeat: repeat-x;
|
3170
|
-
border: 1px solid #
|
3210
|
+
border: 1px solid #cccccc;
|
3171
3211
|
*border: 0;
|
3172
3212
|
border-color: #e6e6e6 #e6e6e6 #bfbfbf;
|
3173
3213
|
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
3174
|
-
border-bottom-color: #
|
3214
|
+
border-bottom-color: #b3b3b3;
|
3175
3215
|
-webkit-border-radius: 4px;
|
3176
3216
|
-moz-border-radius: 4px;
|
3177
3217
|
border-radius: 4px;
|
@@ -3184,6 +3224,7 @@ button.close {
|
|
3184
3224
|
}
|
3185
3225
|
|
3186
3226
|
.btn:hover,
|
3227
|
+
.btn:focus,
|
3187
3228
|
.btn:active,
|
3188
3229
|
.btn.active,
|
3189
3230
|
.btn.disabled,
|
@@ -3202,7 +3243,8 @@ button.close {
|
|
3202
3243
|
*margin-left: 0;
|
3203
3244
|
}
|
3204
3245
|
|
3205
|
-
.btn:hover
|
3246
|
+
.btn:hover,
|
3247
|
+
.btn:focus {
|
3206
3248
|
color: #333333;
|
3207
3249
|
text-decoration: none;
|
3208
3250
|
background-position: 0 -15px;
|
@@ -3306,11 +3348,6 @@ input[type="button"].btn-block {
|
|
3306
3348
|
color: rgba(255, 255, 255, 0.75);
|
3307
3349
|
}
|
3308
3350
|
|
3309
|
-
.btn {
|
3310
|
-
border-color: #c5c5c5;
|
3311
|
-
border-color: rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.25);
|
3312
|
-
}
|
3313
|
-
|
3314
3351
|
.btn-primary {
|
3315
3352
|
color: #ffffff;
|
3316
3353
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
@@ -3329,6 +3366,7 @@ input[type="button"].btn-block {
|
|
3329
3366
|
}
|
3330
3367
|
|
3331
3368
|
.btn-primary:hover,
|
3369
|
+
.btn-primary:focus,
|
3332
3370
|
.btn-primary:active,
|
3333
3371
|
.btn-primary.active,
|
3334
3372
|
.btn-primary.disabled,
|
@@ -3361,6 +3399,7 @@ input[type="button"].btn-block {
|
|
3361
3399
|
}
|
3362
3400
|
|
3363
3401
|
.btn-warning:hover,
|
3402
|
+
.btn-warning:focus,
|
3364
3403
|
.btn-warning:active,
|
3365
3404
|
.btn-warning.active,
|
3366
3405
|
.btn-warning.disabled,
|
@@ -3393,6 +3432,7 @@ input[type="button"].btn-block {
|
|
3393
3432
|
}
|
3394
3433
|
|
3395
3434
|
.btn-danger:hover,
|
3435
|
+
.btn-danger:focus,
|
3396
3436
|
.btn-danger:active,
|
3397
3437
|
.btn-danger.active,
|
3398
3438
|
.btn-danger.disabled,
|
@@ -3425,6 +3465,7 @@ input[type="button"].btn-block {
|
|
3425
3465
|
}
|
3426
3466
|
|
3427
3467
|
.btn-success:hover,
|
3468
|
+
.btn-success:focus,
|
3428
3469
|
.btn-success:active,
|
3429
3470
|
.btn-success.active,
|
3430
3471
|
.btn-success.disabled,
|
@@ -3457,6 +3498,7 @@ input[type="button"].btn-block {
|
|
3457
3498
|
}
|
3458
3499
|
|
3459
3500
|
.btn-info:hover,
|
3501
|
+
.btn-info:focus,
|
3460
3502
|
.btn-info:active,
|
3461
3503
|
.btn-info.active,
|
3462
3504
|
.btn-info.disabled,
|
@@ -3489,6 +3531,7 @@ input[type="button"].btn-block {
|
|
3489
3531
|
}
|
3490
3532
|
|
3491
3533
|
.btn-inverse:hover,
|
3534
|
+
.btn-inverse:focus,
|
3492
3535
|
.btn-inverse:active,
|
3493
3536
|
.btn-inverse.active,
|
3494
3537
|
.btn-inverse.disabled,
|
@@ -3552,13 +3595,15 @@ input[type="submit"].btn.btn-mini {
|
|
3552
3595
|
border-radius: 0;
|
3553
3596
|
}
|
3554
3597
|
|
3555
|
-
.btn-link:hover
|
3598
|
+
.btn-link:hover,
|
3599
|
+
.btn-link:focus {
|
3556
3600
|
color: #005580;
|
3557
3601
|
text-decoration: underline;
|
3558
3602
|
background-color: transparent;
|
3559
3603
|
}
|
3560
3604
|
|
3561
|
-
.btn-link[disabled]:hover
|
3605
|
+
.btn-link[disabled]:hover,
|
3606
|
+
.btn-link[disabled]:focus {
|
3562
3607
|
color: #333333;
|
3563
3608
|
text-decoration: none;
|
3564
3609
|
}
|
@@ -3744,8 +3789,6 @@ input[type="submit"].btn.btn-mini {
|
|
3744
3789
|
margin-left: 0;
|
3745
3790
|
}
|
3746
3791
|
|
3747
|
-
.btn-mini .caret,
|
3748
|
-
.btn-small .caret,
|
3749
3792
|
.btn-large .caret {
|
3750
3793
|
margin-top: 6px;
|
3751
3794
|
}
|
@@ -3756,6 +3799,11 @@ input[type="submit"].btn.btn-mini {
|
|
3756
3799
|
border-left-width: 5px;
|
3757
3800
|
}
|
3758
3801
|
|
3802
|
+
.btn-mini .caret,
|
3803
|
+
.btn-small .caret {
|
3804
|
+
margin-top: 8px;
|
3805
|
+
}
|
3806
|
+
|
3759
3807
|
.dropup .btn-large .caret {
|
3760
3808
|
border-bottom-width: 5px;
|
3761
3809
|
}
|
@@ -3899,7 +3947,8 @@ input[type="submit"].btn.btn-mini {
|
|
3899
3947
|
display: block;
|
3900
3948
|
}
|
3901
3949
|
|
3902
|
-
.nav > li > a:hover
|
3950
|
+
.nav > li > a:hover,
|
3951
|
+
.nav > li > a:focus {
|
3903
3952
|
text-decoration: none;
|
3904
3953
|
background-color: #eeeeee;
|
3905
3954
|
}
|
@@ -3945,7 +3994,8 @@ input[type="submit"].btn.btn-mini {
|
|
3945
3994
|
}
|
3946
3995
|
|
3947
3996
|
.nav-list > .active > a,
|
3948
|
-
.nav-list > .active > a:hover
|
3997
|
+
.nav-list > .active > a:hover,
|
3998
|
+
.nav-list > .active > a:focus {
|
3949
3999
|
color: #ffffff;
|
3950
4000
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
|
3951
4001
|
background-color: #0088cc;
|
@@ -4016,12 +4066,14 @@ input[type="submit"].btn.btn-mini {
|
|
4016
4066
|
border-radius: 4px 4px 0 0;
|
4017
4067
|
}
|
4018
4068
|
|
4019
|
-
.nav-tabs > li > a:hover
|
4069
|
+
.nav-tabs > li > a:hover,
|
4070
|
+
.nav-tabs > li > a:focus {
|
4020
4071
|
border-color: #eeeeee #eeeeee #dddddd;
|
4021
4072
|
}
|
4022
4073
|
|
4023
4074
|
.nav-tabs > .active > a,
|
4024
|
-
.nav-tabs > .active > a:hover
|
4075
|
+
.nav-tabs > .active > a:hover,
|
4076
|
+
.nav-tabs > .active > a:focus {
|
4025
4077
|
color: #555555;
|
4026
4078
|
cursor: default;
|
4027
4079
|
background-color: #ffffff;
|
@@ -4040,7 +4092,8 @@ input[type="submit"].btn.btn-mini {
|
|
4040
4092
|
}
|
4041
4093
|
|
4042
4094
|
.nav-pills > .active > a,
|
4043
|
-
.nav-pills > .active > a:hover
|
4095
|
+
.nav-pills > .active > a:hover,
|
4096
|
+
.nav-pills > .active > a:focus {
|
4044
4097
|
color: #ffffff;
|
4045
4098
|
background-color: #0088cc;
|
4046
4099
|
}
|
@@ -4082,7 +4135,8 @@ input[type="submit"].btn.btn-mini {
|
|
4082
4135
|
-moz-border-radius-bottomleft: 4px;
|
4083
4136
|
}
|
4084
4137
|
|
4085
|
-
.nav-tabs.nav-stacked > li > a:hover
|
4138
|
+
.nav-tabs.nav-stacked > li > a:hover,
|
4139
|
+
.nav-tabs.nav-stacked > li > a:focus {
|
4086
4140
|
z-index: 2;
|
4087
4141
|
border-color: #ddd;
|
4088
4142
|
}
|
@@ -4113,7 +4167,8 @@ input[type="submit"].btn.btn-mini {
|
|
4113
4167
|
border-bottom-color: #0088cc;
|
4114
4168
|
}
|
4115
4169
|
|
4116
|
-
.nav .dropdown-toggle:hover .caret
|
4170
|
+
.nav .dropdown-toggle:hover .caret,
|
4171
|
+
.nav .dropdown-toggle:focus .caret {
|
4117
4172
|
border-top-color: #005580;
|
4118
4173
|
border-bottom-color: #005580;
|
4119
4174
|
}
|
@@ -4134,13 +4189,15 @@ input[type="submit"].btn.btn-mini {
|
|
4134
4189
|
border-bottom-color: #555555;
|
4135
4190
|
}
|
4136
4191
|
|
4137
|
-
.nav > .dropdown.active > a:hover
|
4192
|
+
.nav > .dropdown.active > a:hover,
|
4193
|
+
.nav > .dropdown.active > a:focus {
|
4138
4194
|
cursor: pointer;
|
4139
4195
|
}
|
4140
4196
|
|
4141
4197
|
.nav-tabs .open .dropdown-toggle,
|
4142
4198
|
.nav-pills .open .dropdown-toggle,
|
4143
|
-
.nav > li.dropdown.open.active > a:hover
|
4199
|
+
.nav > li.dropdown.open.active > a:hover,
|
4200
|
+
.nav > li.dropdown.open.active > a:focus {
|
4144
4201
|
color: #ffffff;
|
4145
4202
|
background-color: #999999;
|
4146
4203
|
border-color: #999999;
|
@@ -4148,14 +4205,16 @@ input[type="submit"].btn.btn-mini {
|
|
4148
4205
|
|
4149
4206
|
.nav li.dropdown.open .caret,
|
4150
4207
|
.nav li.dropdown.open.active .caret,
|
4151
|
-
.nav li.dropdown.open a:hover .caret
|
4208
|
+
.nav li.dropdown.open a:hover .caret,
|
4209
|
+
.nav li.dropdown.open a:focus .caret {
|
4152
4210
|
border-top-color: #ffffff;
|
4153
4211
|
border-bottom-color: #ffffff;
|
4154
4212
|
opacity: 1;
|
4155
4213
|
filter: alpha(opacity=100);
|
4156
4214
|
}
|
4157
4215
|
|
4158
|
-
.tabs-stacked .open > a:hover
|
4216
|
+
.tabs-stacked .open > a:hover,
|
4217
|
+
.tabs-stacked .open > a:focus {
|
4159
4218
|
border-color: #999999;
|
4160
4219
|
}
|
4161
4220
|
|
@@ -4209,13 +4268,15 @@ input[type="submit"].btn.btn-mini {
|
|
4209
4268
|
border-radius: 0 0 4px 4px;
|
4210
4269
|
}
|
4211
4270
|
|
4212
|
-
.tabs-below > .nav-tabs > li > a:hover
|
4271
|
+
.tabs-below > .nav-tabs > li > a:hover,
|
4272
|
+
.tabs-below > .nav-tabs > li > a:focus {
|
4213
4273
|
border-top-color: #ddd;
|
4214
4274
|
border-bottom-color: transparent;
|
4215
4275
|
}
|
4216
4276
|
|
4217
4277
|
.tabs-below > .nav-tabs > .active > a,
|
4218
|
-
.tabs-below > .nav-tabs > .active > a:hover
|
4278
|
+
.tabs-below > .nav-tabs > .active > a:hover,
|
4279
|
+
.tabs-below > .nav-tabs > .active > a:focus {
|
4219
4280
|
border-color: transparent #ddd #ddd #ddd;
|
4220
4281
|
}
|
4221
4282
|
|
@@ -4244,12 +4305,14 @@ input[type="submit"].btn.btn-mini {
|
|
4244
4305
|
border-radius: 4px 0 0 4px;
|
4245
4306
|
}
|
4246
4307
|
|
4247
|
-
.tabs-left > .nav-tabs > li > a:hover
|
4308
|
+
.tabs-left > .nav-tabs > li > a:hover,
|
4309
|
+
.tabs-left > .nav-tabs > li > a:focus {
|
4248
4310
|
border-color: #eeeeee #dddddd #eeeeee #eeeeee;
|
4249
4311
|
}
|
4250
4312
|
|
4251
4313
|
.tabs-left > .nav-tabs .active > a,
|
4252
|
-
.tabs-left > .nav-tabs .active > a:hover
|
4314
|
+
.tabs-left > .nav-tabs .active > a:hover,
|
4315
|
+
.tabs-left > .nav-tabs .active > a:focus {
|
4253
4316
|
border-color: #ddd transparent #ddd #ddd;
|
4254
4317
|
*border-right-color: #ffffff;
|
4255
4318
|
}
|
@@ -4267,12 +4330,14 @@ input[type="submit"].btn.btn-mini {
|
|
4267
4330
|
border-radius: 0 4px 4px 0;
|
4268
4331
|
}
|
4269
4332
|
|
4270
|
-
.tabs-right > .nav-tabs > li > a:hover
|
4333
|
+
.tabs-right > .nav-tabs > li > a:hover,
|
4334
|
+
.tabs-right > .nav-tabs > li > a:focus {
|
4271
4335
|
border-color: #eeeeee #eeeeee #eeeeee #dddddd;
|
4272
4336
|
}
|
4273
4337
|
|
4274
4338
|
.tabs-right > .nav-tabs .active > a,
|
4275
|
-
.tabs-right > .nav-tabs .active > a:hover
|
4339
|
+
.tabs-right > .nav-tabs .active > a:hover,
|
4340
|
+
.tabs-right > .nav-tabs .active > a:focus {
|
4276
4341
|
border-color: #ddd #ddd #ddd transparent;
|
4277
4342
|
*border-left-color: #ffffff;
|
4278
4343
|
}
|
@@ -4281,7 +4346,8 @@ input[type="submit"].btn.btn-mini {
|
|
4281
4346
|
color: #999999;
|
4282
4347
|
}
|
4283
4348
|
|
4284
|
-
.nav > .disabled > a:hover
|
4349
|
+
.nav > .disabled > a:hover,
|
4350
|
+
.nav > .disabled > a:focus {
|
4285
4351
|
text-decoration: none;
|
4286
4352
|
cursor: default;
|
4287
4353
|
background-color: transparent;
|
@@ -4347,7 +4413,8 @@ input[type="submit"].btn.btn-mini {
|
|
4347
4413
|
text-shadow: 0 1px 0 #ffffff;
|
4348
4414
|
}
|
4349
4415
|
|
4350
|
-
.navbar .brand:hover
|
4416
|
+
.navbar .brand:hover,
|
4417
|
+
.navbar .brand:focus {
|
4351
4418
|
text-decoration: none;
|
4352
4419
|
}
|
4353
4420
|
|
@@ -4361,7 +4428,8 @@ input[type="submit"].btn.btn-mini {
|
|
4361
4428
|
color: #777777;
|
4362
4429
|
}
|
4363
4430
|
|
4364
|
-
.navbar-link:hover
|
4431
|
+
.navbar-link:hover,
|
4432
|
+
.navbar-link:focus {
|
4365
4433
|
color: #333333;
|
4366
4434
|
}
|
4367
4435
|
|
@@ -4379,7 +4447,9 @@ input[type="submit"].btn.btn-mini {
|
|
4379
4447
|
|
4380
4448
|
.navbar .btn-group .btn,
|
4381
4449
|
.navbar .input-prepend .btn,
|
4382
|
-
.navbar .input-append .btn
|
4450
|
+
.navbar .input-append .btn,
|
4451
|
+
.navbar .input-prepend .btn-group,
|
4452
|
+
.navbar .input-append .btn-group {
|
4383
4453
|
margin-top: 0;
|
4384
4454
|
}
|
4385
4455
|
|
@@ -4587,6 +4657,7 @@ input[type="submit"].btn.btn-mini {
|
|
4587
4657
|
}
|
4588
4658
|
|
4589
4659
|
.navbar .btn-navbar:hover,
|
4660
|
+
.navbar .btn-navbar:focus,
|
4590
4661
|
.navbar .btn-navbar:active,
|
4591
4662
|
.navbar .btn-navbar.active,
|
4592
4663
|
.navbar .btn-navbar.disabled,
|
@@ -4656,9 +4727,10 @@ input[type="submit"].btn.btn-mini {
|
|
4656
4727
|
border-bottom: 0;
|
4657
4728
|
}
|
4658
4729
|
|
4659
|
-
.navbar .nav li.dropdown > a:hover .caret
|
4660
|
-
|
4661
|
-
border-
|
4730
|
+
.navbar .nav li.dropdown > a:hover .caret,
|
4731
|
+
.navbar .nav li.dropdown > a:focus .caret {
|
4732
|
+
border-top-color: #333333;
|
4733
|
+
border-bottom-color: #333333;
|
4662
4734
|
}
|
4663
4735
|
|
4664
4736
|
.navbar .nav li.dropdown.open > .dropdown-toggle,
|
@@ -4728,7 +4800,9 @@ input[type="submit"].btn.btn-mini {
|
|
4728
4800
|
}
|
4729
4801
|
|
4730
4802
|
.navbar-inverse .brand:hover,
|
4731
|
-
.navbar-inverse .nav > li > a:hover
|
4803
|
+
.navbar-inverse .nav > li > a:hover,
|
4804
|
+
.navbar-inverse .brand:focus,
|
4805
|
+
.navbar-inverse .nav > li > a:focus {
|
4732
4806
|
color: #ffffff;
|
4733
4807
|
}
|
4734
4808
|
|
@@ -4757,7 +4831,8 @@ input[type="submit"].btn.btn-mini {
|
|
4757
4831
|
color: #999999;
|
4758
4832
|
}
|
4759
4833
|
|
4760
|
-
.navbar-inverse .navbar-link:hover
|
4834
|
+
.navbar-inverse .navbar-link:hover,
|
4835
|
+
.navbar-inverse .navbar-link:focus {
|
4761
4836
|
color: #ffffff;
|
4762
4837
|
}
|
4763
4838
|
|
@@ -4773,7 +4848,8 @@ input[type="submit"].btn.btn-mini {
|
|
4773
4848
|
background-color: #111111;
|
4774
4849
|
}
|
4775
4850
|
|
4776
|
-
.navbar-inverse .nav li.dropdown > a:hover .caret
|
4851
|
+
.navbar-inverse .nav li.dropdown > a:hover .caret,
|
4852
|
+
.navbar-inverse .nav li.dropdown > a:focus .caret {
|
4777
4853
|
border-top-color: #ffffff;
|
4778
4854
|
border-bottom-color: #ffffff;
|
4779
4855
|
}
|
@@ -4846,6 +4922,7 @@ input[type="submit"].btn.btn-mini {
|
|
4846
4922
|
}
|
4847
4923
|
|
4848
4924
|
.navbar-inverse .btn-navbar:hover,
|
4925
|
+
.navbar-inverse .btn-navbar:focus,
|
4849
4926
|
.navbar-inverse .btn-navbar:active,
|
4850
4927
|
.navbar-inverse .btn-navbar.active,
|
4851
4928
|
.navbar-inverse .btn-navbar.disabled,
|
@@ -4920,6 +4997,7 @@ input[type="submit"].btn.btn-mini {
|
|
4920
4997
|
}
|
4921
4998
|
|
4922
4999
|
.pagination ul > li > a:hover,
|
5000
|
+
.pagination ul > li > a:focus,
|
4923
5001
|
.pagination ul > .active > a,
|
4924
5002
|
.pagination ul > .active > span {
|
4925
5003
|
background-color: #f5f5f5;
|
@@ -4933,7 +5011,8 @@ input[type="submit"].btn.btn-mini {
|
|
4933
5011
|
|
4934
5012
|
.pagination ul > .disabled > span,
|
4935
5013
|
.pagination ul > .disabled > a,
|
4936
|
-
.pagination ul > .disabled > a:hover
|
5014
|
+
.pagination ul > .disabled > a:hover,
|
5015
|
+
.pagination ul > .disabled > a:focus {
|
4937
5016
|
color: #999999;
|
4938
5017
|
cursor: default;
|
4939
5018
|
background-color: transparent;
|
@@ -5063,7 +5142,8 @@ input[type="submit"].btn.btn-mini {
|
|
5063
5142
|
border-radius: 15px;
|
5064
5143
|
}
|
5065
5144
|
|
5066
|
-
.pager li > a:hover
|
5145
|
+
.pager li > a:hover,
|
5146
|
+
.pager li > a:focus {
|
5067
5147
|
text-decoration: none;
|
5068
5148
|
background-color: #f5f5f5;
|
5069
5149
|
}
|
@@ -5080,6 +5160,7 @@ input[type="submit"].btn.btn-mini {
|
|
5080
5160
|
|
5081
5161
|
.pager .disabled > a,
|
5082
5162
|
.pager .disabled > a:hover,
|
5163
|
+
.pager .disabled > a:focus,
|
5083
5164
|
.pager .disabled > span {
|
5084
5165
|
color: #999999;
|
5085
5166
|
cursor: default;
|
@@ -5209,8 +5290,8 @@ input[type="submit"].btn.btn-mini {
|
|
5209
5290
|
position: absolute;
|
5210
5291
|
z-index: 1030;
|
5211
5292
|
display: block;
|
5212
|
-
padding: 5px;
|
5213
5293
|
font-size: 11px;
|
5294
|
+
line-height: 1.4;
|
5214
5295
|
opacity: 0;
|
5215
5296
|
filter: alpha(opacity=0);
|
5216
5297
|
visibility: visible;
|
@@ -5222,24 +5303,28 @@ input[type="submit"].btn.btn-mini {
|
|
5222
5303
|
}
|
5223
5304
|
|
5224
5305
|
.tooltip.top {
|
5306
|
+
padding: 5px 0;
|
5225
5307
|
margin-top: -3px;
|
5226
5308
|
}
|
5227
5309
|
|
5228
5310
|
.tooltip.right {
|
5311
|
+
padding: 0 5px;
|
5229
5312
|
margin-left: 3px;
|
5230
5313
|
}
|
5231
5314
|
|
5232
5315
|
.tooltip.bottom {
|
5316
|
+
padding: 5px 0;
|
5233
5317
|
margin-top: 3px;
|
5234
5318
|
}
|
5235
5319
|
|
5236
5320
|
.tooltip.left {
|
5321
|
+
padding: 0 5px;
|
5237
5322
|
margin-left: -3px;
|
5238
5323
|
}
|
5239
5324
|
|
5240
5325
|
.tooltip-inner {
|
5241
5326
|
max-width: 200px;
|
5242
|
-
padding:
|
5327
|
+
padding: 8px;
|
5243
5328
|
color: #ffffff;
|
5244
5329
|
text-align: center;
|
5245
5330
|
text-decoration: none;
|
@@ -5295,7 +5380,7 @@ input[type="submit"].btn.btn-mini {
|
|
5295
5380
|
left: 0;
|
5296
5381
|
z-index: 1010;
|
5297
5382
|
display: none;
|
5298
|
-
width:
|
5383
|
+
max-width: 276px;
|
5299
5384
|
padding: 1px;
|
5300
5385
|
text-align: left;
|
5301
5386
|
white-space: normal;
|
@@ -5342,6 +5427,10 @@ input[type="submit"].btn.btn-mini {
|
|
5342
5427
|
border-radius: 5px 5px 0 0;
|
5343
5428
|
}
|
5344
5429
|
|
5430
|
+
.popover-title:empty {
|
5431
|
+
display: none;
|
5432
|
+
}
|
5433
|
+
|
5345
5434
|
.popover-content {
|
5346
5435
|
padding: 9px 14px;
|
5347
5436
|
}
|
@@ -5473,7 +5562,8 @@ input[type="submit"].btn.btn-mini {
|
|
5473
5562
|
transition: all 0.2s ease-in-out;
|
5474
5563
|
}
|
5475
5564
|
|
5476
|
-
a.thumbnail:hover
|
5565
|
+
a.thumbnail:hover,
|
5566
|
+
a.thumbnail:focus {
|
5477
5567
|
border-color: #0088cc;
|
5478
5568
|
-webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
|
5479
5569
|
-moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
|
@@ -5516,11 +5606,11 @@ a.thumbnail:hover {
|
|
5516
5606
|
margin: 0 0 5px;
|
5517
5607
|
}
|
5518
5608
|
|
5519
|
-
.media .pull-left {
|
5609
|
+
.media > .pull-left {
|
5520
5610
|
margin-right: 10px;
|
5521
5611
|
}
|
5522
5612
|
|
5523
|
-
.media .pull-right {
|
5613
|
+
.media > .pull-right {
|
5524
5614
|
margin-left: 10px;
|
5525
5615
|
}
|
5526
5616
|
|
@@ -5563,7 +5653,9 @@ a.thumbnail:hover {
|
|
5563
5653
|
}
|
5564
5654
|
|
5565
5655
|
a.label:hover,
|
5566
|
-
a.
|
5656
|
+
a.label:focus,
|
5657
|
+
a.badge:hover,
|
5658
|
+
a.badge:focus {
|
5567
5659
|
color: #ffffff;
|
5568
5660
|
text-decoration: none;
|
5569
5661
|
cursor: pointer;
|
@@ -5889,7 +5981,8 @@ a.badge:hover {
|
|
5889
5981
|
transition: 0.6s ease-in-out left;
|
5890
5982
|
}
|
5891
5983
|
|
5892
|
-
.carousel-inner > .item > img
|
5984
|
+
.carousel-inner > .item > img,
|
5985
|
+
.carousel-inner > .item > a > img {
|
5893
5986
|
display: block;
|
5894
5987
|
line-height: 1;
|
5895
5988
|
}
|
@@ -5958,13 +6051,39 @@ a.badge:hover {
|
|
5958
6051
|
left: auto;
|
5959
6052
|
}
|
5960
6053
|
|
5961
|
-
.carousel-control:hover
|
6054
|
+
.carousel-control:hover,
|
6055
|
+
.carousel-control:focus {
|
5962
6056
|
color: #ffffff;
|
5963
6057
|
text-decoration: none;
|
5964
6058
|
opacity: 0.9;
|
5965
6059
|
filter: alpha(opacity=90);
|
5966
6060
|
}
|
5967
6061
|
|
6062
|
+
.carousel-indicators {
|
6063
|
+
position: absolute;
|
6064
|
+
top: 15px;
|
6065
|
+
right: 15px;
|
6066
|
+
z-index: 5;
|
6067
|
+
margin: 0;
|
6068
|
+
list-style: none;
|
6069
|
+
}
|
6070
|
+
|
6071
|
+
.carousel-indicators li {
|
6072
|
+
display: block;
|
6073
|
+
float: left;
|
6074
|
+
width: 10px;
|
6075
|
+
height: 10px;
|
6076
|
+
margin-left: 5px;
|
6077
|
+
text-indent: -999px;
|
6078
|
+
background-color: #ccc;
|
6079
|
+
background-color: rgba(255, 255, 255, 0.25);
|
6080
|
+
border-radius: 5px;
|
6081
|
+
}
|
6082
|
+
|
6083
|
+
.carousel-indicators .active {
|
6084
|
+
background-color: #fff;
|
6085
|
+
}
|
6086
|
+
|
5968
6087
|
.carousel-caption {
|
5969
6088
|
position: absolute;
|
5970
6089
|
right: 0;
|