incorporate understrap theme file only

This commit is contained in:
koenemann 2016-04-04 13:45:31 +02:00
parent 67c0868160
commit 589193103b
227 changed files with 35 additions and 7972 deletions

File diff suppressed because it is too large Load diff

0
fonts/fontawesome-webfont.svg Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 357 KiB

After

Width:  |  Height:  |  Size: 357 KiB

0
fonts/fontawesome-webfont.ttf Executable file → Normal file
View file

0
fonts/fontawesome-webfont.woff Executable file → Normal file
View file

0
fonts/fontawesome-webfont.woff2 Executable file → Normal file
View file

0
fonts/glyphicons-halflings-regular.svg Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 106 KiB

After

Width:  |  Height:  |  Size: 106 KiB

0
fonts/glyphicons-halflings-regular.ttf Executable file → Normal file
View file

0
fonts/glyphicons-halflings-regular.woff Executable file → Normal file
View file

0
fonts/glyphicons-halflings-regular.woff2 Executable file → Normal file
View file

View file

@ -3,7 +3,7 @@
@import "theme/child_theme_variables"; // <--------- Add your variables into this file. Also add variables to overwrite Bootstrap variables here
@import "../src/sass/bootstrap-sass/bootstrap";
@import "../src/sass/understrap/theme";
@import "../src/sass/understrap/understrap/understrap";
@import "../src/sass/fontawesome/font-awesome";
@import "../src/sass/owl-carousel2/owl.carousel";
@import "../src/sass/owl-carousel2/owl.animate";

0
src/css/owl.carousel.css Executable file → Normal file
View file

0
src/css/owl.carousel.min.css vendored Executable file → Normal file
View file

0
src/css/owl.theme.default.css Executable file → Normal file
View file

0
src/css/owl.theme.default.min.css vendored Executable file → Normal file
View file

0
src/css/owl.theme.green.css Executable file → Normal file
View file

0
src/css/owl.theme.green.min.css vendored Executable file → Normal file
View file

0
src/js/bootstrap-sprockets.js vendored Executable file → Normal file
View file

0
src/js/bootstrap.js vendored Executable file → Normal file
View file

0
src/js/bootstrap.min.js vendored Executable file → Normal file
View file

0
src/js/bootstrap/affix.js Executable file → Normal file
View file

0
src/js/bootstrap/alert.js Executable file → Normal file
View file

0
src/js/bootstrap/button.js Executable file → Normal file
View file

0
src/js/bootstrap/carousel.js Executable file → Normal file
View file

0
src/js/bootstrap/collapse.js Executable file → Normal file
View file

0
src/js/bootstrap/dropdown.js Executable file → Normal file
View file

0
src/js/bootstrap/modal.js Executable file → Normal file
View file

0
src/js/bootstrap/popover.js Executable file → Normal file
View file

0
src/js/bootstrap/scrollspy.js Executable file → Normal file
View file

0
src/js/bootstrap/tab.js Executable file → Normal file
View file

0
src/js/bootstrap/tooltip.js Executable file → Normal file
View file

0
src/js/bootstrap/transition.js Executable file → Normal file
View file

0
src/js/customizer.js Executable file → Normal file
View file

71
src/js/jquery.js vendored Executable file → Normal file
View file

