rake convert[v3.4.0]

This commit is contained in:
Gleb Mazovetskiy 2018-12-14 11:15:34 +00:00
parent 07b9b642d4
commit cd1542b345
32 changed files with 597 additions and 556 deletions

View File

@ -1,5 +1,5 @@
/*!
* Bootstrap v3.4.0 (http://getbootstrap.com)
* Bootstrap v3.4.0 (https://getbootstrap.com/)
* Copyright 2011-2018 Twitter, Inc.
* Licensed under the MIT license
*/
@ -18,9 +18,9 @@ if (typeof jQuery === 'undefined') {
/* ========================================================================
* Bootstrap: transition.js v3.4.0
* http://getbootstrap.com/javascript/#transitions
* https://getbootstrap.com/docs/3.4/javascript/#transitions
* ========================================================================
* Copyright 2011-2016 Twitter, Inc.
* Copyright 2011-2018 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */
@ -28,7 +28,7 @@ if (typeof jQuery === 'undefined') {
+function ($) {
'use strict';
// CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/)
// CSS TRANSITION SUPPORT (Shoutout: https://modernizr.com/)
// ============================================================
function transitionEnd() {
@ -50,7 +50,7 @@ if (typeof jQuery === 'undefined') {
return false // explicit for ie8 ( ._.)
}
// http://blog.alexmaccaw.com/css-transitions
// https://blog.alexmaccaw.com/css-transitions
$.fn.emulateTransitionEnd = function (duration) {
var called = false
var $el = this
@ -78,9 +78,9 @@ if (typeof jQuery === 'undefined') {
/* ========================================================================
* Bootstrap: alert.js v3.4.0
* http://getbootstrap.com/javascript/#alerts
* https://getbootstrap.com/docs/3.4/javascript/#alerts
* ========================================================================
* Copyright 2011-2016 Twitter, Inc.
* Copyright 2011-2018 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */
@ -174,9 +174,9 @@ if (typeof jQuery === 'undefined') {
/* ========================================================================
* Bootstrap: button.js v3.4.0
* http://getbootstrap.com/javascript/#buttons
* https://getbootstrap.com/docs/3.4/javascript/#buttons
* ========================================================================
* Copyright 2011-2016 Twitter, Inc.
* Copyright 2011-2018 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */
@ -300,9 +300,9 @@ if (typeof jQuery === 'undefined') {
/* ========================================================================
* Bootstrap: carousel.js v3.4.0
* http://getbootstrap.com/javascript/#carousel
* https://getbootstrap.com/docs/3.4/javascript/#carousel
* ========================================================================
* Copyright 2011-2016 Twitter, Inc.
* Copyright 2011-2018 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */
@ -547,9 +547,9 @@ if (typeof jQuery === 'undefined') {
/* ========================================================================
* Bootstrap: collapse.js v3.4.0
* http://getbootstrap.com/javascript/#collapse
* https://getbootstrap.com/docs/3.4/javascript/#collapse
* ========================================================================
* Copyright 2011-2016 Twitter, Inc.
* Copyright 2011-2018 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */
@ -760,9 +760,9 @@ if (typeof jQuery === 'undefined') {
/* ========================================================================
* Bootstrap: dropdown.js v3.4.0
* http://getbootstrap.com/javascript/#dropdowns
* https://getbootstrap.com/docs/3.4/javascript/#dropdowns
* ========================================================================
* Copyright 2011-2016 Twitter, Inc.
* Copyright 2011-2018 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */
@ -926,9 +926,9 @@ if (typeof jQuery === 'undefined') {
/* ========================================================================
* Bootstrap: modal.js v3.4.0
* http://getbootstrap.com/javascript/#modals
* https://getbootstrap.com/docs/3.4/javascript/#modals
* ========================================================================
* Copyright 2011-2016 Twitter, Inc.
* Copyright 2011-2018 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */
@ -940,15 +940,16 @@ if (typeof jQuery === 'undefined') {
// ======================
var Modal = function (element, options) {
this.options = options
this.$body = $(document.body)
this.$element = $(element)
this.$dialog = this.$element.find('.modal-dialog')
this.$backdrop = null
this.isShown = null
this.originalBodyPad = null
this.scrollbarWidth = 0
this.options = options
this.$body = $(document.body)
this.$element = $(element)
this.$dialog = this.$element.find('.modal-dialog')
this.$backdrop = null
this.isShown = null
this.originalBodyPad = null
this.scrollbarWidth = 0
this.ignoreBackdropClick = false
this.fixedContent = '.navbar-fixed-top, .navbar-fixed-bottom'
if (this.options.remote) {
this.$element
@ -959,7 +960,7 @@ if (typeof jQuery === 'undefined') {
}
}
Modal.VERSION = '3.4.0'
Modal.VERSION = '3.4.0'
Modal.TRANSITION_DURATION = 300
Modal.BACKDROP_TRANSITION_DURATION = 150
@ -976,7 +977,7 @@ if (typeof jQuery === 'undefined') {
Modal.prototype.show = function (_relatedTarget) {
var that = this
var e = $.Event('show.bs.modal', { relatedTarget: _relatedTarget })
var e = $.Event('show.bs.modal', { relatedTarget: _relatedTarget })
this.$element.trigger(e)
@ -1067,8 +1068,8 @@ if (typeof jQuery === 'undefined') {
.off('focusin.bs.modal') // guard against infinite focus loop
.on('focusin.bs.modal', $.proxy(function (e) {
if (document !== e.target &&
this.$element[0] !== e.target &&
!this.$element.has(e.target).length) {
this.$element[0] !== e.target &&
!this.$element.has(e.target).length) {
this.$element.trigger('focus')
}
}, this))
@ -1170,7 +1171,7 @@ if (typeof jQuery === 'undefined') {
var modalIsOverflowing = this.$element[0].scrollHeight > document.documentElement.clientHeight
this.$element.css({
paddingLeft: !this.bodyIsOverflowing && modalIsOverflowing ? this.scrollbarWidth : '',
paddingLeft: !this.bodyIsOverflowing && modalIsOverflowing ? this.scrollbarWidth : '',
paddingRight: this.bodyIsOverflowing && !modalIsOverflowing ? this.scrollbarWidth : ''
})
}
@ -1195,11 +1196,26 @@ if (typeof jQuery === 'undefined') {
Modal.prototype.setScrollbar = function () {
var bodyPad = parseInt((this.$body.css('padding-right') || 0), 10)
this.originalBodyPad = document.body.style.paddingRight || ''
if (this.bodyIsOverflowing) this.$body.css('padding-right', bodyPad + this.scrollbarWidth)
var scrollbarWidth = this.scrollbarWidth
if (this.bodyIsOverflowing) {
this.$body.css('padding-right', bodyPad + scrollbarWidth)
$(this.fixedContent).each(function (index, element) {
var actualPadding = element.style.paddingRight
var calculatedPadding = $(element).css('padding-right')
$(element)
.data('padding-right', actualPadding)
.css('padding-right', parseFloat(calculatedPadding) + scrollbarWidth + 'px')
})
}
}
Modal.prototype.resetScrollbar = function () {
this.$body.css('padding-right', this.originalBodyPad)
$(this.fixedContent).each(function (index, element) {
var padding = $(element).data('padding-right')
$(element).removeData('padding-right')
element.style.paddingRight = padding ? padding : ''
})
}
Modal.prototype.measureScrollbar = function () { // thx walsh
@ -1217,8 +1233,8 @@ if (typeof jQuery === 'undefined') {
function Plugin(option, _relatedTarget) {
return this.each(function () {
var $this = $(this)
var data = $this.data('bs.modal')
var $this = $(this)
var data = $this.data('bs.modal')
var options = $.extend({}, Modal.DEFAULTS, $this.data(), typeof option == 'object' && option)
if (!data) $this.data('bs.modal', (data = new Modal(this, options)))
@ -1229,7 +1245,7 @@ if (typeof jQuery === 'undefined') {
var old = $.fn.modal
$.fn.modal = Plugin
$.fn.modal = Plugin
$.fn.modal.Constructor = Modal
@ -1246,13 +1262,13 @@ if (typeof jQuery === 'undefined') {
// ==============
$(document).on('click.bs.modal.data-api', '[data-toggle="modal"]', function (e) {
var $this = $(this)
var href = $this.attr('href')
var target = $this.attr('data-target') ||
var $this = $(this)
var href = $this.attr('href')
var target = $this.attr('data-target') ||
(href && href.replace(/.*(?=#[^\s]+$)/, '')) // strip for ie7
var $target = $(document).find(target)
var option = $target.data('bs.modal') ? 'toggle' : $.extend({ remote: !/#/.test(href) && href }, $target.data(), $this.data())
var option = $target.data('bs.modal') ? 'toggle' : $.extend({ remote: !/#/.test(href) && href }, $target.data(), $this.data())
if ($this.is('a')) e.preventDefault()
@ -1269,10 +1285,10 @@ if (typeof jQuery === 'undefined') {
/* ========================================================================
* Bootstrap: tooltip.js v3.4.0
* http://getbootstrap.com/javascript/#tooltip
* https://getbootstrap.com/docs/3.4/javascript/#tooltip
* Inspired by the original jQuery.tipsy by Jason Frame
* ========================================================================
* Copyright 2011-2016 Twitter, Inc.
* Copyright 2011-2018 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */
@ -1790,9 +1806,9 @@ if (typeof jQuery === 'undefined') {
/* ========================================================================
* Bootstrap: popover.js v3.4.0
* http://getbootstrap.com/javascript/#popovers
* https://getbootstrap.com/docs/3.4/javascript/#popovers
* ========================================================================
* Copyright 2011-2016 Twitter, Inc.
* Copyright 2011-2018 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */
@ -1857,8 +1873,8 @@ if (typeof jQuery === 'undefined') {
return $e.attr('data-content')
|| (typeof o.content == 'function' ?
o.content.call($e[0]) :
o.content)
o.content.call($e[0]) :
o.content)
}
Popover.prototype.arrow = function () {
@ -1899,9 +1915,9 @@ if (typeof jQuery === 'undefined') {
/* ========================================================================
* Bootstrap: scrollspy.js v3.4.0
* http://getbootstrap.com/javascript/#scrollspy
* https://getbootstrap.com/docs/3.4/javascript/#scrollspy
* ========================================================================
* Copyright 2011-2016 Twitter, Inc.
* Copyright 2011-2018 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */
@ -2072,9 +2088,9 @@ if (typeof jQuery === 'undefined') {
/* ========================================================================
* Bootstrap: tab.js v3.4.0
* http://getbootstrap.com/javascript/#tabs
* https://getbootstrap.com/docs/3.4/javascript/#tabs
* ========================================================================
* Copyright 2011-2016 Twitter, Inc.
* Copyright 2011-2018 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */
@ -2145,15 +2161,15 @@ if (typeof jQuery === 'undefined') {
$active
.removeClass('active')
.find('> .dropdown-menu > .active')
.removeClass('active')
.removeClass('active')
.end()
.find('[data-toggle="tab"]')
.attr('aria-expanded', false)
.attr('aria-expanded', false)
element
.addClass('active')
.find('[data-toggle="tab"]')
.attr('aria-expanded', true)
.attr('aria-expanded', true)
if (transition) {
element[0].offsetWidth // reflow for transition
@ -2165,10 +2181,10 @@ if (typeof jQuery === 'undefined') {
if (element.parent('.dropdown-menu').length) {
element
.closest('li.dropdown')
.addClass('active')
.addClass('active')
.end()
.find('[data-toggle="tab"]')
.attr('aria-expanded', true)
.attr('aria-expanded', true)
}
callback && callback()
@ -2228,9 +2244,9 @@ if (typeof jQuery === 'undefined') {
/* ========================================================================
* Bootstrap: affix.js v3.4.0
* http://getbootstrap.com/javascript/#affix
* https://getbootstrap.com/docs/3.4/javascript/#affix
* ========================================================================
* Copyright 2011-2016 Twitter, Inc.
* Copyright 2011-2018 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */

File diff suppressed because one or more lines are too long

View File

@ -1,8 +1,8 @@
/* ========================================================================
* Bootstrap: affix.js v3.4.0
* http://getbootstrap.com/javascript/#affix
* https://getbootstrap.com/docs/3.4/javascript/#affix
* ========================================================================
* Copyright 2011-2016 Twitter, Inc.
* Copyright 2011-2018 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */

View File

@ -1,8 +1,8 @@
/* ========================================================================
* Bootstrap: alert.js v3.4.0
* http://getbootstrap.com/javascript/#alerts
* https://getbootstrap.com/docs/3.4/javascript/#alerts
* ========================================================================
* Copyright 2011-2016 Twitter, Inc.
* Copyright 2011-2018 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */

View File

@ -1,8 +1,8 @@
/* ========================================================================
* Bootstrap: button.js v3.4.0
* http://getbootstrap.com/javascript/#buttons
* https://getbootstrap.com/docs/3.4/javascript/#buttons
* ========================================================================
* Copyright 2011-2016 Twitter, Inc.
* Copyright 2011-2018 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */

View File

@ -1,8 +1,8 @@
/* ========================================================================
* Bootstrap: carousel.js v3.4.0
* http://getbootstrap.com/javascript/#carousel
* https://getbootstrap.com/docs/3.4/javascript/#carousel
* ========================================================================
* Copyright 2011-2016 Twitter, Inc.
* Copyright 2011-2018 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */

View File

@ -1,8 +1,8 @@
/* ========================================================================
* Bootstrap: collapse.js v3.4.0
* http://getbootstrap.com/javascript/#collapse
* https://getbootstrap.com/docs/3.4/javascript/#collapse
* ========================================================================
* Copyright 2011-2016 Twitter, Inc.
* Copyright 2011-2018 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */

View File

@ -1,8 +1,8 @@
/* ========================================================================
* Bootstrap: dropdown.js v3.4.0
* http://getbootstrap.com/javascript/#dropdowns
* https://getbootstrap.com/docs/3.4/javascript/#dropdowns
* ========================================================================
* Copyright 2011-2016 Twitter, Inc.
* Copyright 2011-2018 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */

View File

@ -1,8 +1,8 @@
/* ========================================================================
* Bootstrap: modal.js v3.4.0
* http://getbootstrap.com/javascript/#modals
* https://getbootstrap.com/docs/3.4/javascript/#modals
* ========================================================================
* Copyright 2011-2016 Twitter, Inc.
* Copyright 2011-2018 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */
@ -14,15 +14,16 @@
// ======================
var Modal = function (element, options) {
this.options = options
this.$body = $(document.body)
this.$element = $(element)
this.$dialog = this.$element.find('.modal-dialog')
this.$backdrop = null
this.isShown = null
this.originalBodyPad = null
this.scrollbarWidth = 0
this.options = options
this.$body = $(document.body)
this.$element = $(element)
this.$dialog = this.$element.find('.modal-dialog')
this.$backdrop = null
this.isShown = null
this.originalBodyPad = null
this.scrollbarWidth = 0
this.ignoreBackdropClick = false
this.fixedContent = '.navbar-fixed-top, .navbar-fixed-bottom'
if (this.options.remote) {
this.$element
@ -33,7 +34,7 @@
}
}
Modal.VERSION = '3.4.0'
Modal.VERSION = '3.4.0'
Modal.TRANSITION_DURATION = 300
Modal.BACKDROP_TRANSITION_DURATION = 150
@ -50,7 +51,7 @@
Modal.prototype.show = function (_relatedTarget) {
var that = this
var e = $.Event('show.bs.modal', { relatedTarget: _relatedTarget })
var e = $.Event('show.bs.modal', { relatedTarget: _relatedTarget })
this.$element.trigger(e)
@ -141,8 +142,8 @@
.off('focusin.bs.modal') // guard against infinite focus loop
.on('focusin.bs.modal', $.proxy(function (e) {
if (document !== e.target &&
this.$element[0] !== e.target &&
!this.$element.has(e.target).length) {
this.$element[0] !== e.target &&
!this.$element.has(e.target).length) {
this.$element.trigger('focus')
}
}, this))
@ -244,7 +245,7 @@
var modalIsOverflowing = this.$element[0].scrollHeight > document.documentElement.clientHeight
this.$element.css({
paddingLeft: !this.bodyIsOverflowing && modalIsOverflowing ? this.scrollbarWidth : '',
paddingLeft: !this.bodyIsOverflowing && modalIsOverflowing ? this.scrollbarWidth : '',
paddingRight: this.bodyIsOverflowing && !modalIsOverflowing ? this.scrollbarWidth : ''
})
}
@ -269,11 +270,26 @@
Modal.prototype.setScrollbar = function () {
var bodyPad = parseInt((this.$body.css('padding-right') || 0), 10)
this.originalBodyPad = document.body.style.paddingRight || ''
if (this.bodyIsOverflowing) this.$body.css('padding-right', bodyPad + this.scrollbarWidth)
var scrollbarWidth = this.scrollbarWidth
if (this.bodyIsOverflowing) {
this.$body.css('padding-right', bodyPad + scrollbarWidth)
$(this.fixedContent).each(function (index, element) {
var actualPadding = element.style.paddingRight
var calculatedPadding = $(element).css('padding-right')
$(element)
.data('padding-right', actualPadding)
.css('padding-right', parseFloat(calculatedPadding) + scrollbarWidth + 'px')
})
}
}
Modal.prototype.resetScrollbar = function () {
this.$body.css('padding-right', this.originalBodyPad)
$(this.fixedContent).each(function (index, element) {
var padding = $(element).data('padding-right')
$(element).removeData('padding-right')
element.style.paddingRight = padding ? padding : ''
})
}
Modal.prototype.measureScrollbar = function () { // thx walsh
@ -291,8 +307,8 @@
function Plugin(option, _relatedTarget) {
return this.each(function () {
var $this = $(this)
var data = $this.data('bs.modal')
var $this = $(this)
var data = $this.data('bs.modal')
var options = $.extend({}, Modal.DEFAULTS, $this.data(), typeof option == 'object' && option)
if (!data) $this.data('bs.modal', (data = new Modal(this, options)))
@ -303,7 +319,7 @@
var old = $.fn.modal
$.fn.modal = Plugin
$.fn.modal = Plugin
$.fn.modal.Constructor = Modal
@ -320,13 +336,13 @@
// ==============
$(document).on('click.bs.modal.data-api', '[data-toggle="modal"]', function (e) {
var $this = $(this)
var href = $this.attr('href')
var target = $this.attr('data-target') ||
var $this = $(this)
var href = $this.attr('href')
var target = $this.attr('data-target') ||
(href && href.replace(/.*(?=#[^\s]+$)/, '')) // strip for ie7
var $target = $(document).find(target)
var option = $target.data('bs.modal') ? 'toggle' : $.extend({ remote: !/#/.test(href) && href }, $target.data(), $this.data())
var option = $target.data('bs.modal') ? 'toggle' : $.extend({ remote: !/#/.test(href) && href }, $target.data(), $this.data())
if ($this.is('a')) e.preventDefault()

View File

@ -1,8 +1,8 @@
/* ========================================================================
* Bootstrap: popover.js v3.4.0
* http://getbootstrap.com/javascript/#popovers
* https://getbootstrap.com/docs/3.4/javascript/#popovers
* ========================================================================
* Copyright 2011-2016 Twitter, Inc.
* Copyright 2011-2018 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */
@ -67,8 +67,8 @@
return $e.attr('data-content')
|| (typeof o.content == 'function' ?
o.content.call($e[0]) :
o.content)
o.content.call($e[0]) :
o.content)
}
Popover.prototype.arrow = function () {

View File

@ -1,8 +1,8 @@
/* ========================================================================
* Bootstrap: scrollspy.js v3.4.0
* http://getbootstrap.com/javascript/#scrollspy
* https://getbootstrap.com/docs/3.4/javascript/#scrollspy
* ========================================================================
* Copyright 2011-2016 Twitter, Inc.
* Copyright 2011-2018 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */

View File

@ -1,8 +1,8 @@
/* ========================================================================
* Bootstrap: tab.js v3.4.0
* http://getbootstrap.com/javascript/#tabs
* https://getbootstrap.com/docs/3.4/javascript/#tabs
* ========================================================================
* Copyright 2011-2016 Twitter, Inc.
* Copyright 2011-2018 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */
@ -73,15 +73,15 @@
$active
.removeClass('active')
.find('> .dropdown-menu > .active')
.removeClass('active')
.removeClass('active')
.end()
.find('[data-toggle="tab"]')
.attr('aria-expanded', false)
.attr('aria-expanded', false)
element
.addClass('active')
.find('[data-toggle="tab"]')
.attr('aria-expanded', true)
.attr('aria-expanded', true)
if (transition) {
element[0].offsetWidth // reflow for transition
@ -93,10 +93,10 @@
if (element.parent('.dropdown-menu').length) {
element
.closest('li.dropdown')
.addClass('active')
.addClass('active')
.end()
.find('[data-toggle="tab"]')
.attr('aria-expanded', true)
.attr('aria-expanded', true)
}
callback && callback()

View File

@ -1,9 +1,9 @@
/* ========================================================================
* Bootstrap: tooltip.js v3.4.0
* http://getbootstrap.com/javascript/#tooltip
* https://getbootstrap.com/docs/3.4/javascript/#tooltip
* Inspired by the original jQuery.tipsy by Jason Frame
* ========================================================================
* Copyright 2011-2016 Twitter, Inc.
* Copyright 2011-2018 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */

View File

@ -1,8 +1,8 @@
/* ========================================================================
* Bootstrap: transition.js v3.4.0
* http://getbootstrap.com/javascript/#transitions
* https://getbootstrap.com/docs/3.4/javascript/#transitions
* ========================================================================
* Copyright 2011-2016 Twitter, Inc.
* Copyright 2011-2018 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */
@ -10,7 +10,7 @@
+function ($) {
'use strict';
// CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/)
// CSS TRANSITION SUPPORT (Shoutout: https://modernizr.com/)
// ============================================================
function transitionEnd() {
@ -32,7 +32,7 @@
return false // explicit for ie8 ( ._.)
}
// http://blog.alexmaccaw.com/css-transitions
// https://blog.alexmaccaw.com/css-transitions
$.fn.emulateTransitionEnd = function (duration) {
var called = false
var $el = this

View File

@ -1,6 +1,6 @@
/*!
* Bootstrap v3.4.0 (http://getbootstrap.com)
* Copyright 2011-2016 Twitter, Inc.
* Bootstrap v3.4.0 (https://getbootstrap.com/)
* Copyright 2011-2018 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/

View File

@ -38,7 +38,8 @@
//
// Expand the right padding and account for the close button's positioning.
.alert-dismissable, // The misspelled .alert-dismissable was deprecated in 3.2.0.
// The misspelled .alert-dismissable was deprecated in 3.2.0.
.alert-dismissable,
.alert-dismissible {
padding-right: ($alert-padding + 20);

View File

@ -13,7 +13,7 @@
> li {
display: inline-block;
+ li::before {
+ li:before {
padding: 0 5px;
color: $breadcrumb-color;
// [converter] Workaround for https://github.com/sass/libsass/issues/1115

View File

@ -154,12 +154,12 @@
}
.icon-prev {
&::before {
&:before {
content: "\2039";// SINGLE LEFT-POINTING ANGLE QUOTATION MARK (U+2039)
}
}
.icon-next {
&::before {
&:before {
content: "\203a";// SINGLE RIGHT-POINTING ANGLE QUOTATION MARK (U+203A)
}
}

View File

@ -33,4 +33,5 @@ button.close {
background: transparent;
border: 0;
-webkit-appearance: none;
appearance: none;
}

View File

@ -54,6 +54,7 @@ input[type="search"] {
// be added to `.form-control` as it's not specific enough. For details, see
// https://github.com/twbs/bootstrap/issues/11586.
-webkit-appearance: none;
appearance: none;
}
// Position radios and checkboxes better

View File

@ -34,274 +34,274 @@
}
// Individual icons
.glyphicon-asterisk { &::before { content: "\002a"; } }
.glyphicon-plus { &::before { content: "\002b"; } }
.glyphicon-asterisk { &:before { content: "\002a"; } }
.glyphicon-plus { &:before { content: "\002b"; } }
.glyphicon-euro,
.glyphicon-eur { &::before { content: "\20ac"; } }
.glyphicon-minus { &::before { content: "\2212"; } }
.glyphicon-cloud { &::before { content: "\2601"; } }
.glyphicon-envelope { &::before { content: "\2709"; } }
.glyphicon-pencil { &::before { content: "\270f"; } }
.glyphicon-glass { &::before { content: "\e001"; } }
.glyphicon-music { &::before { content: "\e002"; } }
.glyphicon-search { &::before { content: "\e003"; } }
.glyphicon-heart { &::before { content: "\e005"; } }
.glyphicon-star { &::before { content: "\e006"; } }
.glyphicon-star-empty { &::before { content: "\e007"; } }
.glyphicon-user { &::before { content: "\e008"; } }
.glyphicon-film { &::before { content: "\e009"; } }
.glyphicon-th-large { &::before { content: "\e010"; } }
.glyphicon-th { &::before { content: "\e011"; } }
.glyphicon-th-list { &::before { content: "\e012"; } }
.glyphicon-ok { &::before { content: "\e013"; } }
.glyphicon-remove { &::before { content: "\e014"; } }
.glyphicon-zoom-in { &::before { content: "\e015"; } }
.glyphicon-zoom-out { &::before { content: "\e016"; } }
.glyphicon-off { &::before { content: "\e017"; } }
.glyphicon-signal { &::before { content: "\e018"; } }
.glyphicon-cog { &::before { content: "\e019"; } }
.glyphicon-trash { &::before { content: "\e020"; } }
.glyphicon-home { &::before { content: "\e021"; } }
.glyphicon-file { &::before { content: "\e022"; } }
.glyphicon-time { &::before { content: "\e023"; } }
.glyphicon-road { &::before { content: "\e024"; } }
.glyphicon-download-alt { &::before { content: "\e025"; } }
.glyphicon-download { &::before { content: "\e026"; } }
.glyphicon-upload { &::before { content: "\e027"; } }
.glyphicon-inbox { &::before { content: "\e028"; } }
.glyphicon-play-circle { &::before { content: "\e029"; } }
.glyphicon-repeat { &::before { content: "\e030"; } }
.glyphicon-refresh { &::before { content: "\e031"; } }
.glyphicon-list-alt { &::before { content: "\e032"; } }
.glyphicon-lock { &::before { content: "\e033"; } }
.glyphicon-flag { &::before { content: "\e034"; } }
.glyphicon-headphones { &::before { content: "\e035"; } }
.glyphicon-volume-off { &::before { content: "\e036"; } }
.glyphicon-volume-down { &::before { content: "\e037"; } }
.glyphicon-volume-up { &::before { content: "\e038"; } }
.glyphicon-qrcode { &::before { content: "\e039"; } }
.glyphicon-barcode { &::before { content: "\e040"; } }
.glyphicon-tag { &::before { content: "\e041"; } }
.glyphicon-tags { &::before { content: "\e042"; } }
.glyphicon-book { &::before { content: "\e043"; } }
.glyphicon-bookmark { &::before { content: "\e044"; } }
.glyphicon-print { &::before { content: "\e045"; } }
.glyphicon-camera { &::before { content: "\e046"; } }
.glyphicon-font { &::before { content: "\e047"; } }
.glyphicon-bold { &::before { content: "\e048"; } }
.glyphicon-italic { &::before { content: "\e049"; } }
.glyphicon-text-height { &::before { content: "\e050"; } }
.glyphicon-text-width { &::before { content: "\e051"; } }
.glyphicon-align-left { &::before { content: "\e052"; } }
.glyphicon-align-center { &::before { content: "\e053"; } }
.glyphicon-align-right { &::before { content: "\e054"; } }
.glyphicon-align-justify { &::before { content: "\e055"; } }
.glyphicon-list { &::before { content: "\e056"; } }
.glyphicon-indent-left { &::before { content: "\e057"; } }
.glyphicon-indent-right { &::before { content: "\e058"; } }
.glyphicon-facetime-video { &::before { content: "\e059"; } }
.glyphicon-picture { &::before { content: "\e060"; } }
.glyphicon-map-marker { &::before { content: "\e062"; } }
.glyphicon-adjust { &::before { content: "\e063"; } }
.glyphicon-tint { &::before { content: "\e064"; } }
.glyphicon-edit { &::before { content: "\e065"; } }
.glyphicon-share { &::before { content: "\e066"; } }
.glyphicon-check { &::before { content: "\e067"; } }
.glyphicon-move { &::before { content: "\e068"; } }
.glyphicon-step-backward { &::before { content: "\e069"; } }
.glyphicon-fast-backward { &::before { content: "\e070"; } }
.glyphicon-backward { &::before { content: "\e071"; } }
.glyphicon-play { &::before { content: "\e072"; } }
.glyphicon-pause { &::before { content: "\e073"; } }
.glyphicon-stop { &::before { content: "\e074"; } }
.glyphicon-forward { &::before { content: "\e075"; } }
.glyphicon-fast-forward { &::before { content: "\e076"; } }
.glyphicon-step-forward { &::before { content: "\e077"; } }
.glyphicon-eject { &::before { content: "\e078"; } }
.glyphicon-chevron-left { &::before { content: "\e079"; } }
.glyphicon-chevron-right { &::before { content: "\e080"; } }
.glyphicon-plus-sign { &::before { content: "\e081"; } }
.glyphicon-minus-sign { &::before { content: "\e082"; } }
.glyphicon-remove-sign { &::before { content: "\e083"; } }
.glyphicon-ok-sign { &::before { content: "\e084"; } }
.glyphicon-question-sign { &::before { content: "\e085"; } }
.glyphicon-info-sign { &::before { content: "\e086"; } }
.glyphicon-screenshot { &::before { content: "\e087"; } }
.glyphicon-remove-circle { &::before { content: "\e088"; } }
.glyphicon-ok-circle { &::before { content: "\e089"; } }
.glyphicon-ban-circle { &::before { content: "\e090"; } }
.glyphicon-arrow-left { &::before { content: "\e091"; } }
.glyphicon-arrow-right { &::before { content: "\e092"; } }
.glyphicon-arrow-up { &::before { content: "\e093"; } }
.glyphicon-arrow-down { &::before { content: "\e094"; } }
.glyphicon-share-alt { &::before { content: "\e095"; } }
.glyphicon-resize-full { &::before { content: "\e096"; } }
.glyphicon-resize-small { &::before { content: "\e097"; } }
.glyphicon-exclamation-sign { &::before { content: "\e101"; } }
.glyphicon-gift { &::before { content: "\e102"; } }
.glyphicon-leaf { &::before { content: "\e103"; } }
.glyphicon-fire { &::before { content: "\e104"; } }
.glyphicon-eye-open { &::before { content: "\e105"; } }
.glyphicon-eye-close { &::before { content: "\e106"; } }
.glyphicon-warning-sign { &::before { content: "\e107"; } }
.glyphicon-plane { &::before { content: "\e108"; } }
.glyphicon-calendar { &::before { content: "\e109"; } }
.glyphicon-random { &::before { content: "\e110"; } }
.glyphicon-comment { &::before { content: "\e111"; } }
.glyphicon-magnet { &::before { content: "\e112"; } }
.glyphicon-chevron-up { &::before { content: "\e113"; } }
.glyphicon-chevron-down { &::before { content: "\e114"; } }
.glyphicon-retweet { &::before { content: "\e115"; } }
.glyphicon-shopping-cart { &::before { content: "\e116"; } }
.glyphicon-folder-close { &::before { content: "\e117"; } }
.glyphicon-folder-open { &::before { content: "\e118"; } }
.glyphicon-resize-vertical { &::before { content: "\e119"; } }
.glyphicon-resize-horizontal { &::before { content: "\e120"; } }
.glyphicon-hdd { &::before { content: "\e121"; } }
.glyphicon-bullhorn { &::before { content: "\e122"; } }
.glyphicon-bell { &::before { content: "\e123"; } }
.glyphicon-certificate { &::before { content: "\e124"; } }
.glyphicon-thumbs-up { &::before { content: "\e125"; } }
.glyphicon-thumbs-down { &::before { content: "\e126"; } }
.glyphicon-hand-right { &::before { content: "\e127"; } }
.glyphicon-hand-left { &::before { content: "\e128"; } }
.glyphicon-hand-up { &::before { content: "\e129"; } }
.glyphicon-hand-down { &::before { content: "\e130"; } }
.glyphicon-circle-arrow-right { &::before { content: "\e131"; } }
.glyphicon-circle-arrow-left { &::before { content: "\e132"; } }
.glyphicon-circle-arrow-up { &::before { content: "\e133"; } }
.glyphicon-circle-arrow-down { &::before { content: "\e134"; } }
.glyphicon-globe { &::before { content: "\e135"; } }
.glyphicon-wrench { &::before { content: "\e136"; } }
.glyphicon-tasks { &::before { content: "\e137"; } }
.glyphicon-filter { &::before { content: "\e138"; } }
.glyphicon-briefcase { &::before { content: "\e139"; } }
.glyphicon-fullscreen { &::before { content: "\e140"; } }
.glyphicon-dashboard { &::before { content: "\e141"; } }
.glyphicon-paperclip { &::before { content: "\e142"; } }
.glyphicon-heart-empty { &::before { content: "\e143"; } }
.glyphicon-link { &::before { content: "\e144"; } }
.glyphicon-phone { &::before { content: "\e145"; } }
.glyphicon-pushpin { &::before { content: "\e146"; } }
.glyphicon-usd { &::before { content: "\e148"; } }
.glyphicon-gbp { &::before { content: "\e149"; } }
.glyphicon-sort { &::before { content: "\e150"; } }
.glyphicon-sort-by-alphabet { &::before { content: "\e151"; } }
.glyphicon-sort-by-alphabet-alt { &::before { content: "\e152"; } }
.glyphicon-sort-by-order { &::before { content: "\e153"; } }
.glyphicon-sort-by-order-alt { &::before { content: "\e154"; } }
.glyphicon-sort-by-attributes { &::before { content: "\e155"; } }
.glyphicon-sort-by-attributes-alt { &::before { content: "\e156"; } }
.glyphicon-unchecked { &::before { content: "\e157"; } }
.glyphicon-expand { &::before { content: "\e158"; } }
.glyphicon-collapse-down { &::before { content: "\e159"; } }
.glyphicon-collapse-up { &::before { content: "\e160"; } }
.glyphicon-log-in { &::before { content: "\e161"; } }
.glyphicon-flash { &::before { content: "\e162"; } }
.glyphicon-log-out { &::before { content: "\e163"; } }
.glyphicon-new-window { &::before { content: "\e164"; } }
.glyphicon-record { &::before { content: "\e165"; } }
.glyphicon-save { &::before { content: "\e166"; } }
.glyphicon-open { &::before { content: "\e167"; } }
.glyphicon-saved { &::before { content: "\e168"; } }
.glyphicon-import { &::before { content: "\e169"; } }
.glyphicon-export { &::before { content: "\e170"; } }
.glyphicon-send { &::before { content: "\e171"; } }
.glyphicon-floppy-disk { &::before { content: "\e172"; } }
.glyphicon-floppy-saved { &::before { content: "\e173"; } }
.glyphicon-floppy-remove { &::before { content: "\e174"; } }
.glyphicon-floppy-save { &::before { content: "\e175"; } }
.glyphicon-floppy-open { &::before { content: "\e176"; } }
.glyphicon-credit-card { &::before { content: "\e177"; } }
.glyphicon-transfer { &::before { content: "\e178"; } }
.glyphicon-cutlery { &::before { content: "\e179"; } }
.glyphicon-header { &::before { content: "\e180"; } }
.glyphicon-compressed { &::before { content: "\e181"; } }
.glyphicon-earphone { &::before { content: "\e182"; } }
.glyphicon-phone-alt { &::before { content: "\e183"; } }
.glyphicon-tower { &::before { content: "\e184"; } }
.glyphicon-stats { &::before { content: "\e185"; } }
.glyphicon-sd-video { &::before { content: "\e186"; } }
.glyphicon-hd-video { &::before { content: "\e187"; } }
.glyphicon-subtitles { &::before { content: "\e188"; } }
.glyphicon-sound-stereo { &::before { content: "\e189"; } }
.glyphicon-sound-dolby { &::before { content: "\e190"; } }
.glyphicon-sound-5-1 { &::before { content: "\e191"; } }
.glyphicon-sound-6-1 { &::before { content: "\e192"; } }
.glyphicon-sound-7-1 { &::before { content: "\e193"; } }
.glyphicon-copyright-mark { &::before { content: "\e194"; } }
.glyphicon-registration-mark { &::before { content: "\e195"; } }
.glyphicon-cloud-download { &::before { content: "\e197"; } }
.glyphicon-cloud-upload { &::before { content: "\e198"; } }
.glyphicon-tree-conifer { &::before { content: "\e199"; } }
.glyphicon-tree-deciduous { &::before { content: "\e200"; } }
.glyphicon-cd { &::before { content: "\e201"; } }
.glyphicon-save-file { &::before { content: "\e202"; } }
.glyphicon-open-file { &::before { content: "\e203"; } }
.glyphicon-level-up { &::before { content: "\e204"; } }
.glyphicon-copy { &::before { content: "\e205"; } }
.glyphicon-paste { &::before { content: "\e206"; } }
.glyphicon-eur { &:before { content: "\20ac"; } }
.glyphicon-minus { &:before { content: "\2212"; } }
.glyphicon-cloud { &:before { content: "\2601"; } }
.glyphicon-envelope { &:before { content: "\2709"; } }
.glyphicon-pencil { &:before { content: "\270f"; } }
.glyphicon-glass { &:before { content: "\e001"; } }
.glyphicon-music { &:before { content: "\e002"; } }
.glyphicon-search { &:before { content: "\e003"; } }
.glyphicon-heart { &:before { content: "\e005"; } }
.glyphicon-star { &:before { content: "\e006"; } }
.glyphicon-star-empty { &:before { content: "\e007"; } }
.glyphicon-user { &:before { content: "\e008"; } }
.glyphicon-film { &:before { content: "\e009"; } }
.glyphicon-th-large { &:before { content: "\e010"; } }
.glyphicon-th { &:before { content: "\e011"; } }
.glyphicon-th-list { &:before { content: "\e012"; } }
.glyphicon-ok { &:before { content: "\e013"; } }
.glyphicon-remove { &:before { content: "\e014"; } }
.glyphicon-zoom-in { &:before { content: "\e015"; } }
.glyphicon-zoom-out { &:before { content: "\e016"; } }
.glyphicon-off { &:before { content: "\e017"; } }
.glyphicon-signal { &:before { content: "\e018"; } }
.glyphicon-cog { &:before { content: "\e019"; } }
.glyphicon-trash { &:before { content: "\e020"; } }
.glyphicon-home { &:before { content: "\e021"; } }
.glyphicon-file { &:before { content: "\e022"; } }
.glyphicon-time { &:before { content: "\e023"; } }
.glyphicon-road { &:before { content: "\e024"; } }
.glyphicon-download-alt { &:before { content: "\e025"; } }
.glyphicon-download { &:before { content: "\e026"; } }
.glyphicon-upload { &:before { content: "\e027"; } }
.glyphicon-inbox { &:before { content: "\e028"; } }
.glyphicon-play-circle { &:before { content: "\e029"; } }
.glyphicon-repeat { &:before { content: "\e030"; } }
.glyphicon-refresh { &:before { content: "\e031"; } }
.glyphicon-list-alt { &:before { content: "\e032"; } }
.glyphicon-lock { &:before { content: "\e033"; } }
.glyphicon-flag { &:before { content: "\e034"; } }
.glyphicon-headphones { &:before { content: "\e035"; } }
.glyphicon-volume-off { &:before { content: "\e036"; } }
.glyphicon-volume-down { &:before { content: "\e037"; } }
.glyphicon-volume-up { &:before { content: "\e038"; } }
.glyphicon-qrcode { &:before { content: "\e039"; } }
.glyphicon-barcode { &:before { content: "\e040"; } }
.glyphicon-tag { &:before { content: "\e041"; } }
.glyphicon-tags { &:before { content: "\e042"; } }
.glyphicon-book { &:before { content: "\e043"; } }
.glyphicon-bookmark { &:before { content: "\e044"; } }
.glyphicon-print { &:before { content: "\e045"; } }
.glyphicon-camera { &:before { content: "\e046"; } }
.glyphicon-font { &:before { content: "\e047"; } }
.glyphicon-bold { &:before { content: "\e048"; } }
.glyphicon-italic { &:before { content: "\e049"; } }
.glyphicon-text-height { &:before { content: "\e050"; } }
.glyphicon-text-width { &:before { content: "\e051"; } }
.glyphicon-align-left { &:before { content: "\e052"; } }
.glyphicon-align-center { &:before { content: "\e053"; } }
.glyphicon-align-right { &:before { content: "\e054"; } }
.glyphicon-align-justify { &:before { content: "\e055"; } }
.glyphicon-list { &:before { content: "\e056"; } }
.glyphicon-indent-left { &:before { content: "\e057"; } }
.glyphicon-indent-right { &:before { content: "\e058"; } }
.glyphicon-facetime-video { &:before { content: "\e059"; } }
.glyphicon-picture { &:before { content: "\e060"; } }
.glyphicon-map-marker { &:before { content: "\e062"; } }
.glyphicon-adjust { &:before { content: "\e063"; } }
.glyphicon-tint { &:before { content: "\e064"; } }
.glyphicon-edit { &:before { content: "\e065"; } }
.glyphicon-share { &:before { content: "\e066"; } }
.glyphicon-check { &:before { content: "\e067"; } }
.glyphicon-move { &:before { content: "\e068"; } }
.glyphicon-step-backward { &:before { content: "\e069"; } }
.glyphicon-fast-backward { &:before { content: "\e070"; } }
.glyphicon-backward { &:before { content: "\e071"; } }
.glyphicon-play { &:before { content: "\e072"; } }
.glyphicon-pause { &:before { content: "\e073"; } }
.glyphicon-stop { &:before { content: "\e074"; } }
.glyphicon-forward { &:before { content: "\e075"; } }
.glyphicon-fast-forward { &:before { content: "\e076"; } }
.glyphicon-step-forward { &:before { content: "\e077"; } }
.glyphicon-eject { &:before { content: "\e078"; } }
.glyphicon-chevron-left { &:before { content: "\e079"; } }
.glyphicon-chevron-right { &:before { content: "\e080"; } }
.glyphicon-plus-sign { &:before { content: "\e081"; } }
.glyphicon-minus-sign { &:before { content: "\e082"; } }
.glyphicon-remove-sign { &:before { content: "\e083"; } }
.glyphicon-ok-sign { &:before { content: "\e084"; } }
.glyphicon-question-sign { &:before { content: "\e085"; } }
.glyphicon-info-sign { &:before { content: "\e086"; } }
.glyphicon-screenshot { &:before { content: "\e087"; } }
.glyphicon-remove-circle { &:before { content: "\e088"; } }
.glyphicon-ok-circle { &:before { content: "\e089"; } }
.glyphicon-ban-circle { &:before { content: "\e090"; } }
.glyphicon-arrow-left { &:before { content: "\e091"; } }
.glyphicon-arrow-right { &:before { content: "\e092"; } }
.glyphicon-arrow-up { &:before { content: "\e093"; } }
.glyphicon-arrow-down { &:before { content: "\e094"; } }
.glyphicon-share-alt { &:before { content: "\e095"; } }
.glyphicon-resize-full { &:before { content: "\e096"; } }
.glyphicon-resize-small { &:before { content: "\e097"; } }
.glyphicon-exclamation-sign { &:before { content: "\e101"; } }
.glyphicon-gift { &:before { content: "\e102"; } }
.glyphicon-leaf { &:before { content: "\e103"; } }
.glyphicon-fire { &:before { content: "\e104"; } }
.glyphicon-eye-open { &:before { content: "\e105"; } }
.glyphicon-eye-close { &:before { content: "\e106"; } }
.glyphicon-warning-sign { &:before { content: "\e107"; } }
.glyphicon-plane { &:before { content: "\e108"; } }
.glyphicon-calendar { &:before { content: "\e109"; } }
.glyphicon-random { &:before { content: "\e110"; } }
.glyphicon-comment { &:before { content: "\e111"; } }
.glyphicon-magnet { &:before { content: "\e112"; } }
.glyphicon-chevron-up { &:before { content: "\e113"; } }
.glyphicon-chevron-down { &:before { content: "\e114"; } }
.glyphicon-retweet { &:before { content: "\e115"; } }
.glyphicon-shopping-cart { &:before { content: "\e116"; } }
.glyphicon-folder-close { &:before { content: "\e117"; } }
.glyphicon-folder-open { &:before { content: "\e118"; } }
.glyphicon-resize-vertical { &:before { content: "\e119"; } }
.glyphicon-resize-horizontal { &:before { content: "\e120"; } }
.glyphicon-hdd { &:before { content: "\e121"; } }
.glyphicon-bullhorn { &:before { content: "\e122"; } }
.glyphicon-bell { &:before { content: "\e123"; } }
.glyphicon-certificate { &:before { content: "\e124"; } }
.glyphicon-thumbs-up { &:before { content: "\e125"; } }
.glyphicon-thumbs-down { &:before { content: "\e126"; } }
.glyphicon-hand-right { &:before { content: "\e127"; } }
.glyphicon-hand-left { &:before { content: "\e128"; } }
.glyphicon-hand-up { &:before { content: "\e129"; } }
.glyphicon-hand-down { &:before { content: "\e130"; } }
.glyphicon-circle-arrow-right { &:before { content: "\e131"; } }
.glyphicon-circle-arrow-left { &:before { content: "\e132"; } }
.glyphicon-circle-arrow-up { &:before { content: "\e133"; } }
.glyphicon-circle-arrow-down { &:before { content: "\e134"; } }
.glyphicon-globe { &:before { content: "\e135"; } }
.glyphicon-wrench { &:before { content: "\e136"; } }
.glyphicon-tasks { &:before { content: "\e137"; } }
.glyphicon-filter { &:before { content: "\e138"; } }
.glyphicon-briefcase { &:before { content: "\e139"; } }
.glyphicon-fullscreen { &:before { content: "\e140"; } }
.glyphicon-dashboard { &:before { content: "\e141"; } }
.glyphicon-paperclip { &:before { content: "\e142"; } }
.glyphicon-heart-empty { &:before { content: "\e143"; } }
.glyphicon-link { &:before { content: "\e144"; } }
.glyphicon-phone { &:before { content: "\e145"; } }
.glyphicon-pushpin { &:before { content: "\e146"; } }
.glyphicon-usd { &:before { content: "\e148"; } }
.glyphicon-gbp { &:before { content: "\e149"; } }
.glyphicon-sort { &:before { content: "\e150"; } }
.glyphicon-sort-by-alphabet { &:before { content: "\e151"; } }
.glyphicon-sort-by-alphabet-alt { &:before { content: "\e152"; } }
.glyphicon-sort-by-order { &:before { content: "\e153"; } }
.glyphicon-sort-by-order-alt { &:before { content: "\e154"; } }
.glyphicon-sort-by-attributes { &:before { content: "\e155"; } }
.glyphicon-sort-by-attributes-alt { &:before { content: "\e156"; } }
.glyphicon-unchecked { &:before { content: "\e157"; } }
.glyphicon-expand { &:before { content: "\e158"; } }
.glyphicon-collapse-down { &:before { content: "\e159"; } }
.glyphicon-collapse-up { &:before { content: "\e160"; } }
.glyphicon-log-in { &:before { content: "\e161"; } }
.glyphicon-flash { &:before { content: "\e162"; } }
.glyphicon-log-out { &:before { content: "\e163"; } }
.glyphicon-new-window { &:before { content: "\e164"; } }
.glyphicon-record { &:before { content: "\e165"; } }
.glyphicon-save { &:before { content: "\e166"; } }
.glyphicon-open { &:before { content: "\e167"; } }
.glyphicon-saved { &:before { content: "\e168"; } }
.glyphicon-import { &:before { content: "\e169"; } }
.glyphicon-export { &:before { content: "\e170"; } }
.glyphicon-send { &:before { content: "\e171"; } }
.glyphicon-floppy-disk { &:before { content: "\e172"; } }
.glyphicon-floppy-saved { &:before { content: "\e173"; } }
.glyphicon-floppy-remove { &:before { content: "\e174"; } }
.glyphicon-floppy-save { &:before { content: "\e175"; } }
.glyphicon-floppy-open { &:before { content: "\e176"; } }
.glyphicon-credit-card { &:before { content: "\e177"; } }
.glyphicon-transfer { &:before { content: "\e178"; } }
.glyphicon-cutlery { &:before { content: "\e179"; } }
.glyphicon-header { &:before { content: "\e180"; } }
.glyphicon-compressed { &:before { content: "\e181"; } }
.glyphicon-earphone { &:before { content: "\e182"; } }
.glyphicon-phone-alt { &:before { content: "\e183"; } }
.glyphicon-tower { &:before { content: "\e184"; } }
.glyphicon-stats { &:before { content: "\e185"; } }
.glyphicon-sd-video { &:before { content: "\e186"; } }
.glyphicon-hd-video { &:before { content: "\e187"; } }
.glyphicon-subtitles { &:before { content: "\e188"; } }
.glyphicon-sound-stereo { &:before { content: "\e189"; } }
.glyphicon-sound-dolby { &:before { content: "\e190"; } }
.glyphicon-sound-5-1 { &:before { content: "\e191"; } }
.glyphicon-sound-6-1 { &:before { content: "\e192"; } }
.glyphicon-sound-7-1 { &:before { content: "\e193"; } }
.glyphicon-copyright-mark { &:before { content: "\e194"; } }
.glyphicon-registration-mark { &:before { content: "\e195"; } }
.glyphicon-cloud-download { &:before { content: "\e197"; } }
.glyphicon-cloud-upload { &:before { content: "\e198"; } }
.glyphicon-tree-conifer { &:before { content: "\e199"; } }
.glyphicon-tree-deciduous { &:before { content: "\e200"; } }
.glyphicon-cd { &:before { content: "\e201"; } }
.glyphicon-save-file { &:before { content: "\e202"; } }
.glyphicon-open-file { &:before { content: "\e203"; } }
.glyphicon-level-up { &:before { content: "\e204"; } }
.glyphicon-copy { &:before { content: "\e205"; } }
.glyphicon-paste { &:before { content: "\e206"; } }
// The following 2 Glyphicons are omitted for the time being because
// they currently use Unicode codepoints that are outside the
// Basic Multilingual Plane (BMP). Older buggy versions of WebKit can't handle
// non-BMP codepoints in CSS string escapes, and thus can't display these two icons.
// Notably, the bug affects some older versions of the Android Browser.
// More info: https://github.com/twbs/bootstrap/issues/10106
// .glyphicon-door { &::before { content: "\1f6aa"; } }
// .glyphicon-key { &::before { content: "\1f511"; } }
.glyphicon-alert { &::before { content: "\e209"; } }
.glyphicon-equalizer { &::before { content: "\e210"; } }
.glyphicon-king { &::before { content: "\e211"; } }
.glyphicon-queen { &::before { content: "\e212"; } }
.glyphicon-pawn { &::before { content: "\e213"; } }
.glyphicon-bishop { &::before { content: "\e214"; } }
.glyphicon-knight { &::before { content: "\e215"; } }
.glyphicon-baby-formula { &::before { content: "\e216"; } }
.glyphicon-tent { &::before { content: "\26fa"; } }
.glyphicon-blackboard { &::before { content: "\e218"; } }
.glyphicon-bed { &::before { content: "\e219"; } }
.glyphicon-apple { &::before { content: "\f8ff"; } }
.glyphicon-erase { &::before { content: "\e221"; } }
.glyphicon-hourglass { &::before { content: "\231b"; } }
.glyphicon-lamp { &::before { content: "\e223"; } }
.glyphicon-duplicate { &::before { content: "\e224"; } }
.glyphicon-piggy-bank { &::before { content: "\e225"; } }
.glyphicon-scissors { &::before { content: "\e226"; } }
.glyphicon-bitcoin { &::before { content: "\e227"; } }
.glyphicon-btc { &::before { content: "\e227"; } }
.glyphicon-xbt { &::before { content: "\e227"; } }
.glyphicon-yen { &::before { content: "\00a5"; } }
.glyphicon-jpy { &::before { content: "\00a5"; } }
.glyphicon-ruble { &::before { content: "\20bd"; } }
.glyphicon-rub { &::before { content: "\20bd"; } }
.glyphicon-scale { &::before { content: "\e230"; } }
.glyphicon-ice-lolly { &::before { content: "\e231"; } }
.glyphicon-ice-lolly-tasted { &::before { content: "\e232"; } }
.glyphicon-education { &::before { content: "\e233"; } }
.glyphicon-option-horizontal { &::before { content: "\e234"; } }
.glyphicon-option-vertical { &::before { content: "\e235"; } }
.glyphicon-menu-hamburger { &::before { content: "\e236"; } }
.glyphicon-modal-window { &::before { content: "\e237"; } }
.glyphicon-oil { &::before { content: "\e238"; } }
.glyphicon-grain { &::before { content: "\e239"; } }
.glyphicon-sunglasses { &::before { content: "\e240"; } }
.glyphicon-text-size { &::before { content: "\e241"; } }
.glyphicon-text-color { &::before { content: "\e242"; } }
.glyphicon-text-background { &::before { content: "\e243"; } }
.glyphicon-object-align-top { &::before { content: "\e244"; } }
.glyphicon-object-align-bottom { &::before { content: "\e245"; } }
.glyphicon-object-align-horizontal{ &::before { content: "\e246"; } }
.glyphicon-object-align-left { &::before { content: "\e247"; } }
.glyphicon-object-align-vertical { &::before { content: "\e248"; } }
.glyphicon-object-align-right { &::before { content: "\e249"; } }
.glyphicon-triangle-right { &::before { content: "\e250"; } }
.glyphicon-triangle-left { &::before { content: "\e251"; } }
.glyphicon-triangle-bottom { &::before { content: "\e252"; } }
.glyphicon-triangle-top { &::before { content: "\e253"; } }
.glyphicon-console { &::before { content: "\e254"; } }
.glyphicon-superscript { &::before { content: "\e255"; } }
.glyphicon-subscript { &::before { content: "\e256"; } }
.glyphicon-menu-left { &::before { content: "\e257"; } }
.glyphicon-menu-right { &::before { content: "\e258"; } }
.glyphicon-menu-down { &::before { content: "\e259"; } }
.glyphicon-menu-up { &::before { content: "\e260"; } }
// .glyphicon-door { &:before { content: "\1f6aa"; } }
// .glyphicon-key { &:before { content: "\1f511"; } }
.glyphicon-alert { &:before { content: "\e209"; } }
.glyphicon-equalizer { &:before { content: "\e210"; } }
.glyphicon-king { &:before { content: "\e211"; } }
.glyphicon-queen { &:before { content: "\e212"; } }
.glyphicon-pawn { &:before { content: "\e213"; } }
.glyphicon-bishop { &:before { content: "\e214"; } }
.glyphicon-knight { &:before { content: "\e215"; } }
.glyphicon-baby-formula { &:before { content: "\e216"; } }
.glyphicon-tent { &:before { content: "\26fa"; } }
.glyphicon-blackboard { &:before { content: "\e218"; } }
.glyphicon-bed { &:before { content: "\e219"; } }
.glyphicon-apple { &:before { content: "\f8ff"; } }
.glyphicon-erase { &:before { content: "\e221"; } }
.glyphicon-hourglass { &:before { content: "\231b"; } }
.glyphicon-lamp { &:before { content: "\e223"; } }
.glyphicon-duplicate { &:before { content: "\e224"; } }
.glyphicon-piggy-bank { &:before { content: "\e225"; } }
.glyphicon-scissors { &:before { content: "\e226"; } }
.glyphicon-bitcoin { &:before { content: "\e227"; } }
.glyphicon-btc { &:before { content: "\e227"; } }
.glyphicon-xbt { &:before { content: "\e227"; } }
.glyphicon-yen { &:before { content: "\00a5"; } }
.glyphicon-jpy { &:before { content: "\00a5"; } }
.glyphicon-ruble { &:before { content: "\20bd"; } }
.glyphicon-rub { &:before { content: "\20bd"; } }
.glyphicon-scale { &:before { content: "\e230"; } }
.glyphicon-ice-lolly { &:before { content: "\e231"; } }
.glyphicon-ice-lolly-tasted { &:before { content: "\e232"; } }
.glyphicon-education { &:before { content: "\e233"; } }
.glyphicon-option-horizontal { &:before { content: "\e234"; } }
.glyphicon-option-vertical { &:before { content: "\e235"; } }
.glyphicon-menu-hamburger { &:before { content: "\e236"; } }
.glyphicon-modal-window { &:before { content: "\e237"; } }
.glyphicon-oil { &:before { content: "\e238"; } }
.glyphicon-grain { &:before { content: "\e239"; } }
.glyphicon-sunglasses { &:before { content: "\e240"; } }
.glyphicon-text-size { &:before { content: "\e241"; } }
.glyphicon-text-color { &:before { content: "\e242"; } }
.glyphicon-text-background { &:before { content: "\e243"; } }
.glyphicon-object-align-top { &:before { content: "\e244"; } }
.glyphicon-object-align-bottom { &:before { content: "\e245"; } }
.glyphicon-object-align-horizontal{ &:before { content: "\e246"; } }
.glyphicon-object-align-left { &:before { content: "\e247"; } }
.glyphicon-object-align-vertical { &:before { content: "\e248"; } }
.glyphicon-object-align-right { &:before { content: "\e249"; } }
.glyphicon-triangle-right { &:before { content: "\e250"; } }
.glyphicon-triangle-left { &:before { content: "\e251"; } }
.glyphicon-triangle-bottom { &:before { content: "\e252"; } }
.glyphicon-triangle-top { &:before { content: "\e253"; } }
.glyphicon-console { &:before { content: "\e254"; } }
.glyphicon-superscript { &:before { content: "\e255"; } }
.glyphicon-subscript { &:before { content: "\e256"; } }
.glyphicon-menu-left { &:before { content: "\e257"; } }
.glyphicon-menu-right { &:before { content: "\e258"; } }
.glyphicon-menu-down { &:before { content: "\e259"; } }
.glyphicon-menu-up { &:before { content: "\e260"; } }

View File

@ -96,6 +96,27 @@
max-height: 200px;
}
}
// Fix the top/bottom navbars when screen real estate supports it
position: fixed;
right: 0;
left: 0;
z-index: $zindex-navbar-fixed;
// Undo the rounded corners
@media (min-width: $grid-float-breakpoint) {
border-radius: 0;
}
}
.navbar-fixed-top {
top: 0;
border-width: 0 0 1px;
}
.navbar-fixed-bottom {
bottom: 0;
margin-bottom: 0; // override .navbar defaults
border-width: 1px 0 0;
}
@ -134,29 +155,6 @@
}
}
// Fix the top/bottom navbars when screen real estate supports it
.navbar-fixed-top,
.navbar-fixed-bottom {
position: fixed;
right: 0;
left: 0;
z-index: $zindex-navbar-fixed;
// Undo the rounded corners
@media (min-width: $grid-float-breakpoint) {
border-radius: 0;
}
}
.navbar-fixed-top {
top: 0;
border-width: 0 0 1px;
}
.navbar-fixed-bottom {
bottom: 0;
margin-bottom: 0; // override .navbar defaults
border-width: 1px 0 0;
}
// Brand/project name
@ -437,26 +435,8 @@
background-color: $navbar-default-link-disabled-bg;
}
}
}
.navbar-toggle {
border-color: $navbar-default-toggle-border-color;
&:hover,
&:focus {
background-color: $navbar-default-toggle-hover-bg;
}
.icon-bar {
background-color: $navbar-default-toggle-icon-bar-bg;
}
}
.navbar-collapse,
.navbar-form {
border-color: $navbar-default-border;
}
// Dropdown menu items
.navbar-nav {
// Dropdown menu items
// Remove background color from open dropdown
> .open > a {
&,
@ -498,6 +478,22 @@
}
}
.navbar-toggle {
border-color: $navbar-default-toggle-border-color;
&:hover,
&:focus {
background-color: $navbar-default-toggle-hover-bg;
}
.icon-bar {
background-color: $navbar-default-toggle-icon-bar-bg;
}
}
.navbar-collapse,
.navbar-form {
border-color: $navbar-default-border;
}
// Links in navbars
//
@ -571,27 +567,8 @@
background-color: $navbar-inverse-link-disabled-bg;
}
}
}
// Darken the responsive nav toggle
.navbar-toggle {
border-color: $navbar-inverse-toggle-border-color;
&:hover,
&:focus {
background-color: $navbar-inverse-toggle-hover-bg;
}
.icon-bar {
background-color: $navbar-inverse-toggle-icon-bar-bg;
}
}
.navbar-collapse,
.navbar-form {
border-color: darken($navbar-inverse-bg, 7%);
}
// Dropdowns
.navbar-nav {
// Dropdowns
> .open > a {
&,
&:hover,
@ -638,6 +615,23 @@
}
}
// Darken the responsive nav toggle
.navbar-toggle {
border-color: $navbar-inverse-toggle-border-color;
&:hover,
&:focus {
background-color: $navbar-inverse-toggle-hover-bg;
}
.icon-bar {
background-color: $navbar-inverse-toggle-icon-bar-bg;
}
}
.navbar-collapse,
.navbar-form {
border-color: darken($navbar-inverse-bg, 7%);
}
.navbar-link {
color: $navbar-inverse-link-color;
&:hover {

View File

@ -104,11 +104,14 @@ a:hover {
// ==========================================================================
//
// Address styling not present in IE 8/9/10/11, Safari, and Chrome.
// 1. Remove the bottom border in Chrome 57- and Firefox 39-.
// 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
//
abbr[title] {
border-bottom: 1px dotted;
border-bottom: none; // 1
text-decoration: underline; // 2
text-decoration: underline dotted; // 2
}
//

View File

@ -29,12 +29,12 @@
&.left { margin-left: -$popover-arrow-width; }
// Arrows
// .arrow is outer, .arrow::after is inner
// .arrow is outer, .arrow:after is inner
> .arrow {
border-width: $popover-arrow-outer-width;
&,
&::after {
&:after {
position: absolute;
display: block;
width: 0;
@ -43,11 +43,73 @@
border-style: solid;
}
&::after {
&:after {
content: "";
border-width: $popover-arrow-width;
}
}
&.top > .arrow {
bottom: -$popover-arrow-outer-width;
left: 50%;
margin-left: -$popover-arrow-outer-width;
border-top-color: $popover-arrow-outer-fallback-color; // IE8 fallback
border-top-color: $popover-arrow-outer-color;
border-bottom-width: 0;
&:after {
bottom: 1px;
margin-left: -$popover-arrow-width;
content: " ";
border-top-color: $popover-arrow-color;
border-bottom-width: 0;
}
}
&.right > .arrow {
top: 50%;
left: -$popover-arrow-outer-width;
margin-top: -$popover-arrow-outer-width;
border-right-color: $popover-arrow-outer-fallback-color; // IE8 fallback
border-right-color: $popover-arrow-outer-color;
border-left-width: 0;
&:after {
bottom: -$popover-arrow-width;
left: 1px;
content: " ";
border-right-color: $popover-arrow-color;
border-left-width: 0;
}
}
&.bottom > .arrow {
top: -$popover-arrow-outer-width;
left: 50%;
margin-left: -$popover-arrow-outer-width;
border-top-width: 0;
border-bottom-color: $popover-arrow-outer-fallback-color; // IE8 fallback
border-bottom-color: $popover-arrow-outer-color;
&:after {
top: 1px;
margin-left: -$popover-arrow-width;
content: " ";
border-top-width: 0;
border-bottom-color: $popover-arrow-color;
}
}
&.left > .arrow {
top: 50%;
right: -$popover-arrow-outer-width;
margin-top: -$popover-arrow-outer-width;
border-right-width: 0;
border-left-color: $popover-arrow-outer-fallback-color; // IE8 fallback
border-left-color: $popover-arrow-outer-color;
&:after {
right: 1px;
bottom: -$popover-arrow-width;
content: " ";
border-right-width: 0;
border-left-color: $popover-arrow-color;
}
}
}
.popover-title {
@ -62,67 +124,3 @@
.popover-content {
padding: 9px 14px;
}
.popover {
&.top > .arrow {
bottom: -$popover-arrow-outer-width;
left: 50%;
margin-left: -$popover-arrow-outer-width;
border-top-color: $popover-arrow-outer-fallback-color; // IE8 fallback
border-top-color: $popover-arrow-outer-color;
border-bottom-width: 0;
&::after {
bottom: 1px;
margin-left: -$popover-arrow-width;
content: " ";
border-top-color: $popover-arrow-color;
border-bottom-width: 0;
}
}
&.right > .arrow {
top: 50%;
left: -$popover-arrow-outer-width;
margin-top: -$popover-arrow-outer-width;
border-right-color: $popover-arrow-outer-fallback-color; // IE8 fallback
border-right-color: $popover-arrow-outer-color;
border-left-width: 0;
&::after {
bottom: -$popover-arrow-width;
left: 1px;
content: " ";
border-right-color: $popover-arrow-color;
border-left-width: 0;
}
}
&.bottom > .arrow {
top: -$popover-arrow-outer-width;
left: 50%;
margin-left: -$popover-arrow-outer-width;
border-top-width: 0;
border-bottom-color: $popover-arrow-outer-fallback-color; // IE8 fallback
border-bottom-color: $popover-arrow-outer-color;
&::after {
top: 1px;
margin-left: -$popover-arrow-width;
content: " ";
border-top-width: 0;
border-bottom-color: $popover-arrow-color;
}
}
&.left > .arrow {
top: 50%;
right: -$popover-arrow-outer-width;
margin-top: -$popover-arrow-outer-width;
border-right-width: 0;
border-left-color: $popover-arrow-outer-fallback-color; // IE8 fallback
border-left-color: $popover-arrow-outer-color;
&::after {
right: 1px;
bottom: -$popover-arrow-width;
content: " ";
border-right-width: 0;
border-left-color: $popover-arrow-color;
}
}
}

View File

@ -7,8 +7,8 @@
@media print {
*,
*::before,
*::after {
*:before,
*:after {
color: #000 !important; // Black prints faster: h5bp.com/s
text-shadow: none !important;
background: transparent !important;
@ -20,18 +20,18 @@
text-decoration: underline;
}
a[href]::after {
a[href]:after {
content: " (" attr(href) ")";
}
abbr[title]::after {
abbr[title]:after {
content: " (" attr(title) ")";
}
// Don't show links that are fragment identifiers,
// or use the `javascript:` pseudo protocol
a[href^="#"]::after,
a[href^="javascript:"]::after {
a[href^="#"]:after,
a[href^="javascript:"]:after {
content: "";
}

View File

@ -14,9 +14,9 @@
// For more information, see the following:
//
// Issue: https://github.com/twbs/bootstrap/issues/10497
// Docs: http://getbootstrap.com/getting-started/#support-ie10-width
// Source: http://timkadlec.com/2013/01/windows-phone-8-and-device-width/
// Source: http://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/
// Docs: https://getbootstrap.com/docs/3.4/getting-started/#support-ie10-width
// Source: https://timkadlec.com/2013/01/windows-phone-8-and-device-width/
// Source: https://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/
@at-root {
@-ms-viewport {

View File

@ -7,12 +7,12 @@
//
// Heads up! This reset may cause conflicts with some third-party widgets.
// For recommendations on resolving such conflicts, see
// http://getbootstrap.com/getting-started/#third-box-sizing
// https://getbootstrap.com/docs/3.4/getting-started/#third-box-sizing
* {
@include box-sizing(border-box);
}
*::before,
*::after {
*:before,
*:after {
@include box-sizing(border-box);
}
@ -120,7 +120,7 @@ hr {
// Only display content to screen readers
//
// See: http://a11yproject.com/posts/how-to-hide-content
// See: https://a11yproject.com/posts/how-to-hide-content
.sr-only {
position: absolute;
@ -134,7 +134,7 @@ hr {
}
// Use in conjunction with .sr-only to only display content when it's focused.
// Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
// Useful for "Skip to main content" links; see https://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
// Credit: HTML5 Boilerplate
.sr-only-focusable {

View File

@ -1,6 +1,6 @@
/*!
* Bootstrap v3.4.0 (http://getbootstrap.com)
* Copyright 2011-2016 Twitter, Inc.
* Bootstrap v3.4.0 (https://getbootstrap.com/)
* Copyright 2011-2018 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/

View File

@ -32,28 +32,8 @@
padding: 0 $tooltip-arrow-width;
margin-left: -3px;
}
}
// Wrapper for the tooltip content
.tooltip-inner {
max-width: $tooltip-max-width;
padding: 3px 8px;
color: $tooltip-color;
text-align: center;
background-color: $tooltip-bg;
border-radius: $border-radius-base;
}
// Arrows
.tooltip-arrow {
position: absolute;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
}
// Note: Deprecated .top-left, .top-right, .bottom-left, and .bottom-right as of v3.3.1
.tooltip {
// Note: Deprecated .top-left, .top-right, .bottom-left, and .bottom-right as of v3.3.1
&.top .tooltip-arrow {
bottom: 0;
left: 50%;
@ -111,3 +91,22 @@
border-bottom-color: $tooltip-arrow-color;
}
}
// Wrapper for the tooltip content
.tooltip-inner {
max-width: $tooltip-max-width;
padding: 3px 8px;
color: $tooltip-color;
text-align: center;
background-color: $tooltip-bg;
border-radius: $border-radius-base;
}
// Arrows
.tooltip-arrow {
position: absolute;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
}

View File

@ -225,6 +225,13 @@ dd {
// Misc
// -------------------------
// Abbreviations and acronyms
// Add data-* attribute to help out our tooltip plugin, per https://github.com/twbs/bootstrap/issues/5257
abbr[title],
abbr[data-original-title] {
cursor: help;
}
.initialism {
font-size: 90%;
@extend .text-uppercase;
@ -255,7 +262,7 @@ blockquote {
line-height: $line-height-base;
color: $blockquote-small-color;
&::before {
&:before {
content: "\2014 \00A0"; // em dash, nbsp
}
}
@ -276,8 +283,8 @@ blockquote.pull-right {
footer,
small,
.small {
&::before { content: ""; }
&::after {
&:before { content: ""; }
&:after {
content: "\00A0 \2014"; // nbsp, em dash
}
}

View File

@ -6,17 +6,17 @@
// Otherwise it causes space to appear at the top and bottom of elements
// that are clearfixed.
// 2. The use of `table` rather than `block` is only necessary if using
// `::before` to contain the top-margins of child elements.
// `:before` to contain the top-margins of child elements.
//
// Source: http://nicolasgallagher.com/micro-clearfix-hack/
@mixin clearfix() {
&::before,
&::after {
&:before,
&:after {
display: table; // 2
content: " "; // 1
}
&::after {
&:after {
clear: both;
}
}

View File

@ -67,7 +67,7 @@ class Converter
log_processing name
# apply common conversions
file = convert_less(file)
file = replace_all file, %r{// stylelint-disable.*?\n*}, '', optional: true
file = replace_all file, %r{// stylelint-disable.*?\n+}, '', optional: true
if name.start_with?('mixins/')
file = varargify_mixin_definitions(file, *VARARG_MIXINS)
%w(responsive-(in)?visibility input-size text-emphasis-variant bg-variant).each do |mixin|