├── .editorconfig ├── .gitattributes ├── .gitignore ├── .travis.yml ├── CNAME ├── CONTRIBUTING.md ├── Gruntfile.js ├── LICENSE ├── README.md ├── _config.yml ├── bower.json ├── composer.json ├── dist ├── css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap.css │ ├── bootstrap.css.map │ └── bootstrap.min.css ├── fonts │ ├── ratchicons.eot │ ├── ratchicons.svg │ ├── ratchicons.ttf │ └── ratchicons.woff └── js │ ├── bootstrap.js │ └── bootstrap.min.js ├── docs ├── LICENSE ├── _data │ ├── core-team.yml │ ├── ratchicons.yml │ ├── sass-team.yml │ └── showcase.yml ├── _includes │ ├── ads.html │ ├── footer.html │ ├── header.html │ ├── nav-about.html │ ├── nav-components.html │ ├── nav-css.html │ ├── nav-getting-started.html │ ├── nav-javascript.html │ ├── nav-main.html │ ├── nav-migration.html │ └── social-buttons.html ├── _layouts │ ├── default.html │ └── home.html ├── about.html ├── assets │ ├── css │ │ ├── docs.css │ │ ├── docs.min.css │ │ └── pygments-manni.css │ ├── ico │ │ ├── apple-touch-icon-144-precomposed.png │ │ └── favicon.ico │ ├── img │ │ ├── components.png │ │ ├── devices.png │ │ └── sass-less.png │ └── js │ │ ├── application.js │ │ ├── docs.min.js │ │ ├── ie8-responsive-file-warning.js │ │ └── vendor │ │ ├── blob.js │ │ ├── filesaver.js │ │ ├── holder.js │ │ ├── jszip.min.js │ │ └── uglify.min.js ├── components.html ├── css.html ├── dist │ ├── css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css.map │ │ └── bootstrap.min.css │ ├── fonts │ │ ├── ratchicons.eot │ │ ├── ratchicons.svg │ │ ├── ratchicons.ttf │ │ └── ratchicons.woff │ └── js │ │ └── bootstrap.min.js ├── examples │ ├── blog │ │ ├── blog.css │ │ └── index.html │ ├── carousel │ │ ├── carousel.css │ │ └── index.html │ ├── cover │ │ ├── cover.css │ │ └── index.html │ ├── dashboard │ │ ├── dashboard.css │ │ └── index.html │ ├── grid │ │ ├── grid.css │ │ └── index.html │ ├── jumbotron-narrow │ │ ├── index.html │ │ └── jumbotron-narrow.css │ ├── jumbotron │ │ ├── index.html │ │ └── jumbotron.css │ ├── justified-nav │ │ ├── index.html │ │ └── justified-nav.css │ ├── navbar-fixed-top │ │ ├── index.html │ │ └── navbar-fixed-top.css │ ├── navbar-static-top │ │ ├── index.html │ │ └── navbar-static-top.css │ ├── navbar │ │ ├── index.html │ │ └── navbar.css │ ├── non-responsive │ │ ├── index.html │ │ └── non-responsive.css │ ├── offcanvas │ │ ├── index.html │ │ ├── offcanvas.css │ │ └── offcanvas.js │ ├── screenshots │ │ ├── blog.jpg │ │ ├── carousel.jpg │ │ ├── cover.jpg │ │ ├── dashboard.jpg │ │ ├── grid.jpg │ │ ├── jumbotron-narrow.jpg │ │ ├── jumbotron.jpg │ │ ├── justified-nav.jpg │ │ ├── navbar-fixed.jpg │ │ ├── navbar-static.jpg │ │ ├── navbar.jpg │ │ ├── non-responsive.jpg │ │ ├── offcanvas.jpg │ │ ├── sign-in.jpg │ │ ├── starter-template.jpg │ │ ├── sticky-footer-navbar.jpg │ │ ├── sticky-footer.jpg │ │ └── theme.jpg │ ├── signin │ │ ├── index.html │ │ └── signin.css │ ├── starter-template │ │ ├── index.html │ │ └── starter-template.css │ ├── sticky-footer-navbar │ │ ├── index.html │ │ └── sticky-footer-navbar.css │ ├── sticky-footer │ │ ├── index.html │ │ └── sticky-footer.css │ └── theme │ │ ├── index.html │ │ └── theme.css ├── getting-started.html ├── index.html ├── javascript.html └── migration.html ├── fonts ├── ratchicons.eot ├── ratchicons.svg ├── ratchicons.ttf └── ratchicons.woff ├── grunt ├── .jshintrc ├── bs-ratchicons-data-generator.js └── shrinkwrap.js ├── js ├── .jscs.json ├── .jshintrc ├── affix.js ├── alert.js ├── button.js ├── carousel.js ├── collapse.js ├── dropdown.js ├── modal.js ├── popover.js ├── scrollspy.js ├── tab.js ├── tests │ ├── index.html │ ├── unit │ │ ├── affix.js │ │ ├── alert.js │ │ ├── button.js │ │ ├── carousel.js │ │ ├── collapse.js │ │ ├── dropdown.js │ │ ├── modal.js │ │ ├── phantom.js │ │ ├── popover.js │ │ ├── scrollspy.js │ │ ├── tab.js │ │ └── tooltip.js │ └── vendor │ │ ├── jquery.js │ │ ├── qunit.css │ │ └── qunit.js ├── tooltip.js └── transition.js ├── package.json ├── sass ├── .csscomb.json ├── .csslintrc ├── _variables.scss ├── bootstrap-ios7.scss ├── bootstrap-ios7 │ ├── _alerts.scss │ ├── _buttons.scss │ └── _carousel.scss └── bootstrap-theme.scss └── test-infra ├── README.md ├── npm-shrinkwrap.canonical.json ├── requirements.txt ├── s3_cache.py ├── sauce_browsers.yml └── uncached-npm-install.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/.travis.yml -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | getbootstrap.com 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/_config.yml -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/bower.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/composer.json -------------------------------------------------------------------------------- /dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/dist/css/bootstrap.css -------------------------------------------------------------------------------- /dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /dist/fonts/ratchicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/dist/fonts/ratchicons.eot -------------------------------------------------------------------------------- /dist/fonts/ratchicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/dist/fonts/ratchicons.svg -------------------------------------------------------------------------------- /dist/fonts/ratchicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/dist/fonts/ratchicons.ttf -------------------------------------------------------------------------------- /dist/fonts/ratchicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/dist/fonts/ratchicons.woff -------------------------------------------------------------------------------- /dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/dist/js/bootstrap.js -------------------------------------------------------------------------------- /dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /docs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/LICENSE -------------------------------------------------------------------------------- /docs/_data/core-team.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/_data/core-team.yml -------------------------------------------------------------------------------- /docs/_data/ratchicons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/_data/ratchicons.yml -------------------------------------------------------------------------------- /docs/_data/sass-team.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/_data/sass-team.yml -------------------------------------------------------------------------------- /docs/_data/showcase.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/_data/showcase.yml -------------------------------------------------------------------------------- /docs/_includes/ads.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/_includes/footer.html -------------------------------------------------------------------------------- /docs/_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/_includes/header.html -------------------------------------------------------------------------------- /docs/_includes/nav-about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/_includes/nav-about.html -------------------------------------------------------------------------------- /docs/_includes/nav-components.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/_includes/nav-components.html -------------------------------------------------------------------------------- /docs/_includes/nav-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/_includes/nav-css.html -------------------------------------------------------------------------------- /docs/_includes/nav-getting-started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/_includes/nav-getting-started.html -------------------------------------------------------------------------------- /docs/_includes/nav-javascript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/_includes/nav-javascript.html -------------------------------------------------------------------------------- /docs/_includes/nav-main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/_includes/nav-main.html -------------------------------------------------------------------------------- /docs/_includes/nav-migration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/_includes/nav-migration.html -------------------------------------------------------------------------------- /docs/_includes/social-buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/_includes/social-buttons.html -------------------------------------------------------------------------------- /docs/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/_layouts/default.html -------------------------------------------------------------------------------- /docs/_layouts/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/_layouts/home.html -------------------------------------------------------------------------------- /docs/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/about.html -------------------------------------------------------------------------------- /docs/assets/css/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/assets/css/docs.css -------------------------------------------------------------------------------- /docs/assets/css/docs.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/assets/css/docs.min.css -------------------------------------------------------------------------------- /docs/assets/css/pygments-manni.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/assets/css/pygments-manni.css -------------------------------------------------------------------------------- /docs/assets/ico/apple-touch-icon-144-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/assets/ico/apple-touch-icon-144-precomposed.png -------------------------------------------------------------------------------- /docs/assets/ico/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/assets/ico/favicon.ico -------------------------------------------------------------------------------- /docs/assets/img/components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/assets/img/components.png -------------------------------------------------------------------------------- /docs/assets/img/devices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/assets/img/devices.png -------------------------------------------------------------------------------- /docs/assets/img/sass-less.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/assets/img/sass-less.png -------------------------------------------------------------------------------- /docs/assets/js/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/assets/js/application.js -------------------------------------------------------------------------------- /docs/assets/js/docs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/assets/js/docs.min.js -------------------------------------------------------------------------------- /docs/assets/js/ie8-responsive-file-warning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/assets/js/ie8-responsive-file-warning.js -------------------------------------------------------------------------------- /docs/assets/js/vendor/blob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/assets/js/vendor/blob.js -------------------------------------------------------------------------------- /docs/assets/js/vendor/filesaver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/assets/js/vendor/filesaver.js -------------------------------------------------------------------------------- /docs/assets/js/vendor/holder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/assets/js/vendor/holder.js -------------------------------------------------------------------------------- /docs/assets/js/vendor/jszip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/assets/js/vendor/jszip.min.js -------------------------------------------------------------------------------- /docs/assets/js/vendor/uglify.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/assets/js/vendor/uglify.min.js -------------------------------------------------------------------------------- /docs/components.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/components.html -------------------------------------------------------------------------------- /docs/css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/css.html -------------------------------------------------------------------------------- /docs/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /docs/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /docs/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /docs/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /docs/dist/fonts/ratchicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/dist/fonts/ratchicons.eot -------------------------------------------------------------------------------- /docs/dist/fonts/ratchicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/dist/fonts/ratchicons.svg -------------------------------------------------------------------------------- /docs/dist/fonts/ratchicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/dist/fonts/ratchicons.ttf -------------------------------------------------------------------------------- /docs/dist/fonts/ratchicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/dist/fonts/ratchicons.woff -------------------------------------------------------------------------------- /docs/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /docs/examples/blog/blog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/blog/blog.css -------------------------------------------------------------------------------- /docs/examples/blog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/blog/index.html -------------------------------------------------------------------------------- /docs/examples/carousel/carousel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/carousel/carousel.css -------------------------------------------------------------------------------- /docs/examples/carousel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/carousel/index.html -------------------------------------------------------------------------------- /docs/examples/cover/cover.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/cover/cover.css -------------------------------------------------------------------------------- /docs/examples/cover/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/cover/index.html -------------------------------------------------------------------------------- /docs/examples/dashboard/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/dashboard/dashboard.css -------------------------------------------------------------------------------- /docs/examples/dashboard/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/dashboard/index.html -------------------------------------------------------------------------------- /docs/examples/grid/grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/grid/grid.css -------------------------------------------------------------------------------- /docs/examples/grid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/grid/index.html -------------------------------------------------------------------------------- /docs/examples/jumbotron-narrow/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/jumbotron-narrow/index.html -------------------------------------------------------------------------------- /docs/examples/jumbotron-narrow/jumbotron-narrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/jumbotron-narrow/jumbotron-narrow.css -------------------------------------------------------------------------------- /docs/examples/jumbotron/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/jumbotron/index.html -------------------------------------------------------------------------------- /docs/examples/jumbotron/jumbotron.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/jumbotron/jumbotron.css -------------------------------------------------------------------------------- /docs/examples/justified-nav/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/justified-nav/index.html -------------------------------------------------------------------------------- /docs/examples/justified-nav/justified-nav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/justified-nav/justified-nav.css -------------------------------------------------------------------------------- /docs/examples/navbar-fixed-top/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/navbar-fixed-top/index.html -------------------------------------------------------------------------------- /docs/examples/navbar-fixed-top/navbar-fixed-top.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/navbar-fixed-top/navbar-fixed-top.css -------------------------------------------------------------------------------- /docs/examples/navbar-static-top/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/navbar-static-top/index.html -------------------------------------------------------------------------------- /docs/examples/navbar-static-top/navbar-static-top.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/navbar-static-top/navbar-static-top.css -------------------------------------------------------------------------------- /docs/examples/navbar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/navbar/index.html -------------------------------------------------------------------------------- /docs/examples/navbar/navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/navbar/navbar.css -------------------------------------------------------------------------------- /docs/examples/non-responsive/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/non-responsive/index.html -------------------------------------------------------------------------------- /docs/examples/non-responsive/non-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/non-responsive/non-responsive.css -------------------------------------------------------------------------------- /docs/examples/offcanvas/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/offcanvas/index.html -------------------------------------------------------------------------------- /docs/examples/offcanvas/offcanvas.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/offcanvas/offcanvas.css -------------------------------------------------------------------------------- /docs/examples/offcanvas/offcanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/offcanvas/offcanvas.js -------------------------------------------------------------------------------- /docs/examples/screenshots/blog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/screenshots/blog.jpg -------------------------------------------------------------------------------- /docs/examples/screenshots/carousel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/screenshots/carousel.jpg -------------------------------------------------------------------------------- /docs/examples/screenshots/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/screenshots/cover.jpg -------------------------------------------------------------------------------- /docs/examples/screenshots/dashboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/screenshots/dashboard.jpg -------------------------------------------------------------------------------- /docs/examples/screenshots/grid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/screenshots/grid.jpg -------------------------------------------------------------------------------- /docs/examples/screenshots/jumbotron-narrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/screenshots/jumbotron-narrow.jpg -------------------------------------------------------------------------------- /docs/examples/screenshots/jumbotron.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/screenshots/jumbotron.jpg -------------------------------------------------------------------------------- /docs/examples/screenshots/justified-nav.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/screenshots/justified-nav.jpg -------------------------------------------------------------------------------- /docs/examples/screenshots/navbar-fixed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/screenshots/navbar-fixed.jpg -------------------------------------------------------------------------------- /docs/examples/screenshots/navbar-static.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/screenshots/navbar-static.jpg -------------------------------------------------------------------------------- /docs/examples/screenshots/navbar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/screenshots/navbar.jpg -------------------------------------------------------------------------------- /docs/examples/screenshots/non-responsive.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/screenshots/non-responsive.jpg -------------------------------------------------------------------------------- /docs/examples/screenshots/offcanvas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/screenshots/offcanvas.jpg -------------------------------------------------------------------------------- /docs/examples/screenshots/sign-in.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/screenshots/sign-in.jpg -------------------------------------------------------------------------------- /docs/examples/screenshots/starter-template.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/screenshots/starter-template.jpg -------------------------------------------------------------------------------- /docs/examples/screenshots/sticky-footer-navbar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/screenshots/sticky-footer-navbar.jpg -------------------------------------------------------------------------------- /docs/examples/screenshots/sticky-footer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/screenshots/sticky-footer.jpg -------------------------------------------------------------------------------- /docs/examples/screenshots/theme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/screenshots/theme.jpg -------------------------------------------------------------------------------- /docs/examples/signin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/signin/index.html -------------------------------------------------------------------------------- /docs/examples/signin/signin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/signin/signin.css -------------------------------------------------------------------------------- /docs/examples/starter-template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/starter-template/index.html -------------------------------------------------------------------------------- /docs/examples/starter-template/starter-template.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/starter-template/starter-template.css -------------------------------------------------------------------------------- /docs/examples/sticky-footer-navbar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/sticky-footer-navbar/index.html -------------------------------------------------------------------------------- /docs/examples/sticky-footer-navbar/sticky-footer-navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/sticky-footer-navbar/sticky-footer-navbar.css -------------------------------------------------------------------------------- /docs/examples/sticky-footer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/sticky-footer/index.html -------------------------------------------------------------------------------- /docs/examples/sticky-footer/sticky-footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/sticky-footer/sticky-footer.css -------------------------------------------------------------------------------- /docs/examples/theme/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/theme/index.html -------------------------------------------------------------------------------- /docs/examples/theme/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/examples/theme/theme.css -------------------------------------------------------------------------------- /docs/getting-started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/getting-started.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/javascript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/javascript.html -------------------------------------------------------------------------------- /docs/migration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/docs/migration.html -------------------------------------------------------------------------------- /fonts/ratchicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/fonts/ratchicons.eot -------------------------------------------------------------------------------- /fonts/ratchicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/fonts/ratchicons.svg -------------------------------------------------------------------------------- /fonts/ratchicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/fonts/ratchicons.ttf -------------------------------------------------------------------------------- /fonts/ratchicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/fonts/ratchicons.woff -------------------------------------------------------------------------------- /grunt/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/grunt/.jshintrc -------------------------------------------------------------------------------- /grunt/bs-ratchicons-data-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/grunt/bs-ratchicons-data-generator.js -------------------------------------------------------------------------------- /grunt/shrinkwrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/grunt/shrinkwrap.js -------------------------------------------------------------------------------- /js/.jscs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/js/.jscs.json -------------------------------------------------------------------------------- /js/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/js/.jshintrc -------------------------------------------------------------------------------- /js/affix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/js/affix.js -------------------------------------------------------------------------------- /js/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/js/alert.js -------------------------------------------------------------------------------- /js/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/js/button.js -------------------------------------------------------------------------------- /js/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/js/carousel.js -------------------------------------------------------------------------------- /js/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/js/collapse.js -------------------------------------------------------------------------------- /js/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/js/dropdown.js -------------------------------------------------------------------------------- /js/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/js/modal.js -------------------------------------------------------------------------------- /js/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/js/popover.js -------------------------------------------------------------------------------- /js/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/js/scrollspy.js -------------------------------------------------------------------------------- /js/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/js/tab.js -------------------------------------------------------------------------------- /js/tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/js/tests/index.html -------------------------------------------------------------------------------- /js/tests/unit/affix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/js/tests/unit/affix.js -------------------------------------------------------------------------------- /js/tests/unit/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/js/tests/unit/alert.js -------------------------------------------------------------------------------- /js/tests/unit/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/js/tests/unit/button.js -------------------------------------------------------------------------------- /js/tests/unit/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/js/tests/unit/carousel.js -------------------------------------------------------------------------------- /js/tests/unit/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/js/tests/unit/collapse.js -------------------------------------------------------------------------------- /js/tests/unit/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/js/tests/unit/dropdown.js -------------------------------------------------------------------------------- /js/tests/unit/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/js/tests/unit/modal.js -------------------------------------------------------------------------------- /js/tests/unit/phantom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/js/tests/unit/phantom.js -------------------------------------------------------------------------------- /js/tests/unit/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/js/tests/unit/popover.js -------------------------------------------------------------------------------- /js/tests/unit/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/js/tests/unit/scrollspy.js -------------------------------------------------------------------------------- /js/tests/unit/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/js/tests/unit/tab.js -------------------------------------------------------------------------------- /js/tests/unit/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/js/tests/unit/tooltip.js -------------------------------------------------------------------------------- /js/tests/vendor/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/js/tests/vendor/jquery.js -------------------------------------------------------------------------------- /js/tests/vendor/qunit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/js/tests/vendor/qunit.css -------------------------------------------------------------------------------- /js/tests/vendor/qunit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/js/tests/vendor/qunit.js -------------------------------------------------------------------------------- /js/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/js/tooltip.js -------------------------------------------------------------------------------- /js/transition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/js/transition.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/package.json -------------------------------------------------------------------------------- /sass/.csscomb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/sass/.csscomb.json -------------------------------------------------------------------------------- /sass/.csslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/sass/.csslintrc -------------------------------------------------------------------------------- /sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/sass/_variables.scss -------------------------------------------------------------------------------- /sass/bootstrap-ios7.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/sass/bootstrap-ios7.scss -------------------------------------------------------------------------------- /sass/bootstrap-ios7/_alerts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/sass/bootstrap-ios7/_alerts.scss -------------------------------------------------------------------------------- /sass/bootstrap-ios7/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/sass/bootstrap-ios7/_buttons.scss -------------------------------------------------------------------------------- /sass/bootstrap-ios7/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/sass/bootstrap-ios7/_carousel.scss -------------------------------------------------------------------------------- /sass/bootstrap-theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/sass/bootstrap-theme.scss -------------------------------------------------------------------------------- /test-infra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/test-infra/README.md -------------------------------------------------------------------------------- /test-infra/npm-shrinkwrap.canonical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/test-infra/npm-shrinkwrap.canonical.json -------------------------------------------------------------------------------- /test-infra/requirements.txt: -------------------------------------------------------------------------------- 1 | boto==2.20.0 2 | -------------------------------------------------------------------------------- /test-infra/s3_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/test-infra/s3_cache.py -------------------------------------------------------------------------------- /test-infra/sauce_browsers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/test-infra/sauce_browsers.yml -------------------------------------------------------------------------------- /test-infra/uncached-npm-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrad/bootstrap-ios7/HEAD/test-infra/uncached-npm-install.sh --------------------------------------------------------------------------------