mini-bootstrap-rails 0.0.3 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,7 +1,7 @@
1
1
  module Mini
2
2
  module Bootstrap
3
3
  module Rails
4
- VERSION = "0.0.3"
4
+ VERSION = "0.1.0"
5
5
  end
6
6
  end
7
7
  end
@@ -1,5 +1,5 @@
1
1
  /* ===================================================
2
- * bootstrap-transition.js v2.0.0
2
+ * bootstrap-transition.js v2.0.1
3
3
  * http://twitter.github.com/bootstrap/javascript.html#transitions
4
4
  * ===================================================
5
5
  * Copyright 2012 Twitter, Inc.
@@ -47,10 +47,9 @@
47
47
  })()
48
48
 
49
49
  })
50
-
51
- }( window.jQuery )
52
- /* ==========================================================
53
- * bootstrap-alert.js v2.0.0
50
+
51
+ }( window.jQuery );/* ==========================================================
52
+ * bootstrap-alert.js v2.0.1
54
53
  * http://twitter.github.com/bootstrap/javascript.html#alerts
55
54
  * ==========================================================
56
55
  * Copyright 2012 Twitter, Inc.
@@ -102,11 +101,14 @@
102
101
 
103
102
  $parent.length || ($parent = $this.hasClass('alert') ? $this : $this.parent())
104
103
 
105
- $parent.removeClass('in')
104
+ $parent
105
+ .trigger('close')
106
+ .removeClass('in')
106
107
 
107
108
  function removeElement() {
108
- $parent.remove()
109
- $parent.trigger('closed')
109
+ $parent
110
+ .trigger('closed')
111
+ .remove()
110
112
  }
111
113
 
112
114
  $.support.transition && $parent.hasClass('fade') ?
@@ -139,9 +141,8 @@
139
141
  $('body').on('click.alert.data-api', dismiss, Alert.prototype.close)
140
142
  })
141
143
 
142
- }( window.jQuery )
143
- /* ============================================================
144
- * bootstrap-button.js v2.0.0
144
+ }( window.jQuery );/* ============================================================
145
+ * bootstrap-button.js v2.0.1
145
146
  * http://twitter.github.com/bootstrap/javascript.html#buttons
146
147
  * ============================================================
147
148
  * Copyright 2012 Twitter, Inc.
@@ -233,13 +234,14 @@
233
234
 
234
235
  $(function () {
235
236
  $('body').on('click.button.data-api', '[data-toggle^=button]', function ( e ) {
236
- $(e.target).button('toggle')
237
+ var $btn = $(e.target)
238
+ if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn')
239
+ $btn.button('toggle')
237
240
  })
238
241
  })
239
242
 
240
- }( window.jQuery )
241
- /* ==========================================================
242
- * bootstrap-carousel.js v2.0.0
243
+ }( window.jQuery );/* ==========================================================
244
+ * bootstrap-carousel.js v2.0.1
243
245
  * http://twitter.github.com/bootstrap/javascript.html#carousel
244
246
  * ==========================================================
245
247
  * Copyright 2012 Twitter, Inc.
@@ -301,6 +303,7 @@
301
303
 
302
304
  , pause: function () {
303
305
  clearInterval(this.interval)
306
+ this.interval = null
304
307
  return this
305
308
  }
306
309
 
@@ -322,6 +325,8 @@
322
325
  , fallback = type == 'next' ? 'first' : 'last'
323
326
  , that = this
324
327
 
328
+ if (!$next.length) return
329
+
325
330
  this.sliding = true
326
331
 
327
332
  isCycling && this.pause()
@@ -391,9 +396,8 @@
391
396
  })
392
397
  })
393
398
 
394
- }( window.jQuery )
395
- /* =============================================================
396
- * bootstrap-collapse.js v2.0.0
399
+ }( window.jQuery );/* =============================================================
400
+ * bootstrap-collapse.js v2.0.1
397
401
  * http://twitter.github.com/bootstrap/javascript.html#collapse
398
402
  * =============================================================
399
403
  * Copyright 2012 Twitter, Inc.
@@ -527,9 +531,8 @@
527
531
  })
528
532
  })
529
533
 
530
- }( window.jQuery )
531
- /* ============================================================
532
- * bootstrap-dropdown.js v2.0.0
534
+ }( window.jQuery );/* ============================================================
535
+ * bootstrap-dropdown.js v2.0.1
533
536
  * http://twitter.github.com/bootstrap/javascript.html#dropdowns
534
537
  * ============================================================
535
538
  * Copyright 2012 Twitter, Inc.
@@ -619,9 +622,8 @@
619
622
  $('body').on('click.dropdown.data-api', toggle, Dropdown.prototype.toggle)
620
623
  })
621
624
 
622
- }( window.jQuery )
623
- /* =========================================================
624
- * bootstrap-modal.js v2.0.0
625
+ }( window.jQuery );/* =========================================================
626
+ * bootstrap-modal.js v2.0.1
625
627
  * http://twitter.github.com/bootstrap/javascript.html#modals
626
628
  * =========================================================
627
629
  * Copyright 2012 Twitter, Inc.
@@ -648,7 +650,7 @@
648
650
  * ====================== */
649
651
 
650
652
  var Modal = function ( content, options ) {
651
- this.options = $.extend({}, $.fn.modal.defaults, options)
653
+ this.options = options
652
654
  this.$element = $(content)
653
655
  .delegate('[data-dismiss="modal"]', 'click.dismiss.modal', $.proxy(this.hide, this))
654
656
  }
@@ -799,16 +801,17 @@
799
801
  return this.each(function () {
800
802
  var $this = $(this)
801
803
  , data = $this.data('modal')
802
- , options = typeof option == 'object' && option
804
+ , options = $.extend({}, $.fn.modal.defaults, $this.data(), typeof option == 'object' && option)
803
805
  if (!data) $this.data('modal', (data = new Modal(this, options)))
804
806
  if (typeof option == 'string') data[option]()
805
- else data.show()
807
+ else if (options.show) data.show()
806
808
  })
807
809
  }
808
810
 
809
811
  $.fn.modal.defaults = {
810
812
  backdrop: true
811
813
  , keyboard: true
814
+ , show: true
812
815
  }
813
816
 
814
817
  $.fn.modal.Constructor = Modal
@@ -828,9 +831,8 @@
828
831
  })
829
832
  })
830
833
 