@ -1,5 +1,5 @@
/*!
* jQuery JavaScript Library v2.2.2
* jQuery JavaScript Library v2.2.1
* http://jquery.com/
*
* Includes Sizzle.js
@ -9,7 +9,7 @@
* Released under the MIT license
* http://jquery.org/license
*
* Date: 2016-03-17T17:51Z
* Date: 2016-02-22T19:11Z
*/
(function( global, factory ) {
@ -65,7 +65,7 @@ var support = {};
var
version = "2.2.2",
version = "2.2.1",
// Define a local copy of jQuery
jQuery = function( selector, context ) {
@ -276,7 +276,6 @@ jQuery.extend( {
},
isPlainObject: function( obj ) {
var key;
// Not plain objects:
// - Any object or value whose internal [[Class]] property is not "[object Object]"
@ -286,18 +285,14 @@ jQuery.extend( {
return false;
}
// Not own constructor property must be Object
if ( obj.constructor &&
!hasOwn.call( obj, "constructor" ) &&
!hasOwn.call( obj.constructor.prototype || {}, "isPrototypeOf" ) ) {
!hasOwn.call( obj.constructor.prototype, "isPrototypeOf" ) ) {
return false;
}
// Own properties are enumerated firstly, so to speed up,
// if last one is own, then all properties are own
for ( key in obj ) {}
return key === undefined || hasOwn.call( obj, key );
// If the function hasn't returned already, we're confident that
// |obj| is a plain object, created by {} or constructed with new Object
return true;
},
isEmptyObject: function( obj ) {
@ -7330,12 +7325,6 @@ jQuery.extend( {
}
} );
// Support: IE <=11 only
// Accessing the selectedIndex property
// forces the browser to respect setting selected
// on the option
// The getter ensures a default option is selected
// when in an optgroup
if ( !support.optSelected ) {
jQuery.propHooks.selected = {
get: function( elem ) {
@ -7344,16 +7333,6 @@ if ( !support.optSelected ) {
parent.parentNode.selectedIndex;
}
return null;
},
set: function( elem ) {
var parent = elem.parentNode;
if ( parent ) {
parent.selectedIndex;
if ( parent.parentNode ) {
parent.parentNode.selectedIndex;
}
}
}
};
}
@ -7548,8 +7527,7 @@ jQuery.fn.extend( {
var rreturn = /\r/g,
rspaces = /[\x20\t\r\n\f]+/g;
var rreturn = /\r/g;
jQuery.fn.extend( {
val: function( value ) {
@ -7625,15 +7603,9 @@ jQuery.extend( {
option: {
get: function( elem ) {
var val = jQuery.find.attr( elem, "value" );
return val != null ?
val :
// Support: IE10-11+
// option.text throws exceptions (#14686, #14858)
// Strip and collapse whitespace
// https://html.spec.whatwg.org/#strip-and-collapse-whitespace
jQuery.trim( jQuery.text( elem ) ).replace( rspaces, " " );
// Support: IE<11
// option.value not trimmed (#14858)
return jQuery.trim( elem.value );
}
},
select: {
@ -7686,7 +7658,7 @@ jQuery.extend( {
while ( i-- ) {
option = options[ i ];
if ( option.selected =
jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1
jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1
) {
optionSet = true;
}
@ -9381,6 +9353,18 @@ jQuery.ajaxPrefilter( "json jsonp", function( s, originalSettings, jqXHR ) {
// Support: Safari 8+
// In Safari 8 documents created via document.implementation.createHTMLDocument
// collapse sibling forms: the second one becomes a child of the first one.
// Because of that, this security measure has to be disabled in Safari 8.
// https://bugs.webkit.org/show_bug.cgi?id=137337
support.createHTMLDocument = ( function() {
var body = document.implementation.createHTMLDocument( "" ).body;
body.innerHTML = "<form></form><form></form>";
return body.childNodes.length === 2;
} )();
// Argument "data" should be string of html
// context (optional): If specified, the fragment will be created in this context,
// defaults to document
@ -9393,7 +9377,12 @@ jQuery.parseHTML = function( data, context, keepScripts ) {
keepScripts = context;
context = false;
}
context = context || document;
// Stop scripts or inline event handlers from being executed immediately
// by using document.implementation
context = context || ( support.createHTMLDocument ?
document.implementation.createHTMLDocument( "" ) :
document );
var parsed = rsingleTag.exec( data ),
scripts = !keepScripts && [];

8
src/js/jquery.min.js vendored Executable file → Normal file

File diff suppressed because one or more lines are too long

0
src/js/jquery.slim.js Executable file → Normal file
View file

0
src/js/jquery.slim.min.js vendored Executable file → Normal file
View file

0
src/js/navigation.js Executable file → Normal file
View file

0
src/js/owl.carousel.js Executable file → Normal file
View file

0
src/js/owl.carousel.min.js vendored Executable file → Normal file
View file

0
src/js/skip-link-focus-fix.js Executable file → Normal file
View file

0
src/sass/bootstrap-sass/_bootstrap-compass.scss Executable file → Normal file
View file

0
src/sass/bootstrap-sass/_bootstrap-mincer.scss Executable file → Normal file
View file

0
src/sass/bootstrap-sass/_bootstrap-sprockets.scss Executable file → Normal file
View file

0
src/sass/bootstrap-sass/_bootstrap.scss Executable file → Normal file
View file

0
src/sass/bootstrap-sass/bootstrap/_alerts.scss Executable file → Normal file
View file

0
src/sass/bootstrap-sass/bootstrap/_badges.scss Executable file → Normal file
View file

0
src/sass/bootstrap-sass/bootstrap/_breadcrumbs.scss Executable file → Normal file
View file

0
src/sass/bootstrap-sass/bootstrap/_button-groups.scss Executable file → Normal file
View file

0
src/sass/bootstrap-sass/bootstrap/_buttons.scss Executable file → Normal file
View file

0
src/sass/bootstrap-sass/bootstrap/_carousel.scss Executable file → Normal file
View file

0
src/sass/bootstrap-sass/bootstrap/_close.scss Executable file → Normal file
View file

0
src/sass/bootstrap-sass/bootstrap/_code.scss Executable file → Normal file
View file

View file

0
src/sass/bootstrap-sass/bootstrap/_dropdowns.scss Executable file → Normal file
View file

0
src/sass/bootstrap-sass/bootstrap/_forms.scss Executable file → Normal file
View file

0
src/sass/bootstrap-sass/bootstrap/_glyphicons.scss Executable file → Normal file
View file

0
src/sass/bootstrap-sass/bootstrap/_grid.scss Executable file → Normal file
View file

0
src/sass/bootstrap-sass/bootstrap/_input-groups.scss Executable file → Normal file
View file

0
src/sass/bootstrap-sass/bootstrap/_jumbotron.scss Executable file → Normal file
View file

0
src/sass/bootstrap-sass/bootstrap/_labels.scss Executable file → Normal file
View file

0
src/sass/bootstrap-sass/bootstrap/_list-group.scss Executable file → Normal file
View file

0
src/sass/bootstrap-sass/bootstrap/_media.scss Executable file → Normal file
View file

0
src/sass/bootstrap-sass/bootstrap/_mixins.scss Executable file → Normal file
View file

0
src/sass/bootstrap-sass/bootstrap/_modals.scss Executable file → Normal file
View file

0
src/sass/bootstrap-sass/bootstrap/_navbar.scss Executable file → Normal file
View file

0
src/sass/bootstrap-sass/bootstrap/_navs.scss Executable file → Normal file
View file

0
src/sass/bootstrap-sass/bootstrap/_normalize.scss Executable file → Normal file
View file

0
src/sass/bootstrap-sass/bootstrap/_pager.scss Executable file → Normal file
View file

0
src/sass/bootstrap-sass/bootstrap/_pagination.scss Executable file → Normal file
View file

0
src/sass/bootstrap-sass/bootstrap/_panels.scss Executable file → Normal file
View file

0
src/sass/bootstrap-sass/bootstrap/_popovers.scss Executable file → Normal file
View file

0
src/sass/bootstrap-sass/bootstrap/_print.scss Executable file → Normal file
View file

0
src/sass/bootstrap-sass/bootstrap/_progress-bars.scss Executable file → Normal file
View file

View file

View file

0
src/sass/bootstrap-sass/bootstrap/_scaffolding.scss Executable file → Normal file
View file

0
src/sass/bootstrap-sass/bootstrap/_tables.scss Executable file → Normal file
View file

0
src/sass/bootstrap-sass/bootstrap/_theme.scss Executable file → Normal file
View file

0
src/sass/bootstrap-sass/bootstrap/_thumbnails.scss Executable file → Normal file
View file

0
src/sass/bootstrap-sass/bootstrap/_tooltip.scss Executable file → Normal file
View file

0
src/sass/bootstrap-sass/bootstrap/_type.scss Executable file → Normal file
View file

0
src/sass/bootstrap-sass/bootstrap/_utilities.scss Executable file → Normal file
View file

0
src/sass/bootstrap-sass/bootstrap/_variables.scss Executable file → Normal file
View file

0
src/sass/bootstrap-sass/bootstrap/_wells.scss Executable file → Normal file
View file

0
src/sass/bootstrap-sass/bootstrap/mixins/_alerts.scss Executable file → Normal file
View file

View file

View file

0
src/sass/bootstrap-sass/bootstrap/mixins/_buttons.scss Executable file → Normal file
View file

View file

View file

0
src/sass/bootstrap-sass/bootstrap/mixins/_forms.scss Executable file → Normal file
View file

View file

View file

0
src/sass/bootstrap-sass/bootstrap/mixins/_grid.scss Executable file → Normal file
View file

View file

0
src/sass/bootstrap-sass/bootstrap/mixins/_image.scss Executable file → Normal file
View file

0
src/sass/bootstrap-sass/bootstrap/mixins/_labels.scss Executable file → Normal file
View file

View file

View file

View file

Some files were not shown because too many files have changed in this diff Show more