bootstrap-rails-engine 1.2.0 → 1.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +2 -2
- data/lib/bootstrap-rails-engine.rb +2 -2
- data/lib/bootstrap-rails-engine/version.rb +2 -2
- data/vendor/assets/javascripts/bootstrap/bootstrap-datepicker.js +152 -52
- data/vendor/assets/javascripts/bootstrap/bootstrap.js +165 -31
- data/vendor/assets/javascripts/bootstrap/bootstrap.min.js +1 -1
- data/vendor/assets/stylesheets/bootstrap/bootstrap-datepicker.css +124 -114
- data/vendor/assets/stylesheets/bootstrap/bootstrap-responsive.css +5 -1
- data/vendor/assets/stylesheets/bootstrap/bootstrap-responsive.min.css +2 -2
- data/vendor/assets/stylesheets/bootstrap/bootstrap.css +272 -126
- data/vendor/assets/stylesheets/bootstrap/bootstrap.min.css +2 -2
- metadata +24 -9
@@ -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(e){"use strict";e(function(){e.support.transition=function(){var e=function(){var e=document.createElement("bootstrap"),t={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"},n;for(n in t)if(e.style[n]!==undefined)return t[n]}();return e&&{end:e}}()})}(window.jQuery),!function(e){"use strict";var t='[data-dismiss="alert"]',n=function(n){e(n).on("click",t,this.close)};n.prototype.close=function(t){function s(){i.trigger("closed").remove()}var n=e(this),r=n.attr("data-target"),i;r||(r=n.attr("href"),r=r&&r.replace(/.*(?=#[^\s]*$)/,"")),i=e(r),t&&t.preventDefault(),i.length||(i=n.hasClass("alert")?n:n.parent()),i.trigger(t=e.Event("close"));if(t.isDefaultPrevented())return;i.removeClass("in"),e.support.transition&&i.hasClass("fade")?i.on(e.support.transition.end,s):s()},e.fn.alert=function(t){return this.each(function(){var r=e(this),i=r.data("alert");i||r.data("alert",i=new n(this)),typeof t=="string"&&i[t].call(r)})},e.fn.alert.Constructor=n,e(document).on("click.alert.data-api",t,n.prototype.close)}(window.jQuery),!function(e){"use strict";var t=function(t,n){this.$element=e(t),this.options=e.extend({},e.fn.button.defaults,n)};t.prototype.setState=function(e){var t="disabled",n=this.$element,r=n.data(),i=n.is("input")?"val":"html";e+="Text",r.resetText||n.data("resetText",n[i]()),n[i](r[e]||this.options[e]),setTimeout(function(){e=="loadingText"?n.addClass(t).attr(t,t):n.removeClass(t).removeAttr(t)},0)},t.prototype.toggle=function(){var e=this.$element.closest('[data-toggle="buttons-radio"]');e&&e.find(".active").removeClass("active"),this.$element.toggleClass("active")},e.fn.button=function(n){return this.each(function(){var r=e(this),i=r.data("button"),s=typeof n=="object"&&n;i||r.data("button",i=new t(this,s)),n=="toggle"?i.toggle():n&&i.setState(n)})},e.fn.button.defaults={loadingText:"loading..."},e.fn.button.Constructor=t,e(document).on("click.button.data-api","[data-toggle^=button]",function(t){var n=e(t.target);n.hasClass("btn")||(n=n.closest(".btn")),n.button("toggle")})}(window.jQuery),!function(e){"use strict";var t=function(t,n){this.$element=e(t),this.options=n,this.options.slide&&this.slide(this.options.slide),this.options.pause=="hover"&&this.$element.on("mouseenter",e.proxy(this.pause,this)).on("mouseleave",e.proxy(this.cycle,this))};t.prototype={cycle:function(t){return t||(this.paused=!1),this.options.interval&&!this.paused&&(this.interval=setInterval(e.proxy(this.next,this),this.options.interval)),this},to:function(t){var n=this.$element.find(".item.active"),r=n.parent().children(),i=r.index(n),s=this;if(t>r.length-1||t<0)return;return this.sliding?this.$element.one("slid",function(){s.to(t)}):i==t?this.pause().cycle():this.slide(t>i?"next":"prev",e(r[t]))},pause:function(t){return t||(this.paused=!0),this.$element.find(".next, .prev").length&&e.support.transition.end&&(this.$element.trigger(e.support.transition.end),this.cycle()),clearInterval(this.interval),this.interval=null,this},next:function(){if(this.sliding)return;return this.slide("next")},prev:function(){if(this.sliding)return;return this.slide("prev")},slide:function(t,n){var r=this.$element.find(".item.active"),i=n||r[t](),s=this.interval,o=t=="next"?"left":"right",u=t=="next"?"first":"last",a=this,f;this.sliding=!0,s&&this.pause(),i=i.length?i:this.$element.find(".item")[u](),f=e.Event("slide",{relatedTarget:i[0]});if(i.hasClass("active"))return;if(e.support.transition&&this.$element.hasClass("slide")){this.$element.trigger(f);if(f.isDefaultPrevented())return;i.addClass(t),i[0].offsetWidth,r.addClass(o),i.addClass(o),this.$element.one(e.support.transition.end,function(){i.removeClass([t,o].join(" ")).addClass("active"),r.removeClass(["active",o].join(" ")),a.sliding=!1,setTimeout(function(){a.$element.trigger("slid")},0)})}else{this.$element.trigger(f);if(f.isDefaultPrevented())return;r.removeClass("active"),i.addClass("active"),this.sliding=!1,this.$element.trigger("slid")}return s&&this.cycle(),this}},e.fn.carousel=function(n){return this.each(function(){var r=e(this),i=r.data("carousel"),s=e.extend({},e.fn.carousel.defaults,typeof n=="object"&&n),o=typeof n=="string"?n:s.slide;i||r.data("carousel",i=new t(this,s)),typeof n=="number"?i.to(n):o?i[o]():s.interval&&i.cycle()})},e.fn.carousel.defaults={interval:5e3,pause:"hover"},e.fn.carousel.Constructor=t,e(document).on("click.carousel.data-api","[data-slide]",function(t){var n=e(this),r,i=e(n.attr("data-target")||(r=n.attr("href"))&&r.replace(/.*(?=#[^\s]+$)/,"")),s=e.extend({},i.data(),n.data());i.carousel(s),t.preventDefault()})}(window.jQuery),!function(e){"use strict";var t=function(t,n){this.$element=e(t),this.options=e.extend({},e.fn.collapse.defaults,n),this.options.parent&&(this.$parent=e(this.options.parent)),this.options.toggle&&this.toggle()};t.prototype={constructor:t,dimension:function(){var e=this.$element.hasClass("width");return e?"width":"height"},show:function(){var t,n,r,i;if(this.transitioning)return;t=this.dimension(),n=e.camelCase(["scroll",t].join("-")),r=this.$parent&&this.$parent.find("> .accordion-group > .in");if(r&&r.length){i=r.data("collapse");if(i&&i.transitioning)return;r.collapse("hide"),i||r.data("collapse",null)}this.$element[t](0),this.transition("addClass",e.Event("show"),"shown"),e.support.transition&&this.$element[t](this.$element[0][n])},hide:function(){var t;if(this.transitioning)return;t=this.dimension(),this.reset(this.$element[t]()),this.transition("removeClass",e.Event("hide"),"hidden"),this.$element[t](0)},reset:function(e){var t=this.dimension();return this.$element.removeClass("collapse")[t](e||"auto")[0].offsetWidth,this.$element[e!==null?"addClass":"removeClass"]("collapse"),this},transition:function(t,n,r){var i=this,s=function(){n.type=="show"&&i.reset(),i.transitioning=0,i.$element.trigger(r)};this.$element.trigger(n);if(n.isDefaultPrevented())return;this.transitioning=1,this.$element[t]("in"),e.support.transition&&this.$element.hasClass("collapse")?this.$element.one(e.support.transition.end,s):s()},toggle:function(){this[this.$element.hasClass("in")?"hide":"show"]()}},e.fn.collapse=function(n){return this.each(function(){var r=e(this),i=r.data("collapse"),s=typeof n=="object"&&n;i||r.data("collapse",i=new t(this,s)),typeof n=="string"&&i[n]()})},e.fn.collapse.defaults={toggle:!0},e.fn.collapse.Constructor=t,e(document).on("click.collapse.data-api","[data-toggle=collapse]",function(t){var n=e(this),r,i=n.attr("data-target")||t.preventDefault()||(r=n.attr("href"))&&r.replace(/.*(?=#[^\s]+$)/,""),s=e(i).data("collapse")?"toggle":n.data();n[e(i).hasClass("in")?"addClass":"removeClass"]("collapsed"),e(i).collapse(s)})}(window.jQuery),!function(e){"use strict";function r(){e(t).each(function(){i(e(this)).removeClass("open")})}function i(t){var n=t.attr("data-target"),r;return n||(n=t.attr("href"),n=n&&/#/.test(n)&&n.replace(/.*(?=#[^\s]*$)/,"")),r=e(n),r.length||(r=t.parent()),r}var t="[data-toggle=dropdown]",n=function(t){var n=e(t).on("click.dropdown.data-api",this.toggle);e("html").on("click.dropdown.data-api",function(){n.parent().removeClass("open")})};n.prototype={constructor:n,toggle:function(t){var n=e(this),s,o;if(n.is(".disabled, :disabled"))return;return s=i(n),o=s.hasClass("open"),r(),o||(s.toggleClass("open"),n.focus()),!1},keydown:function(t){var n,r,s,o,u,a;if(!/(38|40|27)/.test(t.keyCode))return;n=e(this),t.preventDefault(),t.stopPropagation();if(n.is(".disabled, :disabled"))return;o=i(n),u=o.hasClass("open");if(!u||u&&t.keyCode==27)return n.click();r=e("[role=menu] li:not(.divider) a",o);if(!r.length)return;a=r.index(r.filter(":focus")),t.keyCode==38&&a>0&&a--,t.keyCode==40&&a<r.length-1&&a++,~a||(a=0),r.eq(a).focus()}},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(document).on("click.dropdown.data-api touchstart.dropdown.data-api",r).on("click.dropdown touchstart.dropdown.data-api",".dropdown form",function(e){e.stopPropagation()}).on("click.dropdown.data-api touchstart.dropdown.data-api",t,n.prototype.toggle).on("keydown.dropdown.data-api touchstart.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(e){this.$element.hide().trigger("hidden"),this.backdrop()},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"),i?this.$backdrop.one(e.support.transition.end,t):t()}else!this.isShown&&this.$backdrop?(this.$backdrop.removeClass("in"),e.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one(e.support.transition.end,e.proxy(this.removeBackdrop,this)):this.removeBackdrop()):t&&t()}},e.fn.modal=function(n){return this.each(function(){var r=e(this),i=r.data("modal"),s=e.extend({},e.fn.modal.defaults,r.data(),typeof n=="object"&&n);i||r.data("modal",i=new t(this,s)),typeof n=="string"?i[n]():s.show&&i.show()})},e.fn.modal.defaults={backdrop:!0,keyboard:!0,show:!0},e.fn.modal.Constructor=t,e(document).on("click.modal.data-api",'[data-toggle="modal"]',function(t){var n=e(this),r=n.attr("href"),i=e(n.attr("data-target")||r&&r.replace(/.*(?=#[^\s]+$)/,"")),s=i.data("modal")?"toggle":e.extend({remote:!/#/.test(r)&&r},i.data(),n.data());t.preventDefault(),i.modal(s).one("hide",function(){n.focus()})})}(window.jQuery),!function(e){"use strict";var t=function(e,t){this.init("tooltip",e,t)};t.prototype={constructor:t,init:function(t,n,r){var i,s;this.type=t,this.$element=e(n),this.options=this.getOptions(r),this.enabled=!0,this.options.trigger=="click"?this.$element.on("click."+this.type,this.options.selector,e.proxy(this.toggle,this)):this.options.trigger!="manual"&&(i=this.options.trigger=="hover"?"mouseenter":"focus",s=this.options.trigger=="hover"?"mouseleave":"blur",this.$element.on(i+"."+this.type,this.options.selector,e.proxy(this.enter,this)),this.$element.on(s+"."+this.type,this.options.selector,e.proxy(this.leave,this))),this.options.selector?this._options=e.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},getOptions:function(t){return t=e.extend({},e.fn[this.type].defaults,t,this.$element.data()),t.delay&&typeof t.delay=="number"&&(t.delay={show:t.delay,hide:t.delay}),t},enter:function(t){var n=e(t.currentTarget)[this.type](this._options).data(this.type);if(!n.options.delay||!n.options.delay.show)return n.show();clearTimeout(this.timeout),n.hoverState="in",this.timeout=setTimeout(function(){n.hoverState=="in"&&n.show()},n.options.delay.show)},leave:function(t){var n=e(t.currentTarget)[this.type](this._options).data(this.type);this.timeout&&clearTimeout(this.timeout);if(!n.options.delay||!n.options.delay.hide)return n.hide();n.hoverState="out",this.timeout=setTimeout(function(){n.hoverState=="out"&&n.hide()},n.options.delay.hide)},show:function(){var e,t,n,r,i,s,o;if(this.hasContent()&&this.enabled){e=this.tip(),this.setContent(),this.options.animation&&e.addClass("fade"),s=typeof this.options.placement=="function"?this.options.placement.call(this,e[0],this.$element[0]):this.options.placement,t=/in/.test(s),e.detach().css({top:0,left:0,display:"block"}).insertAfter(this.$element),n=this.getPosition(t),r=e[0].offsetWidth,i=e[0].offsetHeight;switch(t?s.split(" ")[1]:s){case"bottom":o={top:n.top+n.height,left:n.left+n.width/2-r/2};break;case"top":o={top:n.top-i,left:n.left+n.width/2-r/2};break;case"left":o={top:n.top+n.height/2-i/2,left:n.left-r};break;case"right":o={top:n.top+n.height/2-i/2,left:n.left+n.width}}e.offset(o).addClass(s).addClass("in")}},setContent:function(){var e=this.tip(),t=this.getTitle();e.find(".tooltip-inner")[this.options.html?"html":"text"](t),e.removeClass("fade in top bottom left right")},hide:function(){function r(){var t=setTimeout(function(){n.off(e.support.transition.end).detach()},500);n.one(e.support.transition.end,function(){clearTimeout(t),n.detach()})}var t=this,n=this.tip();return n.removeClass("in"),e.support.transition&&this.$tip.hasClass("fade")?r():n.detach(),this},fixTitle:function(){var e=this.$element;(e.attr("title")||typeof e.attr("data-original-title")!="string")&&e.attr("data-original-title",e.attr("title")||"").removeAttr("title")},hasContent:function(){return this.getTitle()},getPosition:function(t){return e.extend({},t?{top:0,left:0}:this.$element.offset(),{width:this.$element[0].offsetWidth,height:this.$element[0].offsetHeight})},getTitle:function(){var e,t=this.$element,n=this.options;return e=t.attr("data-original-title")||(typeof n.title=="function"?n.title.call(t[0]):n.title),e},tip:function(){return this.$tip=this.$tip||e(this.options.template)},validate:function(){this.$element[0].parentNode||(this.hide(),this.$element=null,this.options=null)},enable:function(){this.enabled=!0},disable:function(){this.enabled=!1},toggleEnabled:function(){this.enabled=!this.enabled},toggle:function(t){var n=e(t.currentTarget)[this.type](this._options).data(this.type);n[n.tip().hasClass("in")?"hide":"show"]()},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}},e.fn.tooltip=function(n){return this.each(function(){var r=e(this),i=r.data("tooltip"),s=typeof n=="object"&&n;i||r.data("tooltip",i=new t(this,s)),typeof n=="string"&&i[n]()})},e.fn.tooltip.Constructor=t,e.fn.tooltip.defaults={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover",title:"",delay:0,html:!1}}(window.jQuery),!function(e){"use strict";var t=function(e,t){this.init("popover",e,t)};t.prototype=e.extend({},e.fn.tooltip.Constructor.prototype,{constructor:t,setContent:function(){var e=this.tip(),t=this.getTitle(),n=this.getContent();e.find(".popover-title")[this.options.html?"html":"text"](t),e.find(".popover-content > *")[this.options.html?"html":"text"](n),e.removeClass("fade top bottom left right in")},hasContent:function(){return this.getTitle()||this.getContent()},getContent:function(){var e,t=this.$element,n=this.options;return e=t.attr("data-content")||(typeof n.content=="function"?n.content.call(t[0]):n.content),e},tip:function(){return this.$tip||(this.$tip=e(this.options.template)),this.$tip},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}}),e.fn.popover=function(n){return this.each(function(){var r=e(this),i=r.data("popover"),s=typeof n=="object"&&n;i||r.data("popover",i=new t(this,s)),typeof n=="string"&&i[n]()})},e.fn.popover.Constructor=t,e.fn.popover.defaults=e.extend({},e.fn.tooltip.defaults,{placement:"right",trigger:"click",content:"",template:'<div class="popover"><div class="arrow"></div><div class="popover-inner"><h3 class="popover-title"></h3><div class="popover-content"><p></p></div></div></div>'})}(window.jQuery),!function(e){"use strict";function t(t,n){var r=e.proxy(this.process,this),i=e(t).is("body")?e(window):e(t),s;this.options=e.extend({},e.fn.scrollspy.defaults,n),this.$scrollElement=i.on("scroll.scroll-spy.data-api",r),this.selector=(this.options.target||(s=e(t).attr("href"))&&s.replace(/.*(?=#[^\s]+$)/,"")||"")+" .nav li > a",this.$body=e("body"),this.refresh(),this.process()}t.prototype={constructor:t,refresh:function(){var t=this,n;this.offsets=e([]),this.targets=e([]),n=this.$body.find(this.selector).map(function(){var t=e(this),n=t.data("target")||t.attr("href"),r=/^#\w/.test(n)&&e(n);return r&&r.length&&[[r.position().top,n]]||null}).sort(function(e,t){return e[0]-t[0]}).each(function(){t.offsets.push(this[0]),t.targets.push(this[1])})},process:function(){var e=this.$scrollElement.scrollTop()+this.options.offset,t=this.$scrollElement[0].scrollHeight||this.$body[0].scrollHeight,n=t-this.$scrollElement.height(),r=this.offsets,i=this.targets,s=this.activeTarget,o;if(e>=n)return s!=(o=i.last()[0])&&this.activate(o);for(o=r.length;o--;)s!=i[o]&&e>=r[o]&&(!r[o+1]||e<=r[o+1])&&this.activate(i[o])},activate:function(t){var n,r;this.activeTarget=t,e(this.selector).parent(".active").removeClass("active"),r=this.selector+'[data-target="'+t+'"],'+this.selector+'[href="'+t+'"]',n=e(r).parent("li").addClass("active"),n.parent(".dropdown-menu").length&&(n=n.closest("li.dropdown").addClass("active")),n.trigger("activate")}},e.fn.scrollspy=function(n){return this.each(function(){var r=e(this),i=r.data("scrollspy"),s=typeof n=="object"&&n;i||r.data("scrollspy",i=new t(this,s)),typeof n=="string"&&i[n]()})},e.fn.scrollspy.Constructor=t,e.fn.scrollspy.defaults={offset:10},e(window).on("load",function(){e('[data-spy="scroll"]').each(function(){var t=e(this);t.scrollspy(t.data())})})}(window.jQuery),!function(e){"use strict";var t=function(t){this.element=e(t)};t.prototype={constructor:t,show:function(){var t=this.element,n=t.closest("ul:not(.dropdown-menu)"),r=t.attr("data-target"),i,s,o;r||(r=t.attr("href"),r=r&&r.replace(/.*(?=#[^\s]*$)/,""));if(t.parent("li").hasClass("active"))return;i=n.find(".active:last a")[0],o=e.Event("show",{relatedTarget:i}),t.trigger(o);if(o.isDefaultPrevented())return;s=e(r),this.activate(t.parent("li"),n),this.activate(s,s.parent(),function(){t.trigger({type:"shown",relatedTarget:i})})},activate:function(t,n,r){function o(){i.removeClass("active").find("> .dropdown-menu > .active").removeClass("active"),t.addClass("active"),s?(t[0].offsetWidth,t.addClass("in")):t.removeClass("fade"),t.parent(".dropdown-menu")&&t.closest("li.dropdown").addClass("active"),r&&r()}var i=n.find("> .active"),s=r&&e.support.transition&&i.hasClass("fade");s?i.one(e.support.transition.end,o):o(),i.removeClass("in")}},e.fn.tab=function(n){return this.each(function(){var r=e(this),i=r.data("tab");i||r.data("tab",i=new t(this)),typeof n=="string"&&i[n]()})},e.fn.tab.Constructor=t,e(document).on("click.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"]',function(t){t.preventDefault(),e(this).tab("show")})}(window.jQuery),!function(e){"use strict";var t=function(t,n){this.$element=e(t),this.options=e.extend({},e.fn.typeahead.defaults,n),this.matcher=this.options.matcher||this.matcher,this.sorter=this.options.sorter||this.sorter,this.highlighter=this.options.highlighter||this.highlighter,this.updater=this.options.updater||this.updater,this.$menu=e(this.options.menu).appendTo("body"),this.source=this.options.source,this.shown=!1,this.listen()};t.prototype={constructor:t,select:function(){var e=this.$menu.find(".active").attr("data-value");return this.$element.val(this.updater(e)).change(),this.hide()},updater:function(e){return e},show:function(){var t=e.extend({},this.$element.offset(),{height:this.$element[0].offsetHeight});return this.$menu.css({top:t.top+t.height,left:t.left}),this.$menu.show(),this.shown=!0,this},hide:function(){return this.$menu.hide(),this.shown=!1,this},lookup:function(t){var n;return this.query=this.$element.val(),!this.query||this.query.length<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("blur",e.proxy(this.blur,this)).on("keypress",e.proxy(this.keypress,this)).on("keyup",e.proxy(this.keyup,this)),this.eventSupported("keydown")&&this.$element.on("keydown",e.proxy(this.keydown,this)),this.$menu.on("click",e.proxy(this.click,this)).on("mouseenter","li",e.proxy(this.mouseenter,this))},eventSupported:function(e){var t=e in this.$element;return t||(this.$element.setAttribute(e,"return;"),t=typeof this.$element[e]=="function"),t},move:function(e){if(!this.shown)return;switch(e.keyCode){case 9:case 13:case 27:e.preventDefault();break;case 38:e.preventDefault(),this.prev();break;case 40:e.preventDefault(),this.next()}e.stopPropagation()},keydown:function(t){this.suppressKeyPressRepeat=!~e.inArray(t.keyCode,[40,38,9,13,27]),this.move(t)},keypress:function(e){if(this.suppressKeyPressRepeat)return;this.move(e)},keyup:function(e){switch(e.keyCode){case 40:case 38:case 16:case 17:case 18:break;case 9:case 13:if(!this.shown)return;this.select();break;case 27:if(!this.shown)return;this.hide();break;default:this.lookup()}e.stopPropagation(),e.preventDefault()},blur:function(e){var t=this;setTimeout(function(){t.hide()},150)},click:function(e){e.stopPropagation(),e.preventDefault(),this.select()},mouseenter:function(t){this.$menu.find(".active").removeClass("active"),e(t.currentTarget).addClass("active")}},e.fn.typeahead=function(n){return this.each(function(){var r=e(this),i=r.data("typeahead"),s=typeof n=="object"&&n;i||r.data("typeahead",i=new t(this,s)),typeof n=="string"&&i[n]()})},e.fn.typeahead.defaults={source:[],items:8,menu:'<ul class="typeahead dropdown-menu"></ul>',item:'<li><a href="#"></a></li>',minLength:1},e.fn.typeahead.Constructor=t,e(document).on("focus.typeahead.data-api",'[data-provide="typeahead"]',function(t){var n=e(this);if(n.data("typeahead"))return;t.preventDefault(),n.typeahead(n.data())})}(window.jQuery),!function(e){"use strict";var t=function(t,n){this.options=e.extend({},e.fn.affix.defaults,n),this.$window=e(window).on("scroll.affix.data-api",e.proxy(this.checkPosition,this)).on("click.affix.data-api",e.proxy(function(){setTimeout(e.proxy(this.checkPosition,this),1)},this)),this.$element=e(t),this.checkPosition()};t.prototype.checkPosition=function(){if(!this.$element.is(":visible"))return;var t=e(document).height(),n=this.$window.scrollTop(),r=this.$element.offset(),i=this.options.offset,s=i.bottom,o=i.top,u="affix affix-top affix-bottom",a;typeof i!="object"&&(s=o=i),typeof o=="function"&&(o=i.top()),typeof s=="function"&&(s=i.bottom()),a=this.unpin!=null&&n+this.unpin<=r.top?!1:s!=null&&r.top+this.$element.height()>=t-s?"bottom":o!=null&&n<=o?"top":!1;if(this.affixed===a)return;this.affixed=a,this.unpin=a=="bottom"?r.top-n:null,this.$element.removeClass(u).addClass("affix"+(a?"-"+a:""))},e.fn.affix=function(n){return this.each(function(){var r=e(this),i=r.data("affix"),s=typeof n=="object"&&n;i||r.data("affix",i=new t(this,s)),typeof n=="string"&&i[n]()})},e.fn.affix.Constructor=t,e.fn.affix.defaults={offset:0},e(window).on("load",function(){e('[data-spy="affix"]').each(function(){var t=e(this),n=t.data();n.offset=n.offset||{},n.offsetBottom&&(n.offset.bottom=n.offsetBottom),n.offsetTop&&(n.offset.top=n.offsetTop),t.affix(n)})})}(window.jQuery);
|
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);
|
@@ -8,8 +8,6 @@
|
|
8
8
|
*
|
9
9
|
*/
|
10
10
|
.datepicker {
|
11
|
-
top: 0;
|
12
|
-
left: 0;
|
13
11
|
padding: 4px;
|
14
12
|
margin-top: 1px;
|
15
13
|
-webkit-border-radius: 4px;
|
@@ -20,7 +18,14 @@
|
|
20
18
|
}*/
|
21
19
|
|
22
20
|
}
|
23
|
-
.datepicker
|
21
|
+
.datepicker-inline {
|
22
|
+
width: 220px;
|
23
|
+
}
|
24
|
+
.datepicker-dropdown {
|
25
|
+
top: 0;
|
26
|
+
left: 0;
|
27
|
+
}
|
28
|
+
.datepicker-dropdown:before {
|
24
29
|
content: '';
|
25
30
|
display: inline-block;
|
26
31
|
border-left: 7px solid transparent;
|
@@ -31,7 +36,7 @@
|
|
31
36
|
top: -7px;
|
32
37
|
left: 6px;
|
33
38
|
}
|
34
|
-
.datepicker:after {
|
39
|
+
.datepicker-dropdown:after {
|
35
40
|
content: '';
|
36
41
|
display: inline-block;
|
37
42
|
border-left: 6px solid transparent;
|
@@ -64,25 +69,30 @@
|
|
64
69
|
-webkit-border-radius: 4px;
|
65
70
|
-moz-border-radius: 4px;
|
66
71
|
border-radius: 4px;
|
72
|
+
border: none;
|
67
73
|
}
|
68
|
-
.datepicker td
|
74
|
+
.table-striped .datepicker table tr td,
|
75
|
+
.table-striped .datepicker table tr th {
|
76
|
+
background-color: transparent;
|
77
|
+
}
|
78
|
+
.datepicker table tr td.day:hover {
|
69
79
|
background: #eeeeee;
|
70
80
|
cursor: pointer;
|
71
81
|
}
|
72
|
-
.datepicker td.old,
|
73
|
-
.datepicker td.new {
|
82
|
+
.datepicker table tr td.old,
|
83
|
+
.datepicker table tr td.new {
|
74
84
|
color: #999999;
|
75
85
|
}
|
76
|
-
.datepicker td.disabled,
|
77
|
-
.datepicker td.disabled:hover {
|
86
|
+
.datepicker table tr td.disabled,
|
87
|
+
.datepicker table tr td.disabled:hover {
|
78
88
|
background: none;
|
79
89
|
color: #999999;
|
80
90
|
cursor: default;
|
81
91
|
}
|
82
|
-
.datepicker td.today,
|
83
|
-
.datepicker td.today:hover,
|
84
|
-
.datepicker td.today.disabled,
|
85
|
-
.datepicker td.today.disabled:hover {
|
92
|
+
.datepicker table tr td.today,
|
93
|
+
.datepicker table tr td.today:hover,
|
94
|
+
.datepicker table tr td.today.disabled,
|
95
|
+
.datepicker table tr td.today.disabled:hover {
|
86
96
|
background-color: #fde19a;
|
87
97
|
background-image: -moz-linear-gradient(top, #fdd49a, #fdf59a);
|
88
98
|
background-image: -ms-linear-gradient(top, #fdd49a, #fdf59a);
|
@@ -94,44 +104,44 @@
|
|
94
104
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdd49a', endColorstr='#fdf59a', GradientType=0);
|
95
105
|
border-color: #fdf59a #fdf59a #fbed50;
|
96
106
|
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
97
|
-
filter: progid:
|
98
|
-
}
|
99
|
-
.datepicker td.today:hover,
|
100
|
-
.datepicker td.today:hover:hover,
|
101
|
-
.datepicker td.today.disabled:hover,
|
102
|
-
.datepicker td.today.disabled:hover:hover,
|
103
|
-
.datepicker td.today:active,
|
104
|
-
.datepicker td.today:hover:active,
|
105
|
-
.datepicker td.today.disabled:active,
|
106
|
-
.datepicker td.today.disabled:hover:active,
|
107
|
-
.datepicker td.today.active,
|
108
|
-
.datepicker td.today:hover.active,
|
109
|
-
.datepicker td.today.disabled.active,
|
110
|
-
.datepicker td.today.disabled:hover.active,
|
111
|
-
.datepicker td.today.disabled,
|
112
|
-
.datepicker td.today:hover.disabled,
|
113
|
-
.datepicker td.today.disabled.disabled,
|
114
|
-
.datepicker td.today.disabled:hover.disabled,
|
115
|
-
.datepicker td.today[disabled],
|
116
|
-
.datepicker td.today:hover[disabled],
|
117
|
-
.datepicker td.today.disabled[disabled],
|
118
|
-
.datepicker td.today.disabled:hover[disabled] {
|
107
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
|
108
|
+
}
|
109
|
+
.datepicker table tr td.today:hover,
|
110
|
+
.datepicker table tr td.today:hover:hover,
|
111
|
+
.datepicker table tr td.today.disabled:hover,
|
112
|
+
.datepicker table tr td.today.disabled:hover:hover,
|
113
|
+
.datepicker table tr td.today:active,
|
114
|
+
.datepicker table tr td.today:hover:active,
|
115
|
+
.datepicker table tr td.today.disabled:active,
|
116
|
+
.datepicker table tr td.today.disabled:hover:active,
|
117
|
+
.datepicker table tr td.today.active,
|
118
|
+
.datepicker table tr td.today:hover.active,
|
119
|
+
.datepicker table tr td.today.disabled.active,
|
120
|
+
.datepicker table tr td.today.disabled:hover.active,
|
121
|
+
.datepicker table tr td.today.disabled,
|
122
|
+
.datepicker table tr td.today:hover.disabled,
|
123
|
+
.datepicker table tr td.today.disabled.disabled,
|
124
|
+
.datepicker table tr td.today.disabled:hover.disabled,
|
125
|
+
.datepicker table tr td.today[disabled],
|
126
|
+
.datepicker table tr td.today:hover[disabled],
|
127
|
+
.datepicker table tr td.today.disabled[disabled],
|
128
|
+
.datepicker table tr td.today.disabled:hover[disabled] {
|
119
129
|
background-color: #fdf59a;
|
120
130
|
}
|
121
|
-
.datepicker td.today:active,
|
122
|
-
.datepicker td.today:hover:active,
|
123
|
-
.datepicker td.today.disabled:active,
|
124
|
-
.datepicker td.today.disabled:hover:active,
|
125
|
-
.datepicker td.today.active,
|
126
|
-
.datepicker td.today:hover.active,
|
127
|
-
.datepicker td.today.disabled.active,
|
128
|
-
.datepicker td.today.disabled:hover.active {
|
131
|
+
.datepicker table tr td.today:active,
|
132
|
+
.datepicker table tr td.today:hover:active,
|
133
|
+
.datepicker table tr td.today.disabled:active,
|
134
|
+
.datepicker table tr td.today.disabled:hover:active,
|
135
|
+
.datepicker table tr td.today.active,
|
136
|
+
.datepicker table tr td.today:hover.active,
|
137
|
+
.datepicker table tr td.today.disabled.active,
|
138
|
+
.datepicker table tr td.today.disabled:hover.active {
|
129
139
|
background-color: #fbf069 \9;
|
130
140
|
}
|
131
|
-
.datepicker td.active,
|
132
|
-
.datepicker td.active:hover,
|
133
|
-
.datepicker td.active.disabled,
|
134
|
-
.datepicker td.active.disabled:hover {
|
141
|
+
.datepicker table tr td.active,
|
142
|
+
.datepicker table tr td.active:hover,
|
143
|
+
.datepicker table tr td.active.disabled,
|
144
|
+
.datepicker table tr td.active.disabled:hover {
|
135
145
|
background-color: #006dcc;
|
136
146
|
background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
|
137
147
|
background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
|
@@ -143,43 +153,43 @@
|
|
143
153
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
|
144
154
|
border-color: #0044cc #0044cc #002a80;
|
145
155
|
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
146
|
-
filter: progid:
|
156
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
|
147
157
|
color: #fff;
|
148
158
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
149
159
|
}
|
150
|
-
.datepicker td.active:hover,
|
151
|
-
.datepicker td.active:hover:hover,
|
152
|
-
.datepicker td.active.disabled:hover,
|
153
|
-
.datepicker td.active.disabled:hover:hover,
|
154
|
-
.datepicker td.active:active,
|
155
|
-
.datepicker td.active:hover:active,
|
156
|
-
.datepicker td.active.disabled:active,
|
157
|
-
.datepicker td.active.disabled:hover:active,
|
158
|
-
.datepicker td.active.active,
|
159
|
-
.datepicker td.active:hover.active,
|
160
|
-
.datepicker td.active.disabled.active,
|
161
|
-
.datepicker td.active.disabled:hover.active,
|
162
|
-
.datepicker td.active.disabled,
|
163
|
-
.datepicker td.active:hover.disabled,
|
164
|
-
.datepicker td.active.disabled.disabled,
|
165
|
-
.datepicker td.active.disabled:hover.disabled,
|
166
|
-
.datepicker td.active[disabled],
|
167
|
-
.datepicker td.active:hover[disabled],
|
168
|
-
.datepicker td.active.disabled[disabled],
|
169
|
-
.datepicker td.active.disabled:hover[disabled] {
|
160
|
+
.datepicker table tr td.active:hover,
|
161
|
+
.datepicker table tr td.active:hover:hover,
|
162
|
+
.datepicker table tr td.active.disabled:hover,
|
163
|
+
.datepicker table tr td.active.disabled:hover:hover,
|
164
|
+
.datepicker table tr td.active:active,
|
165
|
+
.datepicker table tr td.active:hover:active,
|
166
|
+
.datepicker table tr td.active.disabled:active,
|
167
|
+
.datepicker table tr td.active.disabled:hover:active,
|
168
|
+
.datepicker table tr td.active.active,
|
169
|
+
.datepicker table tr td.active:hover.active,
|
170
|
+
.datepicker table tr td.active.disabled.active,
|
171
|
+
.datepicker table tr td.active.disabled:hover.active,
|
172
|
+
.datepicker table tr td.active.disabled,
|
173
|
+
.datepicker table tr td.active:hover.disabled,
|
174
|
+
.datepicker table tr td.active.disabled.disabled,
|
175
|
+
.datepicker table tr td.active.disabled:hover.disabled,
|
176
|
+
.datepicker table tr td.active[disabled],
|
177
|
+
.datepicker table tr td.active:hover[disabled],
|
178
|
+
.datepicker table tr td.active.disabled[disabled],
|
179
|
+
.datepicker table tr td.active.disabled:hover[disabled] {
|
170
180
|
background-color: #0044cc;
|
171
181
|
}
|
172
|
-
.datepicker td.active:active,
|
173
|
-
.datepicker td.active:hover:active,
|
174
|
-
.datepicker td.active.disabled:active,
|
175
|
-
.datepicker td.active.disabled:hover:active,
|
176
|
-
.datepicker td.active.active,
|
177
|
-
.datepicker td.active:hover.active,
|
178
|
-
.datepicker td.active.disabled.active,
|
179
|
-
.datepicker td.active.disabled:hover.active {
|
182
|
+
.datepicker table tr td.active:active,
|
183
|
+
.datepicker table tr td.active:hover:active,
|
184
|
+
.datepicker table tr td.active.disabled:active,
|
185
|
+
.datepicker table tr td.active.disabled:hover:active,
|
186
|
+
.datepicker table tr td.active.active,
|
187
|
+
.datepicker table tr td.active:hover.active,
|
188
|
+
.datepicker table tr td.active.disabled.active,
|
189
|
+
.datepicker table tr td.active.disabled:hover.active {
|
180
190
|
background-color: #003399 \9;
|
181
191
|
}
|
182
|
-
.datepicker td span {
|
192
|
+
.datepicker table tr td span {
|
183
193
|
display: block;
|
184
194
|
width: 23%;
|
185
195
|
height: 54px;
|
@@ -191,19 +201,19 @@
|
|
191
201
|
-moz-border-radius: 4px;
|
192
202
|
border-radius: 4px;
|
193
203
|
}
|
194
|
-
.datepicker td span:hover {
|
204
|
+
.datepicker table tr td span:hover {
|
195
205
|
background: #eeeeee;
|
196
206
|
}
|
197
|
-
.datepicker td span.disabled,
|
198
|
-
.datepicker td span.disabled:hover {
|
207
|
+
.datepicker table tr td span.disabled,
|
208
|
+
.datepicker table tr td span.disabled:hover {
|
199
209
|
background: none;
|
200
210
|
color: #999999;
|
201
211
|
cursor: default;
|
202
212
|
}
|
203
|
-
.datepicker td span.active,
|
204
|
-
.datepicker td span.active:hover,
|
205
|
-
.datepicker td span.active.disabled,
|
206
|
-
.datepicker td span.active.disabled:hover {
|
213
|
+
.datepicker table tr td span.active,
|
214
|
+
.datepicker table tr td span.active:hover,
|
215
|
+
.datepicker table tr td span.active.disabled,
|
216
|
+
.datepicker table tr td span.active.disabled:hover {
|
207
217
|
background-color: #006dcc;
|
208
218
|
background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
|
209
219
|
background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
|
@@ -215,43 +225,43 @@
|
|
215
225
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
|
216
226
|
border-color: #0044cc #0044cc #002a80;
|
217
227
|
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
218
|
-
filter: progid:
|
228
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
|
219
229
|
color: #fff;
|
220
230
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
221
231
|
}
|
222
|
-
.datepicker td span.active:hover,
|
223
|
-
.datepicker td span.active:hover:hover,
|
224
|
-
.datepicker td span.active.disabled:hover,
|
225
|
-
.datepicker td span.active.disabled:hover:hover,
|
226
|
-
.datepicker td span.active:active,
|
227
|
-
.datepicker td span.active:hover:active,
|
228
|
-
.datepicker td span.active.disabled:active,
|
229
|
-
.datepicker td span.active.disabled:hover:active,
|
230
|
-
.datepicker td span.active.active,
|
231
|
-
.datepicker td span.active:hover.active,
|
232
|
-
.datepicker td span.active.disabled.active,
|
233
|
-
.datepicker td span.active.disabled:hover.active,
|
234
|
-
.datepicker td span.active.disabled,
|
235
|
-
.datepicker td span.active:hover.disabled,
|
236
|
-
.datepicker td span.active.disabled.disabled,
|
237
|
-
.datepicker td span.active.disabled:hover.disabled,
|
238
|
-
.datepicker td span.active[disabled],
|
239
|
-
.datepicker td span.active:hover[disabled],
|
240
|
-
.datepicker td span.active.disabled[disabled],
|
241
|
-
.datepicker td span.active.disabled:hover[disabled] {
|
232
|
+
.datepicker table tr td span.active:hover,
|
233
|
+
.datepicker table tr td span.active:hover:hover,
|
234
|
+
.datepicker table tr td span.active.disabled:hover,
|
235
|
+
.datepicker table tr td span.active.disabled:hover:hover,
|
236
|
+
.datepicker table tr td span.active:active,
|
237
|
+
.datepicker table tr td span.active:hover:active,
|
238
|
+
.datepicker table tr td span.active.disabled:active,
|
239
|
+
.datepicker table tr td span.active.disabled:hover:active,
|
240
|
+
.datepicker table tr td span.active.active,
|
241
|
+
.datepicker table tr td span.active:hover.active,
|
242
|
+
.datepicker table tr td span.active.disabled.active,
|
243
|
+
.datepicker table tr td span.active.disabled:hover.active,
|
244
|
+
.datepicker table tr td span.active.disabled,
|
245
|
+
.datepicker table tr td span.active:hover.disabled,
|
246
|
+
.datepicker table tr td span.active.disabled.disabled,
|
247
|
+
.datepicker table tr td span.active.disabled:hover.disabled,
|
248
|
+
.datepicker table tr td span.active[disabled],
|
249
|
+
.datepicker table tr td span.active:hover[disabled],
|
250
|
+
.datepicker table tr td span.active.disabled[disabled],
|
251
|
+
.datepicker table tr td span.active.disabled:hover[disabled] {
|
242
252
|
background-color: #0044cc;
|
243
253
|
}
|
244
|
-
.datepicker td span.active:active,
|
245
|
-
.datepicker td span.active:hover:active,
|
246
|
-
.datepicker td span.active.disabled:active,
|
247
|
-
.datepicker td span.active.disabled:hover:active,
|
248
|
-
.datepicker td span.active.active,
|
249
|
-
.datepicker td span.active:hover.active,
|
250
|
-
.datepicker td span.active.disabled.active,
|
251
|
-
.datepicker td span.active.disabled:hover.active {
|
254
|
+
.datepicker table tr td span.active:active,
|
255
|
+
.datepicker table tr td span.active:hover:active,
|
256
|
+
.datepicker table tr td span.active.disabled:active,
|
257
|
+
.datepicker table tr td span.active.disabled:hover:active,
|
258
|
+
.datepicker table tr td span.active.active,
|
259
|
+
.datepicker table tr td span.active:hover.active,
|
260
|
+
.datepicker table tr td span.active.disabled.active,
|
261
|
+
.datepicker table tr td span.active.disabled:hover.active {
|
252
262
|
background-color: #003399 \9;
|
253
263
|
}
|
254
|
-
.datepicker td span.old {
|
264
|
+
.datepicker table tr td span.old {
|
255
265
|
color: #999999;
|
256
266
|
}
|
257
267
|
.datepicker th.switch {
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap Responsive v2.2.
|
2
|
+
* Bootstrap Responsive v2.2.2
|
3
3
|
*
|
4
4
|
* Copyright 2012 Twitter, Inc
|
5
5
|
* Licensed under the Apache License v2.0
|
@@ -8,6 +8,10 @@
|
|
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
|
+
|
11
15
|
.clearfix {
|
12
16
|
*zoom: 1;
|
13
17
|
}
|
@@ -1,9 +1,9 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap Responsive v2.2.
|
2
|
+
* Bootstrap Responsive v2.2.2
|
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
|
-
*/.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
|
+
*/@-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}}
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap v2.2.
|
2
|
+
* Bootstrap v2.2.2
|
3
3
|
*
|
4
4
|
* Copyright 2012 Twitter, Inc
|
5
5
|
* Licensed under the Apache License v2.0
|
@@ -109,6 +109,17 @@ input[type="submit"] {
|
|
109
109
|
-webkit-appearance: button;
|
110
110
|
}
|
111
111
|
|
112
|
+
label,
|
113
|
+
select,
|
114
|
+
button,
|
115
|
+
input[type="button"],
|
116
|
+
input[type="reset"],
|
117
|
+
input[type="submit"],
|
118
|
+
input[type="radio"],
|
119
|
+
input[type="checkbox"] {
|
120
|
+
cursor: pointer;
|
121
|
+
}
|
122
|
+
|
112
123
|
input[type="search"] {
|
113
124
|
-webkit-box-sizing: content-box;
|
114
125
|
-moz-box-sizing: content-box;
|
@@ -126,6 +137,58 @@ textarea {
|
|
126
137
|
vertical-align: top;
|
127
138
|
}
|
128
139
|
|
140
|
+
@media print {
|
141
|
+
* {
|
142
|
+
color: #000 !important;
|
143
|
+
text-shadow: none !important;
|
144
|
+
background: transparent !important;
|
145
|
+
box-shadow: none !important;
|
146
|
+
}
|
147
|
+
a,
|
148
|
+
a:visited {
|
149
|
+
text-decoration: underline;
|
150
|
+
}
|
151
|
+
a[href]:after {
|
152
|
+
content: " (" attr(href) ")";
|
153
|
+
}
|
154
|
+
abbr[title]:after {
|
155
|
+
content: " (" attr(title) ")";
|
156
|
+
}
|
157
|
+
.ir a:after,
|
158
|
+
a[href^="javascript:"]:after,
|
159
|
+
a[href^="#"]:after {
|
160
|
+
content: "";
|
161
|
+
}
|
162
|
+
pre,
|
163
|
+
blockquote {
|
164
|
+
border: 1px solid #999;
|
165
|
+
page-break-inside: avoid;
|
166
|
+
}
|
167
|
+
thead {
|
168
|
+
display: table-header-group;
|
169
|
+
}
|
170
|
+
tr,
|
171
|
+
img {
|
172
|
+
page-break-inside: avoid;
|
173
|
+
}
|
174
|
+
img {
|
175
|
+
max-width: 100% !important;
|
176
|
+
}
|
177
|
+
@page {
|
178
|
+
margin: 0.5cm;
|
179
|
+
}
|
180
|
+
p,
|
181
|
+
h2,
|
182
|
+
h3 {
|
183
|
+
orphans: 3;
|
184
|
+
widows: 3;
|
185
|
+
}
|
186
|
+
h2,
|
187
|
+
h3 {
|
188
|
+
page-break-after: avoid;
|
189
|
+
}
|
190
|
+
}
|
191
|
+
|
129
192
|
.clearfix {
|
130
193
|
*zoom: 1;
|
131
194
|
}
|
@@ -615,6 +678,10 @@ cite {
|
|
615
678
|
color: #999999;
|
616
679
|
}
|
617
680
|
|
681
|
+
a.muted:hover {
|
682
|
+
color: #808080;
|
683
|
+
}
|
684
|
+
|
618
685
|
.text-warning {
|
619
686
|
color: #c09853;
|
620
687
|
}
|
@@ -747,6 +814,19 @@ ol.unstyled {
|
|
747
814
|
list-style: none;
|
748
815
|
}
|
749
816
|
|
817
|
+
ul.inline,
|
818
|
+
ol.inline {
|
819
|
+
margin-left: 0;
|
820
|
+
list-style: none;
|
821
|
+
}
|
822
|
+
|
823
|
+
ul.inline > li,
|
824
|
+
ol.inline > li {
|
825
|
+
display: inline-block;
|
826
|
+
padding-right: 5px;
|
827
|
+
padding-left: 5px;
|
828
|
+
}
|
829
|
+
|
750
830
|
dl {
|
751
831
|
margin-bottom: 20px;
|
752
832
|
}
|
@@ -883,6 +963,7 @@ pre {
|
|
883
963
|
code {
|
884
964
|
padding: 2px 4px;
|
885
965
|
color: #d14;
|
966
|
+
white-space: nowrap;
|
886
967
|
background-color: #f7f7f9;
|
887
968
|
border: 1px solid #e1e1e8;
|
888
969
|
}
|
@@ -912,6 +993,8 @@ pre.prettyprint {
|
|
912
993
|
pre code {
|
913
994
|
padding: 0;
|
914
995
|
color: inherit;
|
996
|
+
white-space: pre;
|
997
|
+
white-space: pre-wrap;
|
915
998
|
background-color: transparent;
|
916
999
|
border: 0;
|
917
1000
|
}
|
@@ -1069,7 +1152,6 @@ input[type="checkbox"] {
|
|
1069
1152
|
margin-top: 1px \9;
|
1070
1153
|
*margin-top: 0;
|
1071
1154
|
line-height: normal;
|
1072
|
-
cursor: pointer;
|
1073
1155
|
}
|
1074
1156
|
|
1075
1157
|
input[type="file"],
|
@@ -1352,7 +1434,7 @@ input[type="checkbox"][readonly] {
|
|
1352
1434
|
background-color: transparent;
|
1353
1435
|
}
|
1354
1436
|
|
1355
|
-
.control-group.warning
|
1437
|
+
.control-group.warning .control-label,
|
1356
1438
|
.control-group.warning .help-block,
|
1357
1439
|
.control-group.warning .help-inline {
|
1358
1440
|
color: #c09853;
|
@@ -1391,7 +1473,7 @@ input[type="checkbox"][readonly] {
|
|
1391
1473
|
border-color: #c09853;
|
1392
1474
|
}
|
1393
1475
|
|
1394
|
-
.control-group.error
|
1476
|
+
.control-group.error .control-label,
|
1395
1477
|
.control-group.error .help-block,
|
1396
1478
|
.control-group.error .help-inline {
|
1397
1479
|
color: #b94a48;
|
@@ -1430,7 +1512,7 @@ input[type="checkbox"][readonly] {
|
|
1430
1512
|
border-color: #b94a48;
|
1431
1513
|
}
|
1432
1514
|
|
1433
|
-
.control-group.success
|
1515
|
+
.control-group.success .control-label,
|
1434
1516
|
.control-group.success .help-block,
|
1435
1517
|
.control-group.success .help-inline {
|
1436
1518
|
color: #468847;
|
@@ -1469,7 +1551,7 @@ input[type="checkbox"][readonly] {
|
|
1469
1551
|
border-color: #468847;
|
1470
1552
|
}
|
1471
1553
|
|
1472
|
-
.control-group.info
|
1554
|
+
.control-group.info .control-label,
|
1473
1555
|
.control-group.info .help-block,
|
1474
1556
|
.control-group.info .help-inline {
|
1475
1557
|
color: #3a87ad;
|
@@ -1508,16 +1590,16 @@ input[type="checkbox"][readonly] {
|
|
1508
1590
|
border-color: #3a87ad;
|
1509
1591
|
}
|
1510
1592
|
|
1511
|
-
input:focus:
|
1512
|
-
textarea:focus:
|
1513
|
-
select:focus:
|
1593
|
+
input:focus:invalid,
|
1594
|
+
textarea:focus:invalid,
|
1595
|
+
select:focus:invalid {
|
1514
1596
|
color: #b94a48;
|
1515
1597
|
border-color: #ee5f5b;
|
1516
1598
|
}
|
1517
1599
|
|
1518
|
-
input:focus:
|
1519
|
-
textarea:focus:
|
1520
|
-
select:focus:
|
1600
|
+
input:focus:invalid:focus,
|
1601
|
+
textarea:focus:invalid:focus,
|
1602
|
+
select:focus:invalid:focus {
|
1521
1603
|
border-color: #e9322d;
|
1522
1604
|
-webkit-box-shadow: 0 0 6px #f8b9b7;
|
1523
1605
|
-moz-box-shadow: 0 0 6px #f8b9b7;
|
@@ -1623,7 +1705,9 @@ select:focus:required:invalid:focus {
|
|
1623
1705
|
.input-append .add-on,
|
1624
1706
|
.input-prepend .add-on,
|
1625
1707
|
.input-append .btn,
|
1626
|
-
.input-prepend .btn
|
1708
|
+
.input-prepend .btn,
|
1709
|
+
.input-append .btn-group > .dropdown-toggle,
|
1710
|
+
.input-prepend .btn-group > .dropdown-toggle {
|
1627
1711
|
vertical-align: top;
|
1628
1712
|
-webkit-border-radius: 0;
|
1629
1713
|
-moz-border-radius: 0;
|
@@ -1656,9 +1740,9 @@ select:focus:required:invalid:focus {
|
|
1656
1740
|
border-radius: 4px 0 0 4px;
|
1657
1741
|
}
|
1658
1742
|
|
1659
|
-
.input-append input + .btn-group .btn,
|
1660
|
-
.input-append select + .btn-group .btn,
|
1661
|
-
.input-append .uneditable-input + .btn-group .btn {
|
1743
|
+
.input-append input + .btn-group .btn:last-child,
|
1744
|
+
.input-append select + .btn-group .btn:last-child,
|
1745
|
+
.input-append .uneditable-input + .btn-group .btn:last-child {
|
1662
1746
|
-webkit-border-radius: 0 4px 4px 0;
|
1663
1747
|
-moz-border-radius: 0 4px 4px 0;
|
1664
1748
|
border-radius: 0 4px 4px 0;
|
@@ -1671,7 +1755,8 @@ select:focus:required:invalid:focus {
|
|
1671
1755
|
}
|
1672
1756
|
|
1673
1757
|
.input-append .add-on:last-child,
|
1674
|
-
.input-append .btn:last-child
|
1758
|
+
.input-append .btn:last-child,
|
1759
|
+
.input-append .btn-group:last-child > .dropdown-toggle {
|
1675
1760
|
-webkit-border-radius: 0 4px 4px 0;
|
1676
1761
|
-moz-border-radius: 0 4px 4px 0;
|
1677
1762
|
border-radius: 0 4px 4px 0;
|
@@ -1874,7 +1959,10 @@ legend + .control-group {
|
|
1874
1959
|
|
1875
1960
|
.form-horizontal input + .help-block,
|
1876
1961
|
.form-horizontal select + .help-block,
|
1877
|
-
.form-horizontal textarea + .help-block
|
1962
|
+
.form-horizontal textarea + .help-block,
|
1963
|
+
.form-horizontal .uneditable-input + .help-block,
|
1964
|
+
.form-horizontal .input-prepend + .help-block,
|
1965
|
+
.form-horizontal .input-append + .help-block {
|
1878
1966
|
margin-top: 10px;
|
1879
1967
|
}
|
1880
1968
|
|
@@ -1924,6 +2012,10 @@ table {
|
|
1924
2012
|
border-top: 2px solid #dddddd;
|
1925
2013
|
}
|
1926
2014
|
|
2015
|
+
.table .table {
|
2016
|
+
background-color: #ffffff;
|
2017
|
+
}
|
2018
|
+
|
1927
2019
|
.table-condensed th,
|
1928
2020
|
.table-condensed td {
|
1929
2021
|
padding: 4px 5px;
|
@@ -1956,39 +2048,48 @@ table {
|
|
1956
2048
|
border-top: 0;
|
1957
2049
|
}
|
1958
2050
|
|
1959
|
-
.table-bordered thead:first-child tr:first-child th:first-child,
|
1960
|
-
.table-bordered tbody:first-child tr:first-child td:first-child {
|
2051
|
+
.table-bordered thead:first-child tr:first-child > th:first-child,
|
2052
|
+
.table-bordered tbody:first-child tr:first-child > td:first-child {
|
1961
2053
|
-webkit-border-top-left-radius: 4px;
|
1962
2054
|
border-top-left-radius: 4px;
|
1963
2055
|
-moz-border-radius-topleft: 4px;
|
1964
2056
|
}
|
1965
2057
|
|
1966
|
-
.table-bordered thead:first-child tr:first-child th:last-child,
|
1967
|
-
.table-bordered tbody:first-child tr:first-child td:last-child {
|
2058
|
+
.table-bordered thead:first-child tr:first-child > th:last-child,
|
2059
|
+
.table-bordered tbody:first-child tr:first-child > td:last-child {
|
1968
2060
|
-webkit-border-top-right-radius: 4px;
|
1969
2061
|
border-top-right-radius: 4px;
|
1970
2062
|
-moz-border-radius-topright: 4px;
|
1971
2063
|
}
|
1972
2064
|
|
1973
|
-
.table-bordered thead:last-child tr:last-child th:first-child,
|
1974
|
-
.table-bordered tbody:last-child tr:last-child td:first-child,
|
1975
|
-
.table-bordered tfoot:last-child tr:last-child td:first-child {
|
1976
|
-
-webkit-border-radius: 0 0 0 4px;
|
1977
|
-
-moz-border-radius: 0 0 0 4px;
|
1978
|
-
border-radius: 0 0 0 4px;
|
2065
|
+
.table-bordered thead:last-child tr:last-child > th:first-child,
|
2066
|
+
.table-bordered tbody:last-child tr:last-child > td:first-child,
|
2067
|
+
.table-bordered tfoot:last-child tr:last-child > td:first-child {
|
1979
2068
|
-webkit-border-bottom-left-radius: 4px;
|
1980
2069
|
border-bottom-left-radius: 4px;
|
1981
2070
|
-moz-border-radius-bottomleft: 4px;
|
1982
2071
|
}
|
1983
2072
|
|
1984
|
-
.table-bordered thead:last-child tr:last-child th:last-child,
|
1985
|
-
.table-bordered tbody:last-child tr:last-child td:last-child,
|
1986
|
-
.table-bordered tfoot:last-child tr:last-child td:last-child {
|
2073
|
+
.table-bordered thead:last-child tr:last-child > th:last-child,
|
2074
|
+
.table-bordered tbody:last-child tr:last-child > td:last-child,
|
2075
|
+
.table-bordered tfoot:last-child tr:last-child > td:last-child {
|
1987
2076
|
-webkit-border-bottom-right-radius: 4px;
|
1988
2077
|
border-bottom-right-radius: 4px;
|
1989
2078
|
-moz-border-radius-bottomright: 4px;
|
1990
2079
|
}
|
1991
2080
|
|
2081
|
+
.table-bordered tfoot + tbody:last-child tr:last-child td:first-child {
|
2082
|
+
-webkit-border-bottom-left-radius: 0;
|
2083
|
+
border-bottom-left-radius: 0;
|
2084
|
+
-moz-border-radius-bottomleft: 0;
|
2085
|
+
}
|
2086
|
+
|
2087
|
+
.table-bordered tfoot + tbody:last-child tr:last-child td:last-child {
|
2088
|
+
-webkit-border-bottom-right-radius: 0;
|
2089
|
+
border-bottom-right-radius: 0;
|
2090
|
+
-moz-border-radius-bottomright: 0;
|
2091
|
+
}
|
2092
|
+
|
1992
2093
|
.table-bordered caption + thead tr:first-child th:first-child,
|
1993
2094
|
.table-bordered caption + tbody tr:first-child td:first-child,
|
1994
2095
|
.table-bordered colgroup + thead tr:first-child th:first-child,
|
@@ -2007,8 +2108,8 @@ table {
|
|
2007
2108
|
-moz-border-radius-topright: 4px;
|
2008
2109
|
}
|
2009
2110
|
|
2010
|
-
.table-striped tbody tr:nth-child(odd) td,
|
2011
|
-
.table-striped tbody tr:nth-child(odd) th {
|
2111
|
+
.table-striped tbody > tr:nth-child(odd) > td,
|
2112
|
+
.table-striped tbody > tr:nth-child(odd) > th {
|
2012
2113
|
background-color: #f9f9f9;
|
2013
2114
|
}
|
2014
2115
|
|
@@ -2835,7 +2936,7 @@ table th[class*="span"],
|
|
2835
2936
|
|
2836
2937
|
.dropdown-menu .active > a,
|
2837
2938
|
.dropdown-menu .active > a:hover {
|
2838
|
-
color: #
|
2939
|
+
color: #ffffff;
|
2839
2940
|
text-decoration: none;
|
2840
2941
|
background-color: #0081c2;
|
2841
2942
|
background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
|
@@ -2858,6 +2959,7 @@ table th[class*="span"],
|
|
2858
2959
|
cursor: default;
|
2859
2960
|
background-color: transparent;
|
2860
2961
|
background-image: none;
|
2962
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
|
2861
2963
|
}
|
2862
2964
|
|
2863
2965
|
.open {
|
@@ -2951,6 +3053,7 @@ table th[class*="span"],
|
|
2951
3053
|
}
|
2952
3054
|
|
2953
3055
|
.typeahead {
|
3056
|
+
z-index: 1051;
|
2954
3057
|
margin-top: 2px;
|
2955
3058
|
-webkit-border-radius: 4px;
|
2956
3059
|
-moz-border-radius: 4px;
|
@@ -3051,7 +3154,6 @@ button.close {
|
|
3051
3154
|
*margin-left: .3em;
|
3052
3155
|
font-size: 14px;
|
3053
3156
|
line-height: 20px;
|
3054
|
-
*line-height: 20px;
|
3055
3157
|
color: #333333;
|
3056
3158
|
text-align: center;
|
3057
3159
|
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
|
@@ -3103,10 +3205,6 @@ button.close {
|
|
3103
3205
|
.btn:hover {
|
3104
3206
|
color: #333333;
|
3105
3207
|
text-decoration: none;
|
3106
|
-
background-color: #e6e6e6;
|
3107
|
-
*background-color: #d9d9d9;
|
3108
|
-
/* Buttons in IE7 don't get borders, so darken on hover */
|
3109
|
-
|
3110
3208
|
background-position: 0 -15px;
|
3111
3209
|
-webkit-transition: background-position 0.1s linear;
|
3112
3210
|
-moz-transition: background-position 0.1s linear;
|
@@ -3122,8 +3220,6 @@ button.close {
|
|
3122
3220
|
|
3123
3221
|
.btn.active,
|
3124
3222
|
.btn:active {
|
3125
|
-
background-color: #e6e6e6;
|
3126
|
-
background-color: #d9d9d9 \9;
|
3127
3223
|
background-image: none;
|
3128
3224
|
outline: 0;
|
3129
3225
|
-webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
|
@@ -3134,7 +3230,6 @@ button.close {
|
|
3134
3230
|
.btn.disabled,
|
3135
3231
|
.btn[disabled] {
|
3136
3232
|
cursor: default;
|
3137
|
-
background-color: #e6e6e6;
|
3138
3233
|
background-image: none;
|
3139
3234
|
opacity: 0.65;
|
3140
3235
|
filter: alpha(opacity=65);
|
@@ -3153,7 +3248,7 @@ button.close {
|
|
3153
3248
|
|
3154
3249
|
.btn-large [class^="icon-"],
|
3155
3250
|
.btn-large [class*=" icon-"] {
|
3156
|
-
margin-top:
|
3251
|
+
margin-top: 4px;
|
3157
3252
|
}
|
3158
3253
|
|
3159
3254
|
.btn-small {
|
@@ -3169,8 +3264,13 @@ button.close {
|
|
3169
3264
|
margin-top: 0;
|
3170
3265
|
}
|
3171
3266
|
|
3267
|
+
.btn-mini [class^="icon-"],
|
3268
|
+
.btn-mini [class*=" icon-"] {
|
3269
|
+
margin-top: -1px;
|
3270
|
+
}
|
3271
|
+
|
3172
3272
|
.btn-mini {
|
3173
|
-
padding:
|
3273
|
+
padding: 0 6px;
|
3174
3274
|
font-size: 10.5px;
|
3175
3275
|
-webkit-border-radius: 3px;
|
3176
3276
|
-moz-border-radius: 3px;
|
@@ -3488,9 +3588,9 @@ input[type="submit"].btn.btn-mini {
|
|
3488
3588
|
font-size: 0;
|
3489
3589
|
}
|
3490
3590
|
|
3491
|
-
.btn-toolbar .btn + .btn,
|
3492
|
-
.btn-toolbar .btn-group + .btn,
|
3493
|
-
.btn-toolbar .btn + .btn-group {
|
3591
|
+
.btn-toolbar > .btn + .btn,
|
3592
|
+
.btn-toolbar > .btn-group + .btn,
|
3593
|
+
.btn-toolbar > .btn + .btn-group {
|
3494
3594
|
margin-left: 5px;
|
3495
3595
|
}
|
3496
3596
|
|
@@ -3506,20 +3606,21 @@ input[type="submit"].btn.btn-mini {
|
|
3506
3606
|
}
|
3507
3607
|
|
3508
3608
|
.btn-group > .btn,
|
3509
|
-
.btn-group > .dropdown-menu
|
3609
|
+
.btn-group > .dropdown-menu,
|
3610
|
+
.btn-group > .popover {
|
3510
3611
|
font-size: 14px;
|
3511
3612
|
}
|
3512
3613
|
|
3513
3614
|
.btn-group > .btn-mini {
|
3514
|
-
font-size:
|
3615
|
+
font-size: 10.5px;
|
3515
3616
|
}
|
3516
3617
|
|
3517
3618
|
.btn-group > .btn-small {
|
3518
|
-
font-size:
|
3619
|
+
font-size: 11.9px;
|
3519
3620
|
}
|
3520
3621
|
|
3521
3622
|
.btn-group > .btn-large {
|
3522
|
-
font-size:
|
3623
|
+
font-size: 17.5px;
|
3523
3624
|
}
|
3524
3625
|
|
3525
3626
|
.btn-group > .btn:first-child {
|
@@ -3677,39 +3778,39 @@ input[type="submit"].btn.btn-mini {
|
|
3677
3778
|
*zoom: 1;
|
3678
3779
|
}
|
3679
3780
|
|
3680
|
-
.btn-group-vertical .btn {
|
3781
|
+
.btn-group-vertical > .btn {
|
3681
3782
|
display: block;
|
3682
3783
|
float: none;
|
3683
|
-
width: 100%;
|
3784
|
+
max-width: 100%;
|
3684
3785
|
-webkit-border-radius: 0;
|
3685
3786
|
-moz-border-radius: 0;
|
3686
3787
|
border-radius: 0;
|
3687
3788
|
}
|
3688
3789
|
|
3689
|
-
.btn-group-vertical .btn + .btn {
|
3790
|
+
.btn-group-vertical > .btn + .btn {
|
3690
3791
|
margin-top: -1px;
|
3691
3792
|
margin-left: 0;
|
3692
3793
|
}
|
3693
3794
|
|
3694
|
-
.btn-group-vertical .btn:first-child {
|
3795
|
+
.btn-group-vertical > .btn:first-child {
|
3695
3796
|
-webkit-border-radius: 4px 4px 0 0;
|
3696
3797
|
-moz-border-radius: 4px 4px 0 0;
|
3697
3798
|
border-radius: 4px 4px 0 0;
|
3698
3799
|
}
|
3699
3800
|
|
3700
|
-
.btn-group-vertical .btn:last-child {
|
3801
|
+
.btn-group-vertical > .btn:last-child {
|
3701
3802
|
-webkit-border-radius: 0 0 4px 4px;
|
3702
3803
|
-moz-border-radius: 0 0 4px 4px;
|
3703
3804
|
border-radius: 0 0 4px 4px;
|
3704
3805
|
}
|
3705
3806
|
|
3706
|
-
.btn-group-vertical .btn-large:first-child {
|
3807
|
+
.btn-group-vertical > .btn-large:first-child {
|
3707
3808
|
-webkit-border-radius: 6px 6px 0 0;
|
3708
3809
|
-moz-border-radius: 6px 6px 0 0;
|
3709
3810
|
border-radius: 6px 6px 0 0;
|
3710
3811
|
}
|
3711
3812
|
|
3712
|
-
.btn-group-vertical .btn-large:last-child {
|
3813
|
+
.btn-group-vertical > .btn-large:last-child {
|
3713
3814
|
-webkit-border-radius: 0 0 6px 6px;
|
3714
3815
|
-moz-border-radius: 0 0 6px 6px;
|
3715
3816
|
border-radius: 0 0 6px 6px;
|
@@ -3718,7 +3819,6 @@ input[type="submit"].btn.btn-mini {
|
|
3718
3819
|
.alert {
|
3719
3820
|
padding: 8px 35px 8px 14px;
|
3720
3821
|
margin-bottom: 20px;
|
3721
|
-
color: #c09853;
|
3722
3822
|
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
|
3723
3823
|
background-color: #fcf8e3;
|
3724
3824
|
border: 1px solid #fbeed5;
|
@@ -3727,6 +3827,11 @@ input[type="submit"].btn.btn-mini {
|
|
3727
3827
|
border-radius: 4px;
|
3728
3828
|
}
|
3729
3829
|
|
3830
|
+
.alert,
|
3831
|
+
.alert h4 {
|
3832
|
+
color: #c09853;
|
3833
|
+
}
|
3834
|
+
|
3730
3835
|
.alert h4 {
|
3731
3836
|
margin: 0;
|
3732
3837
|
}
|
@@ -3744,6 +3849,10 @@ input[type="submit"].btn.btn-mini {
|
|
3744
3849
|
border-color: #d6e9c6;
|
3745
3850
|
}
|
3746
3851
|
|
3852
|
+
.alert-success h4 {
|
3853
|
+
color: #468847;
|
3854
|
+
}
|
3855
|
+
|
3747
3856
|
.alert-danger,
|
3748
3857
|
.alert-error {
|
3749
3858
|
color: #b94a48;
|
@@ -3751,12 +3860,21 @@ input[type="submit"].btn.btn-mini {
|
|
3751
3860
|
border-color: #eed3d7;
|
3752
3861
|
}
|
3753
3862
|
|
3863
|
+
.alert-danger h4,
|
3864
|
+
.alert-error h4 {
|
3865
|
+
color: #b94a48;
|
3866
|
+
}
|
3867
|
+
|
3754
3868
|
.alert-info {
|
3755
3869
|
color: #3a87ad;
|
3756
3870
|
background-color: #d9edf7;
|
3757
3871
|
border-color: #bce8f1;
|
3758
3872
|
}
|
3759
3873
|
|
3874
|
+
.alert-info h4 {
|
3875
|
+
color: #3a87ad;
|
3876
|
+
}
|
3877
|
+
|
3760
3878
|
.alert-block {
|
3761
3879
|
padding-top: 14px;
|
3762
3880
|
padding-bottom: 14px;
|
@@ -3786,6 +3904,10 @@ input[type="submit"].btn.btn-mini {
|
|
3786
3904
|
background-color: #eeeeee;
|
3787
3905
|
}
|
3788
3906
|
|
3907
|
+
.nav > li > a > img {
|
3908
|
+
max-width: none;
|
3909
|
+
}
|
3910
|
+
|
3789
3911
|
.nav > .pull-right {
|
3790
3912
|
float: right;
|
3791
3913
|
}
|
@@ -4170,7 +4292,6 @@ input[type="submit"].btn.btn-mini {
|
|
4170
4292
|
*z-index: 2;
|
4171
4293
|
margin-bottom: 20px;
|
4172
4294
|
overflow: visible;
|
4173
|
-
color: #777777;
|
4174
4295
|
}
|
4175
4296
|
|
4176
4297
|
.navbar-inner {
|
@@ -4233,6 +4354,7 @@ input[type="submit"].btn.btn-mini {
|
|
4233
4354
|
.navbar-text {
|
4234
4355
|
margin-bottom: 0;
|
4235
4356
|
line-height: 40px;
|
4357
|
+
color: #777777;
|
4236
4358
|
}
|
4237
4359
|
|
4238
4360
|
.navbar-link {
|
@@ -4299,7 +4421,7 @@ input[type="submit"].btn.btn-mini {
|
|
4299
4421
|
|
4300
4422
|
.navbar-form .input-append,
|
4301
4423
|
.navbar-form .input-prepend {
|
4302
|
-
margin-top:
|
4424
|
+
margin-top: 5px;
|
4303
4425
|
white-space: nowrap;
|
4304
4426
|
}
|
4305
4427
|
|
@@ -4534,6 +4656,11 @@ input[type="submit"].btn.btn-mini {
|
|
4534
4656
|
border-bottom: 0;
|
4535
4657
|
}
|
4536
4658
|
|
4659
|
+
.navbar .nav li.dropdown > a:hover .caret {
|
4660
|
+
border-top-color: #555555;
|
4661
|
+
border-bottom-color: #555555;
|
4662
|
+
}
|
4663
|
+
|
4537
4664
|
.navbar .nav li.dropdown.open > .dropdown-toggle,
|
4538
4665
|
.navbar .nav li.dropdown.active > .dropdown-toggle,
|
4539
4666
|
.navbar .nav li.dropdown.open.active > .dropdown-toggle {
|
@@ -4582,10 +4709,6 @@ input[type="submit"].btn.btn-mini {
|
|
4582
4709
|
border-radius: 6px 0 6px 6px;
|
4583
4710
|
}
|
4584
4711
|
|
4585
|
-
.navbar-inverse {
|
4586
|
-
color: #999999;
|
4587
|
-
}
|
4588
|
-
|
4589
4712
|
.navbar-inverse .navbar-inner {
|
4590
4713
|
background-color: #1b1b1b;
|
4591
4714
|
background-image: -moz-linear-gradient(top, #222222, #111111);
|
@@ -4609,6 +4732,14 @@ input[type="submit"].btn.btn-mini {
|
|
4609
4732
|
color: #ffffff;
|
4610
4733
|
}
|
4611
4734
|
|
4735
|
+
.navbar-inverse .brand {
|
4736
|
+
color: #999999;
|
4737
|
+
}
|
4738
|
+
|
4739
|
+
.navbar-inverse .navbar-text {
|
4740
|
+
color: #999999;
|
4741
|
+
}
|
4742
|
+
|
4612
4743
|
.navbar-inverse .nav > li > a:focus,
|
4613
4744
|
.navbar-inverse .nav > li > a:hover {
|
4614
4745
|
color: #ffffff;
|
@@ -4642,6 +4773,11 @@ input[type="submit"].btn.btn-mini {
|
|
4642
4773
|
background-color: #111111;
|
4643
4774
|
}
|
4644
4775
|
|
4776
|
+
.navbar-inverse .nav li.dropdown > a:hover .caret {
|
4777
|
+
border-top-color: #ffffff;
|
4778
|
+
border-bottom-color: #ffffff;
|
4779
|
+
}
|
4780
|
+
|
4645
4781
|
.navbar-inverse .nav li.dropdown > .dropdown-toggle .caret {
|
4646
4782
|
border-top-color: #999999;
|
4647
4783
|
border-bottom-color: #999999;
|
@@ -4734,19 +4870,19 @@ input[type="submit"].btn.btn-mini {
|
|
4734
4870
|
border-radius: 4px;
|
4735
4871
|
}
|
4736
4872
|
|
4737
|
-
.breadcrumb li {
|
4873
|
+
.breadcrumb > li {
|
4738
4874
|
display: inline-block;
|
4739
4875
|
*display: inline;
|
4740
4876
|
text-shadow: 0 1px 0 #ffffff;
|
4741
4877
|
*zoom: 1;
|
4742
4878
|
}
|
4743
4879
|
|
4744
|
-
.breadcrumb .divider {
|
4880
|
+
.breadcrumb > li > .divider {
|
4745
4881
|
padding: 0 5px;
|
4746
4882
|
color: #ccc;
|
4747
4883
|
}
|
4748
4884
|
|
4749
|
-
.breadcrumb .active {
|
4885
|
+
.breadcrumb > .active {
|
4750
4886
|
color: #999999;
|
4751
4887
|
}
|
4752
4888
|
|
@@ -4890,7 +5026,7 @@ input[type="submit"].btn.btn-mini {
|
|
4890
5026
|
|
4891
5027
|
.pagination-mini ul > li > a,
|
4892
5028
|
.pagination-mini ul > li > span {
|
4893
|
-
padding:
|
5029
|
+
padding: 0 6px;
|
4894
5030
|
font-size: 10.5px;
|
4895
5031
|
}
|
4896
5032
|
|
@@ -4972,11 +5108,11 @@ input[type="submit"].btn.btn-mini {
|
|
4972
5108
|
|
4973
5109
|
.modal {
|
4974
5110
|
position: fixed;
|
4975
|
-
top:
|
5111
|
+
top: 10%;
|
4976
5112
|
left: 50%;
|
4977
5113
|
z-index: 1050;
|
4978
5114
|
width: 560px;
|
4979
|
-
margin: -
|
5115
|
+
margin-left: -280px;
|
4980
5116
|
background-color: #ffffff;
|
4981
5117
|
border: 1px solid #999;
|
4982
5118
|
border: 1px solid rgba(0, 0, 0, 0.3);
|
@@ -5002,7 +5138,7 @@ input[type="submit"].btn.btn-mini {
|
|
5002
5138
|
}
|
5003
5139
|
|
5004
5140
|
.modal.fade.in {
|
5005
|
-
top:
|
5141
|
+
top: 10%;
|
5006
5142
|
}
|
5007
5143
|
|
5008
5144
|
.modal-header {
|
@@ -5020,6 +5156,7 @@ input[type="submit"].btn.btn-mini {
|
|
5020
5156
|
}
|
5021
5157
|
|
5022
5158
|
.modal-body {
|
5159
|
+
position: relative;
|
5023
5160
|
max-height: 400px;
|
5024
5161
|
padding: 15px;
|
5025
5162
|
overflow-y: auto;
|
@@ -5160,6 +5297,8 @@ input[type="submit"].btn.btn-mini {
|
|
5160
5297
|
display: none;
|
5161
5298
|
width: 236px;
|
5162
5299
|
padding: 1px;
|
5300
|
+
text-align: left;
|
5301
|
+
white-space: normal;
|
5163
5302
|
background-color: #ffffff;
|
5164
5303
|
border: 1px solid #ccc;
|
5165
5304
|
border: 1px solid rgba(0, 0, 0, 0.2);
|
@@ -5207,85 +5346,87 @@ input[type="submit"].btn.btn-mini {
|
|
5207
5346
|
padding: 9px 14px;
|
5208
5347
|
}
|
5209
5348
|
|
5210
|
-
.popover-content p,
|
5211
|
-
.popover-content ul,
|
5212
|
-
.popover-content ol {
|
5213
|
-
margin-bottom: 0;
|
5214
|
-
}
|
5215
|
-
|
5216
5349
|
.popover .arrow,
|
5217
5350
|
.popover .arrow:after {
|
5218
5351
|
position: absolute;
|
5219
|
-
display:
|
5352
|
+
display: block;
|
5220
5353
|
width: 0;
|
5221
5354
|
height: 0;
|
5222
5355
|
border-color: transparent;
|
5223
5356
|
border-style: solid;
|
5224
5357
|
}
|
5225
5358
|
|
5359
|
+
.popover .arrow {
|
5360
|
+
border-width: 11px;
|
5361
|
+
}
|
5362
|
+
|
5226
5363
|
.popover .arrow:after {
|
5227
|
-
|
5364
|
+
border-width: 10px;
|
5228
5365
|
content: "";
|
5229
5366
|
}
|
5230
5367
|
|
5231
5368
|
.popover.top .arrow {
|
5232
|
-
bottom: -
|
5369
|
+
bottom: -11px;
|
5233
5370
|
left: 50%;
|
5234
|
-
margin-left: -
|
5235
|
-
border-top-color: #
|
5236
|
-
border-
|
5371
|
+
margin-left: -11px;
|
5372
|
+
border-top-color: #999;
|
5373
|
+
border-top-color: rgba(0, 0, 0, 0.25);
|
5374
|
+
border-bottom-width: 0;
|
5237
5375
|
}
|
5238
5376
|
|
5239
5377
|
.popover.top .arrow:after {
|
5240
|
-
bottom:
|
5241
|
-
left: -
|
5242
|
-
border-top-color:
|
5243
|
-
border-width:
|
5378
|
+
bottom: 1px;
|
5379
|
+
margin-left: -10px;
|
5380
|
+
border-top-color: #ffffff;
|
5381
|
+
border-bottom-width: 0;
|
5244
5382
|
}
|
5245
5383
|
|
5246
5384
|
.popover.right .arrow {
|
5247
5385
|
top: 50%;
|
5248
|
-
left: -
|
5249
|
-
margin-top: -
|
5250
|
-
border-right-color: #
|
5251
|
-
border-
|
5386
|
+
left: -11px;
|
5387
|
+
margin-top: -11px;
|
5388
|
+
border-right-color: #999;
|
5389
|
+
border-right-color: rgba(0, 0, 0, 0.25);
|
5390
|
+
border-left-width: 0;
|
5252
5391
|
}
|
5253
5392
|
|
5254
5393
|
.popover.right .arrow:after {
|
5255
|
-
bottom: -
|
5256
|
-
left:
|
5257
|
-
border-right-color:
|
5258
|
-
border-width:
|
5394
|
+
bottom: -10px;
|
5395
|
+
left: 1px;
|
5396
|
+
border-right-color: #ffffff;
|
5397
|
+
border-left-width: 0;
|
5259
5398
|
}
|
5260
5399
|
|
5261
5400
|
.popover.bottom .arrow {
|
5262
|
-
top: -
|
5401
|
+
top: -11px;
|
5263
5402
|
left: 50%;
|
5264
|
-
margin-left: -
|
5265
|
-
border-bottom-color: #
|
5266
|
-
border-
|
5403
|
+
margin-left: -11px;
|
5404
|
+
border-bottom-color: #999;
|
5405
|
+
border-bottom-color: rgba(0, 0, 0, 0.25);
|
5406
|
+
border-top-width: 0;
|
5267
5407
|
}
|
5268
5408
|
|
5269
5409
|
.popover.bottom .arrow:after {
|
5270
|
-
top:
|
5271
|
-
left: -
|
5272
|
-
border-bottom-color:
|
5273
|
-
border-width: 0
|
5410
|
+
top: 1px;
|
5411
|
+
margin-left: -10px;
|
5412
|
+
border-bottom-color: #ffffff;
|
5413
|
+
border-top-width: 0;
|
5274
5414
|
}
|
5275
5415
|
|
5276
5416
|
.popover.left .arrow {
|
5277
5417
|
top: 50%;
|
5278
|
-
right: -
|
5279
|
-
margin-top: -
|
5280
|
-
border-left-color: #
|
5281
|
-
border-
|
5418
|
+
right: -11px;
|
5419
|
+
margin-top: -11px;
|
5420
|
+
border-left-color: #999;
|
5421
|
+
border-left-color: rgba(0, 0, 0, 0.25);
|
5422
|
+
border-right-width: 0;
|
5282
5423
|
}
|
5283
5424
|
|
5284
5425
|
.popover.left .arrow:after {
|
5285
|
-
right:
|
5286
|
-
bottom: -
|
5287
|
-
border-left-color:
|
5288
|
-
border-width:
|
5426
|
+
right: 1px;
|
5427
|
+
bottom: -10px;
|
5428
|
+
border-left-color: #ffffff;
|
5429
|
+
border-right-width: 0;
|
5289
5430
|
}
|
5290
5431
|
|
5291
5432
|
.thumbnails {
|
@@ -5416,6 +5557,11 @@ a.thumbnail:hover {
|
|
5416
5557
|
border-radius: 9px;
|
5417
5558
|
}
|
5418
5559
|
|
5560
|
+
.label:empty,
|
5561
|
+
.badge:empty {
|
5562
|
+
display: none;
|
5563
|
+
}
|
5564
|
+
|
5419
5565
|
a.label:hover,
|
5420
5566
|
a.badge:hover {
|
5421
5567
|
color: #ffffff;
|
@@ -5734,7 +5880,7 @@ a.badge:hover {
|
|
5734
5880
|
overflow: hidden;
|
5735
5881
|
}
|
5736
5882
|
|
5737
|
-
.carousel .item {
|
5883
|
+
.carousel-inner > .item {
|
5738
5884
|
position: relative;
|
5739
5885
|
display: none;
|
5740
5886
|
-webkit-transition: 0.6s ease-in-out left;
|
@@ -5743,46 +5889,46 @@ a.badge:hover {
|
|
5743
5889
|
transition: 0.6s ease-in-out left;
|
5744
5890
|
}
|
5745
5891
|
|
5746
|
-
.carousel .item > img {
|
5892
|
+
.carousel-inner > .item > img {
|
5747
5893
|
display: block;
|
5748
5894
|
line-height: 1;
|
5749
5895
|
}
|
5750
5896
|
|
5751
|
-
.carousel .active,
|
5752
|
-
.carousel .next,
|
5753
|
-
.carousel .prev {
|
5897
|
+
.carousel-inner > .active,
|
5898
|
+
.carousel-inner > .next,
|
5899
|
+
.carousel-inner > .prev {
|
5754
5900
|
display: block;
|
5755
5901
|
}
|
5756
5902
|
|
5757
|
-
.carousel .active {
|
5903
|
+
.carousel-inner > .active {
|
5758
5904
|
left: 0;
|
5759
5905
|
}
|
5760
5906
|
|
5761
|
-
.carousel .next,
|
5762
|
-
.carousel .prev {
|
5907
|
+
.carousel-inner > .next,
|
5908
|
+
.carousel-inner > .prev {
|
5763
5909
|
position: absolute;
|
5764
5910
|
top: 0;
|
5765
5911
|
width: 100%;
|
5766
5912
|
}
|
5767
5913
|
|
5768
|
-
.carousel .next {
|
5914
|
+
.carousel-inner > .next {
|
5769
5915
|
left: 100%;
|
5770
5916
|
}
|
5771
5917
|
|
5772
|
-
.carousel .prev {
|
5918
|
+
.carousel-inner > .prev {
|
5773
5919
|
left: -100%;
|
5774
5920
|
}
|
5775
5921
|
|
5776
|
-
.carousel .next.left,
|
5777
|
-
.carousel .prev.right {
|
5922
|
+
.carousel-inner > .next.left,
|
5923
|
+
.carousel-inner > .prev.right {
|
5778
5924
|
left: 0;
|
5779
5925
|
}
|
5780
5926
|
|
5781
|
-
.carousel .active.left {
|
5927
|
+
.carousel-inner > .active.left {
|
5782
5928
|
left: -100%;
|
5783
5929
|
}
|
5784
5930
|
|
5785
|
-
.carousel .active.right {
|
5931
|
+
.carousel-inner > .active.right {
|
5786
5932
|
left: 100%;
|
5787
5933
|
}
|
5788
5934
|
|