831
- }( window.jQuery )
832
- /* ===========================================================
833
- * bootstrap-tooltip.js v2.0.0
834
+ }( window.jQuery );/* ===========================================================
835
+ * bootstrap-tooltip.js v2.0.1
834
836
  * http://twitter.github.com/bootstrap/javascript.html#tooltips
835
837
  * Inspired by the original jQuery.tipsy by Jason Frame
836
838
  * ===========================================================
@@ -1098,9 +1100,8 @@
1098
1100
  , template: '<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>'
1099
1101
  }
1100
1102
 
1101
- }( window.jQuery )
1102
- /* ===========================================================
1103
- * bootstrap-popover.js v2.0.0
1103
+ }( window.jQuery );/* ===========================================================
1104
+ * bootstrap-popover.js v2.0.1
1104
1105
  * http://twitter.github.com/bootstrap/javascript.html#popovers
1105
1106
  * ===========================================================
1106
1107
  * Copyright 2012 Twitter, Inc.
@@ -1193,9 +1194,8 @@
1193
1194
  , 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>'
1194
1195
  })
1195
1196
 
1196
- }( window.jQuery )
1197
- /* =============================================================
1198
- * bootstrap-scrollspy.js v2.0.0
1197
+ }( window.jQuery );/* =============================================================
1198
+ * bootstrap-scrollspy.js v2.0.1
1199
1199
  * http://twitter.github.com/bootstrap/javascript.html#scrollspy
1200
1200
  * =============================================================
1201
1201
  * Copyright 2012 Twitter, Inc.
@@ -1318,9 +1318,8 @@
1318
1318
  })
1319
1319
  })
1320
1320
 
1321
- }( window.jQuery )
1322
- /* ========================================================
1323
- * bootstrap-tab.js v2.0.0
1321
+ }( window.jQuery );/* ========================================================
1322
+ * bootstrap-tab.js v2.0.1
1324
1323
  * http://twitter.github.com/bootstrap/javascript.html#tabs
1325
1324
  * ========================================================
1326
1325
  * Copyright 2012 Twitter, Inc.
@@ -1448,9 +1447,8 @@
1448
1447
  })
1449
1448
  })
1450
1449
 
1451
- }( window.jQuery )
1452
- /* =============================================================
1453
- * bootstrap-typeahead.js v2.0.0
1450
+ }( window.jQuery );/* =============================================================
1451
+ * bootstrap-typeahead.js v2.0.1
1454
1452
  * http://twitter.github.com/bootstrap/javascript.html#typeahead
1455
1453
  * =============================================================
1456
1454
  * Copyright 2012 Twitter, Inc.
@@ -1719,4 +1717,4 @@
1719
1717
  })
1720
1718
  })
1721
1719
 
1722
- }( window.jQuery )
1720
+ }( window.jQuery );
@@ -1 +1 @@
1
- !function(a){a(function(){"use strict",a.support.transition=function(){var b=document.body||document.documentElement,c=b.style,d=c.transition!==undefined||c.WebkitTransition!==undefined||c.MozTransition!==undefined||c.MsTransition!==undefined||c.OTransition!==undefined;return d&&{end:function(){var b="TransitionEnd";return a.browser.webkit?b="webkitTransitionEnd":a.browser.mozilla?b="transitionend":a.browser.opera&&(b="oTransitionEnd"),b}()}}()})}(window.jQuery),!function(a){"use strict";var b='[data-dismiss="alert"]',c=function(c){a(c).on("click",b,this.close)};c.prototype={constructor:c,close:function(b){function f(){e.remove(),e.trigger("closed")}var c=a(this),d=c.attr("data-target"),e;d||(d=c.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),e=a(d),e.trigger("close"),b&&b.preventDefault(),e.length||(e=c.hasClass("alert")?c:c.parent()),e.removeClass("in"),a.support.transition&&e.hasClass("fade")?e.on(a.support.transition.end,f):f()}},a.fn.alert=function(b){return this.each(function(){var d=a(this),e=d.data("alert");e||d.data("alert",e=new c(this)),typeof b=="string"&&e[b].call(d)})},a.fn.alert.Constructor=c,a(function(){a("body").on("click.alert.data-api",b,c.prototype.close)})}(window.jQuery),!function(a){"use strict";var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.button.defaults,c)};b.prototype={constructor:b,setState:function(a){var b="disabled",c=this.$element,d=c.data(),e=c.is("input")?"val":"html";a+="Text",d.resetText||c.data("resetText",c[e]()),c[e](d[a]||this.options[a]),setTimeout(function(){a=="loadingText"?c.addClass(b).attr(b,b):c.removeClass(b).removeAttr(b)},0)},toggle:function(){var a=this.$element.parent('[data-toggle="buttons-radio"]');a&&a.find(".active").removeClass("active"),this.$element.toggleClass("active")}},a.fn.button=function(c){return this.each(function(){var d=a(this),e=d.data("button"),f=typeof c=="object"&&c;e||d.data("button",e=new b(this,f)),c=="toggle"?e.toggle():c&&e.setState(c)})},a.fn.button.defaults={loadingText:"loading..."},a.fn.button.Constructor=b,a(function(){a("body").on("click.button.data-api","[data-toggle^=button]",function(b){a(b.target).button("toggle")})})}(window.jQuery),!function(a){"use strict";var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.carousel.defaults,c),this.options.slide&&this.slide(this.options.slide)};b.prototype={cycle:function(){return this.interval=setInterval(a.proxy(this.next,this),this.options.interval),this},to:function(b){var c=this.$element.find(".active"),d=c.parent().children(),e=d.index(c),f=this;if(b>d.length-1||b<0)return;return this.sliding?this.$element.one("slid",function(){f.to(b)}):e==b?this.pause().cycle():this.slide(b>e?"next":"prev",a(d[b]))},pause:function(){return clearInterval(this.interval),this},next:function(){if(this.sliding)return;return this.slide("next")},prev:function(){if(this.sliding)return;return this.slide("prev")},slide:function(b,c){var d=this.$element.find(".active"),e=c||d[b](),f=this.interval,g=b=="next"?"left":"right",h=b=="next"?"first":"last",i=this;return this.sliding=!0,f&&this.pause(),e=e.length?e:this.$element.find(".item")[h](),!a.support.transition&&this.$element.hasClass("slide")?(this.$element.trigger("slide"),d.removeClass("active"),e.addClass("active"),this.sliding=!1,this.$element.trigger("slid")):(e.addClass(b),e[0].offsetWidth,d.addClass(g),e.addClass(g),this.$element.trigger("slide"),this.$element.one(a.support.transition.end,function(){e.removeClass([b,g].join(" ")).addClass("active"),d.removeClass(["active",g].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger("slid")},0)})),f&&this.cycle(),this}},a.fn.carousel=function(c){return this.each(function(){var d=a(this),e=d.data("carousel"),f=typeof c=="object"&&c;e||d.data("carousel",e=new b(this,f)),typeof c=="number"?e.to(c):typeof c=="string"||(c=f.slide)?e[c]():e.cycle()})},a.fn.carousel.defaults={interval:5e3},a.fn.carousel.Constructor=b,a(function(){a("body").on("click.carousel.data-api","[data-slide]",function(b){var c=a(this),d,e=a(c.attr("data-target")||(d=c.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,"")),f=!e.data("modal")&&a.extend({},e.data(),c.data());e.carousel(f),b.preventDefault()})})}(window.jQuery),!function(a){"use strict";var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.collapse.defaults,c),this.options.parent&&(this.$parent=a(this.options.parent)),this.options.toggle&&this.toggle()};b.prototype={constructor:b,dimension:function(){var a=this.$element.hasClass("width");return a?"width":"height"},show:function(){var b=this.dimension(),c=a.camelCase(["scroll",b].join("-")),d=this.$parent&&this.$parent.find(".in"),e;d&&d.length&&(e=d.data("collapse"),d.collapse("hide"),e||d.data("collapse",null)),this.$element[b](0),this.transition("addClass","show","shown"),this.$element[b](this.$element[0][c])},hide:function(){var a=this.dimension();this.reset(this.$element[a]()),this.transition("removeClass","hide","hidden"),this.$element[a](0)},reset:function(a){var b=this.dimension();this.$element.removeClass("collapse")[b](a||"auto")[0].offsetWidth,this.$element.addClass("collapse")},transition:function(b,c,d){var e=this,f=function(){c=="show"&&e.reset(),e.$element.trigger(d)};this.$element.trigger(c)[b]("in"),a.support.transition&&this.$element.hasClass("collapse")?this.$element.one(a.support.transition.end,f):f()},toggle:function(){this[this.$element.hasClass("in")?"hide":"show"]()}},a.fn.collapse=function(c){return this.each(function(){var d=a(this),e=d.data("collapse"),f=typeof c=="object"&&c;e||d.data("collapse",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.collapse.defaults={toggle:!0},a.fn.collapse.Constructor=b,a(function(){a("body").on("click.collapse.data-api","[data-toggle=collapse]",function(b){var c=a(this),d,e=c.attr("data-target")||b.preventDefault()||(d=c.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""),f=a(e).data("collapse")?"toggle":c.data();a(e).collapse(f)})})}(window.jQuery),!function(a){function d(){a(b).parent().removeClass("open")}"use strict";var b='[data-toggle="dropdown"]',c=function(b){var c=a(b).on("click.dropdown.data-api",this.toggle);a("html").on("click.dropdown.data-api",function(){c.parent().removeClass("open")})};c.prototype={constructor:c,toggle:function(b){var c=a(this),e=c.attr("data-target"),f,g;return e||(e=c.attr("href"),e=e&&e.replace(/.*(?=#[^\s]*$)/,"")),f=a(e),f.length||(f=c.parent()),g=f.hasClass("open"),d(),!g&&f.toggleClass("open"),!1}},a.fn.dropdown=function(b){return this.each(function(){var d=a(this),e=d.data("dropdown");e||d.data("dropdown",e=new c(this)),typeof b=="string"&&e[b].call(d)})},a.fn.dropdown.Constructor=c,a(function(){a("html").on("click.dropdown.data-api",d),a("body").on("click.dropdown.data-api",b,c.prototype.toggle)})}(window.jQuery),!function(a){function c(){var b=this,c=setTimeout(function(){b.$element.off(a.support.transition.end),d.call(b)},500);this.$element.one(a.support.transition.end,function(){clearTimeout(c),d.call(b)})}function d(a){this.$element.hide().trigger("hidden"),e.call(this)}function e(b){var c=this,d=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var e=a.support.transition&&d;this.$backdrop=a('<div class="modal-backdrop '+d+'" />').appendTo(document.body),this.options.backdrop!="static"&&this.$backdrop.click(a.proxy(this.hide,this)),e&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),e?this.$backdrop.one(a.support.transition.end,b):b()}else!this.isShown&&this.$backdrop?(this.$backdrop.removeClass("in"),a.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one(a.support.transition.end,a.proxy(f,this)):f.call(this)):b&&b()}function f(){this.$backdrop.remove(),this.$backdrop=null}function g(){var b=this;this.isShown&&this.options.keyboard?a(document).on("keyup.dismiss.modal",function(a){a.which==27&&b.hide()}):this.isShown||a(document).off("keyup.dismiss.modal")}"use strict";var b=function(b,c){this.options=a.extend({},a.fn.modal.defaults,c),this.$element=a(b).delegate('[data-dismiss="modal"]',"click.dismiss.modal",a.proxy(this.hide,this))};b.prototype={constructor:b,toggle:function(){return this[this.isShown?"hide":"show"]()},show:function(){var b=this;if(this.isShown)return;a("body").addClass("modal-open"),this.isShown=!0,this.$element.trigger("show"),g.call(this),e.call(this,function(){var c=a.support.transition&&b.$element.hasClass("fade");!b.$element.parent().length&&b.$element.appendTo(document.body),b.$element.show(),c&&b.$element[0].offsetWidth,b.$element.addClass("in"),c?b.$element.one(a.support.transition.end,function(){b.$element.trigger("shown")}):b.$element.trigger("shown")})},hide:function(b){b&&b.preventDefault();if(!this.isShown)return;var e=this;this.isShown=!1,a("body").removeClass("modal-open"),g.call(this),this.$element.trigger("hide").removeClass("in"),a.support.transition&&this.$element.hasClass("fade")?c.call(this):d.call(this)}},a.fn.modal=function(c){return this.each(function(){var d=a(this),e=d.data("modal"),f=typeof c=="object"&&c;e||d.data("modal",e=new b(this,f)),typeof c=="string"?e[c]():e.show()})},a.fn.modal.defaults={backdrop:!0,keyboard:!0},a.fn.modal.Constructor=b,a(function(){a("body").on("click.modal.data-api",'[data-toggle="modal"]',function(b){var c=a(this),d,e=a(c.attr("data-target")||(d=c.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,"")),f=e.data("modal")?"toggle":a.extend({},e.data(),c.data());b.preventDefault(),e.modal(f)})})}(window.jQuery),!function(a){"use strict";var b=function(a,b){this.init("tooltip",a,b)};b.prototype={constructor:b,init:function(b,c,d){var e,f;this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.enabled=!0,this.options.trigger!="manual"&&(e=this.options.trigger=="hover"?"mouseenter":"focus",f=this.options.trigger=="hover"?"mouseleave":"blur",this.$element.on(e,this.options.selector,a.proxy(this.enter,this)),this.$element.on(f,this.options.selector,a.proxy(this.leave,this))),this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},getOptions:function(b){return b=a.extend({},a.fn[this.type].defaults,b,this.$element.data()),b.delay&&typeof b.delay=="number"&&(b.delay={show:b.delay,hide:b.delay}),b},enter:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);!c.options.delay||!c.options.delay.show?c.show():(c.hoverState="in",setTimeout(function(){c.hoverState=="in"&&c.show()},c.options.delay.show))},leave:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);!c.options.delay||!c.options.delay.hide?c.hide():(c.hoverState="out",setTimeout(function(){c.hoverState=="out"&&c.hide()},c.options.delay.hide))},show:function(){var a,b,c,d,e,f,g;if(this.hasContent()&&this.enabled){a=this.tip(),this.setContent(),this.options.animation&&a.addClass("fade"),f=typeof this.options.placement=="function"?this.options.placement.call(this,a[0],this.$element[0]):this.options.placement,b=/in/.test(f),a.remove().css({top:0,left:0,display:"block"}).appendTo(b?this.$element:document.body),c=this.getPosition(b),d=a[0].offsetWidth,e=a[0].offsetHeight;switch(b?f.split(" ")[1]:f){case"bottom":g={top:c.top+c.height,left:c.left+c.width/2-d/2};break;case"top":g={top:c.top-e,left:c.left+c.width/2-d/2};break;case"left":g={top:c.top+c.height/2-e/2,left:c.left-d};break;case"right":g={top:c.top+c.height/2-e/2,left:c.left+c.width}}a.css(g).addClass(f).addClass("in")}},setContent:function(){var a=this.tip();a.find(".tooltip-inner").html(this.getTitle()),a.removeClass("fade in top bottom left right")},hide:function(){function d(){var b=setTimeout(function(){c.off(a.support.transition.end).remove()},500);c.one(a.support.transition.end,function(){clearTimeout(b),c.remove()})}var b=this,c=this.tip();c.removeClass("in"),a.support.transition&&this.$tip.hasClass("fade")?d():c.remove()},fixTitle:function(){var a=this.$element;(a.attr("title")||typeof a.attr("data-original-title")!="string")&&a.attr("data-original-title",a.attr("title")||"").removeAttr("title")},hasContent:function(){return this.getTitle()},getPosition:function(b){return a.extend({},b?{top:0,left:0}:this.$element.offset(),{width:this.$element[0].offsetWidth,height:this.$element[0].offsetHeight})},getTitle:function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||(typeof c.title=="function"?c.title.call(b[0]):c.title),a=a.toString().replace(/(^\s*|\s*$)/,""),a},tip:function(){return this.$tip=this.$tip||a(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(){this[this.tip().hasClass("in")?"hide":"show"]()}},a.fn.tooltip=function(c){return this.each(function(){var d=a(this),e=d.data("tooltip"),f=typeof c=="object"&&c;e||d.data("tooltip",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.tooltip.Constructor=b,a.fn.tooltip.defaults={animation:!0,delay:0,selector:!1,placement:"top",trigger:"hover",title:"",template:'<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>'}}(window.jQuery),!function(a){"use strict";var b=function(a,b){this.init("popover",a,b)};b.prototype=a.extend({},a.fn.tooltip.Constructor.prototype,{constructor:b,setContent:function(){var b=this.tip(),c=this.getTitle(),d=this.getContent();b.find(".popover-title")[a.type(c)=="object"?"append":"html"](c),b.find(".popover-content > *")[a.type(d)=="object"?"append":"html"](d),b.removeClass("fade top bottom left right in")},hasContent:function(){return this.getTitle()||this.getContent()},getContent:function(){var a,b=this.$element,c=this.options;return a=b.attr("data-content")||(typeof c.content=="function"?c.content.call(b[0]):c.content),a=a.toString().replace(/(^\s*|\s*$)/,""),a},tip:function(){return this.$tip||(this.$tip=a(this.options.template)),this.$tip}}),a.fn.popover=function(c){return this.each(function(){var d=a(this),e=d.data("popover"),f=typeof c=="object"&&c;e||d.data("popover",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.popover.Constructor=b,a.fn.popover.defaults=a.extend({},a.fn.tooltip.defaults,{placement:"right",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(a){function b(b,c){var d=a.proxy(this.process,this),e=a(b).is("body")?a(window):a(b),f;this.options=a.extend({},a.fn.scrollspy.defaults,c),this.$scrollElement=e.on("scroll.scroll.data-api",d),this.selector=(this.options.target||(f=a(b).attr("href"))&&f.replace(/.*(?=#[^\s]+$)/,"")||"")+" .nav li > a",this.$body=a("body").on("click.scroll.data-api",this.selector,d),this.refresh(),this.process()}"use strict",b.prototype={constructor:b,refresh:function(){this.targets=this.$body.find(this.selector).map(function(){var b=a(this).attr("href");return/^#\w/.test(b)&&a(b).length?b:null}),this.offsets=a.map(this.targets,function(b){return a(b).position().top})},process:function(){var a=this.$scrollElement.scrollTop()+this.options.offset,b=this.offsets,c=this.targets,d=this.activeTarget,e;for(e=b.length;e--;)d!=c[e]&&a>=b[e]&&(!b[e+1]||a<=b[e+1])&&this.activate(c[e])},activate:function(a){var b;this.activeTarget=a,this.$body.find(this.selector).parent(".active").removeClass("active"),b=this.$body.find(this.selector+'[href="'+a+'"]').parent("li").addClass("active"),b.parent(".dropdown-menu")&&b.closest("li.dropdown").addClass("active")}},a.fn.scrollspy=function(c){return this.each(function(){var d=a(this),e=d.data("scrollspy"),f=typeof c=="object"&&c;e||d.data("scrollspy",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.scrollspy.Constructor=b,a.fn.scrollspy.defaults={offset:10},a(function(){a('[data-spy="scroll"]').each(function(){var b=a(this);b.scrollspy(b.data())})})}(window.jQuery),!function(a){"use strict";var b=function(b){this.element=a(b)};b.prototype={constructor:b,show:function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.attr("data-target"),e,f;d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,""));if(b.parent("li").hasClass("active"))return;e=c.find(".active a").last()[0],b.trigger({type:"show",relatedTarget:e}),f=a(d),this.activate(b.parent("li"),c),this.activate(f,f.parent(),function(){b.trigger({type:"shown",relatedTarget:e})})},activate:function(b,c,d){function g(){e.removeClass("active").find("> .dropdown-menu > .active").removeClass("active"),b.addClass("active"),f?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu")&&b.closest("li.dropdown").addClass("active"),d&&d()}var e=c.find("> .active"),f=d&&a.support.transition&&e.hasClass("fade");f?e.one(a.support.transition.end,g):g(),e.removeClass("in")}},a.fn.tab=function(c){return this.each(function(){var d=a(this),e=d.data("tab");e||d.data("tab",e=new b(this)),typeof c=="string"&&e[c]()})},a.fn.tab.Constructor=b,a(function(){a("body").on("click.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"]',function(b){b.preventDefault(),a(this).tab("show")})})}(window.jQuery),!function(a){"use strict";var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.typeahead.defaults,c),this.matcher=this.options.matcher||this.matcher,this.sorter=this.options.sorter||this.sorter,this.highlighter=this.options.highlighter||this.highlighter,this.$menu=a(this.options.menu).appendTo("body"),this.source=this.options.source,this.shown=!1,this.listen()};b.prototype={constructor:b,select:function(){var a=this.$menu.find(".active").attr("data-value");return this.$element.val(a),this.hide()},show:function(){var b=a.extend({},this.$element.offset(),{height:this.$element[0].offsetHeight});return this.$menu.css({top:b.top+b.height,left:b.left}),this.$menu.show(),this.shown=!0,this},hide:function(){return this.$menu.hide(),this.shown=!1,this},lookup:function(b){var c=this,d,e;return this.query=this.$element.val(),this.query?(d=a.grep(this.source,function(a){if(c.matcher(a))return a}),d=this.sorter(d),d.length?this.render(d.slice(0,this.options.items)).show():this.shown?this.hide():this):this.shown?this.hide():this},matcher:function(a){return~a.toLowerCase().indexOf(this.query.toLowerCase())},sorter:function(a){var b=[],c=[],d=[],e;while(e=a.shift())e.toLowerCase().indexOf(this.query.toLowerCase())?~e.indexOf(this.query)?c.push(e):d.push(e):b.push(e);return b.concat(c,d)},highlighter:function(a){return a.replace(new RegExp("("+this.query+")","ig"),function(a,b){return"<strong>"+b+"</strong>"})},render:function(b){var c=this;return b=a(b).map(function(b,d){return b=a(c.options.item).attr("data-value",d),b.find("a").html(c.highlighter(d)),b[0]}),b.first().addClass("active"),this.$menu.html(b),this},next:function(b){var c=this.$menu.find(".active").removeClass("active"),d=c.next();d.length||(d=a(this.$menu.find("li")[0])),d.addClass("active")},prev:function(a){var b=this.$menu.find(".active").removeClass("active"),c=b.prev();c.length||(c=this.$menu.find("li").last()),c.addClass("active")},listen:function(){this.$element.on("blur",a.proxy(this.blur,this)).on("keypress",a.proxy(this.keypress,this)).on("keyup",a.proxy(this.keyup,this)),(a.browser.webkit||a.browser.msie)&&this.$element.on("keydown",a.proxy(this.keypress,this)),this.$menu.on("click",a.proxy(this.click,this)).on("mouseenter","li",a.proxy(this.mouseenter,this))},keyup:function(a){a.stopPropagation(),a.preventDefault();switch(a.keyCode){case 40:case 38:break;case 9:case 13:if(!this.shown)return;this.select();break;case 27:this.hide();break;default:this.lookup()}},keypress:function(a){a.stopPropagation();if(!this.shown)return;switch(a.keyCode){case 9:case 13:case 27:a.preventDefault();break;case 38:a.preventDefault(),this.prev();break;case 40:a.preventDefault(),this.next()}},blur:function(a){var b=this;a.stopPropagation(),a.preventDefault(),setTimeout(function(){b.hide()},150)},click:function(a){a.stopPropagation(),a.preventDefault(),this.select()},mouseenter:function(b){this.$menu.find(".active").removeClass("active"),a(b.currentTarget).addClass("active")}},a.fn.typeahead=function(c){return this.each(function(){var d=a(this),e=d.data("typeahead"),f=typeof c=="object"&&c;e||d.data("typeahead",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.typeahead.defaults={source:[],items:8,menu:'<ul class="typeahead dropdown-menu"></ul>',item:'<li><a href="#"></a></li>'},a.fn.typeahead.Constructor=b,a(function(){a("body").on("focus.typeahead.data-api",'[data-provide="typeahead"]',function(b){var c=a(this);if(c.data("typeahead"))return;b.preventDefault(),c.typeahead(c.data())})})}(window.jQuery);
1
+ !function(a){a(function(){"use strict",a.support.transition=function(){var b=document.body||document.documentElement,c=b.style,d=c.transition!==undefined||c.WebkitTransition!==undefined||c.MozTransition!==undefined||c.MsTransition!==undefined||c.OTransition!==undefined;return d&&{end:function(){var b="TransitionEnd";return a.browser.webkit?b="webkitTransitionEnd":a.browser.mozilla?b="transitionend":a.browser.opera&&(b="oTransitionEnd"),b}()}}()})}(window.jQuery),!function(a){"use strict";var b='[data-dismiss="alert"]',c=function(c){a(c).on("click",b,this.close)};c.prototype={constructor:c,close:function(b){function f(){e.trigger("closed").remove()}var c=a(this),d=c.attr("data-target"),e;d||(d=c.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),e=a(d),e.trigger("close"),b&&b.preventDefault(),e.length||(e=c.hasClass("alert")?c:c.parent()),e.trigger("close").removeClass("in"),a.support.transition&&e.hasClass("fade")?e.on(a.support.transition.end,f):f()}},a.fn.alert=function(b){return this.each(function(){var d=a(this),e=d.data("alert");e||d.data("alert",e=new c(this)),typeof b=="string"&&e[b].call(d)})},a.fn.alert.Constructor=c,a(function(){a("body").on("click.alert.data-api",b,c.prototype.close)})}(window.jQuery),!function(a){"use strict";var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.button.defaults,c)};b.prototype={constructor:b,setState:function(a){var b="disabled",c=this.$element,d=c.data(),e=c.is("input")?"val":"html";a+="Text",d.resetText||c.data("resetText",c[e]()),c[e](d[a]||this.options[a]),setTimeout(function(){a=="loadingText"?c.addClass(b).attr(b,b):c.removeClass(b).removeAttr(b)},0)},toggle:function(){var a=this.$element.parent('[data-toggle="buttons-radio"]');a&&a.find(".active").removeClass("active"),this.$element.toggleClass("active")}},a.fn.button=function(c){return this.each(function(){var d=a(this),e=d.data("button"),f=typeof c=="object"&&c;e||d.data("button",e=new b(this,f)),c=="toggle"?e.toggle():c&&e.setState(c)})},a.fn.button.defaults={loadingText:"loading..."},a.fn.button.Constructor=b,a(function(){a("body").on("click.button.data-api","[data-toggle^=button]",function(b){var c=a(b.target);c.hasClass("btn")||(c=c.closest(".btn")),c.button("toggle")})})}(window.jQuery),!function(a){"use strict";var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.carousel.defaults,c),this.options.slide&&this.slide(this.options.slide)};b.prototype={cycle:function(){return this.interval=setInterval(a.proxy(this.next,this),this.options.interval),this},to:function(b){var c=this.$element.find(".active"),d=c.parent().children(),e=d.index(c),f=this;if(b>d.length-1||b<0)return;return this.sliding?this.$element.one("slid",function(){f.to(b)}):e==b?this.pause().cycle():this.slide(b>e?"next":"prev",a(d[b]))},pause:function(){return 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(b,c){var d=this.$element.find(".active"),e=c||d[b](),f=this.interval,g=b=="next"?"left":"right",h=b=="next"?"first":"last",i=this;if(!e.length)return;return this.sliding=!0,f&&this.pause(),e=e.length?e:this.$element.find(".item")[h](),!a.support.transition&&this.$element.hasClass("slide")?(this.$element.trigger("slide"),d.removeClass("active"),e.addClass("active"),this.sliding=!1,this.$element.trigger("slid")):(e.addClass(b),e[0].offsetWidth,d.addClass(g),e.addClass(g),this.$element.trigger("slide"),this.$element.one(a.support.transition.end,function(){e.removeClass([b,g].join(" ")).addClass("active"),d.removeClass(["active",g].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger("slid")},0)})),f&&this.cycle(),this}},a.fn.carousel=function(c){return this.each(function(){var d=a(this),e=d.data("carousel"),f=typeof c=="object"&&c;e||d.data("carousel",e=new b(this,f)),typeof c=="number"?e.to(c):typeof c=="string"||(c=f.slide)?e[c]():e.cycle()})},a.fn.carousel.defaults={interval:5e3},a.fn.carousel.Constructor=b,a(function(){a("body").on("click.carousel.data-api","[data-slide]",function(b){var c=a(this),d,e=a(c.attr("data-target")||(d=c.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,"")),f=!e.data("modal")&&a.extend({},e.data(),c.data());e.carousel(f),b.preventDefault()})})}(window.jQuery),!function(a){"use strict";var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.collapse.defaults,c),this.options.parent&&(this.$parent=a(this.options.parent)),this.options.toggle&&this.toggle()};b.prototype={constructor:b,dimension:function(){var a=this.$element.hasClass("width");return a?"width":"height"},show:function(){var b=this.dimension(),c=a.camelCase(["scroll",b].join("-")),d=this.$parent&&this.$parent.find(".in"),e;d&&d.length&&(e=d.data("collapse"),d.collapse("hide"),e||d.data("collapse",null)),this.$element[b](0),this.transition("addClass","show","shown"),this.$element[b](this.$element[0][c])},hide:function(){var a=this.dimension();this.reset(this.$element[a]()),this.transition("removeClass","hide","hidden"),this.$element[a](0)},reset:function(a){var b=this.dimension();this.$element.removeClass("collapse")[b](a||"auto")[0].offsetWidth,this.$element.addClass("collapse")},transition:function(b,c,d){var e=this,f=function(){c=="show"&&e.reset(),e.$element.trigger(d)};this.$element.trigger(c)[b]("in"),a.support.transition&&this.$element.hasClass("collapse")?this.$element.one(a.support.transition.end,f):f()},toggle:function(){this[this.$element.hasClass("in")?"hide":"show"]()}},a.fn.collapse=function(c){return this.each(function(){var d=a(this),e=d.data("collapse"),f=typeof c=="object"&&c;e||d.data("collapse",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.collapse.defaults={toggle:!0},a.fn.collapse.Constructor=b,a(function(){a("body").on("click.collapse.data-api","[data-toggle=collapse]",function(b){var c=a(this),d,e=c.attr("data-target")||b.preventDefault()||(d=c.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""),f=a(e).data("collapse")?"toggle":c.data();a(e).collapse(f)})})}(window.jQuery),!function(a){function d(){a(b).parent().removeClass("open")}"use strict";var b='[data-toggle="dropdown"]',c=function(b){var c=a(b).on("click.dropdown.data-api",this.toggle);a("html").on("click.dropdown.data-api",function(){c.parent().removeClass("open")})};c.prototype={constructor:c,toggle:function(b){var c=a(this),e=c.attr("data-target"),f,g;return e||(e=c.attr("href"),e=e&&e.replace(/.*(?=#[^\s]*$)/,"")),f=a(e),f.length||(f=c.parent()),g=f.hasClass("open"),d(),!g&&f.toggleClass("open"),!1}},a.fn.dropdown=function(b){return this.each(function(){var d=a(this),e=d.data("dropdown");e||d.data("dropdown",e=new c(this)),typeof b=="string"&&e[b].call(d)})},a.fn.dropdown.Constructor=c,a(function(){a("html").on("click.dropdown.data-api",d),a("body").on("click.dropdown.data-api",b,c.prototype.toggle)})}(window.jQuery),!function(a){function c(){var b=this,c=setTimeout(function(){b.$element.off(a.support.transition.end),d.call(b)},500);this.$element.one(a.support.transition.end,function(){clearTimeout(c),d.call(b)})}function d(a){this.$element.hide().trigger("hidden"),e.call(this)}function e(b){var c=this,d=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var e=a.support.transition&&d;this.$backdrop=a('<div class="modal-backdrop '+d+'" />').appendTo(document.body),this.options.backdrop!="static"&&this.$backdrop.click(a.proxy(this.hide,this)),e&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),e?this.$backdrop.one(a.support.transition.end,b):b()}else!this.isShown&&this.$backdrop?(this.$backdrop.removeClass("in"),a.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one(a.support.transition.end,a.proxy(f,this)):f.call(this)):b&&b()}function f(){this.$backdrop.remove(),this.$backdrop=null}function g(){var b=this;this.isShown&&this.options.keyboard?a(document).on("keyup.dismiss.modal",function(a){a.which==27&&b.hide()}):this.isShown||a(document).off("keyup.dismiss.modal")}"use strict";var b=function(b,c){this.options=c,this.$element=a(b).delegate('[data-dismiss="modal"]',"click.dismiss.modal",a.proxy(this.hide,this))};b.prototype={constructor:b,toggle:function(){return this[this.isShown?"hide":"show"]()},show:function(){var b=this;if(this.isShown)return;a("body").addClass("modal-open"),this.isShown=!0,this.$element.trigger("show"),g.call(this),e.call(this,function(){var c=a.support.transition&&b.$element.hasClass("fade");!b.$element.parent().length&&b.$element.appendTo(document.body),b.$element.show(),c&&b.$element[0].offsetWidth,b.$element.addClass("in"),c?b.$element.one(a.support.transition.end,function(){b.$element.trigger("shown")}):b.$element.trigger("shown")})},hide:function(b){b&&b.preventDefault();if(!this.isShown)return;var e=this;this.isShown=!1,a("body").removeClass("modal-open"),g.call(this),this.$element.trigger("hide").removeClass("in"),a.support.transition&&this.$element.hasClass("fade")?c.call(this):d.call(this)}},a.fn.modal=function(c){return this.each(function(){var d=a(this),e=d.data("modal"),f=a.extend({},a.fn.modal.defaults,d.data(),typeof c=="object"&&c);e||d.data("modal",e=new b(this,f)),typeof c=="string"?e[c]():f.show&&e.show()})},a.fn.modal.defaults={backdrop:!0,keyboard:!0,show:!0},a.fn.modal.Constructor=b,a(function(){a("body").on("click.modal.data-api",'[data-toggle="modal"]',function(b){var c=a(this),d,e=a(c.attr("data-target")||(d=c.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,"")),f=e.data("modal")?"toggle":a.extend({},e.data(),c.data());b.preventDefault(),e.modal(f)})})}(window.jQuery),!function(a){"use strict";var b=function(a,b){this.init("tooltip",a,b)};b.prototype={constructor:b,init:function(b,c,d){var e,f;this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.enabled=!0,this.options.trigger!="manual"&&(e=this.options.trigger=="hover"?"mouseenter":"focus",f=this.options.trigger=="hover"?"mouseleave":"blur",this.$element.on(e,this.options.selector,a.proxy(this.enter,this)),this.$element.on(f,this.options.selector,a.proxy(this.leave,this))),this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},getOptions:function(b){return b=a.extend({},a.fn[this.type].defaults,b,this.$element.data()),b.delay&&typeof b.delay=="number"&&(b.delay={show:b.delay,hide:b.delay}),b},enter:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);!c.options.delay||!c.options.delay.show?c.show():(c.hoverState="in",setTimeout(function(){c.hoverState=="in"&&c.show()},c.options.delay.show))},leave:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);!c.options.delay||!c.options.delay.hide?c.hide():(c.hoverState="out",setTimeout(function(){c.hoverState=="out"&&c.hide()},c.options.delay.hide))},show:function(){var a,b,c,d,e,f,g;if(this.hasContent()&&this.enabled){a=this.tip(),this.setContent(),this.options.animation&&a.addClass("fade"),f=typeof this.options.placement=="function"?this.options.placement.call(this,a[0],this.$element[0]):this.options.placement,b=/in/.test(f),a.remove().css({top:0,left:0,display:"block"}).appendTo(b?this.$element:document.body),c=this.getPosition(b),d=a[0].offsetWidth,e=a[0].offsetHeight;switch(b?f.split(" ")[1]:f){case"bottom":g={top:c.top+c.height,left:c.left+c.width/2-d/2};break;case"top":g={top:c.top-e,left:c.left+c.width/2-d/2};break;case"left":g={top:c.top+c.height/2-e/2,left:c.left-d};break;case"right":g={top:c.top+c.height/2-e/2,left:c.left+c.width}}a.css(g).addClass(f).addClass("in")}},setContent:function(){var a=this.tip();a.find(".tooltip-inner").html(this.getTitle()),a.removeClass("fade in top bottom left right")},hide:function(){function d(){var b=setTimeout(function(){c.off(a.support.transition.end).remove()},500);c.one(a.support.transition.end,function(){clearTimeout(b),c.remove()})}var b=this,c=this.tip();c.removeClass("in"),a.support.transition&&this.$tip.hasClass("fade")?d():c.remove()},fixTitle:function(){var a=this.$element;(a.attr("title")||typeof a.attr("data-original-title")!="string")&&a.attr("data-original-title",a.attr("title")||"").removeAttr("title")},hasContent:function(){return this.getTitle()},getPosition:function(b){return a.extend({},b?{top:0,left:0}:this.$element.offset(),{width:this.$element[0].offsetWidth,height:this.$element[0].offsetHeight})},getTitle:function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||(typeof c.title=="function"?c.title.call(b[0]):c.title),a=a.toString().replace(/(^\s*|\s*$)/,""),a},tip:function(){return this.$tip=this.$tip||a(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(){this[this.tip().hasClass("in")?"hide":"show"]()}},a.fn.tooltip=function(c){return this.each(function(){var d=a(this),e=d.data("tooltip"),f=typeof c=="object"&&c;e||d.data("tooltip",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.tooltip.Constructor=b,a.fn.tooltip.defaults={animation:!0,delay:0,selector:!1,placement:"top",trigger:"hover",title:"",template:'<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>'}}(window.jQuery),!function(a){"use strict";var b=function(a,b){this.init("popover",a,b)};b.prototype=a.extend({},a.fn.tooltip.Constructor.prototype,{constructor:b,setContent:function(){var b=this.tip(),c=this.getTitle(),d=this.getContent();b.find(".popover-title")[a.type(c)=="object"?"append":"html"](c),b.find(".popover-content > *")[a.type(d)=="object"?"append":"html"](d),b.removeClass("fade top bottom left right in")},hasContent:function(){return this.getTitle()||this.getContent()},getContent:function(){var a,b=this.$element,c=this.options;return a=b.attr("data-content")||(typeof c.content=="function"?c.content.call(b[0]):c.content),a=a.toString().replace(/(^\s*|\s*$)/,""),a},tip:function(){return this.$tip||(this.$tip=a(this.options.template)),this.$tip}}),a.fn.popover=function(c){return this.each(function(){var d=a(this),e=d.data("popover"),f=typeof c=="object"&&c;e||d.data("popover",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.popover.Constructor=b,a.fn.popover.defaults=a.extend({},a.fn.tooltip.defaults,{placement:"right",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(a){function b(b,c){var d=a.proxy(this.process,this),e=a(b).is("body")?a(window):a(b),f;this.options=a.extend({},a.fn.scrollspy.defaults,c),this.$scrollElement=e.on("scroll.scroll.data-api",d),this.selector=(this.options.target||(f=a(b).attr("href"))&&f.replace(/.*(?=#[^\s]+$)/,"")||"")+" .nav li > a",this.$body=a("body").on("click.scroll.data-api",this.selector,d),this.refresh(),this.process()}"use strict",b.prototype={constructor:b,refresh:function(){this.targets=this.$body.find(this.selector).map(function(){var b=a(this).attr("href");return/^#\w/.test(b)&&a(b).length?b:null}),this.offsets=a.map(this.targets,function(b){return a(b).position().top})},process:function(){var a=this.$scrollElement.scrollTop()+this.options.offset,b=this.offsets,c=this.targets,d=this.activeTarget,e;for(e=b.length;e--;)d!=c[e]&&a>=b[e]&&(!b[e+1]||a<=b[e+1])&&this.activate(c[e])},activate:function(a){var b;this.activeTarget=a,this.$body.find(this.selector).parent(".active").removeClass("active"),b=this.$body.find(this.selector+'[href="'+a+'"]').parent("li").addClass("active"),b.parent(".dropdown-menu")&&b.closest("li.dropdown").addClass("active")}},a.fn.scrollspy=function(c){return this.each(function(){var d=a(this),e=d.data("scrollspy"),f=typeof c=="object"&&c;e||d.data("scrollspy",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.scrollspy.Constructor=b,a.fn.scrollspy.defaults={offset:10},a(function(){a('[data-spy="scroll"]').each(function(){var b=a(this);b.scrollspy(b.data())})})}(window.jQuery),!function(a){"use strict";var b=function(b){this.element=a(b)};b.prototype={constructor:b,show:function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.attr("data-target"),e,f;d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,""));if(b.parent("li").hasClass("active"))return;e=c.find(".active a").last()[0],b.trigger({type:"show",relatedTarget:e}),f=a(d),this.activate(b.parent("li"),c),this.activate(f,f.parent(),function(){b.trigger({type:"shown",relatedTarget:e})})},activate:function(b,c,d){function g(){e.removeClass("active").find("> .dropdown-menu > .active").removeClass("active"),b.addClass("active"),f?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu")&&b.closest("li.dropdown").addClass("active"),d&&d()}var e=c.find("> .active"),f=d&&a.support.transition&&e.hasClass("fade");f?e.one(a.support.transition.end,g):g(),e.removeClass("in")}},a.fn.tab=function(c){return this.each(function(){var d=a(this),e=d.data("tab");e||d.data("tab",e=new b(this)),typeof c=="string"&&e[c]()})},a.fn.tab.Constructor=b,a(function(){a("body").on("click.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"]',function(b){b.preventDefault(),a(this).tab("show")})})}(window.jQuery),!function(a){"use strict";var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.typeahead.defaults,c),this.matcher=this.options.matcher||this.matcher,this.sorter=this.options.sorter||this.sorter,this.highlighter=this.options.highlighter||this.highlighter,this.$menu=a(this.options.menu).appendTo("body"),this.source=this.options.source,this.shown=!1,this.listen()};b.prototype={constructor:b,select:function(){var a=this.$menu.find(".active").attr("data-value");return this.$element.val(a),this.hide()},show:function(){var b=a.extend({},this.$element.offset(),{height:this.$element[0].offsetHeight});return this.$menu.css({top:b.top+b.height,left:b.left}),this.$menu.show(),this.shown=!0,this},hide:function(){return this.$menu.hide(),this.shown=!1,this},lookup:function(b){var c=this,d,e;return this.query=this.$element.val(),this.query?(d=a.grep(this.source,function(a){if(c.matcher(a))return a}),d=this.sorter(d),d.length?this.render(d.slice(0,this.options.items)).show():this.shown?this.hide():this):this.shown?this.hide():this},matcher:function(a){return~a.toLowerCase().indexOf(this.query.toLowerCase())},sorter:function(a){var b=[],c=[],d=[],e;while(e=a.shift())e.toLowerCase().indexOf(this.query.toLowerCase())?~e.indexOf(this.query)?c.push(e):d.push(e):b.push(e);return b.concat(c,d)},highlighter:function(a){return a.replace(new RegExp("("+this.query+")","ig"),function(a,b){return"<strong>"+b+"</strong>"})},render:function(b){var c=this;return b=a(b).map(function(b,d){return b=a(c.options.item).attr("data-value",d),b.find("a").html(c.highlighter(d)),b[0]}),b.first().addClass("active"),this.$menu.html(b),this},next:function(b){var c=this.$menu.find(".active").removeClass("active"),d=c.next();d.length||(d=a(this.$menu.find("li")[0])),d.addClass("active")},prev:function(a){var b=this.$menu.find(".active").removeClass("active"),c=b.prev();c.length||(c=this.$menu.find("li").last()),c.addClass("active")},listen:function(){this.$element.on("blur",a.proxy(this.blur,this)).on("keypress",a.proxy(this.keypress,this)).on("keyup",a.proxy(this.keyup,this)),(a.browser.webkit||a.browser.msie)&&this.$element.on("keydown",a.proxy(this.keypress,this)),this.$menu.on("click",a.proxy(this.click,this)).on("mouseenter","li",a.proxy(this.mouseenter,this))},keyup:function(a){a.stopPropagation(),a.preventDefault();switch(a.keyCode){case 40:case 38:break;case 9:case 13:if(!this.shown)return;this.select();break;case 27:this.hide();break;default:this.lookup()}},keypress:function(a){a.stopPropagation();if(!this.shown)return;switch(a.keyCode){case 9:case 13:case 27:a.preventDefault();break;case 38:a.preventDefault(),this.prev();break;case 40:a.preventDefault(),this.next()}},blur:function(a){var b=this;a.stopPropagation(),a.preventDefault(),setTimeout(function(){b.hide()},150)},click:function(a){a.stopPropagation(),a.preventDefault(),this.select()},mouseenter:function(b){this.$menu.find(".active").removeClass("active"),a(b.currentTarget).addClass("active")}},a.fn.typeahead=function(c){return this.each(function(){var d=a(this),e=d.data("typeahead"),f=typeof c=="object"&&c;e||d.data("typeahead",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.typeahead.defaults={source:[],items:8,menu:'<ul class="typeahead dropdown-menu"></ul>',item:'<li><a href="#"></a></li>'},a.fn.typeahead.Constructor=b,a(function(){a("body").on("focus.typeahead.data-api",'[data-provide="typeahead"]',function(b){var c=a(this);if(c.data("typeahead"))return;b.preventDefault(),c.typeahead(c.data())})})}(window.jQuery);
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Bootstrap Responsive v2.0.0
2
+ * Bootstrap Responsive v2.0.1
3
3
  *
4
4
  * Copyright 2012 Twitter, Inc
5
5
  * Licensed under the Apache License v2.0
@@ -7,6 +7,16 @@
7
7
  *
8
8
  * Designed and built with all the love in the world @twitter by @mdo and @fat.
9
9
  */
10
+ .clearfix {
11
+ *zoom: 1;
12
+ }
13
+ .clearfix:before, .clearfix:after {
14
+ display: table;
15
+ content: "";
16
+ }
17
+ .clearfix:after {
18
+ clear: both;
19
+ }
10
20
  .hidden {
11
21
  display: none;
12
22
  visibility: hidden;
@@ -25,7 +35,7 @@
25
35
  .uneditable-input {
26
36
  display: block;
27
37
  width: 100%;
28
- height: 28px;
38
+ min-height: 28px;
29
39
  /* Make inputs at least the height of their button counterpart */
30
40
 
31
41
  /* Makes inputs behave like true block-level elements */
@@ -84,7 +94,7 @@
84
94
  position: static;
85
95
  }
86
96
  }
87
- @media (max-width: 768px) {
97
+ @media (max-width: 767px) {
88
98
  .container {
89
99
  width: auto;
90
100
  padding: 0 20px;
@@ -102,7 +112,7 @@
102
112
  margin: 0;
103
113
  }
104
114
  }
105
- @media (min-width: 768px) and (max-width: 980px) {
115
+ @media (min-width: 768px) and (max-width: 979px) {
106
116
  .row {
107
117
  margin-left: -20px;
108
118
  *zoom: 1;
@@ -205,40 +215,40 @@
205
215
  .row-fluid > [class*="span"]:first-child {
206
216
  margin-left: 0;
207
217
  }
208
- .row-fluid .span1 {
218
+ .row-fluid > .span1 {
209
219
  width: 5.801104972%;
210
220
  }
211
- .row-fluid .span2 {
221
+ .row-fluid > .span2 {
212
222
  width: 14.364640883%;
213
223
  }
214
- .row-fluid .span3 {
224
+ .row-fluid > .span3 {
215
225
  width: 22.928176794%;
216
226
  }
217
- .row-fluid .span4 {
227
+ .row-fluid > .span4 {
218
228
  width: 31.491712705%;
219
229
  }
220
- .row-fluid .span5 {
230
+ .row-fluid > .span5 {
221
231
  width: 40.055248616%;
222
232
  }
223
- .row-fluid .span6 {
233
+ .row-fluid > .span6 {
224
234
  width: 48.618784527%;
225
235
  }
226
- .row-fluid .span7 {
236
+ .row-fluid > .span7 {
227
237
  width: 57.182320438000005%;
228
238
  }
229
- .row-fluid .span8 {
239
+ .row-fluid > .span8 {
230
240
  width: 65.74585634900001%;
231
241
  }
232
- .row-fluid .span9 {
242
+ .row-fluid > .span9 {
233
243
  width: 74.30939226%;
234
244
  }
235
- .row-fluid .span10 {
245
+ .row-fluid > .span10 {
236
246
  width: 82.87292817100001%;
237
247
  }
238
- .row-fluid .span11 {
248
+ .row-fluid > .span11 {
239
249
  width: 91.436464082%;
240
250
  }
241
- .row-fluid .span12 {
251
+ .row-fluid > .span12 {
242
252
  width: 99.999999993%;
243
253
  }
244
254
  input.span1, textarea.span1, .uneditable-input.span1 {
@@ -278,7 +288,7 @@
278
288
  width: 714px;
279
289
  }
280
290
  }
281
- @media (max-width: 980px) {
291
+ @media (max-width: 979px) {
282
292
  body {
283
293
  padding-top: 0;
284
294
  }
@@ -314,6 +324,10 @@
314
324
  .navbar .nav > .divider-vertical {
315
325
  display: none;
316
326
  }
327
+ .navbar .nav .nav-header {
328
+ color: #999999;
329
+ text-shadow: none;
330
+ }
317
331
  .navbar .nav > li > a, .navbar .dropdown-menu a {
318
332
  padding: 6px 15px;
319
333
  font-weight: bold;
@@ -486,40 +500,40 @@
486
500
  .row-fluid > [class*="span"]:first-child {
487
501
  margin-left: 0;
488
502
  }
489
- .row-fluid .span1 {
503
+ .row-fluid > .span1 {
490
504
  width: 5.982905983%;
491
505
  }
492
- .row-fluid .span2 {
506
+ .row-fluid > .span2 {
493
507
  width: 14.529914530000001%;
494
508
  }
495
- .row-fluid .span3 {
509
+ .row-fluid > .span3 {
496
510
  width: 23.076923077%;
497
511
  }
498
- .row-fluid .span4 {
512
+ .row-fluid > .span4 {
499
513
  width: 31.623931624%;
500
514
  }
501
- .row-fluid .span5 {
515
+ .row-fluid > .span5 {
502
516
  width: 40.170940171000005%;
503
517
  }
504
- .row-fluid .span6 {
518
+ .row-fluid > .span6 {
505
519
  width: 48.717948718%;
506
520
  }
507
- .row-fluid .span7 {
521
+ .row-fluid > .span7 {
508
522
  width: 57.264957265%;
509
523
  }
510
- .row-fluid .span8 {
524
+ .row-fluid > .span8 {
511
525
  width: 65.81196581200001%;
512
526
  }
513
- .row-fluid .span9 {
527
+ .row-fluid > .span9 {
514
528
  width: 74.358974359%;
515
529
  }
516
- .row-fluid .span10 {
530
+ .row-fluid > .span10 {
517
531
  width: 82.905982906%;
518
532
  }
519
- .row-fluid .span11 {
533
+ .row-fluid > .span11 {
520
534
  width: 91.45299145300001%;
521
535
  }
522
- .row-fluid .span12 {
536
+ .row-fluid > .span12 {
523
537
  width: 100%;
524
538
  }
525
539
  input.span1, textarea.span1, .uneditable-input.span1 {
@@ -1,3 +1,4 @@
1
-
1
+ .clearfix{*zoom:1;}.clearfix:before,.clearfix:after{display:table;content:"";}
2
+ .clearfix:after{clear:both;}
2
3
  .hidden{display:none;visibility:hidden;}
3
- @media (max-width:480px){.nav-collapse{-webkit-transform:translate3d(0, 0, 0);} .page-header h1 small{display:block;line-height:18px;} input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{display:block;width:100%;height:28px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;} .input-prepend input[class*="span"],.input-append input[class*="span"]{width:auto;} input[type="checkbox"],input[type="radio"]{border:1px solid #ccc;} .form-horizontal .control-group>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-left:10px;padding-right:10px;} .modal{position:absolute;top:10px;left:10px;right:10px;width:auto;margin:0;}.modal.fade.in{top:auto;} .modal-header .close{padding:10px;margin:-10px;} .carousel-caption{position:static;}}@media (max-width:768px){.container{width:auto;padding:0 20px;} .row-fluid{width:100%;} .row{margin-left:0;} .row>[class*="span"],.row-fluid>[class*="span"]{float:none;display:block;width:auto;margin:0;}}@media (min-width:768px) and (max-width:980px){.row{margin-left:-20px;*zoom:1;}.row:before,.row:after{display:table;content:"";} .row:after{clear:both;} [class*="span"]{float:left;margin-left:20px;} .span1{width:42px;} .span2{width:104px;} .span3{width:166px;} .span4{width:228px;} .span5{width:290px;} .span6{width:352px;} .span7{width:414px;} .span8{width:476px;} .span9{width:538px;} .span10{width:600px;} .span11{width:662px;} .span12,.container{width:724px;} .offset1{margin-left:82px;} .offset2{margin-left:144px;} .offset3{margin-left:206px;} .offset4{margin-left:268px;} .offset5{margin-left:330px;} .offset6{margin-left:392px;} .offset7{margin-left:454px;} .offset8{margin-left:516px;} .offset9{margin-left:578px;} .offset10{margin-left:640px;} .offset11{margin-left:702px;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";} .row-fluid:after{clear:both;} .row-fluid>[class*="span"]{float:left;margin-left:2.762430939%;} .row-fluid>[class*="span"]:first-child{margin-left:0;} .row-fluid .span1{width:5.801104972%;} .row-fluid .span2{width:14.364640883%;} .row-fluid .span3{width:22.928176794%;} .row-fluid .span4{width:31.491712705%;} .row-fluid .span5{width:40.055248616%;} .row-fluid .span6{width:48.618784527%;} .row-fluid .span7{width:57.182320438000005%;} .row-fluid .span8{width:65.74585634900001%;} .row-fluid .span9{width:74.30939226%;} .row-fluid .span10{width:82.87292817100001%;} .row-fluid .span11{width:91.436464082%;} .row-fluid .span12{width:99.999999993%;} input.span1,textarea.span1,.uneditable-input.span1{width:32px;} input.span2,textarea.span2,.uneditable-input.span2{width:94px;} input.span3,textarea.span3,.uneditable-input.span3{width:156px;} input.span4,textarea.span4,.uneditable-input.span4{width:218px;} input.span5,textarea.span5,.uneditable-input.span5{width:280px;} input.span6,textarea.span6,.uneditable-input.span6{width:342px;} input.span7,textarea.span7,.uneditable-input.span7{width:404px;} input.span8,textarea.span8,.uneditable-input.span8{width:466px;} input.span9,textarea.span9,.uneditable-input.span9{width:528px;} input.span10,textarea.span10,.uneditable-input.span10{width:590px;} input.span11,textarea.span11,.uneditable-input.span11{width:652px;} input.span12,textarea.span12,.uneditable-input.span12{width:714px;}}@media (max-width:980px){body{padding-top:0;} .navbar-fixed-top{position:static;margin-bottom:18px;} .navbar-fixed-top .navbar-inner{padding:5px;} .navbar .container{width:auto;padding:0;} .navbar .brand{padding-left:10px;padding-right:10px;margin:0 0 0 -5px;} .navbar .nav-collapse{clear:left;} .navbar .nav{float:none;margin:0 0 9px;} .navbar .nav>li{float:none;} .navbar .nav>li>a{margin-bottom:2px;} .navbar .nav>.divider-vertical{display:none;} .navbar .nav>li>a,.navbar .dropdown-menu a{padding:6px 15px;font-weight:bold;color:#999999;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} .navbar .dropdown-menu li+li a{margin-bottom:2px;} .navbar .nav>li>a:hover,.navbar .dropdown-menu a:hover{background-color:#222222;} .navbar .dropdown-menu{position:static;top:auto;left:auto;float:none;display:block;max-width:none;margin:0 15px;padding:0;background-color:transparent;border:none;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} .navbar .dropdown-menu:before,.navbar .dropdown-menu:after{display:none;} .navbar .dropdown-menu .divider{display:none;} .navbar-form,.navbar-search{float:none;padding:9px 15px;margin:9px 0;border-top:1px solid #222222;border-bottom:1px solid #222222;-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 .nav.pull-right{float:none;margin-left:0;} .navbar-static .navbar-inner{padding-left:10px;padding-right:10px;} .btn-navbar{display:block;} .nav-collapse{overflow:hidden;height:0;}}@media (min-width:980px){.nav-collapse.collapse{height:auto !important;}}@media (min-width:1200px){.row{margin-left:-30px;*zoom:1;}.row:before,.row:after{display:table;content:"";} .row:after{clear:both;} [class*="span"]{float:left;margin-left:30px;} .span1{width:70px;} .span2{width:170px;} .span3{width:270px;} .span4{width:370px;} .span5{width:470px;} .span6{width:570px;} .span7{width:670px;} .span8{width:770px;} .span9{width:870px;} .span10{width:970px;} .span11{width:1070px;} .span12,.container{width:1170px;} .offset1{margin-left:130px;} .offset2{margin-left:230px;} .offset3{margin-left:330px;} .offset4{margin-left:430px;} .offset5{margin-left:530px;} .offset6{margin-left:630px;} .offset7{margin-left:730px;} .offset8{margin-left:830px;} .offset9{margin-left:930px;} .offset10{margin-left:1030px;} .offset11{margin-left:1130px;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";} .row-fluid:after{clear:both;} .row-fluid>[class*="span"]{float:left;margin-left:2.564102564%;} .row-fluid>[class*="span"]:first-child{margin-left:0;} .row-fluid .span1{width:5.982905983%;} .row-fluid .span2{width:14.529914530000001%;} .row-fluid .span3{width:23.076923077%;} .row-fluid .span4{width:31.623931624%;} .row-fluid .span5{width:40.170940171000005%;} .row-fluid .span6{width:48.717948718%;} .row-fluid .span7{width:57.264957265%;} .row-fluid .span8{width:65.81196581200001%;} .row-fluid .span9{width:74.358974359%;} .row-fluid .span10{width:82.905982906%;} .row-fluid .span11{width:91.45299145300001%;} .row-fluid .span12{width:100%;} input.span1,textarea.span1,.uneditable-input.span1{width:60px;} input.span2,textarea.span2,.uneditable-input.span2{width:160px;} input.span3,textarea.span3,.uneditable-input.span3{width:260px;} input.span4,textarea.span4,.uneditable-input.span4{width:360px;} input.span5,textarea.span5,.uneditable-input.span5{width:460px;} input.span6,textarea.span6,.uneditable-input.span6{width:560px;} input.span7,textarea.span7,.uneditable-input.span7{width:660px;} input.span8,textarea.span8,.uneditable-input.span8{width:760px;} input.span9,textarea.span9,.uneditable-input.span9{width:860px;} input.span10,textarea.span10,.uneditable-input.span10{width:960px;} input.span11,textarea.span11,.uneditable-input.span11{width:1060px;} input.span12,textarea.span12,.uneditable-input.span12{width:1160px;} .thumbnails{margin-left:-30px;} .thumbnails>li{margin-left:30px;}}
4
+ @media (max-width:480px){.nav-collapse{-webkit-transform:translate3d(0, 0, 0);} .page-header h1 small{display:block;line-height:18px;} input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{display:block;width:100%;min-height:28px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;} .input-prepend input[class*="span"],.input-append input[class*="span"]{width:auto;} input[type="checkbox"],input[type="radio"]{border:1px solid #ccc;} .form-horizontal .control-group>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-left:10px;padding-right:10px;} .modal{position:absolute;top:10px;left:10px;right:10px;width:auto;margin:0;}.modal.fade.in{top:auto;} .modal-header .close{padding:10px;margin:-10px;} .carousel-caption{position:static;}}@media (max-width:767px){.container{width:auto;padding:0 20px;} .row-fluid{width:100%;} .row{margin-left:0;} .row>[class*="span"],.row-fluid>[class*="span"]{float:none;display:block;width:auto;margin:0;}}@media (min-width:768px) and (max-width:979px){.row{margin-left:-20px;*zoom:1;}.row:before,.row:after{display:table;content:"";} .row:after{clear:both;} [class*="span"]{float:left;margin-left:20px;} .span1{width:42px;} .span2{width:104px;} .span3{width:166px;} .span4{width:228px;} .span5{width:290px;} .span6{width:352px;} .span7{width:414px;} .span8{width:476px;} .span9{width:538px;} .span10{width:600px;} .span11{width:662px;} .span12,.container{width:724px;} .offset1{margin-left:82px;} .offset2{margin-left:144px;} .offset3{margin-left:206px;} .offset4{margin-left:268px;} .offset5{margin-left:330px;} .offset6{margin-left:392px;} .offset7{margin-left:454px;} .offset8{margin-left:516px;} .offset9{margin-left:578px;} .offset10{margin-left:640px;} .offset11{margin-left:702px;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";} .row-fluid:after{clear:both;} .row-fluid>[class*="span"]{float:left;margin-left:2.762430939%;} .row-fluid>[class*="span"]:first-child{margin-left:0;} .row-fluid>.span1{width:5.801104972%;} .row-fluid>.span2{width:14.364640883%;} .row-fluid>.span3{width:22.928176794%;} .row-fluid>.span4{width:31.491712705%;} .row-fluid>.span5{width:40.055248616%;} .row-fluid>.span6{width:48.618784527%;} .row-fluid>.span7{width:57.182320438000005%;} .row-fluid>.span8{width:65.74585634900001%;} .row-fluid>.span9{width:74.30939226%;} .row-fluid>.span10{width:82.87292817100001%;} .row-fluid>.span11{width:91.436464082%;} .row-fluid>.span12{width:99.999999993%;} input.span1,textarea.span1,.uneditable-input.span1{width:32px;} input.span2,textarea.span2,.uneditable-input.span2{width:94px;} input.span3,textarea.span3,.uneditable-input.span3{width:156px;} input.span4,textarea.span4,.uneditable-input.span4{width:218px;} input.span5,textarea.span5,.uneditable-input.span5{width:280px;} input.span6,textarea.span6,.uneditable-input.span6{width:342px;} input.span7,textarea.span7,.uneditable-input.span7{width:404px;} input.span8,textarea.span8,.uneditable-input.span8{width:466px;} input.span9,textarea.span9,.uneditable-input.span9{width:528px;} input.span10,textarea.span10,.uneditable-input.span10{width:590px;} input.span11,textarea.span11,.uneditable-input.span11{width:652px;} input.span12,textarea.span12,.uneditable-input.span12{width:714px;}}@media (max-width:979px){body{padding-top:0;} .navbar-fixed-top{position:static;margin-bottom:18px;} .navbar-fixed-top .navbar-inner{padding:5px;} .navbar .container{width:auto;padding:0;} .navbar .brand{padding-left:10px;padding-right:10px;margin:0 0 0 -5px;} .navbar .nav-collapse{clear:left;} .navbar .nav{float:none;margin:0 0 9px;} .navbar .nav>li{float:none;} .navbar .nav>li>a{margin-bottom:2px;} .navbar .nav>.divider-vertical{display:none;} .navbar .nav .nav-header{color:#999999;text-shadow:none;} .navbar .nav>li>a,.navbar .dropdown-menu a{padding:6px 15px;font-weight:bold;color:#999999;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} .navbar .dropdown-menu li+li a{margin-bottom:2px;} .navbar .nav>li>a:hover,.navbar .dropdown-menu a:hover{background-color:#222222;} .navbar .dropdown-menu{position:static;top:auto;left:auto;float:none;display:block;max-width:none;margin:0 15px;padding:0;background-color:transparent;border:none;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} .navbar .dropdown-menu:before,.navbar .dropdown-menu:after{display:none;} .navbar .dropdown-menu .divider{display:none;} .navbar-form,.navbar-search{float:none;padding:9px 15px;margin:9px 0;border-top:1px solid #222222;border-bottom:1px solid #222222;-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 .nav.pull-right{float:none;margin-left:0;} .navbar-static .navbar-inner{padding-left:10px;padding-right:10px;} .btn-navbar{display:block;} .nav-collapse{overflow:hidden;height:0;}}@media (min-width:980px){.nav-collapse.collapse{height:auto !important;}}@media (min-width:1200px){.row{margin-left:-30px;*zoom:1;}.row:before,.row:after{display:table;content:"";} .row:after{clear:both;} [class*="span"]{float:left;margin-left:30px;} .span1{width:70px;} .span2{width:170px;} .span3{width:270px;} .span4{width:370px;} .span5{width:470px;} .span6{width:570px;} .span7{width:670px;} .span8{width:770px;} .span9{width:870px;} .span10{width:970px;} .span11{width:1070px;} .span12,.container{width:1170px;} .offset1{margin-left:130px;} .offset2{margin-left:230px;} .offset3{margin-left:330px;} .offset4{margin-left:430px;} .offset5{margin-left:530px;} .offset6{margin-left:630px;} .offset7{margin-left:730px;} .offset8{margin-left:830px;} .offset9{margin-left:930px;} .offset10{margin-left:1030px;} .offset11{margin-left:1130px;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";} .row-fluid:after{clear:both;} .row-fluid>[class*="span"]{float:left;margin-left:2.564102564%;} .row-fluid>[class*="span"]:first-child{margin-left:0;} .row-fluid>.span1{width:5.982905983%;} .row-fluid>.span2{width:14.529914530000001%;} .row-fluid>.span3{width:23.076923077%;} .row-fluid>.span4{width:31.623931624%;} .row-fluid>.span5{width:40.170940171000005%;} .row-fluid>.span6{width:48.717948718%;} .row-fluid>.span7{width:57.264957265%;} .row-fluid>.span8{width:65.81196581200001%;} .row-fluid>.span9{width:74.358974359%;} .row-fluid>.span10{width:82.905982906%;} .row-fluid>.span11{width:91.45299145300001%;} .row-fluid>.span12{width:100%;} input.span1,textarea.span1,.uneditable-input.span1{width:60px;} input.span2,textarea.span2,.uneditable-input.span2{width:160px;} input.span3,textarea.span3,.uneditable-input.span3{width:260px;} input.span4,textarea.span4,.uneditable-input.span4{width:360px;} input.span5,textarea.span5,.uneditable-input.span5{width:460px;} input.span6,textarea.span6,.uneditable-input.span6{width:560px;} input.span7,textarea.span7,.uneditable-input.span7{width:660px;} input.span8,textarea.span8,.uneditable-input.span8{width:760px;} input.span9,textarea.span9,.uneditable-input.span9{width:860px;} input.span10,textarea.span10,.uneditable-input.span10{width:960px;} input.span11,textarea.span11,.uneditable-input.span11{width:1060px;} input.span12,textarea.span12,.uneditable-input.span12{width:1160px;} .thumbnails{margin-left:-30px;} .thumbnails>li{margin-left:30px;}}
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Bootstrap v2.0.0
2
+ * Bootstrap v2.0.1
3
3
  *
4
4
  * Copyright 2012 Twitter, Inc
5
5
  * Licensed under the Apache License v2.0
@@ -33,7 +33,7 @@ html {
33
33
  -ms-text-size-adjust: 100%;
34
34
  }
35
35
  a:focus {
36
- outline: thin dotted;
36
+ outline: thin dotted #333;
37
37
  outline: 5px auto -webkit-focus-ring-color;
38
38
  outline-offset: -2px;
39
39
  }
@@ -94,6 +94,16 @@ textarea {
94
94
  overflow: auto;
95
95
  vertical-align: top;
96
96
  }
97
+ .clearfix {
98
+ *zoom: 1;
99
+ }
100
+ .clearfix:before, .clearfix:after {
101
+ display: table;
102
+ content: "";
103
+ }
104
+ .clearfix:after {
105
+ clear: both;
106
+ }
97
107
  body {
98
108
  margin: 0;
99
109
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
@@ -212,40 +222,40 @@ a:hover {
212
222
  .row-fluid > [class*="span"]:first-child {
213
223
  margin-left: 0;
214
224
  }
215
- .row-fluid .span1 {
225
+ .row-fluid > .span1 {
216
226
  width: 6.382978723%;
217
227
  }
218
- .row-fluid .span2 {
228
+ .row-fluid > .span2 {
219
229
  width: 14.89361702%;
220
230
  }
221
- .row-fluid .span3 {
231
+ .row-fluid > .span3 {
222
232
  width: 23.404255317%;
223
233
  }
224
- .row-fluid .span4 {
234
+ .row-fluid > .span4 {
225
235
  width: 31.914893614%;
226
236
  }
227
- .row-fluid .span5 {
237
+ .row-fluid > .span5 {
228
238
  width: 40.425531911%;
229
239
  }
230
- .row-fluid .span6 {
240
+ .row-fluid > .span6 {
231
241
  width: 48.93617020799999%;
232
242
  }
233
- .row-fluid .span7 {
243
+ .row-fluid > .span7 {
234
244
  width: 57.446808505%;
235
245
  }
236
- .row-fluid .span8 {
246
+ .row-fluid > .span8 {
237
247
  width: 65.95744680199999%;
238
248
  }
239
- .row-fluid .span9 {
249
+ .row-fluid > .span9 {
240
250
  width: 74.468085099%;
241
251
  }
242
- .row-fluid .span10 {
252
+ .row-fluid > .span10 {
243
253
  width: 82.97872339599999%;
244
254
  }
245
- .row-fluid .span11 {
255
+ .row-fluid > .span11 {
246
256
  width: 91.489361693%;
247
257
  }
248
- .row-fluid .span12 {
258
+ .row-fluid > .span12 {
249
259
  width: 99.99999998999999%;
250
260
  }
251
261
  .container {
@@ -374,7 +384,7 @@ ol {
374
384
  li {
375
385
  line-height: 18px;
376
386
  }
377
- ul.unstyled {
387
+ ul.unstyled, ol.unstyled {
378
388
  margin-left: 0;
379
389
  list-style: none;
380
390
  }
@@ -393,7 +403,7 @@ dd {
393
403
  hr {
394
404
  margin: 18px 0;
395
405
  border: 0;
396
- border-top: 1px solid #e5e5e5;
406
+ border-top: 1px solid #eeeeee;
397
407
  border-bottom: 1px solid #ffffff;
398
408
  }
399
409
  strong {
@@ -488,13 +498,20 @@ pre {
488
498
  white-space: pre;
489
499
  white-space: pre-wrap;
490
500
  word-break: break-all;
501
+ word-wrap: break-word;
491
502
  }
492
503
  pre.prettyprint {
493
504
  margin-bottom: 18px;
494
505
  }
495
506
  pre code {
496
507
  padding: 0;
508
+ color: inherit;
497
509
  background-color: transparent;
510
+ border: 0;
511
+ }
512
+ .pre-scrollable {
513
+ max-height: 340px;
514
+ overflow-y: scroll;
498
515
  }
499
516
  form {
500
517
  margin: 0 0 18px;
@@ -515,16 +532,25 @@ legend {
515
532
  border: 0;
516
533
  border-bottom: 1px solid #eee;
517
534
  }
535
+ legend small {
536
+ font-size: 13.5px;
537
+ color: #999999;
538
+ }
518
539
  label,
519
540
  input,
520
541
  button,
521
542
  select,
522
543
  textarea {
523
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
524
544
  font-size: 13px;
525
545
  font-weight: normal;
526
546
  line-height: 18px;
527
547
  }
548
+ input,
549
+ button,
550
+ select,
551
+ textarea {
552
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
553
+ }
528
554
  label {
529
555
  display: block;
530
556
  margin-bottom: 5px;
@@ -563,13 +589,19 @@ input[type="image"], input[type="checkbox"], input[type="radio"] {
563
589
  /* IE7 */
564
590
 
565
591
  line-height: normal;
566
- border: 0;
567
592
  cursor: pointer;
568
593
  -webkit-border-radius: 0;
569
594
  -moz-border-radius: 0;
570
595
  border-radius: 0;
596
+ border: 0 \9;
597
+ /* IE9 and down */
598
+
599
+ }
600
+ input[type="image"] {
601
+ border: 0;
571
602
  }
572
603
  input[type="file"] {
604
+ width: auto;
573
605
  padding: initial;
574
606
  line-height: initial;
575
607
  border: initial;
@@ -592,6 +624,9 @@ select, input[type="file"] {
592
624
 
593
625
  line-height: 28px;
594
626
  }
627
+ input[type="file"] {
628
+ line-height: 18px \9;
629
+ }
595
630
  select {
596
631
  width: 220px;
597
632
  background-color: #ffffff;
@@ -622,15 +657,13 @@ input[type="hidden"] {
622
657
  }
623
658
  .radio.inline, .checkbox.inline {
624
659
  display: inline-block;
660
+ padding-top: 5px;
625
661
  margin-bottom: 0;
626
662
  vertical-align: middle;
627
663
  }
628
664
  .radio.inline + .radio.inline, .checkbox.inline + .checkbox.inline {
629
665
  margin-left: 10px;
630
666
  }
631
- .controls > .radio.inline:first-child, .controls > .checkbox.inline:first-child {
632
- padding-top: 0;
633
- }
634
667
  input, textarea {
635
668
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
636
669
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
@@ -648,14 +681,17 @@ input:focus, textarea:focus {
648
681
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
649
682
  outline: 0;
650
683
  outline: thin dotted \9;
651
- /* IE6-8 */
684
+ /* IE6-9 */
652
685
 
653
686
  }
654
- input[type="file"]:focus, input[type="checkbox"]:focus, select:focus {
687
+ input[type="file"]:focus,
688
+ input[type="radio"]:focus,
689
+ input[type="checkbox"]:focus,
690
+ select:focus {
655
691
  -webkit-box-shadow: none;
656
692
  -moz-box-shadow: none;
657
693
  box-shadow: none;
658
- outline: thin dotted;
694
+ outline: thin dotted #333;
659
695
  outline: 5px auto -webkit-focus-ring-color;
660
696
  outline-offset: -2px;
661
697
  }
@@ -817,6 +853,7 @@ input:focus:required:invalid:focus, textarea:focus:required:invalid:focus, selec
817
853
  color: #999999;
818
854
  }
819
855
  .help-block {
856
+ display: block;
820
857
  margin-top: 5px;
821
858
  margin-bottom: 0;
822
859
  color: #999999;
@@ -898,6 +935,7 @@ input:focus:required:invalid:focus, textarea:focus:required:invalid:focus, selec
898
935
  border-radius: 3px 0 0 3px;
899
936
  }
900
937
  .input-append .uneditable-input {
938
+ border-left-color: #eee;
901
939
  border-right-color: #ccc;
902
940
  }
903
941
  .input-append .add-on {
@@ -939,6 +977,9 @@ input:focus:required:invalid:focus, textarea:focus:required:invalid:focus, selec
939
977
  display: inline-block;
940
978
  margin-bottom: 0;
941
979
  }
980
+ .form-search .hide, .form-inline .hide, .form-horizontal .hide {
981
+ display: none;
982
+ }
942
983
  .form-search label,
943
984
  .form-inline label,
944
985
  .form-search .input-append,
@@ -953,10 +994,17 @@ input:focus:required:invalid:focus, textarea:focus:required:invalid:focus, selec
953
994
  .form-inline .input-prepend .add-on {
954
995
  vertical-align: middle;
955
996
  }
997
+ .form-search .radio,
998
+ .form-inline .radio,
999
+ .form-search .checkbox,
1000
+ .form-inline .checkbox {
1001
+ margin-bottom: 0;
1002
+ vertical-align: middle;
1003
+ }
956
1004
  .control-group {
957
1005
  margin-bottom: 9px;
958
1006
  }
959
- .form-horizontal legend + .control-group {
1007
+ legend + .control-group {
960
1008
  margin-top: 18px;
961
1009
  -webkit-margin-top-collapse: separate;
962
1010
  }
@@ -971,7 +1019,7 @@ input:focus:required:invalid:focus, textarea:focus:required:invalid:focus, selec
971
1019
  .form-horizontal .control-group:after {
972
1020
  clear: both;
973
1021
  }
974
- .form-horizontal .control-group > label {
1022
+ .form-horizontal .control-label {
975
1023
  float: left;
976
1024
  width: 140px;
977
1025
  padding-top: 5px;
@@ -996,14 +1044,14 @@ table {
996
1044
  padding: 8px;
997
1045
  line-height: 18px;
998
1046
  text-align: left;
1047
+ vertical-align: top;
999
1048
  border-top: 1px solid #ddd;
1000
1049
  }
1001
1050
  .table th {
1002
1051
  font-weight: bold;
1003
- vertical-align: bottom;
1004
1052
  }
1005
- .table td {
1006
- vertical-align: top;
1053
+ .table thead th {
1054
+ vertical-align: bottom;
1007
1055
  }
1008
1056
  .table thead:first-child tr th, .table thead:first-child tr td {
1009
1057
  border-top: 0;
@@ -1054,6 +1102,9 @@ table {
1054
1102
  .table-striped tbody tr:nth-child(odd) td, .table-striped tbody tr:nth-child(odd) th {
1055
1103
  background-color: #f9f9f9;
1056
1104
  }
1105
+ .table tbody tr:hover td, .table tbody tr:hover th {
1106
+ background-color: #f5f5f5;
1107
+ }
1057
1108
  table .span1 {
1058
1109
  float: none;
1059
1110
  width: 44px;
@@ -1114,21 +1165,22 @@ table .span12 {
1114
1165
  width: 924px;
1115
1166
  margin-left: 0;
1116
1167
  }
1117
- [class^="icon-"] {
1168
+ [class^="icon-"], [class*=" icon-"] {
1118
1169
  display: inline-block;
1119
1170
  width: 14px;
1120
1171
  height: 14px;
1172
+ line-height: 14px;
1121
1173
  vertical-align: text-top;
1122
- background-image: url(glyphicons-halflings.png);
1174
+ background-image: url("glyphicons-halflings.png");
1123
1175
  background-position: 14px 14px;
1124
1176
  background-repeat: no-repeat;
1125
1177
  *margin-right: .3em;
1126
1178
  }
1127
- [class^="icon-"]:last-child {
1179
+ [class^="icon-"]:last-child, [class*=" icon-"]:last-child {
1128
1180
  *margin-left: 0;
1129
1181
  }
1130
1182
  .icon-white {
1131
- background-image: url(glyphicons-halflings-white.png);
1183
+ background-image: url("glyphicons-halflings-white.png");
1132
1184
  }
1133
1185
  .icon-glass {
1134
1186
  background-position: 0 0;
@@ -1529,7 +1581,6 @@ table .span12 {
1529
1581
  float: left;
1530
1582
  display: none;
1531
1583
  min-width: 160px;
1532
- max-width: 220px;
1533
1584
  _width: 160px;
1534
1585
  padding: 4px 0;
1535
1586
  margin: 0;
@@ -1658,20 +1709,25 @@ table .span12 {
1658
1709
  .btn {
1659
1710
  display: inline-block;
1660
1711
  padding: 4px 10px 4px;
1712
+ margin-bottom: 0;
1661
1713
  font-size: 13px;
1662
1714
  line-height: 18px;
1663
1715
  color: #333333;
1664
1716
  text-align: center;
1665
1717
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
1666
- background-color: #fafafa;
1667
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
1668
- background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1669
- background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
1670
- background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1671
- background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1672
- background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1673
- background-repeat: no-repeat;
1718
+ vertical-align: middle;
1719
+ background-color: #f5f5f5;
1720
+ background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
1721
+ background-image: -ms-linear-gradient(top, #ffffff, #e6e6e6);
1722
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
1723
+ background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
1724
+ background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
1725
+ background-image: linear-gradient(top, #ffffff, #e6e6e6);
1726
+ background-repeat: repeat-x;
1674
1727
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
1728
+ border-color: #e6e6e6 #e6e6e6 #bfbfbf;
1729
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1730
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1675
1731
  border: 1px solid #ccc;
1676
1732
  border-bottom-color: #bbb;
1677
1733
  -webkit-border-radius: 4px;
@@ -1681,8 +1737,19 @@ table .span12 {
1681
1737
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1682
1738
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1683
1739
  cursor: pointer;
1740
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1684
1741
  *margin-left: .3em;
1685
1742
  }
1743
+ .btn:hover,
1744
+ .btn:active,
1745
+ .btn.active,
1746
+ .btn.disabled,
1747
+ .btn[disabled] {
1748
+ background-color: #e6e6e6;
1749
+ }
1750
+ .btn:active, .btn.active {
1751
+ background-color: #cccccc \9;
1752
+ }
1686
1753
  .btn:first-child {
1687
1754
  *margin-left: 0;
1688
1755
  }
@@ -1698,7 +1765,7 @@ table .span12 {
1698
1765
  transition: background-position 0.1s linear;
1699
1766
  }
1700
1767
  .btn:focus {
1701
- outline: thin dotted;
1768
+ outline: thin dotted #333;
1702
1769
  outline: 5px auto -webkit-focus-ring-color;
1703
1770
  outline-offset: -2px;
1704
1771
  }
@@ -1709,7 +1776,6 @@ table .span12 {
1709
1776
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1710
1777
  background-color: #e6e6e6;
1711
1778
  background-color: #d9d9d9 \9;
1712
- color: rgba(0, 0, 0, 0.5);
1713
1779
  outline: 0;
1714
1780
  }
1715
1781
  .btn.disabled, .btn[disabled] {
@@ -1730,7 +1796,7 @@ table .span12 {
1730
1796
  -moz-border-radius: 5px;
1731
1797
  border-radius: 5px;
1732
1798
  }
1733
- .btn-large .icon {
1799
+ .btn-large [class^="icon-"] {
1734
1800
  margin-top: 1px;
1735
1801
  }
1736
1802
  .btn-small {
@@ -1738,9 +1804,14 @@ table .span12 {
1738
1804
  font-size: 11px;
1739
1805
  line-height: 16px;
1740
1806
  }
1741
- .btn-small .icon {
1807
+ .btn-small [class^="icon-"] {
1742
1808
  margin-top: -1px;
1743
1809
  }
1810
+ .btn-mini {
1811
+ padding: 2px 6px;
1812
+ font-size: 11px;
1813
+ line-height: 14px;
1814
+ }
1744
1815
  .btn-primary,
1745
1816
  .btn-primary:hover,
1746
1817
  .btn-warning,
@@ -1750,7 +1821,9 @@ table .span12 {
1750
1821
  .btn-success,
1751
1822
  .btn-success:hover,
1752
1823
  .btn-info,
1753
- .btn-info:hover {
1824
+ .btn-info:hover,
1825
+ .btn-inverse,
1826
+ .btn-inverse:hover {
1754
1827
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1755
1828
  color: #ffffff;
1756
1829
  }
@@ -1758,7 +1831,8 @@ table .span12 {
1758
1831
  .btn-warning.active,
1759
1832
  .btn-danger.active,
1760
1833
  .btn-success.active,
1761
- .btn-info.active {
1834
+ .btn-info.active,
1835
+ .btn-dark.active {
1762
1836
  color: rgba(255, 255, 255, 0.75);
1763
1837
  }
1764
1838
  .btn-primary {
@@ -1881,6 +1955,30 @@ table .span12 {
1881
1955
  .btn-info:active, .btn-info.active {
1882
1956
  background-color: #24748c \9;
1883
1957
  }
1958
+ .btn-inverse {
1959
+ background-color: #393939;
1960
+ background-image: -moz-linear-gradient(top, #454545, #262626);
1961
+ background-image: -ms-linear-gradient(top, #454545, #262626);
1962
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#454545), to(#262626));
1963
+ background-image: -webkit-linear-gradient(top, #454545, #262626);
1964
+ background-image: -o-linear-gradient(top, #454545, #262626);
1965
+ background-image: linear-gradient(top, #454545, #262626);
1966
+ background-repeat: repeat-x;
1967
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#454545', endColorstr='#262626', GradientType=0);
1968
+ border-color: #262626 #262626 #000000;
1969
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1970
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1971
+ }
1972
+ .btn-inverse:hover,
1973
+ .btn-inverse:active,
1974
+ .btn-inverse.active,
1975
+ .btn-inverse.disabled,
1976
+ .btn-inverse[disabled] {
1977
+ background-color: #262626;
1978
+ }
1979
+ .btn-inverse:active, .btn-inverse.active {
1980
+ background-color: #0c0c0c \9;
1981
+ }
1884
1982
  button.btn, input[type="submit"].btn {
1885
1983
  *padding-top: 2px;
1886
1984
  *padding-bottom: 2px;
@@ -2013,7 +2111,8 @@ button.btn.small, input[type="submit"].btn.small {
2013
2111
  .btn-primary .caret,
2014
2112
  .btn-danger .caret,
2015
2113
  .btn-info .caret,
2016
- .btn-success .caret {
2114
+ .btn-success .caret,
2115
+ .btn-inverse .caret {
2017
2116
  border-top-color: #ffffff;
2018
2117
  opacity: 0.75;
2019
2118
  filter: alpha(opacity=75);
@@ -2086,27 +2185,31 @@ button.btn.small, input[type="submit"].btn.small {
2086
2185
  text-decoration: none;
2087
2186
  background-color: #eeeeee;
2088
2187
  }
2188
+ .nav .nav-header {
2189
+ display: block;
2190
+ padding: 3px 15px;
2191
+ font-size: 11px;
2192
+ font-weight: bold;
2193
+ line-height: 18px;
2194
+ color: #999999;
2195
+ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
2196
+ text-transform: uppercase;
2197
+ }
2198
+ .nav li + .nav-header {
2199
+ margin-top: 9px;
2200
+ }
2089
2201
  .nav-list {
2090
2202
  padding-left: 14px;
2091
2203
  padding-right: 14px;
2092
2204
  margin-bottom: 0;
2093
2205
  }
2094
2206
  .nav-list > li > a, .nav-list .nav-header {
2095
- display: block;
2096
- padding: 3px 15px;
2097
2207
  margin-left: -15px;
2098
2208
  margin-right: -15px;
2099
2209
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
2100
2210
  }
2101
- .nav-list .nav-header {
2102
- font-size: 11px;
2103
- font-weight: bold;
2104
- line-height: 18px;
2105
- color: #999999;
2106
- text-transform: uppercase;
2107
- }
2108
- .nav-list > li + .nav-header {
2109
- margin-top: 9px;
2211
+ .nav-list > li > a {
2212
+ padding: 3px 15px;
2110
2213
  }
2111
2214
  .nav-list .active > a, .nav-list .active > a:hover {
2112
2215
  color: #ffffff;
@@ -2256,6 +2359,9 @@ button.btn.small, input[type="submit"].btn.small {
2256
2359
  .tabbable:after {
2257
2360
  clear: both;
2258
2361
  }
2362
+ .tab-content {
2363
+ overflow: hidden;
2364
+ }
2259
2365
  .tabs-below .nav-tabs, .tabs-right .nav-tabs, .tabs-left .nav-tabs {
2260
2366
  border-bottom: 0;
2261
2367
  }
@@ -2451,6 +2557,13 @@ button.btn.small, input[type="submit"].btn.small {
2451
2557
  .navbar-form input[type="image"], .navbar-form input[type="checkbox"], .navbar-form input[type="radio"] {
2452
2558
  margin-top: 3px;
2453
2559
  }
2560
+ .navbar-form .input-append, .navbar-form .input-prepend {
2561
+ margin-top: 6px;
2562
+ white-space: nowrap;
2563
+ }
2564
+ .navbar-form .input-append input, .navbar-form .input-prepend input {
2565
+ margin-top: 0;
2566
+ }
2454
2567
  .navbar-search {
2455
2568
  position: relative;
2456
2569
  float: left;
@@ -2544,7 +2657,6 @@ button.btn.small, input[type="submit"].btn.small {
2544
2657
  color: #ffffff;
2545
2658
  text-decoration: none;
2546
2659
  background-color: #222222;
2547
- background-color: rgba(0, 0, 0, 0.5);
2548
2660
  }
2549
2661
  .navbar .divider-vertical {
2550
2662
  height: 40px;
@@ -2631,7 +2743,7 @@ button.btn.small, input[type="submit"].btn.small {
2631
2743
  box-shadow: inset 0 1px 0 #ffffff;
2632
2744
  }
2633
2745
  .breadcrumb li {
2634
- display: inline;
2746
+ display: inline-block;
2635
2747
  text-shadow: 0 1px 0 #ffffff;
2636
2748
  }
2637
2749
  .breadcrumb .divider {
@@ -2810,6 +2922,9 @@ button.btn.small, input[type="submit"].btn.small {
2810
2922
  .modal-body {
2811
2923
  padding: 15px;
2812
2924
  }
2925
+ .modal-body .modal-form {
2926
+ margin-bottom: 0;
2927
+ }
2813
2928
  .modal-footer {
2814
2929
  padding: 14px 15px 15px;
2815
2930
  margin-bottom: 0;
@@ -3045,28 +3160,44 @@ a.thumbnail:hover {
3045
3160
  padding: 9px;
3046
3161
  }
3047
3162
  .label {
3048
- padding: 1px 3px 2px;
3049
- font-size: 9.75px;
3163
+ padding: 2px 4px 3px;
3164
+ font-size: 11.049999999999999px;
3050
3165
  font-weight: bold;
3051
3166
  color: #ffffff;
3052
- text-transform: uppercase;
3167
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
3053
3168
  background-color: #999999;
3054
3169
  -webkit-border-radius: 3px;
3055
3170
  -moz-border-radius: 3px;
3056
3171
  border-radius: 3px;
3057
3172
  }
3173
+ .label:hover {
3174
+ color: #ffffff;
3175
+ text-decoration: none;
3176
+ }
3058
3177
  .label-important {
3059
3178
  background-color: #b94a48;
3060
3179
  }
3180
+ .label-important:hover {
3181
+ background-color: #953b39;
3182
+ }
3061
3183
  .label-warning {
3062
3184
  background-color: #f89406;
3063
3185
  }
3186
+ .label-warning:hover {
3187
+ background-color: #c67605;
3188
+ }
3064
3189
  .label-success {
3065
3190
  background-color: #468847;
3066
3191
  }
3192
+ .label-success:hover {
3193
+ background-color: #356635;
3194
+ }
3067
3195
  .label-info {
3068
3196
  background-color: #3a87ad;
3069
3197
  }
3198
+ .label-info:hover {
3199
+ background-color: #2d6987;
3200
+ }
3070
3201
  @-webkit-keyframes progress-bar-stripes {
3071
3202
  from {
3072
3203
  background-position: 0 0;