mirror of
https://github.com/twbs/bootstrap.git
synced 2025-01-23 15:52:21 +01:00
Merge branch 'master' into gh-pages
This commit is contained in:
commit
1bac76af28
8
.gitattributes
vendored
Normal file
8
.gitattributes
vendored
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
# Enforce Unix newlines
|
||||||
|
*.css text eol=lf
|
||||||
|
*.html text eol=lf
|
||||||
|
*.js text eol=lf
|
||||||
|
*.json text eol=lf
|
||||||
|
*.less text eol=lf
|
||||||
|
*.md text eol=lf
|
||||||
|
*.yml text eol=lf
|
1
.gitignore
vendored
1
.gitignore
vendored
@ -39,3 +39,4 @@ validation-report.json
|
|||||||
|
|
||||||
# Folders to ignore
|
# Folders to ignore
|
||||||
node_modules
|
node_modules
|
||||||
|
bower_components
|
||||||
|
@ -6,6 +6,5 @@ before_script:
|
|||||||
- npm install -g grunt-cli
|
- npm install -g grunt-cli
|
||||||
env:
|
env:
|
||||||
global:
|
global:
|
||||||
- secure: Besg41eyU+2mfxrywQ4ydOShMdc34ImaO0S0ENP+aCOBuyNBIgP59wy5tBMmyai2/8eInYeVps4Td96mWInMMxzTe3Bar7eTLG5tWVKRSr/wc4NBPZ/ppoPAmCEsz9Y+VptRH9/FO8n7hsL9EFZ+xBKbG+C0SccGoyBDpA5j7/w=
|
- SAUCE_USERNAME: bootstrap
|
||||||
- secure: Ptiv7phCImFP3ALIz+sMQzrZg8k7C1gLZbFBhWxjnQr3g06wIfX3Ls5y9OHvxid+lOZZjISui3wzBVgpVHqwHUYf96+r0mo6/mJ+F4ffUmShZANVaIMD/JRTnXhUQJbvntGLvxn1EYWPdNM+2IHJrMipnjHxU9tkgAnlel4Zdew=
|
- secure: "pJkBwnuae9dKU5tEcCqccfS1QQw7/meEcfz63fM7ba7QJNjoA6BaXj08L5Z3Vb5vBmVPwBawxo5Hp0jC0r/Z/O0hGnAmz/Cz09L+cy7dSAZ9x4hvZePSja/UAusaB5ogMoO8l2b773MzgQeSmrLbExr9BWLeqEfjC2hFgdgHLaQ="
|
||||||
- TWBS_HAVE_OWN_BROWSERSTACK_KEY: ""
|
|
||||||
|
@ -17,7 +17,7 @@ We only accept issues that are bug reports or feature requests. Bugs must be iso
|
|||||||
|
|
||||||
## Pull requests
|
## Pull requests
|
||||||
|
|
||||||
- CSS changes must be done in `.less` files first, never just the compiled `.css` files
|
- CSS changes must be done in `.less` files first, never just in the compiled `.css` files
|
||||||
- If modifying the `.less` files, always recompile and commit the compiled files `bootstrap.css` and `bootstrap.min.css`
|
- If modifying the `.less` files, always recompile and commit the compiled files `bootstrap.css` and `bootstrap.min.css`
|
||||||
- Try not to pollute your pull request with unintended changes--keep them simple and small
|
- Try not to pollute your pull request with unintended changes--keep them simple and small
|
||||||
- Try to share which browsers your code has been tested in before submitting a pull request
|
- Try to share which browsers your code has been tested in before submitting a pull request
|
||||||
@ -58,4 +58,22 @@ We only accept issues that are bug reports or feature requests. Bugs must be iso
|
|||||||
|
|
||||||
With v3.1, we're moving from the Apache 2 to the MIT license for the Bootstrap code (not the docs). We're in the process of collecting permissions from all Bootstrap contributors with code still part of the project to make this happen. For details, please see [#2054](https://github.com/twbs/bootstrap/issues/2054).
|
With v3.1, we're moving from the Apache 2 to the MIT license for the Bootstrap code (not the docs). We're in the process of collecting permissions from all Bootstrap contributors with code still part of the project to make this happen. For details, please see [#2054](https://github.com/twbs/bootstrap/issues/2054).
|
||||||
|
|
||||||
By contributing your code, you agree to dual-license your contribution under the [Apache 2](https://github.com/twbs/bootstrap/blob/master/LICENSE) and [MIT](https://github.com/twbs/bootstrap/blob/master/MIT) licenses.
|
By contributing your code, you agree to dual-license your contribution under the [Apache 2](https://github.com/twbs/bootstrap/blob/master/LICENSE) and [MIT](https://github.com/twbs/bootstrap/blob/master/LICENSE-MIT) licenses.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## Release checklist
|
||||||
|
|
||||||
|
1. Close ship list issue for the release.
|
||||||
|
2. Close the milestone for the release.
|
||||||
|
3. Open new release issue that includes this checklist.
|
||||||
|
4. Ping folks to coordinate release (mainly @jdorfman for BootstrapCDN).
|
||||||
|
5. Update version numbers using `grunt change-version-number --oldver=A.B.C --newver=X.Y.Z`. Review the changes and stage them manually.
|
||||||
|
6. Run `grunt` one last time.
|
||||||
|
7. Push to `master` branch.
|
||||||
|
8. Merge `master` into `gh-pages`.
|
||||||
|
9. Generate `bootstrap-X.Y.Z-dist.zip` file for release.
|
||||||
|
10. Create release on GitHub with `/dist/` folder and release notes.
|
||||||
|
11. Push `gh-pages`.
|
||||||
|
12. Publish blog post.
|
||||||
|
13. Tweet tweet.
|
||||||
|
113
Gruntfile.js
113
Gruntfile.js
@ -3,6 +3,9 @@
|
|||||||
module.exports = function(grunt) {
|
module.exports = function(grunt) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
|
// Force use of Unix newlines
|
||||||
|
grunt.util.linefeed = '\n';
|
||||||
|
|
||||||
RegExp.quote = require('regexp-quote')
|
RegExp.quote = require('regexp-quote')
|
||||||
var btoa = require('btoa')
|
var btoa = require('btoa')
|
||||||
// Project configuration.
|
// Project configuration.
|
||||||
@ -11,11 +14,9 @@ module.exports = function(grunt) {
|
|||||||
// Metadata.
|
// Metadata.
|
||||||
pkg: grunt.file.readJSON('package.json'),
|
pkg: grunt.file.readJSON('package.json'),
|
||||||
banner: '/*!\n' +
|
banner: '/*!\n' +
|
||||||
' * Bootstrap v<%= pkg.version %> by @fat and @mdo\n' +
|
' * Bootstrap v<%= pkg.version %> (<%= pkg.homepage %>)\n' +
|
||||||
' * Copyright <%= grunt.template.today("yyyy") %> <%= pkg.author %>\n' +
|
' * Copyright <%= grunt.template.today("yyyy") %> <%= pkg.author %>\n' +
|
||||||
' * Licensed under <%= _.pluck(pkg.licenses, "url").join(", ") %>\n' +
|
' * Licensed under <%= _.pluck(pkg.licenses, "url").join(", ") %>\n' +
|
||||||
' *\n' +
|
|
||||||
' * Designed and built with all the love in the world by @mdo and @fat.\n' +
|
|
||||||
' */\n\n',
|
' */\n\n',
|
||||||
jqueryCheck: 'if (typeof jQuery === "undefined") { throw new Error("Bootstrap requires jQuery") }\n\n',
|
jqueryCheck: 'if (typeof jQuery === "undefined") { throw new Error("Bootstrap requires jQuery") }\n\n',
|
||||||
|
|
||||||
@ -168,12 +169,105 @@ module.exports = function(grunt) {
|
|||||||
replacement: grunt.option('newver'),
|
replacement: grunt.option('newver'),
|
||||||
recursive: true
|
recursive: true
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
'saucelabs-qunit': {
|
||||||
|
all: {
|
||||||
|
options: {
|
||||||
|
build: process.env.TRAVIS_JOB_ID,
|
||||||
|
concurrency: 3,
|
||||||
|
urls: ['http://127.0.0.1:3000/js/tests/index.html'],
|
||||||
|
browsers: [
|
||||||
|
// See https://saucelabs.com/docs/platforms/webdriver
|
||||||
|
{
|
||||||
|
browserName: 'safari',
|
||||||
|
version: '6',
|
||||||
|
platform: 'OS X 10.8'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
browserName: 'chrome',
|
||||||
|
version: '28',
|
||||||
|
platform: 'OS X 10.6'
|
||||||
|
},
|
||||||
|
/* FIXME: currently fails 1 tooltip test
|
||||||
|
{
|
||||||
|
browserName: 'firefox',
|
||||||
|
version: '25',
|
||||||
|
platform: 'OS X 10.6'
|
||||||
|
},*/
|
||||||
|
// Mac Opera not currently supported by Sauce Labs
|
||||||
|
/* FIXME: currently fails 1 tooltip test
|
||||||
|
{
|
||||||
|
browserName: 'internet explorer',
|
||||||
|
version: '11',
|
||||||
|
platform: 'Windows 8.1'
|
||||||
|
},*/
|
||||||
|
/*
|
||||||
|
{
|
||||||
|
browserName: 'internet explorer',
|
||||||
|
version: '10',
|
||||||
|
platform: 'Windows 8'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
browserName: 'internet explorer',
|
||||||
|
version: '9',
|
||||||
|
platform: 'Windows 7'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
browserName: 'internet explorer',
|
||||||
|
version: '8',
|
||||||
|
platform: 'Windows 7'
|
||||||
|
},
|
||||||
|
{// unofficial
|
||||||
|
browserName: 'internet explorer',
|
||||||
|
version: '7',
|
||||||
|
platform: 'Windows XP'
|
||||||
|
},
|
||||||
|
*/
|
||||||
|
{
|
||||||
|
browserName: 'chrome',
|
||||||
|
version: '31',
|
||||||
|
platform: 'Windows 8.1'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
browserName: 'firefox',
|
||||||
|
version: '25',
|
||||||
|
platform: 'Windows 8.1'
|
||||||
|
},
|
||||||
|
// Win Opera 15+ not currently supported by Sauce Labs
|
||||||
|
{
|
||||||
|
browserName: 'iphone',
|
||||||
|
version: '6.1',
|
||||||
|
platform: 'OS X 10.8'
|
||||||
|
},
|
||||||
|
// iOS Chrome not currently supported by Sauce Labs
|
||||||
|
// Linux (unofficial)
|
||||||
|
{
|
||||||
|
browserName: 'chrome',
|
||||||
|
version: '30',
|
||||||
|
platform: 'Linux'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
browserName: 'firefox',
|
||||||
|
version: '25',
|
||||||
|
platform: 'Linux'
|
||||||
|
}
|
||||||
|
// Android Chrome not currently supported by Sauce Labs
|
||||||
|
/* Android Browser (super-unofficial)
|
||||||
|
{
|
||||||
|
browserName: 'android',
|
||||||
|
version: '4.0',
|
||||||
|
platform: 'Linux'
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
],
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
// These plugins provide necessary tasks.
|
// These plugins provide necessary tasks.
|
||||||
grunt.loadNpmTasks('browserstack-runner');
|
|
||||||
grunt.loadNpmTasks('grunt-contrib-clean');
|
grunt.loadNpmTasks('grunt-contrib-clean');
|
||||||
grunt.loadNpmTasks('grunt-contrib-concat');
|
grunt.loadNpmTasks('grunt-contrib-concat');
|
||||||
grunt.loadNpmTasks('grunt-contrib-connect');
|
grunt.loadNpmTasks('grunt-contrib-connect');
|
||||||
@ -185,6 +279,7 @@ module.exports = function(grunt) {
|
|||||||
grunt.loadNpmTasks('grunt-html-validation');
|
grunt.loadNpmTasks('grunt-html-validation');
|
||||||
grunt.loadNpmTasks('grunt-jekyll');
|
grunt.loadNpmTasks('grunt-jekyll');
|
||||||
grunt.loadNpmTasks('grunt-recess');
|
grunt.loadNpmTasks('grunt-recess');
|
||||||
|
grunt.loadNpmTasks('grunt-saucelabs');
|
||||||
grunt.loadNpmTasks('grunt-sed');
|
grunt.loadNpmTasks('grunt-sed');
|
||||||
|
|
||||||
// Docs HTML validation task
|
// Docs HTML validation task
|
||||||
@ -192,12 +287,10 @@ module.exports = function(grunt) {
|
|||||||
|
|
||||||
// Test task.
|
// Test task.
|
||||||
var testSubtasks = ['dist-css', 'jshint', 'qunit', 'validate-html'];
|
var testSubtasks = ['dist-css', 'jshint', 'qunit', 'validate-html'];
|
||||||
// Only run BrowserStack tests under Travis
|
// Only run Sauce Labs tests if there's a Sauce access key
|
||||||
if (process.env.TRAVIS) {
|
if (typeof process.env.SAUCE_ACCESS_KEY !== 'undefined') {
|
||||||
// Only run BrowserStack tests if this is a mainline commit in twbs/bootstrap, or you have your own BrowserStack key
|
testSubtasks.push('connect');
|
||||||
if ((process.env.TRAVIS_REPO_SLUG === 'twbs/bootstrap' && process.env.TRAVIS_PULL_REQUEST === 'false') || process.env.TWBS_HAVE_OWN_BROWSERSTACK_KEY) {
|
testSubtasks.push('saucelabs-qunit');
|
||||||
testSubtasks.push('browserstack_runner');
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
grunt.registerTask('test', testSubtasks);
|
grunt.registerTask('test', testSubtasks);
|
||||||
|
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
# [Bootstrap](http://getbootstrap.com) [![Build Status](https://secure.travis-ci.org/twbs/bootstrap.png)](http://travis-ci.org/twbs/bootstrap) [![devDependency Status](https://david-dm.org/twbs/bootstrap/dev-status.png)](https://david-dm.org/twbs/bootstrap#info=devDependencies)
|
# [Bootstrap](http://getbootstrap.com) [![Build Status](https://secure.travis-ci.org/twbs/bootstrap.png)](http://travis-ci.org/twbs/bootstrap) [![devDependency Status](https://david-dm.org/twbs/bootstrap/dev-status.png)](https://david-dm.org/twbs/bootstrap#info=devDependencies)
|
||||||
|
[![Selenium Test Status](https://saucelabs.com/browser-matrix/bootstrap.svg)](https://saucelabs.com/u/bootstrap)
|
||||||
|
|
||||||
Bootstrap is a sleek, intuitive, and powerful front-end framework for faster and easier web development, created and maintained by [Mark Otto](http://twitter.com/mdo) and [Jacob Thornton](http://twitter.com/fat).
|
Bootstrap is a sleek, intuitive, and powerful front-end framework for faster and easier web development, created and maintained by [Mark Otto](http://twitter.com/mdo) and [Jacob Thornton](http://twitter.com/fat).
|
||||||
|
|
||||||
@ -10,7 +11,7 @@ To get started, check out <http://getbootstrap.com>!
|
|||||||
|
|
||||||
Three quick start options are available:
|
Three quick start options are available:
|
||||||
|
|
||||||
* [Download the latest release](https://github.com/twbs/bootstrap/archive/v3.0.2.zip).
|
* [Download the latest release](https://github.com/twbs/bootstrap/archive/v3.0.3.zip).
|
||||||
* Clone the repo: `git clone https://github.com/twbs/bootstrap.git`.
|
* Clone the repo: `git clone https://github.com/twbs/bootstrap.git`.
|
||||||
* Install with [Bower](http://bower.io): `bower install bootstrap`.
|
* Install with [Bower](http://bower.io): `bower install bootstrap`.
|
||||||
|
|
||||||
|
12
_config.yml
12
_config.yml
@ -11,15 +11,15 @@ exclude: [".editorconfig", ".gitignore", "bower.json", "composer.json",
|
|||||||
port: 9001
|
port: 9001
|
||||||
|
|
||||||
# Custom vars
|
# Custom vars
|
||||||
current_version: 3.0.2
|
current_version: 3.0.3
|
||||||
repo: https://github.com/twbs/bootstrap
|
repo: https://github.com/twbs/bootstrap
|
||||||
|
|
||||||
download_source: https://github.com/twbs/bootstrap/archive/v3.0.2.zip
|
download_source: https://github.com/twbs/bootstrap/archive/v3.0.3.zip
|
||||||
download_dist: https://github.com/twbs/bootstrap/releases/download/v3.0.2/bootstrap-3.0.2-dist.zip
|
download_dist: https://github.com/twbs/bootstrap/releases/download/v3.0.3/bootstrap-3.0.3-dist.zip
|
||||||
|
|
||||||
blog: http://blog.getbootstrap.com
|
blog: http://blog.getbootstrap.com
|
||||||
expo: http://expo.getbootstrap.com
|
expo: http://expo.getbootstrap.com
|
||||||
|
|
||||||
cdn_css: //netdna.bootstrapcdn.com/bootstrap/3.0.2/css/bootstrap.min.css
|
cdn_css: //netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css
|
||||||
cdn_theme_css: //netdna.bootstrapcdn.com/bootstrap/3.0.2/css/bootstrap-theme.min.css
|
cdn_theme_css: //netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap-theme.min.css
|
||||||
cdn_js: //netdna.bootstrapcdn.com/bootstrap/3.0.2/js/bootstrap.min.js
|
cdn_js: //netdna.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
<!-- Bootstrap core JavaScript
|
<!-- Bootstrap core JavaScript
|
||||||
================================================== -->
|
================================================== -->
|
||||||
<!-- Placed at the end of the document so the pages load faster -->
|
<!-- Placed at the end of the document so the pages load faster -->
|
||||||
<script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
|
||||||
<script src="{{ page.base_url }}dist/js/bootstrap.js"></script>
|
<script src="{{ page.base_url }}dist/js/bootstrap.js"></script>
|
||||||
|
|
||||||
<script src="http://platform.twitter.com/widgets.js"></script>
|
|
||||||
<script src="{{ page.base_url }}docs-assets/js/holder.js"></script>
|
<script src="{{ page.base_url }}docs-assets/js/holder.js"></script>
|
||||||
|
|
||||||
<script src="{{ page.base_url }}docs-assets/js/application.js"></script>
|
<script src="{{ page.base_url }}docs-assets/js/application.js"></script>
|
||||||
@ -18,6 +17,21 @@
|
|||||||
<script src="{{ page.base_url }}docs-assets/js/customizer.js"></script>
|
<script src="{{ page.base_url }}docs-assets/js/customizer.js"></script>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
{% comment %}
|
||||||
|
Inject Twitter widgets asynchronously. Snippet snipped from Twitter's
|
||||||
|
JS interface site: https://dev.twitter.com/docs/tfw-javascript
|
||||||
|
|
||||||
|
* "js.async=1;" added to add async attribute to the generated script tag.
|
||||||
|
{% endcomment %}
|
||||||
|
<script>
|
||||||
|
window.twttr = (function (d,s,id) {
|
||||||
|
var t, js, fjs = d.getElementsByTagName(s)[0];
|
||||||
|
if (d.getElementById(id)) return; js=d.createElement(s); js.id=id; js.async=1;
|
||||||
|
js.src="https://platform.twitter.com/widgets.js"; fjs.parentNode.insertBefore(js, fjs);
|
||||||
|
return window.twttr || (t = { _e: [], ready: function(f){ t._e.push(f) } });
|
||||||
|
}(document, "script", "twitter-wjs"));
|
||||||
|
</script>
|
||||||
|
|
||||||
<!-- Analytics
|
<!-- Analytics
|
||||||
================================================== -->
|
================================================== -->
|
||||||
<script>
|
<script>
|
||||||
|
@ -8,6 +8,10 @@
|
|||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="#whats-included">What's included</a>
|
<a href="#whats-included">What's included</a>
|
||||||
|
<ul class="nav">
|
||||||
|
<li><a href="#whats-included-precompiled">Precompiled</a></li>
|
||||||
|
<li><a href="#whats-included-source">Source code</a></li>
|
||||||
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="#template">Basic template</a>
|
<a href="#template">Basic template</a>
|
||||||
|
@ -88,6 +88,7 @@ base_url: "../"
|
|||||||
<li><a href="http://v3.bootcss.com/">Bootstrap 中文文档 (Chinese)</a></li>
|
<li><a href="http://v3.bootcss.com/">Bootstrap 中文文档 (Chinese)</a></li>
|
||||||
<li><a href="http://www.oneskyapp.com/docs/bootstrap/ru">Bootstrap по-русски (Russian)</a></li>
|
<li><a href="http://www.oneskyapp.com/docs/bootstrap/ru">Bootstrap по-русски (Russian)</a></li>
|
||||||
<li><a href="http://www.oneskyapp.com/docs/bootstrap/es">Bootstrap en Español (Spanish)</a></li>
|
<li><a href="http://www.oneskyapp.com/docs/bootstrap/es">Bootstrap en Español (Spanish)</a></li>
|
||||||
|
<li><a href="http://twbs.site-konstruktor.com.ua">Bootstrap ua Українською (Ukrainian)</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<p>Have another language to add, or perhaps a different or better translation? Let us know by <a href="https://github.com/twbs/bootstrap/issues/new">opening an issue</a>.</p>
|
<p>Have another language to add, or perhaps a different or better translation? Let us know by <a href="https://github.com/twbs/bootstrap/issues/new">opening an issue</a>.</p>
|
||||||
</div>
|
</div>
|
||||||
|
25
bower.json
25
bower.json
@ -1,9 +1,28 @@
|
|||||||
{
|
{
|
||||||
"name": "bootstrap",
|
"name": "bootstrap",
|
||||||
"version": "3.0.2",
|
"version": "3.0.3",
|
||||||
"main": ["./dist/js/bootstrap.js", "./dist/css/bootstrap.css", "./dist/fonts/*"],
|
"main": [
|
||||||
|
"./dist/js/bootstrap.js",
|
||||||
|
"./dist/css/bootstrap.css",
|
||||||
|
"./dist/fonts/glyphicons-halflings-regular.eot",
|
||||||
|
"./dist/fonts/glyphicons-halflings-regular.svg",
|
||||||
|
"./dist/fonts/glyphicons-halflings-regular.ttf",
|
||||||
|
"./dist/fonts/glyphicons-halflings-regular.woff"
|
||||||
|
],
|
||||||
"ignore": [
|
"ignore": [
|
||||||
"**/.*"
|
"**/.*",
|
||||||
|
"_*",
|
||||||
|
"docs-assets",
|
||||||
|
"examples",
|
||||||
|
"/fonts",
|
||||||
|
"js/tests",
|
||||||
|
"CNAME",
|
||||||
|
"CONTRIBUTING.md",
|
||||||
|
"Gruntfile.js",
|
||||||
|
"browserstack.json",
|
||||||
|
"composer.json",
|
||||||
|
"package.json",
|
||||||
|
"*.html"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"jquery": ">= 1.9.0"
|
"jquery": ">= 1.9.0"
|
||||||
|
@ -1,37 +0,0 @@
|
|||||||
{
|
|
||||||
"username": "--secure--",
|
|
||||||
"key": "--secure--",
|
|
||||||
"test_path": "js/tests/index.html",
|
|
||||||
"browsers": [
|
|
||||||
{
|
|
||||||
"browser": "firefox",
|
|
||||||
"browser_version": "latest",
|
|
||||||
"os": "OS X",
|
|
||||||
"os_version": "Mountain Lion"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"browser": "safari",
|
|
||||||
"browser_version": "latest",
|
|
||||||
"os": "OS X",
|
|
||||||
"os_version": "Mountain Lion"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"browser": "chrome",
|
|
||||||
"browser_version": "latest",
|
|
||||||
"os": "OS X",
|
|
||||||
"os_version": "Mountain Lion"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"browser": "firefox",
|
|
||||||
"browser_version": "latest",
|
|
||||||
"os": "Windows",
|
|
||||||
"os_version": "7"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"browser": "chrome",
|
|
||||||
"browser_version": "latest",
|
|
||||||
"os": "Windows",
|
|
||||||
"os_version": "7"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
445
components.html
445
components.html
@ -19,809 +19,813 @@ base_url: "../"
|
|||||||
<ul class="bs-glyphicons">
|
<ul class="bs-glyphicons">
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-adjust"></span>
|
<span class="glyphicon glyphicon-adjust"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-adjust</span>
|
<span class="glyphicon-class">glyphicon glyphicon-adjust</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-align-center"></span>
|
<span class="glyphicon glyphicon-align-center"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-align-center</span>
|
<span class="glyphicon-class">glyphicon glyphicon-align-center</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-align-justify"></span>
|
<span class="glyphicon glyphicon-align-justify"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-align-justify</span>
|
<span class="glyphicon-class">glyphicon glyphicon-align-justify</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-align-left"></span>
|
<span class="glyphicon glyphicon-align-left"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-align-left</span>
|
<span class="glyphicon-class">glyphicon glyphicon-align-left</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-align-right"></span>
|
<span class="glyphicon glyphicon-align-right"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-align-right</span>
|
<span class="glyphicon-class">glyphicon glyphicon-align-right</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-arrow-down"></span>
|
<span class="glyphicon glyphicon-arrow-down"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-arrow-down</span>
|
<span class="glyphicon-class">glyphicon glyphicon-arrow-down</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-arrow-left"></span>
|
<span class="glyphicon glyphicon-arrow-left"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-arrow-left</span>
|
<span class="glyphicon-class">glyphicon glyphicon-arrow-left</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-arrow-right"></span>
|
<span class="glyphicon glyphicon-arrow-right"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-arrow-right</span>
|
<span class="glyphicon-class">glyphicon glyphicon-arrow-right</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-arrow-up"></span>
|
<span class="glyphicon glyphicon-arrow-up"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-arrow-up</span>
|
<span class="glyphicon-class">glyphicon glyphicon-arrow-up</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-asterisk"></span>
|
<span class="glyphicon glyphicon-asterisk"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-asterisk</span>
|
<span class="glyphicon-class">glyphicon glyphicon-asterisk</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-backward"></span>
|
<span class="glyphicon glyphicon-backward"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-backward</span>
|
<span class="glyphicon-class">glyphicon glyphicon-backward</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-ban-circle"></span>
|
<span class="glyphicon glyphicon-ban-circle"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-ban-circle</span>
|
<span class="glyphicon-class">glyphicon glyphicon-ban-circle</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-barcode"></span>
|
<span class="glyphicon glyphicon-barcode"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-barcode</span>
|
<span class="glyphicon-class">glyphicon glyphicon-barcode</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-bell"></span>
|
<span class="glyphicon glyphicon-bell"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-bell</span>
|
<span class="glyphicon-class">glyphicon glyphicon-bell</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-bold"></span>
|
<span class="glyphicon glyphicon-bold"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-bold</span>
|
<span class="glyphicon-class">glyphicon glyphicon-bold</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-book"></span>
|
<span class="glyphicon glyphicon-book"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-book</span>
|
<span class="glyphicon-class">glyphicon glyphicon-book</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-bookmark"></span>
|
<span class="glyphicon glyphicon-bookmark"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-bookmark</span>
|
<span class="glyphicon-class">glyphicon glyphicon-bookmark</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-briefcase"></span>
|
<span class="glyphicon glyphicon-briefcase"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-briefcase</span>
|
<span class="glyphicon-class">glyphicon glyphicon-briefcase</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-bullhorn"></span>
|
<span class="glyphicon glyphicon-bullhorn"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-bullhorn</span>
|
<span class="glyphicon-class">glyphicon glyphicon-bullhorn</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-calendar"></span>
|
<span class="glyphicon glyphicon-calendar"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-calendar</span>
|
<span class="glyphicon-class">glyphicon glyphicon-calendar</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-camera"></span>
|
<span class="glyphicon glyphicon-camera"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-camera</span>
|
<span class="glyphicon-class">glyphicon glyphicon-camera</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-certificate"></span>
|
<span class="glyphicon glyphicon-certificate"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-certificate</span>
|
<span class="glyphicon-class">glyphicon glyphicon-certificate</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-check"></span>
|
<span class="glyphicon glyphicon-check"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-check</span>
|
<span class="glyphicon-class">glyphicon glyphicon-check</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-chevron-down"></span>
|
<span class="glyphicon glyphicon-chevron-down"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-chevron-down</span>
|
<span class="glyphicon-class">glyphicon glyphicon-chevron-down</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-chevron-left"></span>
|
<span class="glyphicon glyphicon-chevron-left"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-chevron-left</span>
|
<span class="glyphicon-class">glyphicon glyphicon-chevron-left</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-chevron-right"></span>
|
<span class="glyphicon glyphicon-chevron-right"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-chevron-right</span>
|
<span class="glyphicon-class">glyphicon glyphicon-chevron-right</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-chevron-up"></span>
|
<span class="glyphicon glyphicon-chevron-up"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-chevron-up</span>
|
<span class="glyphicon-class">glyphicon glyphicon-chevron-up</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-circle-arrow-down"></span>
|
<span class="glyphicon glyphicon-circle-arrow-down"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-circle-arrow-down</span>
|
<span class="glyphicon-class">glyphicon glyphicon-circle-arrow-down</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-circle-arrow-left"></span>
|
<span class="glyphicon glyphicon-circle-arrow-left"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-circle-arrow-left</span>
|
<span class="glyphicon-class">glyphicon glyphicon-circle-arrow-left</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-circle-arrow-right"></span>
|
<span class="glyphicon glyphicon-circle-arrow-right"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-circle-arrow-right</span>
|
<span class="glyphicon-class">glyphicon glyphicon-circle-arrow-right</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-circle-arrow-up"></span>
|
<span class="glyphicon glyphicon-circle-arrow-up"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-circle-arrow-up</span>
|
<span class="glyphicon-class">glyphicon glyphicon-circle-arrow-up</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-cloud"></span>
|
<span class="glyphicon glyphicon-cloud"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-cloud</span>
|
<span class="glyphicon-class">glyphicon glyphicon-cloud</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-cloud-download"></span>
|
<span class="glyphicon glyphicon-cloud-download"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-cloud-download</span>
|
<span class="glyphicon-class">glyphicon glyphicon-cloud-download</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-cloud-upload"></span>
|
<span class="glyphicon glyphicon-cloud-upload"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-cloud-upload</span>
|
<span class="glyphicon-class">glyphicon glyphicon-cloud-upload</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-cog"></span>
|
<span class="glyphicon glyphicon-cog"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-cog</span>
|
<span class="glyphicon-class">glyphicon glyphicon-cog</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-collapse-down"></span>
|
<span class="glyphicon glyphicon-collapse-down"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-collapse-down</span>
|
<span class="glyphicon-class">glyphicon glyphicon-collapse-down</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-collapse-up"></span>
|
<span class="glyphicon glyphicon-collapse-up"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-collapse-up</span>
|
<span class="glyphicon-class">glyphicon glyphicon-collapse-up</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-comment"></span>
|
<span class="glyphicon glyphicon-comment"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-comment</span>
|
<span class="glyphicon-class">glyphicon glyphicon-comment</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-compressed"></span>
|
<span class="glyphicon glyphicon-compressed"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-compressed</span>
|
<span class="glyphicon-class">glyphicon glyphicon-compressed</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-copyright-mark"></span>
|
<span class="glyphicon glyphicon-copyright-mark"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-copyright-mark</span>
|
<span class="glyphicon-class">glyphicon glyphicon-copyright-mark</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-credit-card"></span>
|
<span class="glyphicon glyphicon-credit-card"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-credit-card</span>
|
<span class="glyphicon-class">glyphicon glyphicon-credit-card</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-cutlery"></span>
|
<span class="glyphicon glyphicon-cutlery"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-cutlery</span>
|
<span class="glyphicon-class">glyphicon glyphicon-cutlery</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-dashboard"></span>
|
<span class="glyphicon glyphicon-dashboard"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-dashboard</span>
|
<span class="glyphicon-class">glyphicon glyphicon-dashboard</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-download"></span>
|
<span class="glyphicon glyphicon-download"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-download</span>
|
<span class="glyphicon-class">glyphicon glyphicon-download</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-download-alt"></span>
|
<span class="glyphicon glyphicon-download-alt"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-download-alt</span>
|
<span class="glyphicon-class">glyphicon glyphicon-download-alt</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-earphone"></span>
|
<span class="glyphicon glyphicon-earphone"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-earphone</span>
|
<span class="glyphicon-class">glyphicon glyphicon-earphone</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-edit"></span>
|
<span class="glyphicon glyphicon-edit"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-edit</span>
|
<span class="glyphicon-class">glyphicon glyphicon-edit</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-eject"></span>
|
<span class="glyphicon glyphicon-eject"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-eject</span>
|
<span class="glyphicon-class">glyphicon glyphicon-eject</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-envelope"></span>
|
<span class="glyphicon glyphicon-envelope"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-envelope</span>
|
<span class="glyphicon-class">glyphicon glyphicon-envelope</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-euro"></span>
|
<span class="glyphicon glyphicon-euro"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-euro</span>
|
<span class="glyphicon-class">glyphicon glyphicon-euro</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-exclamation-sign"></span>
|
<span class="glyphicon glyphicon-exclamation-sign"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-exclamation-sign</span>
|
<span class="glyphicon-class">glyphicon glyphicon-exclamation-sign</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-expand"></span>
|
<span class="glyphicon glyphicon-expand"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-expand</span>
|
<span class="glyphicon-class">glyphicon glyphicon-expand</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-export"></span>
|
<span class="glyphicon glyphicon-export"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-export</span>
|
<span class="glyphicon-class">glyphicon glyphicon-export</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-eye-close"></span>
|
<span class="glyphicon glyphicon-eye-close"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-eye-close</span>
|
<span class="glyphicon-class">glyphicon glyphicon-eye-close</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-eye-open"></span>
|
<span class="glyphicon glyphicon-eye-open"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-eye-open</span>
|
<span class="glyphicon-class">glyphicon glyphicon-eye-open</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-facetime-video"></span>
|
<span class="glyphicon glyphicon-facetime-video"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-facetime-video</span>
|
<span class="glyphicon-class">glyphicon glyphicon-facetime-video</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-fast-backward"></span>
|
<span class="glyphicon glyphicon-fast-backward"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-fast-backward</span>
|
<span class="glyphicon-class">glyphicon glyphicon-fast-backward</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-fast-forward"></span>
|
<span class="glyphicon glyphicon-fast-forward"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-fast-forward</span>
|
<span class="glyphicon-class">glyphicon glyphicon-fast-forward</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-file"></span>
|
<span class="glyphicon glyphicon-file"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-file</span>
|
<span class="glyphicon-class">glyphicon glyphicon-file</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-film"></span>
|
<span class="glyphicon glyphicon-film"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-film</span>
|
<span class="glyphicon-class">glyphicon glyphicon-film</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-filter"></span>
|
<span class="glyphicon glyphicon-filter"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-filter</span>
|
<span class="glyphicon-class">glyphicon glyphicon-filter</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-fire"></span>
|
<span class="glyphicon glyphicon-fire"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-fire</span>
|
<span class="glyphicon-class">glyphicon glyphicon-fire</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-flag"></span>
|
<span class="glyphicon glyphicon-flag"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-flag</span>
|
<span class="glyphicon-class">glyphicon glyphicon-flag</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-flash"></span>
|
<span class="glyphicon glyphicon-flash"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-flash</span>
|
<span class="glyphicon-class">glyphicon glyphicon-flash</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-floppy-disk"></span>
|
<span class="glyphicon glyphicon-floppy-disk"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-floppy-disk</span>
|
<span class="glyphicon-class">glyphicon glyphicon-floppy-disk</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-floppy-open"></span>
|
<span class="glyphicon glyphicon-floppy-open"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-floppy-open</span>
|
<span class="glyphicon-class">glyphicon glyphicon-floppy-open</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-floppy-remove"></span>
|
<span class="glyphicon glyphicon-floppy-remove"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-floppy-remove</span>
|
<span class="glyphicon-class">glyphicon glyphicon-floppy-remove</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-floppy-save"></span>
|
<span class="glyphicon glyphicon-floppy-save"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-floppy-save</span>
|
<span class="glyphicon-class">glyphicon glyphicon-floppy-save</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-floppy-saved"></span>
|
<span class="glyphicon glyphicon-floppy-saved"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-floppy-saved</span>
|
<span class="glyphicon-class">glyphicon glyphicon-floppy-saved</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-folder-close"></span>
|
<span class="glyphicon glyphicon-folder-close"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-folder-close</span>
|
<span class="glyphicon-class">glyphicon glyphicon-folder-close</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-folder-open"></span>
|
<span class="glyphicon glyphicon-folder-open"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-folder-open</span>
|
<span class="glyphicon-class">glyphicon glyphicon-folder-open</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-font"></span>
|
<span class="glyphicon glyphicon-font"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-font</span>
|
<span class="glyphicon-class">glyphicon glyphicon-font</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-forward"></span>
|
<span class="glyphicon glyphicon-forward"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-forward</span>
|
<span class="glyphicon-class">glyphicon glyphicon-forward</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-fullscreen"></span>
|
<span class="glyphicon glyphicon-fullscreen"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-fullscreen</span>
|
<span class="glyphicon-class">glyphicon glyphicon-fullscreen</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-gbp"></span>
|
<span class="glyphicon glyphicon-gbp"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-gbp</span>
|
<span class="glyphicon-class">glyphicon glyphicon-gbp</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-gift"></span>
|
<span class="glyphicon glyphicon-gift"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-gift</span>
|
<span class="glyphicon-class">glyphicon glyphicon-gift</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-glass"></span>
|
<span class="glyphicon glyphicon-glass"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-glass</span>
|
<span class="glyphicon-class">glyphicon glyphicon-glass</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-globe"></span>
|
<span class="glyphicon glyphicon-globe"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-globe</span>
|
<span class="glyphicon-class">glyphicon glyphicon-globe</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-hand-down"></span>
|
<span class="glyphicon glyphicon-hand-down"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-hand-down</span>
|
<span class="glyphicon-class">glyphicon glyphicon-hand-down</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-hand-left"></span>
|
<span class="glyphicon glyphicon-hand-left"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-hand-left</span>
|
<span class="glyphicon-class">glyphicon glyphicon-hand-left</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-hand-right"></span>
|
<span class="glyphicon glyphicon-hand-right"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-hand-right</span>
|
<span class="glyphicon-class">glyphicon glyphicon-hand-right</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-hand-up"></span>
|
<span class="glyphicon glyphicon-hand-up"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-hand-up</span>
|
<span class="glyphicon-class">glyphicon glyphicon-hand-up</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-hd-video"></span>
|
<span class="glyphicon glyphicon-hd-video"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-hd-video</span>
|
<span class="glyphicon-class">glyphicon glyphicon-hd-video</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-hdd"></span>
|
<span class="glyphicon glyphicon-hdd"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-hdd</span>
|
<span class="glyphicon-class">glyphicon glyphicon-hdd</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-header"></span>
|
<span class="glyphicon glyphicon-header"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-header</span>
|
<span class="glyphicon-class">glyphicon glyphicon-header</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-headphones"></span>
|
<span class="glyphicon glyphicon-headphones"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-headphones</span>
|
<span class="glyphicon-class">glyphicon glyphicon-headphones</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-heart"></span>
|
<span class="glyphicon glyphicon-heart"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-heart</span>
|
<span class="glyphicon-class">glyphicon glyphicon-heart</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-heart-empty"></span>
|
<span class="glyphicon glyphicon-heart-empty"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-heart-empty</span>
|
<span class="glyphicon-class">glyphicon glyphicon-heart-empty</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-home"></span>
|
<span class="glyphicon glyphicon-home"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-home</span>
|
<span class="glyphicon-class">glyphicon glyphicon-home</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-import"></span>
|
<span class="glyphicon glyphicon-import"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-import</span>
|
<span class="glyphicon-class">glyphicon glyphicon-import</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-inbox"></span>
|
<span class="glyphicon glyphicon-inbox"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-inbox</span>
|
<span class="glyphicon-class">glyphicon glyphicon-inbox</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-indent-left"></span>
|
<span class="glyphicon glyphicon-indent-left"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-indent-left</span>
|
<span class="glyphicon-class">glyphicon glyphicon-indent-left</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-indent-right"></span>
|
<span class="glyphicon glyphicon-indent-right"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-indent-right</span>
|
<span class="glyphicon-class">glyphicon glyphicon-indent-right</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-info-sign"></span>
|
<span class="glyphicon glyphicon-info-sign"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-info-sign</span>
|
<span class="glyphicon-class">glyphicon glyphicon-info-sign</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-italic"></span>
|
<span class="glyphicon glyphicon-italic"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-italic</span>
|
<span class="glyphicon-class">glyphicon glyphicon-italic</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-leaf"></span>
|
<span class="glyphicon glyphicon-leaf"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-leaf</span>
|
<span class="glyphicon-class">glyphicon glyphicon-leaf</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-link"></span>
|
<span class="glyphicon glyphicon-link"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-link</span>
|
<span class="glyphicon-class">glyphicon glyphicon-link</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-list"></span>
|
<span class="glyphicon glyphicon-list"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-list</span>
|
<span class="glyphicon-class">glyphicon glyphicon-list</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-list-alt"></span>
|
<span class="glyphicon glyphicon-list-alt"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-list-alt</span>
|
<span class="glyphicon-class">glyphicon glyphicon-list-alt</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-lock"></span>
|
<span class="glyphicon glyphicon-lock"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-lock</span>
|
<span class="glyphicon-class">glyphicon glyphicon-lock</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-log-in"></span>
|
<span class="glyphicon glyphicon-log-in"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-log-in</span>
|
<span class="glyphicon-class">glyphicon glyphicon-log-in</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-log-out"></span>
|
<span class="glyphicon glyphicon-log-out"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-log-out</span>
|
<span class="glyphicon-class">glyphicon glyphicon-log-out</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-magnet"></span>
|
<span class="glyphicon glyphicon-magnet"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-magnet</span>
|
<span class="glyphicon-class">glyphicon glyphicon-magnet</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-map-marker"></span>
|
<span class="glyphicon glyphicon-map-marker"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-map-marker</span>
|
<span class="glyphicon-class">glyphicon glyphicon-map-marker</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-minus"></span>
|
<span class="glyphicon glyphicon-minus"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-minus</span>
|
<span class="glyphicon-class">glyphicon glyphicon-minus</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-minus-sign"></span>
|
<span class="glyphicon glyphicon-minus-sign"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-minus-sign</span>
|
<span class="glyphicon-class">glyphicon glyphicon-minus-sign</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-move"></span>
|
<span class="glyphicon glyphicon-move"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-move</span>
|
<span class="glyphicon-class">glyphicon glyphicon-move</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-music"></span>
|
<span class="glyphicon glyphicon-music"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-music</span>
|
<span class="glyphicon-class">glyphicon glyphicon-music</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-new-window"></span>
|
<span class="glyphicon glyphicon-new-window"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-new-window</span>
|
<span class="glyphicon-class">glyphicon glyphicon-new-window</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-off"></span>
|
<span class="glyphicon glyphicon-off"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-off</span>
|
<span class="glyphicon-class">glyphicon glyphicon-off</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-ok"></span>
|
<span class="glyphicon glyphicon-ok"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-ok</span>
|
<span class="glyphicon-class">glyphicon glyphicon-ok</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-ok-circle"></span>
|
<span class="glyphicon glyphicon-ok-circle"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-ok-circle</span>
|
<span class="glyphicon-class">glyphicon glyphicon-ok-circle</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-ok-sign"></span>
|
<span class="glyphicon glyphicon-ok-sign"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-ok-sign</span>
|
<span class="glyphicon-class">glyphicon glyphicon-ok-sign</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-open"></span>
|
<span class="glyphicon glyphicon-open"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-open</span>
|
<span class="glyphicon-class">glyphicon glyphicon-open</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-paperclip"></span>
|
<span class="glyphicon glyphicon-paperclip"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-paperclip</span>
|
<span class="glyphicon-class">glyphicon glyphicon-paperclip</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-pause"></span>
|
<span class="glyphicon glyphicon-pause"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-pause</span>
|
<span class="glyphicon-class">glyphicon glyphicon-pause</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-pencil"></span>
|
<span class="glyphicon glyphicon-pencil"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-pencil</span>
|
<span class="glyphicon-class">glyphicon glyphicon-pencil</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-phone"></span>
|
<span class="glyphicon glyphicon-phone"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-phone</span>
|
<span class="glyphicon-class">glyphicon glyphicon-phone</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-phone-alt"></span>
|
<span class="glyphicon glyphicon-phone-alt"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-phone-alt</span>
|
<span class="glyphicon-class">glyphicon glyphicon-phone-alt</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-picture"></span>
|
<span class="glyphicon glyphicon-picture"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-picture</span>
|
<span class="glyphicon-class">glyphicon glyphicon-picture</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-plane"></span>
|
<span class="glyphicon glyphicon-plane"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-plane</span>
|
<span class="glyphicon-class">glyphicon glyphicon-plane</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-play"></span>
|
<span class="glyphicon glyphicon-play"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-play</span>
|
<span class="glyphicon-class">glyphicon glyphicon-play</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-play-circle"></span>
|
<span class="glyphicon glyphicon-play-circle"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-play-circle</span>
|
<span class="glyphicon-class">glyphicon glyphicon-play-circle</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-plus"></span>
|
<span class="glyphicon glyphicon-plus"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-plus</span>
|
<span class="glyphicon-class">glyphicon glyphicon-plus</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-plus-sign"></span>
|
<span class="glyphicon glyphicon-plus-sign"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-plus-sign</span>
|
<span class="glyphicon-class">glyphicon glyphicon-plus-sign</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-print"></span>
|
<span class="glyphicon glyphicon-print"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-print</span>
|
<span class="glyphicon-class">glyphicon glyphicon-print</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-pushpin"></span>
|
<span class="glyphicon glyphicon-pushpin"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-pushpin</span>
|
<span class="glyphicon-class">glyphicon glyphicon-pushpin</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-qrcode"></span>
|
<span class="glyphicon glyphicon-qrcode"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-qrcode</span>
|
<span class="glyphicon-class">glyphicon glyphicon-qrcode</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-question-sign"></span>
|
<span class="glyphicon glyphicon-question-sign"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-question-sign</span>
|
<span class="glyphicon-class">glyphicon glyphicon-question-sign</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-random"></span>
|
<span class="glyphicon glyphicon-random"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-random</span>
|
<span class="glyphicon-class">glyphicon glyphicon-random</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-record"></span>
|
<span class="glyphicon glyphicon-record"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-record</span>
|
<span class="glyphicon-class">glyphicon glyphicon-record</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-refresh"></span>
|
<span class="glyphicon glyphicon-refresh"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-refresh</span>
|
<span class="glyphicon-class">glyphicon glyphicon-refresh</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-registration-mark"></span>
|
<span class="glyphicon glyphicon-registration-mark"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-registration-mark</span>
|
<span class="glyphicon-class">glyphicon glyphicon-registration-mark</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-remove"></span>
|
<span class="glyphicon glyphicon-remove"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-remove</span>
|
<span class="glyphicon-class">glyphicon glyphicon-remove</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-remove-circle"></span>
|
<span class="glyphicon glyphicon-remove-circle"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-remove-circle</span>
|
<span class="glyphicon-class">glyphicon glyphicon-remove-circle</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-remove-sign"></span>
|
<span class="glyphicon glyphicon-remove-sign"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-remove-sign</span>
|
<span class="glyphicon-class">glyphicon glyphicon-remove-sign</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-repeat"></span>
|
<span class="glyphicon glyphicon-repeat"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-repeat</span>
|
<span class="glyphicon-class">glyphicon glyphicon-repeat</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-resize-full"></span>
|
<span class="glyphicon glyphicon-resize-full"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-resize-full</span>
|
<span class="glyphicon-class">glyphicon glyphicon-resize-full</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-resize-horizontal"></span>
|
<span class="glyphicon glyphicon-resize-horizontal"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-resize-horizontal</span>
|
<span class="glyphicon-class">glyphicon glyphicon-resize-horizontal</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-resize-small"></span>
|
<span class="glyphicon glyphicon-resize-small"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-resize-small</span>
|
<span class="glyphicon-class">glyphicon glyphicon-resize-small</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-resize-vertical"></span>
|
<span class="glyphicon glyphicon-resize-vertical"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-resize-vertical</span>
|
<span class="glyphicon-class">glyphicon glyphicon-resize-vertical</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-retweet"></span>
|
<span class="glyphicon glyphicon-retweet"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-retweet</span>
|
<span class="glyphicon-class">glyphicon glyphicon-retweet</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-road"></span>
|
<span class="glyphicon glyphicon-road"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-road</span>
|
<span class="glyphicon-class">glyphicon glyphicon-road</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-save"></span>
|
<span class="glyphicon glyphicon-save"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-save</span>
|
<span class="glyphicon-class">glyphicon glyphicon-save</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-saved"></span>
|
<span class="glyphicon glyphicon-saved"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-saved</span>
|
<span class="glyphicon-class">glyphicon glyphicon-saved</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-screenshot"></span>
|
<span class="glyphicon glyphicon-screenshot"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-screenshot</span>
|
<span class="glyphicon-class">glyphicon glyphicon-screenshot</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-sd-video"></span>
|
<span class="glyphicon glyphicon-sd-video"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-sd-video</span>
|
<span class="glyphicon-class">glyphicon glyphicon-sd-video</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-search"></span>
|
<span class="glyphicon glyphicon-search"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-search</span>
|
<span class="glyphicon-class">glyphicon glyphicon-search</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-send"></span>
|
<span class="glyphicon glyphicon-send"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-send</span>
|
<span class="glyphicon-class">glyphicon glyphicon-send</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-share"></span>
|
<span class="glyphicon glyphicon-share"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-share</span>
|
<span class="glyphicon-class">glyphicon glyphicon-share</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-share-alt"></span>
|
<span class="glyphicon glyphicon-share-alt"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-share-alt</span>
|
<span class="glyphicon-class">glyphicon glyphicon-share-alt</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-shopping-cart"></span>
|
<span class="glyphicon glyphicon-shopping-cart"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-shopping-cart</span>
|
<span class="glyphicon-class">glyphicon glyphicon-shopping-cart</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-signal"></span>
|
<span class="glyphicon glyphicon-signal"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-signal</span>
|
<span class="glyphicon-class">glyphicon glyphicon-signal</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-sort"></span>
|
<span class="glyphicon glyphicon-sort"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-sort</span>
|
<span class="glyphicon-class">glyphicon glyphicon-sort</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-sort-by-alphabet"></span>
|
<span class="glyphicon glyphicon-sort-by-alphabet"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-sort-by-alphabet</span>
|
<span class="glyphicon-class">glyphicon glyphicon-sort-by-alphabet</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-sort-by-alphabet-alt"></span>
|
<span class="glyphicon glyphicon-sort-by-alphabet-alt"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-sort-by-alphabet-alt</span>
|
<span class="glyphicon-class">glyphicon glyphicon-sort-by-alphabet-alt</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-sort-by-attributes"></span>
|
<span class="glyphicon glyphicon-sort-by-attributes"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-sort-by-attributes</span>
|
<span class="glyphicon-class">glyphicon glyphicon-sort-by-attributes</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-sort-by-attributes-alt"></span>
|
<span class="glyphicon glyphicon-sort-by-attributes-alt"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-sort-by-attributes-alt</span>
|
<span class="glyphicon-class">glyphicon glyphicon-sort-by-attributes-alt</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-sort-by-order"></span>
|
<span class="glyphicon glyphicon-sort-by-order"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-sort-by-order</span>
|
<span class="glyphicon-class">glyphicon glyphicon-sort-by-order</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-sort-by-order-alt"></span>
|
<span class="glyphicon glyphicon-sort-by-order-alt"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-sort-by-order-alt</span>
|
<span class="glyphicon-class">glyphicon glyphicon-sort-by-order-alt</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-sound-5-1"></span>
|
<span class="glyphicon glyphicon-sound-5-1"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-sound-5-1</span>
|
<span class="glyphicon-class">glyphicon glyphicon-sound-5-1</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-sound-6-1"></span>
|
<span class="glyphicon glyphicon-sound-6-1"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-sound-6-1</span>
|
<span class="glyphicon-class">glyphicon glyphicon-sound-6-1</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-sound-7-1"></span>
|
<span class="glyphicon glyphicon-sound-7-1"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-sound-7-1</span>
|
<span class="glyphicon-class">glyphicon glyphicon-sound-7-1</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-sound-dolby"></span>
|
<span class="glyphicon glyphicon-sound-dolby"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-sound-dolby</span>
|
<span class="glyphicon-class">glyphicon glyphicon-sound-dolby</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-sound-stereo"></span>
|
<span class="glyphicon glyphicon-sound-stereo"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-sound-stereo</span>
|
<span class="glyphicon-class">glyphicon glyphicon-sound-stereo</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-star"></span>
|
<span class="glyphicon glyphicon-star"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-star</span>
|
<span class="glyphicon-class">glyphicon glyphicon-star</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-star-empty"></span>
|
<span class="glyphicon glyphicon-star-empty"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-star-empty</span>
|
<span class="glyphicon-class">glyphicon glyphicon-star-empty</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-stats"></span>
|
<span class="glyphicon glyphicon-stats"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-stats</span>
|
<span class="glyphicon-class">glyphicon glyphicon-stats</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-step-backward"></span>
|
<span class="glyphicon glyphicon-step-backward"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-step-backward</span>
|
<span class="glyphicon-class">glyphicon glyphicon-step-backward</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-step-forward"></span>
|
<span class="glyphicon glyphicon-step-forward"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-step-forward</span>
|
<span class="glyphicon-class">glyphicon glyphicon-step-forward</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-stop"></span>
|
<span class="glyphicon glyphicon-stop"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-stop</span>
|
<span class="glyphicon-class">glyphicon glyphicon-stop</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-subtitles"></span>
|
<span class="glyphicon glyphicon-subtitles"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-subtitles</span>
|
<span class="glyphicon-class">glyphicon glyphicon-subtitles</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-tag"></span>
|
<span class="glyphicon glyphicon-tag"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-tag</span>
|
<span class="glyphicon-class">glyphicon glyphicon-tag</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-tags"></span>
|
<span class="glyphicon glyphicon-tags"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-tags</span>
|
<span class="glyphicon-class">glyphicon glyphicon-tags</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-tasks"></span>
|
<span class="glyphicon glyphicon-tasks"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-tasks</span>
|
<span class="glyphicon-class">glyphicon glyphicon-tasks</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-text-height"></span>
|
<span class="glyphicon glyphicon-text-height"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-text-height</span>
|
<span class="glyphicon-class">glyphicon glyphicon-text-height</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-text-width"></span>
|
<span class="glyphicon glyphicon-text-width"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-text-width</span>
|
<span class="glyphicon-class">glyphicon glyphicon-text-width</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-th"></span>
|
<span class="glyphicon glyphicon-th"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-th</span>
|
<span class="glyphicon-class">glyphicon glyphicon-th</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-th-large"></span>
|
<span class="glyphicon glyphicon-th-large"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-th-large</span>
|
<span class="glyphicon-class">glyphicon glyphicon-th-large</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-th-list"></span>
|
<span class="glyphicon glyphicon-th-list"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-th-list</span>
|
<span class="glyphicon-class">glyphicon glyphicon-th-list</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-thumbs-down"></span>
|
<span class="glyphicon glyphicon-thumbs-down"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-thumbs-down</span>
|
<span class="glyphicon-class">glyphicon glyphicon-thumbs-down</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-thumbs-up"></span>
|
<span class="glyphicon glyphicon-thumbs-up"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-thumbs-up</span>
|
<span class="glyphicon-class">glyphicon glyphicon-thumbs-up</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-time"></span>
|
<span class="glyphicon glyphicon-time"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-time</span>
|
<span class="glyphicon-class">glyphicon glyphicon-time</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-tint"></span>
|
<span class="glyphicon glyphicon-tint"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-tint</span>
|
<span class="glyphicon-class">glyphicon glyphicon-tint</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-tower"></span>
|
<span class="glyphicon glyphicon-tower"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-tower</span>
|
<span class="glyphicon-class">glyphicon glyphicon-tower</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-transfer"></span>
|
<span class="glyphicon glyphicon-transfer"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-transfer</span>
|
<span class="glyphicon-class">glyphicon glyphicon-transfer</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-trash"></span>
|
<span class="glyphicon glyphicon-trash"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-trash</span>
|
<span class="glyphicon-class">glyphicon glyphicon-trash</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-tree-conifer"></span>
|
<span class="glyphicon glyphicon-tree-conifer"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-tree-conifer</span>
|
<span class="glyphicon-class">glyphicon glyphicon-tree-conifer</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-tree-deciduous"></span>
|
<span class="glyphicon glyphicon-tree-deciduous"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-tree-deciduous</span>
|
<span class="glyphicon-class">glyphicon glyphicon-tree-deciduous</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-unchecked"></span>
|
<span class="glyphicon glyphicon-unchecked"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-unchecked</span>
|
<span class="glyphicon-class">glyphicon glyphicon-unchecked</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-upload"></span>
|
<span class="glyphicon glyphicon-upload"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-upload</span>
|
<span class="glyphicon-class">glyphicon glyphicon-upload</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-usd"></span>
|
<span class="glyphicon glyphicon-usd"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-usd</span>
|
<span class="glyphicon-class">glyphicon glyphicon-usd</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-user"></span>
|
<span class="glyphicon glyphicon-user"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-user</span>
|
<span class="glyphicon-class">glyphicon glyphicon-user</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-volume-down"></span>
|
<span class="glyphicon glyphicon-volume-down"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-volume-down</span>
|
<span class="glyphicon-class">glyphicon glyphicon-volume-down</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-volume-off"></span>
|
<span class="glyphicon glyphicon-volume-off"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-volume-off</span>
|
<span class="glyphicon-class">glyphicon glyphicon-volume-off</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-volume-up"></span>
|
<span class="glyphicon glyphicon-volume-up"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-volume-up</span>
|
<span class="glyphicon-class">glyphicon glyphicon-volume-up</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-warning-sign"></span>
|
<span class="glyphicon glyphicon-warning-sign"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-warning-sign</span>
|
<span class="glyphicon-class">glyphicon glyphicon-warning-sign</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-wrench"></span>
|
<span class="glyphicon glyphicon-wrench"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-wrench</span>
|
<span class="glyphicon-class">glyphicon glyphicon-wrench</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-zoom-in"></span>
|
<span class="glyphicon glyphicon-zoom-in"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-zoom-in</span>
|
<span class="glyphicon-class">glyphicon glyphicon-zoom-in</span>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<span class="glyphicon glyphicon-zoom-out"></span>
|
<span class="glyphicon glyphicon-zoom-out"></span>
|
||||||
<span class="glyphicon-class">.glyphicon .glyphicon-zoom-out</span>
|
<span class="glyphicon-class">glyphicon glyphicon-zoom-out</span>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
|
||||||
<h2 id="glyphicons-how-to-use">How to use</h2>
|
<h2 id="glyphicons-how-to-use">How to use</h2>
|
||||||
<p>For performance reasons, all icons require a base class and individual icon class. To use, place the following code just about anywhere. Be sure to leave a space between the icon and text for proper padding.</p>
|
<p>For performance reasons, all icons require a base class and individual icon class. To use, place the following code just about anywhere. Be sure to leave a space between the icon and text for proper padding.</p>
|
||||||
|
<div class="bs-callout bs-callout-danger">
|
||||||
|
<h4>Don't mix with other components</h4>
|
||||||
|
<p>Icon classes cannot be combined with other elements. They are designed to be standalone elements.</p>
|
||||||
|
</div>
|
||||||
{% highlight html %}
|
{% highlight html %}
|
||||||
<span class="glyphicon glyphicon-search"></span>
|
<span class="glyphicon glyphicon-search"></span>
|
||||||
{% endhighlight %}
|
{% endhighlight %}
|
||||||
@ -1149,11 +1153,11 @@ base_url: "../"
|
|||||||
{% endhighlight %}
|
{% endhighlight %}
|
||||||
|
|
||||||
<h3 id="btn-groups-justified">Justified link variation</h3>
|
<h3 id="btn-groups-justified">Justified link variation</h3>
|
||||||
<p>Make a group of buttons stretch at the same size to span the entire width of its parent.</p>
|
<p>Make a group of buttons stretch at the same size to span the entire width of its parent. Also works with button dropdowns within the button group.</p>
|
||||||
|
|
||||||
<div class="bs-callout bs-callout-warning">
|
<div class="bs-callout bs-callout-warning">
|
||||||
<h4>Element-specific usage</h4>
|
<h4>Element-specific usage</h4>
|
||||||
<p>This only works with <code><a></code> elements as the <code><button></code> doesn't pick up these styles.</p>
|
<p>This only works with <code><a></code> elements as the <code><button></code> doesn't pick up the styles we use to justify content (some <code>display: table-cell;</code>-fu).</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="bs-example">
|
<div class="bs-example">
|
||||||
@ -1162,6 +1166,23 @@ base_url: "../"
|
|||||||
<a class="btn btn-default" role="button">Middle</a>
|
<a class="btn btn-default" role="button">Middle</a>
|
||||||
<a class="btn btn-default" role="button">Right</a>
|
<a class="btn btn-default" role="button">Right</a>
|
||||||
</div>
|
</div>
|
||||||
|
<br>
|
||||||
|
<div class="btn-group btn-group-justified">
|
||||||
|
<a class="btn btn-default" role="button">Left</a>
|
||||||
|
<a class="btn btn-default" role="button">Middle</a>
|
||||||
|
<div class="btn-group">
|
||||||
|
<a class="btn btn-default dropdown-toggle" data-toggle="dropdown">
|
||||||
|
Right dropdown <span class="caret"></span>
|
||||||
|
</a>
|
||||||
|
<ul class="dropdown-menu" role="menu">
|
||||||
|
<li><a href="#">Action</a></li>
|
||||||
|
<li><a href="#">Another action</a></li>
|
||||||
|
<li><a href="#">Something else here</a></li>
|
||||||
|
<li class="divider"></li>
|
||||||
|
<li><a href="#">Separated link</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{% highlight html %}
|
{% highlight html %}
|
||||||
<div class="btn-group btn-group-justified">
|
<div class="btn-group btn-group-justified">
|
||||||
@ -1882,8 +1903,8 @@ base_url: "../"
|
|||||||
<h2 id="nav-justified">Justified</h2>
|
<h2 id="nav-justified">Justified</h2>
|
||||||
<p>Easily make tabs or pills equal widths of their parent at screens wider than 768px with <code>.nav-justified</code>. On smaller screens, the nav links are stacked.</p>
|
<p>Easily make tabs or pills equal widths of their parent at screens wider than 768px with <code>.nav-justified</code>. On smaller screens, the nav links are stacked.</p>
|
||||||
<div class="bs-callout bs-callout-warning">
|
<div class="bs-callout bs-callout-warning">
|
||||||
<h4>WebKit and responsive justified navs</h4>
|
<h4>Safari and responsive justified navs</h4>
|
||||||
<p>Chrome and Safari both exhibit a bug in which resizing your browser horizontally causes rendering errors in the justified nav that are cleared upon refreshing. This bug is also shown in the <a href="../examples/justified-nav/">justified nav example</a>.</p>
|
<p>Safari exhibits a bug in which resizing your browser horizontally causes rendering errors in the justified nav that are cleared upon refreshing. This bug is also shown in the <a href="../examples/justified-nav/">justified nav example</a>.</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="bs-example">
|
<div class="bs-example">
|
||||||
<ul class="nav nav-tabs nav-justified">
|
<ul class="nav nav-tabs nav-justified">
|
||||||
@ -2693,6 +2714,10 @@ body { padding-bottom: 70px; }
|
|||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
<br>
|
||||||
|
<button class="btn btn-primary" type="button">
|
||||||
|
Messages <span class="badge">4</span>
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
{% highlight html %}
|
{% highlight html %}
|
||||||
<ul class="nav nav-pills nav-stacked">
|
<ul class="nav nav-pills nav-stacked">
|
||||||
@ -2776,22 +2801,22 @@ body { padding-bottom: 70px; }
|
|||||||
<p>By default, Bootstrap's thumbnails are designed to showcase linked images with minimal required markup.</p>
|
<p>By default, Bootstrap's thumbnails are designed to showcase linked images with minimal required markup.</p>
|
||||||
<div class="bs-example">
|
<div class="bs-example">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-sm-6 col-md-3">
|
<div class="col-xs-6 col-md-3">
|
||||||
<a href="#" class="thumbnail">
|
<a href="#" class="thumbnail">
|
||||||
<img data-src="holder.js/100%x180" alt="Generic placeholder thumbnail">
|
<img data-src="holder.js/100%x180" alt="Generic placeholder thumbnail">
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-sm-6 col-md-3">
|
<div class="col-xs-6 col-md-3">
|
||||||
<a href="#" class="thumbnail">
|
<a href="#" class="thumbnail">
|
||||||
<img data-src="holder.js/100%x180" alt="Generic placeholder thumbnail">
|
<img data-src="holder.js/100%x180" alt="Generic placeholder thumbnail">
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-sm-6 col-md-3">
|
<div class="col-xs-6 col-md-3">
|
||||||
<a href="#" class="thumbnail">
|
<a href="#" class="thumbnail">
|
||||||
<img data-src="holder.js/100%x180" alt="Generic placeholder thumbnail">
|
<img data-src="holder.js/100%x180" alt="Generic placeholder thumbnail">
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-sm-6 col-md-3">
|
<div class="col-xs-6 col-md-3">
|
||||||
<a href="#" class="thumbnail">
|
<a href="#" class="thumbnail">
|
||||||
<img data-src="holder.js/100%x180" alt="Generic placeholder thumbnail">
|
<img data-src="holder.js/100%x180" alt="Generic placeholder thumbnail">
|
||||||
</a>
|
</a>
|
||||||
@ -2800,7 +2825,7 @@ body { padding-bottom: 70px; }
|
|||||||
</div><!-- /.bs-example -->
|
</div><!-- /.bs-example -->
|
||||||
{% highlight html %}
|
{% highlight html %}
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-sm-6 col-md-3">
|
<div class="col-xs-6 col-md-3">
|
||||||
<a href="#" class="thumbnail">
|
<a href="#" class="thumbnail">
|
||||||
<img data-src="holder.js/100%x180" alt="...">
|
<img data-src="holder.js/100%x180" alt="...">
|
||||||
</a>
|
</a>
|
||||||
@ -3160,7 +3185,7 @@ body { padding-bottom: 70px; }
|
|||||||
<img class="media-object" data-src="holder.js/64x64" alt="Generic placeholder image">
|
<img class="media-object" data-src="holder.js/64x64" alt="Generic placeholder image">
|
||||||
</a>
|
</a>
|
||||||
<div class="media-body">
|
<div class="media-body">
|
||||||
<h4 class="media-heading">Media heading</h4>
|
<h4 class="media-heading">Nested media heading</h4>
|
||||||
Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis. Fusce condimentum nunc ac nisi vulputate fringilla. Donec lacinia congue felis in faucibus.
|
Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis. Fusce condimentum nunc ac nisi vulputate fringilla. Donec lacinia congue felis in faucibus.
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
15
css.html
15
css.html
@ -54,7 +54,8 @@ base_url: "../"
|
|||||||
<p>For improved cross-browser rendering, we use <a href="http://necolas.github.io/normalize.css/" target="_blank">Normalize</a>, a project by <a href="http://twitter.com/necolas" target="_blank">Nicolas Gallagher</a> and <a href="http://twitter.com/jon_neal" target="_blank">Jonathan Neal</a>.</p>
|
<p>For improved cross-browser rendering, we use <a href="http://necolas.github.io/normalize.css/" target="_blank">Normalize</a>, a project by <a href="http://twitter.com/necolas" target="_blank">Nicolas Gallagher</a> and <a href="http://twitter.com/jon_neal" target="_blank">Jonathan Neal</a>.</p>
|
||||||
|
|
||||||
<h3 id="overview-container">Containers</h3>
|
<h3 id="overview-container">Containers</h3>
|
||||||
<p>Easily center a page's contents by wrapping its contents in a <code>.container</code>. Containers set <code>max-width</code> at various media query breakpoints to match our grid system.</p>
|
<p>Easily center a page's contents by wrapping its contents in a <code>.container</code>. Containers set <code>width</code> at various media query breakpoints to match our grid system.</p>
|
||||||
|
<p>Note that, due to <code>padding</code> and fixed widths, containers are not nestable by default.</p>
|
||||||
{% highlight html %}
|
{% highlight html %}
|
||||||
<div class="container">
|
<div class="container">
|
||||||
...
|
...
|
||||||
@ -178,13 +179,11 @@ base_url: "../"
|
|||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Offsets</th>
|
<th>Offsets</th>
|
||||||
<td colspan="1" class="text-muted">N/A</td>
|
<td colspan="4">Yes</td>
|
||||||
<td colspan="3">Yes</td>
|
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Column ordering</th>
|
<th>Column ordering</th>
|
||||||
<td class="text-muted">N/A</td>
|
<td colspan="4">Yes</td>
|
||||||
<td colspan="3">Yes</td>
|
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
@ -871,7 +870,7 @@ base_url: "../"
|
|||||||
<p>Style and content changes for simple variations on a standard <code><blockquote></code>.</p>
|
<p>Style and content changes for simple variations on a standard <code><blockquote></code>.</p>
|
||||||
|
|
||||||
<h4>Naming a source</h4>
|
<h4>Naming a source</h4>
|
||||||
<p>Add <code><small></code> tag for identifying the source. Wrap the name of the source work in <code><cite></code>.</p>
|
<p>Add <code><small></code> tag or <code>.small</code> class for identifying the source. Wrap the name of the source work in <code><cite></code>.</p>
|
||||||
<div class="bs-example">
|
<div class="bs-example">
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
|
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
|
||||||
@ -1567,7 +1566,7 @@ For example, <code><section></code> should be wrapped as inline.
|
|||||||
|
|
||||||
|
|
||||||
<h2 id="forms-inline">Inline form</h2>
|
<h2 id="forms-inline">Inline form</h2>
|
||||||
<p>Add <code>.form-inline</code> for left-aligned and inline-block controls for a compact layout.</p>
|
<p>Add <code>.form-inline</code> to your <code><form></code> for left-aligned and inline-block controls. <strong>This only applies to forms within viewports that are at least 768px wide.</strong></p>
|
||||||
<div class="bs-callout bs-callout-danger">
|
<div class="bs-callout bs-callout-danger">
|
||||||
<h4>Requires custom widths</h4>
|
<h4>Requires custom widths</h4>
|
||||||
<p>Inputs, selects, and textareas are 100% wide by default in Bootstrap. To use the inline form, you'll have to set a width on the form controls used within.</p>
|
<p>Inputs, selects, and textareas are 100% wide by default in Bootstrap. To use the inline form, you'll have to set a width on the form controls used within.</p>
|
||||||
@ -1617,7 +1616,7 @@ For example, <code><section></code> should be wrapped as inline.
|
|||||||
<h2 id="forms-horizontal">Horizontal form</h2>
|
<h2 id="forms-horizontal">Horizontal form</h2>
|
||||||
<p>Use Bootstrap's predefined grid classes to align labels and groups of form controls in a horizontal layout by adding <code>.form-horizontal</code> to the form. Doing so changes <code>.form-group</code>s to behave as grid rows, so no need for <code>.row</code>.</p>
|
<p>Use Bootstrap's predefined grid classes to align labels and groups of form controls in a horizontal layout by adding <code>.form-horizontal</code> to the form. Doing so changes <code>.form-group</code>s to behave as grid rows, so no need for <code>.row</code>.</p>
|
||||||
<div class="bs-example">
|
<div class="bs-example">
|
||||||
<form class="form-horizontal">
|
<form class="form-horizontal" role="form">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="inputEmail3" class="col-sm-2 control-label">Email</label>
|
<label for="inputEmail3" class="col-sm-2 control-label">Email</label>
|
||||||
<div class="col-sm-10">
|
<div class="col-sm-10">
|
||||||
|
@ -399,7 +399,7 @@ base_url: "../"
|
|||||||
<input type="text" class="form-control" placeholder="Georgia, 'Times New Roman', Times, serif" data-var="@font-family-serif">
|
<input type="text" class="form-control" placeholder="Georgia, 'Times New Roman', Times, serif" data-var="@font-family-serif">
|
||||||
<p class="help-block">Default serif fonts.</p>
|
<p class="help-block">Default serif fonts.</p>
|
||||||
<label>@font-family-monospace</label>
|
<label>@font-family-monospace</label>
|
||||||
<input type="text" class="form-control" placeholder="Monaco, Menlo, Consolas, 'Courier New', monospace" data-var="@font-family-monospace">
|
<input type="text" class="form-control" placeholder="Menlo, Monaco, Consolas, 'Courier New', monospace" data-var="@font-family-monospace">
|
||||||
<p class="help-block">Default monospace fonts for <code><code></code> and <code><pre></code>.</p>
|
<p class="help-block">Default monospace fonts for <code><code></code> and <code><pre></code>.</p>
|
||||||
|
|
||||||
<h4>Base type styes</h4>
|
<h4>Base type styes</h4>
|
||||||
|
64
dist/css/bootstrap-theme.css
vendored
64
dist/css/bootstrap-theme.css
vendored
@ -1,9 +1,7 @@
|
|||||||
/*!
|
/*!
|
||||||
* Bootstrap v3.0.2 by @fat and @mdo
|
* Bootstrap v3.0.3 (http://getbootstrap.com)
|
||||||
* Copyright 2013 Twitter, Inc.
|
* Copyright 2013 Twitter, Inc.
|
||||||
* Licensed under http://www.apache.org/licenses/LICENSE-2.0
|
* Licensed under http://www.apache.org/licenses/LICENSE-2.0
|
||||||
*
|
|
||||||
* Designed and built with all the love in the world by @mdo and @fat.
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.btn-default,
|
.btn-default,
|
||||||
@ -40,9 +38,7 @@
|
|||||||
|
|
||||||
.btn-default {
|
.btn-default {
|
||||||
text-shadow: 0 1px 0 #fff;
|
text-shadow: 0 1px 0 #fff;
|
||||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#ffffff), to(#e0e0e0));
|
|
||||||
background-image: -webkit-linear-gradient(top, #ffffff 0%, #e0e0e0 100%);
|
background-image: -webkit-linear-gradient(top, #ffffff 0%, #e0e0e0 100%);
|
||||||
background-image: -moz-linear-gradient(top, #ffffff 0%, #e0e0e0 100%);
|
|
||||||
background-image: linear-gradient(to bottom, #ffffff 0%, #e0e0e0 100%);
|
background-image: linear-gradient(to bottom, #ffffff 0%, #e0e0e0 100%);
|
||||||
background-repeat: repeat-x;
|
background-repeat: repeat-x;
|
||||||
border-color: #dbdbdb;
|
border-color: #dbdbdb;
|
||||||
@ -64,9 +60,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.btn-primary {
|
.btn-primary {
|
||||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#2d6ca2));
|
|
||||||
background-image: -webkit-linear-gradient(top, #428bca 0%, #2d6ca2 100%);
|
background-image: -webkit-linear-gradient(top, #428bca 0%, #2d6ca2 100%);
|
||||||
background-image: -moz-linear-gradient(top, #428bca 0%, #2d6ca2 100%);
|
|
||||||
background-image: linear-gradient(to bottom, #428bca 0%, #2d6ca2 100%);
|
background-image: linear-gradient(to bottom, #428bca 0%, #2d6ca2 100%);
|
||||||
background-repeat: repeat-x;
|
background-repeat: repeat-x;
|
||||||
border-color: #2b669a;
|
border-color: #2b669a;
|
||||||
@ -87,9 +81,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.btn-success {
|
.btn-success {
|
||||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#5cb85c), to(#419641));
|
|
||||||
background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%);
|
background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%);
|
||||||
background-image: -moz-linear-gradient(top, #5cb85c 0%, #419641 100%);
|
|
||||||
background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%);
|
background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%);
|
||||||
background-repeat: repeat-x;
|
background-repeat: repeat-x;
|
||||||
border-color: #3e8f3e;
|
border-color: #3e8f3e;
|
||||||
@ -110,9 +102,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.btn-warning {
|
.btn-warning {
|
||||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#f0ad4e), to(#eb9316));
|
|
||||||
background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
|
background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
|
||||||
background-image: -moz-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
|
|
||||||
background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%);
|
background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%);
|
||||||
background-repeat: repeat-x;
|
background-repeat: repeat-x;
|
||||||
border-color: #e38d13;
|
border-color: #e38d13;
|
||||||
@ -133,9 +123,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.btn-danger {
|
.btn-danger {
|
||||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#d9534f), to(#c12e2a));
|
|
||||||
background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
|
background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
|
||||||
background-image: -moz-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
|
|
||||||
background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%);
|
background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%);
|
||||||
background-repeat: repeat-x;
|
background-repeat: repeat-x;
|
||||||
border-color: #b92c28;
|
border-color: #b92c28;
|
||||||
@ -156,9 +144,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.btn-info {
|
.btn-info {
|
||||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#5bc0de), to(#2aabd2));
|
|
||||||
background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
|
background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
|
||||||
background-image: -moz-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
|
|
||||||
background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%);
|
background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%);
|
||||||
background-repeat: repeat-x;
|
background-repeat: repeat-x;
|
||||||
border-color: #28a4c9;
|
border-color: #28a4c9;
|
||||||
@ -187,9 +173,7 @@
|
|||||||
.dropdown-menu > li > a:hover,
|
.dropdown-menu > li > a:hover,
|
||||||
.dropdown-menu > li > a:focus {
|
.dropdown-menu > li > a:focus {
|
||||||
background-color: #e8e8e8;
|
background-color: #e8e8e8;
|
||||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#f5f5f5), to(#e8e8e8));
|
|
||||||
background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
|
background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
|
||||||
background-image: -moz-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
|
|
||||||
background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
|
background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
|
||||||
background-repeat: repeat-x;
|
background-repeat: repeat-x;
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
|
||||||
@ -199,18 +183,14 @@
|
|||||||
.dropdown-menu > .active > a:hover,
|
.dropdown-menu > .active > a:hover,
|
||||||
.dropdown-menu > .active > a:focus {
|
.dropdown-menu > .active > a:focus {
|
||||||
background-color: #357ebd;
|
background-color: #357ebd;
|
||||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#357ebd));
|
|
||||||
background-image: -webkit-linear-gradient(top, #428bca 0%, #357ebd 100%);
|
background-image: -webkit-linear-gradient(top, #428bca 0%, #357ebd 100%);
|
||||||
background-image: -moz-linear-gradient(top, #428bca 0%, #357ebd 100%);
|
|
||||||
background-image: linear-gradient(to bottom, #428bca 0%, #357ebd 100%);
|
background-image: linear-gradient(to bottom, #428bca 0%, #357ebd 100%);
|
||||||
background-repeat: repeat-x;
|
background-repeat: repeat-x;
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0);
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0);
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar-default {
|
.navbar-default {
|
||||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#ffffff), to(#f8f8f8));
|
|
||||||
background-image: -webkit-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);
|
background-image: -webkit-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);
|
||||||
background-image: -moz-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);
|
|
||||||
background-image: linear-gradient(to bottom, #ffffff 0%, #f8f8f8 100%);
|
background-image: linear-gradient(to bottom, #ffffff 0%, #f8f8f8 100%);
|
||||||
background-repeat: repeat-x;
|
background-repeat: repeat-x;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
@ -221,9 +201,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.navbar-default .navbar-nav > .active > a {
|
.navbar-default .navbar-nav > .active > a {
|
||||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#ebebeb), to(#f3f3f3));
|
|
||||||
background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f3f3f3 100%);
|
background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f3f3f3 100%);
|
||||||
background-image: -moz-linear-gradient(top, #ebebeb 0%, #f3f3f3 100%);
|
|
||||||
background-image: linear-gradient(to bottom, #ebebeb 0%, #f3f3f3 100%);
|
background-image: linear-gradient(to bottom, #ebebeb 0%, #f3f3f3 100%);
|
||||||
background-repeat: repeat-x;
|
background-repeat: repeat-x;
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff3f3f3', GradientType=0);
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff3f3f3', GradientType=0);
|
||||||
@ -237,9 +215,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.navbar-inverse {
|
.navbar-inverse {
|
||||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#3c3c3c), to(#222222));
|
|
||||||
background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222222 100%);
|
background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222222 100%);
|
||||||
background-image: -moz-linear-gradient(top, #3c3c3c 0%, #222222 100%);
|
|
||||||
background-image: linear-gradient(to bottom, #3c3c3c 0%, #222222 100%);
|
background-image: linear-gradient(to bottom, #3c3c3c 0%, #222222 100%);
|
||||||
background-repeat: repeat-x;
|
background-repeat: repeat-x;
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);
|
||||||
@ -247,9 +223,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.navbar-inverse .navbar-nav > .active > a {
|
.navbar-inverse .navbar-nav > .active > a {
|
||||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#222222), to(#282828));
|
|
||||||
background-image: -webkit-linear-gradient(top, #222222 0%, #282828 100%);
|
background-image: -webkit-linear-gradient(top, #222222 0%, #282828 100%);
|
||||||
background-image: -moz-linear-gradient(top, #222222 0%, #282828 100%);
|
|
||||||
background-image: linear-gradient(to bottom, #222222 0%, #282828 100%);
|
background-image: linear-gradient(to bottom, #222222 0%, #282828 100%);
|
||||||
background-repeat: repeat-x;
|
background-repeat: repeat-x;
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff282828', GradientType=0);
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff282828', GradientType=0);
|
||||||
@ -275,9 +249,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.alert-success {
|
.alert-success {
|
||||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#dff0d8), to(#c8e5bc));
|
|
||||||
background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
|
background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
|
||||||
background-image: -moz-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
|
|
||||||
background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);
|
background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);
|
||||||
background-repeat: repeat-x;
|
background-repeat: repeat-x;
|
||||||
border-color: #b2dba1;
|
border-color: #b2dba1;
|
||||||
@ -285,9 +257,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.alert-info {
|
.alert-info {
|
||||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#d9edf7), to(#b9def0));
|
|
||||||
background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
|
background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
|
||||||
background-image: -moz-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
|
|
||||||
background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);
|
background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);
|
||||||
background-repeat: repeat-x;
|
background-repeat: repeat-x;
|
||||||
border-color: #9acfea;
|
border-color: #9acfea;
|
||||||
@ -295,9 +265,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.alert-warning {
|
.alert-warning {
|
||||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#fcf8e3), to(#f8efc0));
|
|
||||||
background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
|
background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
|
||||||
background-image: -moz-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
|
|
||||||
background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);
|
background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);
|
||||||
background-repeat: repeat-x;
|
background-repeat: repeat-x;
|
||||||
border-color: #f5e79e;
|
border-color: #f5e79e;
|
||||||
@ -305,9 +273,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.alert-danger {
|
.alert-danger {
|
||||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#f2dede), to(#e7c3c3));
|
|
||||||
background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
|
background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
|
||||||
background-image: -moz-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
|
|
||||||
background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%);
|
background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%);
|
||||||
background-repeat: repeat-x;
|
background-repeat: repeat-x;
|
||||||
border-color: #dca7a7;
|
border-color: #dca7a7;
|
||||||
@ -315,54 +281,42 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.progress {
|
.progress {
|
||||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#ebebeb), to(#f5f5f5));
|
|
||||||
background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
|
background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
|
||||||
background-image: -moz-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
|
|
||||||
background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%);
|
background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%);
|
||||||
background-repeat: repeat-x;
|
background-repeat: repeat-x;
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);
|
||||||
}
|
}
|
||||||
|
|
||||||
.progress-bar {
|
.progress-bar {
|
||||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#3071a9));
|
|
||||||
background-image: -webkit-linear-gradient(top, #428bca 0%, #3071a9 100%);
|
background-image: -webkit-linear-gradient(top, #428bca 0%, #3071a9 100%);
|
||||||
background-image: -moz-linear-gradient(top, #428bca 0%, #3071a9 100%);
|
|
||||||
background-image: linear-gradient(to bottom, #428bca 0%, #3071a9 100%);
|
background-image: linear-gradient(to bottom, #428bca 0%, #3071a9 100%);
|
||||||
background-repeat: repeat-x;
|
background-repeat: repeat-x;
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff3071a9', GradientType=0);
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff3071a9', GradientType=0);
|
||||||
}
|
}
|
||||||
|
|
||||||
.progress-bar-success {
|
.progress-bar-success {
|
||||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#5cb85c), to(#449d44));
|
|
||||||
background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%);
|
background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%);
|
||||||
background-image: -moz-linear-gradient(top, #5cb85c 0%, #449d44 100%);
|
|
||||||
background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);
|
background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);
|
||||||
background-repeat: repeat-x;
|
background-repeat: repeat-x;
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);
|
||||||
}
|
}
|
||||||
|
|
||||||
.progress-bar-info {
|
.progress-bar-info {
|
||||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#5bc0de), to(#31b0d5));
|
|
||||||
background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
|
background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
|
||||||
background-image: -moz-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
|
|
||||||
background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);
|
background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);
|
||||||
background-repeat: repeat-x;
|
background-repeat: repeat-x;
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);
|
||||||
}
|
}
|
||||||
|
|
||||||
.progress-bar-warning {
|
.progress-bar-warning {
|
||||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#f0ad4e), to(#ec971f));
|
|
||||||
background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
|
background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
|
||||||
background-image: -moz-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
|
|
||||||
background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);
|
background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);
|
||||||
background-repeat: repeat-x;
|
background-repeat: repeat-x;
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);
|
||||||
}
|
}
|
||||||
|
|
||||||
.progress-bar-danger {
|
.progress-bar-danger {
|
||||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#d9534f), to(#c9302c));
|
|
||||||
background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%);
|
background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%);
|
||||||
background-image: -moz-linear-gradient(top, #d9534f 0%, #c9302c 100%);
|
|
||||||
background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);
|
background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);
|
||||||
background-repeat: repeat-x;
|
background-repeat: repeat-x;
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);
|
||||||
@ -378,9 +332,7 @@
|
|||||||
.list-group-item.active:hover,
|
.list-group-item.active:hover,
|
||||||
.list-group-item.active:focus {
|
.list-group-item.active:focus {
|
||||||
text-shadow: 0 -1px 0 #3071a9;
|
text-shadow: 0 -1px 0 #3071a9;
|
||||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#3278b3));
|
|
||||||
background-image: -webkit-linear-gradient(top, #428bca 0%, #3278b3 100%);
|
background-image: -webkit-linear-gradient(top, #428bca 0%, #3278b3 100%);
|
||||||
background-image: -moz-linear-gradient(top, #428bca 0%, #3278b3 100%);
|
|
||||||
background-image: linear-gradient(to bottom, #428bca 0%, #3278b3 100%);
|
background-image: linear-gradient(to bottom, #428bca 0%, #3278b3 100%);
|
||||||
background-repeat: repeat-x;
|
background-repeat: repeat-x;
|
||||||
border-color: #3278b3;
|
border-color: #3278b3;
|
||||||
@ -393,63 +345,49 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.panel-default > .panel-heading {
|
.panel-default > .panel-heading {
|
||||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#f5f5f5), to(#e8e8e8));
|
|
||||||
background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
|
background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
|
||||||
background-image: -moz-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
|
|
||||||
background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
|
background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
|
||||||
background-repeat: repeat-x;
|
background-repeat: repeat-x;
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
|
||||||
}
|
}
|
||||||
|
|
||||||
.panel-primary > .panel-heading {
|
.panel-primary > .panel-heading {
|
||||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#357ebd));
|
|
||||||
background-image: -webkit-linear-gradient(top, #428bca 0%, #357ebd 100%);
|
background-image: -webkit-linear-gradient(top, #428bca 0%, #357ebd 100%);
|
||||||
background-image: -moz-linear-gradient(top, #428bca 0%, #357ebd 100%);
|
|
||||||
background-image: linear-gradient(to bottom, #428bca 0%, #357ebd 100%);
|
background-image: linear-gradient(to bottom, #428bca 0%, #357ebd 100%);
|
||||||
background-repeat: repeat-x;
|
background-repeat: repeat-x;
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0);
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0);
|
||||||
}
|
}
|
||||||
|
|
||||||
.panel-success > .panel-heading {
|
.panel-success > .panel-heading {
|
||||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#dff0d8), to(#d0e9c6));
|
|
||||||
background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);
|
background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);
|
||||||
background-image: -moz-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);
|
|
||||||
background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%);
|
background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%);
|
||||||
background-repeat: repeat-x;
|
background-repeat: repeat-x;
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);
|
||||||
}
|
}
|
||||||
|
|
||||||
.panel-info > .panel-heading {
|
.panel-info > .panel-heading {
|
||||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#d9edf7), to(#c4e3f3));
|
|
||||||
background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);
|
background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);
|
||||||
background-image: -moz-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);
|
|
||||||
background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%);
|
background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%);
|
||||||
background-repeat: repeat-x;
|
background-repeat: repeat-x;
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);
|
||||||
}
|
}
|
||||||
|
|
||||||
.panel-warning > .panel-heading {
|
.panel-warning > .panel-heading {
|
||||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#fcf8e3), to(#faf2cc));
|
|
||||||
background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);
|
background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);
|
||||||
background-image: -moz-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);
|
|
||||||
background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%);
|
background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%);
|
||||||
background-repeat: repeat-x;
|
background-repeat: repeat-x;
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);
|
||||||
}
|
}
|
||||||
|
|
||||||
.panel-danger > .panel-heading {
|
.panel-danger > .panel-heading {
|
||||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#f2dede), to(#ebcccc));
|
|
||||||
background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
|
background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
|
||||||
background-image: -moz-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
|
|
||||||
background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%);
|
background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%);
|
||||||
background-repeat: repeat-x;
|
background-repeat: repeat-x;
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);
|
||||||
}
|
}
|
||||||
|
|
||||||
.well {
|
.well {
|
||||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#e8e8e8), to(#f5f5f5));
|
|
||||||
background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);
|
background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);
|
||||||
background-image: -moz-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);
|
|
||||||
background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%);
|
background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%);
|
||||||
background-repeat: repeat-x;
|
background-repeat: repeat-x;
|
||||||
border-color: #dcdcdc;
|
border-color: #dcdcdc;
|
||||||
|
6
dist/css/bootstrap-theme.min.css
vendored
6
dist/css/bootstrap-theme.min.css
vendored
File diff suppressed because one or more lines are too long
782
dist/css/bootstrap.css
vendored
782
dist/css/bootstrap.css
vendored
@ -1,9 +1,7 @@
|
|||||||
/*!
|
/*!
|
||||||
* Bootstrap v3.0.2 by @fat and @mdo
|
* Bootstrap v3.0.3 (http://getbootstrap.com)
|
||||||
* Copyright 2013 Twitter, Inc.
|
* Copyright 2013 Twitter, Inc.
|
||||||
* Licensed under http://www.apache.org/licenses/LICENSE-2.0
|
* Licensed under http://www.apache.org/licenses/LICENSE-2.0
|
||||||
*
|
|
||||||
* Designed and built with all the love in the world by @mdo and @fat.
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */
|
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */
|
||||||
@ -333,7 +331,7 @@ a:focus {
|
|||||||
}
|
}
|
||||||
|
|
||||||
a:focus {
|
a:focus {
|
||||||
outline: thin dotted #333;
|
outline: thin dotted;
|
||||||
outline: 5px auto -webkit-focus-ring-color;
|
outline: 5px auto -webkit-focus-ring-color;
|
||||||
outline-offset: -2px;
|
outline-offset: -2px;
|
||||||
}
|
}
|
||||||
@ -387,88 +385,6 @@ hr {
|
|||||||
border: 0;
|
border: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
|
||||||
margin: 0 0 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.lead {
|
|
||||||
margin-bottom: 20px;
|
|
||||||
font-size: 16px;
|
|
||||||
font-weight: 200;
|
|
||||||
line-height: 1.4;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (min-width: 768px) {
|
|
||||||
.lead {
|
|
||||||
font-size: 21px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
small,
|
|
||||||
.small {
|
|
||||||
font-size: 85%;
|
|
||||||
}
|
|
||||||
|
|
||||||
cite {
|
|
||||||
font-style: normal;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text-muted {
|
|
||||||
color: #999999;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text-primary {
|
|
||||||
color: #428bca;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text-primary:hover {
|
|
||||||
color: #3071a9;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text-warning {
|
|
||||||
color: #c09853;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text-warning:hover {
|
|
||||||
color: #a47e3c;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text-danger {
|
|
||||||
color: #b94a48;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text-danger:hover {
|
|
||||||
color: #953b39;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text-success {
|
|
||||||
color: #468847;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text-success:hover {
|
|
||||||
color: #356635;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text-info {
|
|
||||||
color: #3a87ad;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text-info:hover {
|
|
||||||
color: #2d6987;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text-left {
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text-right {
|
|
||||||
text-align: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text-center {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1,
|
h1,
|
||||||
h2,
|
h2,
|
||||||
h3,
|
h3,
|
||||||
@ -578,6 +494,88 @@ h6,
|
|||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
margin: 0 0 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.lead {
|
||||||
|
margin-bottom: 20px;
|
||||||
|
font-size: 16px;
|
||||||
|
font-weight: 200;
|
||||||
|
line-height: 1.4;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 768px) {
|
||||||
|
.lead {
|
||||||
|
font-size: 21px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
small,
|
||||||
|
.small {
|
||||||
|
font-size: 85%;
|
||||||
|
}
|
||||||
|
|
||||||
|
cite {
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text-muted {
|
||||||
|
color: #999999;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text-primary {
|
||||||
|
color: #428bca;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text-primary:hover {
|
||||||
|
color: #3071a9;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text-warning {
|
||||||
|
color: #8a6d3b;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text-warning:hover {
|
||||||
|
color: #66512c;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text-danger {
|
||||||
|
color: #a94442;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text-danger:hover {
|
||||||
|
color: #843534;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text-success {
|
||||||
|
color: #3c763d;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text-success:hover {
|
||||||
|
color: #2b542c;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text-info {
|
||||||
|
color: #31708f;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text-info:hover {
|
||||||
|
color: #245269;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text-left {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text-right {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text-center {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
.page-header {
|
.page-header {
|
||||||
padding-bottom: 9px;
|
padding-bottom: 9px;
|
||||||
margin: 40px 0 20px;
|
margin: 40px 0 20px;
|
||||||
@ -618,6 +616,7 @@ ol ol {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dl {
|
dl {
|
||||||
|
margin-top: 0;
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -671,7 +670,7 @@ abbr[data-original-title] {
|
|||||||
border-bottom: 1px dotted #999999;
|
border-bottom: 1px dotted #999999;
|
||||||
}
|
}
|
||||||
|
|
||||||
abbr.initialism {
|
.initialism {
|
||||||
font-size: 90%;
|
font-size: 90%;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
}
|
}
|
||||||
@ -692,13 +691,15 @@ blockquote p:last-child {
|
|||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
blockquote small {
|
blockquote small,
|
||||||
|
blockquote .small {
|
||||||
display: block;
|
display: block;
|
||||||
line-height: 1.428571429;
|
line-height: 1.428571429;
|
||||||
color: #999999;
|
color: #999999;
|
||||||
}
|
}
|
||||||
|
|
||||||
blockquote small:before {
|
blockquote small:before,
|
||||||
|
blockquote .small:before {
|
||||||
content: '\2014 \00A0';
|
content: '\2014 \00A0';
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -740,7 +741,7 @@ code,
|
|||||||
kbd,
|
kbd,
|
||||||
pre,
|
pre,
|
||||||
samp {
|
samp {
|
||||||
font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
|
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
|
||||||
}
|
}
|
||||||
|
|
||||||
code {
|
code {
|
||||||
@ -807,6 +808,24 @@ pre code {
|
|||||||
clear: both;
|
clear: both;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (min-width: 768px) {
|
||||||
|
.container {
|
||||||
|
width: 750px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 992px) {
|
||||||
|
.container {
|
||||||
|
width: 970px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 1200px) {
|
||||||
|
.container {
|
||||||
|
width: 1170px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.row {
|
.row {
|
||||||
margin-right: -15px;
|
margin-right: -15px;
|
||||||
margin-left: -15px;
|
margin-left: -15px;
|
||||||
@ -896,7 +915,8 @@ pre code {
|
|||||||
.col-xs-8,
|
.col-xs-8,
|
||||||
.col-xs-9,
|
.col-xs-9,
|
||||||
.col-xs-10,
|
.col-xs-10,
|
||||||
.col-xs-11 {
|
.col-xs-11,
|
||||||
|
.col-xs-12 {
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1105,9 +1125,6 @@ pre code {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
.container {
|
|
||||||
width: 750px;
|
|
||||||
}
|
|
||||||
.col-sm-1,
|
.col-sm-1,
|
||||||
.col-sm-2,
|
.col-sm-2,
|
||||||
.col-sm-3,
|
.col-sm-3,
|
||||||
@ -1118,7 +1135,8 @@ pre code {
|
|||||||
.col-sm-8,
|
.col-sm-8,
|
||||||
.col-sm-9,
|
.col-sm-9,
|
||||||
.col-sm-10,
|
.col-sm-10,
|
||||||
.col-sm-11 {
|
.col-sm-11,
|
||||||
|
.col-sm-12 {
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
.col-sm-12 {
|
.col-sm-12 {
|
||||||
@ -1277,9 +1295,6 @@ pre code {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width: 992px) {
|
@media (min-width: 992px) {
|
||||||
.container {
|
|
||||||
width: 970px;
|
|
||||||
}
|
|
||||||
.col-md-1,
|
.col-md-1,
|
||||||
.col-md-2,
|
.col-md-2,
|
||||||
.col-md-3,
|
.col-md-3,
|
||||||
@ -1290,7 +1305,8 @@ pre code {
|
|||||||
.col-md-8,
|
.col-md-8,
|
||||||
.col-md-9,
|
.col-md-9,
|
||||||
.col-md-10,
|
.col-md-10,
|
||||||
.col-md-11 {
|
.col-md-11,
|
||||||
|
.col-md-12 {
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
.col-md-12 {
|
.col-md-12 {
|
||||||
@ -1449,9 +1465,6 @@ pre code {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width: 1200px) {
|
@media (min-width: 1200px) {
|
||||||
.container {
|
|
||||||
width: 1170px;
|
|
||||||
}
|
|
||||||
.col-lg-1,
|
.col-lg-1,
|
||||||
.col-lg-2,
|
.col-lg-2,
|
||||||
.col-lg-3,
|
.col-lg-3,
|
||||||
@ -1462,7 +1475,8 @@ pre code {
|
|||||||
.col-lg-8,
|
.col-lg-8,
|
||||||
.col-lg-9,
|
.col-lg-9,
|
||||||
.col-lg-10,
|
.col-lg-10,
|
||||||
.col-lg-11 {
|
.col-lg-11,
|
||||||
|
.col-lg-12 {
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
.col-lg-12 {
|
.col-lg-12 {
|
||||||
@ -1706,6 +1720,7 @@ th {
|
|||||||
}
|
}
|
||||||
|
|
||||||
table col[class*="col-"] {
|
table col[class*="col-"] {
|
||||||
|
position: static;
|
||||||
display: table-column;
|
display: table-column;
|
||||||
float: none;
|
float: none;
|
||||||
}
|
}
|
||||||
@ -1716,84 +1731,75 @@ table th[class*="col-"] {
|
|||||||
float: none;
|
float: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.table > thead > tr > td.active,
|
.table > thead > tr > .active,
|
||||||
.table > tbody > tr > td.active,
|
.table > tbody > tr > .active,
|
||||||
.table > tfoot > tr > td.active,
|
.table > tfoot > tr > .active,
|
||||||
.table > thead > tr > th.active,
|
.table > thead > .active > td,
|
||||||
.table > tbody > tr > th.active,
|
.table > tbody > .active > td,
|
||||||
.table > tfoot > tr > th.active,
|
.table > tfoot > .active > td,
|
||||||
.table > thead > tr.active > td,
|
.table > thead > .active > th,
|
||||||
.table > tbody > tr.active > td,
|
.table > tbody > .active > th,
|
||||||
.table > tfoot > tr.active > td,
|
.table > tfoot > .active > th {
|
||||||
.table > thead > tr.active > th,
|
|
||||||
.table > tbody > tr.active > th,
|
|
||||||
.table > tfoot > tr.active > th {
|
|
||||||
background-color: #f5f5f5;
|
background-color: #f5f5f5;
|
||||||
}
|
}
|
||||||
|
|
||||||
.table > thead > tr > td.success,
|
.table-hover > tbody > tr > .active:hover,
|
||||||
.table > tbody > tr > td.success,
|
.table-hover > tbody > .active:hover > td,
|
||||||
.table > tfoot > tr > td.success,
|
.table-hover > tbody > .active:hover > th {
|
||||||
.table > thead > tr > th.success,
|
background-color: #e8e8e8;
|
||||||
.table > tbody > tr > th.success,
|
}
|
||||||
.table > tfoot > tr > th.success,
|
|
||||||
.table > thead > tr.success > td,
|
.table > thead > tr > .success,
|
||||||
.table > tbody > tr.success > td,
|
.table > tbody > tr > .success,
|
||||||
.table > tfoot > tr.success > td,
|
.table > tfoot > tr > .success,
|
||||||
.table > thead > tr.success > th,
|
.table > thead > .success > td,
|
||||||
.table > tbody > tr.success > th,
|
.table > tbody > .success > td,
|
||||||
.table > tfoot > tr.success > th {
|
.table > tfoot > .success > td,
|
||||||
|
.table > thead > .success > th,
|
||||||
|
.table > tbody > .success > th,
|
||||||
|
.table > tfoot > .success > th {
|
||||||
background-color: #dff0d8;
|
background-color: #dff0d8;
|
||||||
}
|
}
|
||||||
|
|
||||||
.table-hover > tbody > tr > td.success:hover,
|
.table-hover > tbody > tr > .success:hover,
|
||||||
.table-hover > tbody > tr > th.success:hover,
|
.table-hover > tbody > .success:hover > td,
|
||||||
.table-hover > tbody > tr.success:hover > td,
|
.table-hover > tbody > .success:hover > th {
|
||||||
.table-hover > tbody > tr.success:hover > th {
|
|
||||||
background-color: #d0e9c6;
|
background-color: #d0e9c6;
|
||||||
}
|
}
|
||||||
|
|
||||||
.table > thead > tr > td.danger,
|
.table > thead > tr > .danger,
|
||||||
.table > tbody > tr > td.danger,
|
.table > tbody > tr > .danger,
|
||||||
.table > tfoot > tr > td.danger,
|
.table > tfoot > tr > .danger,
|
||||||
.table > thead > tr > th.danger,
|
.table > thead > .danger > td,
|
||||||
.table > tbody > tr > th.danger,
|
.table > tbody > .danger > td,
|
||||||
.table > tfoot > tr > th.danger,
|
.table > tfoot > .danger > td,
|
||||||
.table > thead > tr.danger > td,
|
.table > thead > .danger > th,
|
||||||
.table > tbody > tr.danger > td,
|
.table > tbody > .danger > th,
|
||||||
.table > tfoot > tr.danger > td,
|
.table > tfoot > .danger > th {
|
||||||
.table > thead > tr.danger > th,
|
|
||||||
.table > tbody > tr.danger > th,
|
|
||||||
.table > tfoot > tr.danger > th {
|
|
||||||
background-color: #f2dede;
|
background-color: #f2dede;
|
||||||
}
|
}
|
||||||
|
|
||||||
.table-hover > tbody > tr > td.danger:hover,
|
.table-hover > tbody > tr > .danger:hover,
|
||||||
.table-hover > tbody > tr > th.danger:hover,
|
.table-hover > tbody > .danger:hover > td,
|
||||||
.table-hover > tbody > tr.danger:hover > td,
|
.table-hover > tbody > .danger:hover > th {
|
||||||
.table-hover > tbody > tr.danger:hover > th {
|
|
||||||
background-color: #ebcccc;
|
background-color: #ebcccc;
|
||||||
}
|
}
|
||||||
|
|
||||||
.table > thead > tr > td.warning,
|
.table > thead > tr > .warning,
|
||||||
.table > tbody > tr > td.warning,
|
.table > tbody > tr > .warning,
|
||||||
.table > tfoot > tr > td.warning,
|
.table > tfoot > tr > .warning,
|
||||||
.table > thead > tr > th.warning,
|
.table > thead > .warning > td,
|
||||||
.table > tbody > tr > th.warning,
|
.table > tbody > .warning > td,
|
||||||
.table > tfoot > tr > th.warning,
|
.table > tfoot > .warning > td,
|
||||||
.table > thead > tr.warning > td,
|
.table > thead > .warning > th,
|
||||||
.table > tbody > tr.warning > td,
|
.table > tbody > .warning > th,
|
||||||
.table > tfoot > tr.warning > td,
|
.table > tfoot > .warning > th {
|
||||||
.table > thead > tr.warning > th,
|
|
||||||
.table > tbody > tr.warning > th,
|
|
||||||
.table > tfoot > tr.warning > th {
|
|
||||||
background-color: #fcf8e3;
|
background-color: #fcf8e3;
|
||||||
}
|
}
|
||||||
|
|
||||||
.table-hover > tbody > tr > td.warning:hover,
|
.table-hover > tbody > tr > .warning:hover,
|
||||||
.table-hover > tbody > tr > th.warning:hover,
|
.table-hover > tbody > .warning:hover > td,
|
||||||
.table-hover > tbody > tr.warning:hover > td,
|
.table-hover > tbody > .warning:hover > th {
|
||||||
.table-hover > tbody > tr.warning:hover > th {
|
|
||||||
background-color: #faf2cc;
|
background-color: #faf2cc;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1902,7 +1908,7 @@ select optgroup {
|
|||||||
input[type="file"]:focus,
|
input[type="file"]:focus,
|
||||||
input[type="radio"]:focus,
|
input[type="radio"]:focus,
|
||||||
input[type="checkbox"]:focus {
|
input[type="checkbox"]:focus {
|
||||||
outline: thin dotted #333;
|
outline: thin dotted;
|
||||||
outline: 5px auto -webkit-focus-ring-color;
|
outline: 5px auto -webkit-focus-ring-color;
|
||||||
outline-offset: -2px;
|
outline-offset: -2px;
|
||||||
}
|
}
|
||||||
@ -1953,6 +1959,7 @@ output {
|
|||||||
|
|
||||||
.form-control::-moz-placeholder {
|
.form-control::-moz-placeholder {
|
||||||
color: #999999;
|
color: #999999;
|
||||||
|
opacity: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.form-control:-ms-input-placeholder {
|
.form-control:-ms-input-placeholder {
|
||||||
@ -2058,7 +2065,7 @@ textarea.input-sm {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.input-lg {
|
.input-lg {
|
||||||
height: 45px;
|
height: 46px;
|
||||||
padding: 10px 16px;
|
padding: 10px 16px;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
line-height: 1.33;
|
line-height: 1.33;
|
||||||
@ -2066,8 +2073,8 @@ textarea.input-sm {
|
|||||||
}
|
}
|
||||||
|
|
||||||
select.input-lg {
|
select.input-lg {
|
||||||
height: 45px;
|
height: 46px;
|
||||||
line-height: 45px;
|
line-height: 46px;
|
||||||
}
|
}
|
||||||
|
|
||||||
textarea.input-lg {
|
textarea.input-lg {
|
||||||
@ -2080,25 +2087,25 @@ textarea.input-lg {
|
|||||||
.has-warning .checkbox,
|
.has-warning .checkbox,
|
||||||
.has-warning .radio-inline,
|
.has-warning .radio-inline,
|
||||||
.has-warning .checkbox-inline {
|
.has-warning .checkbox-inline {
|
||||||
color: #c09853;
|
color: #8a6d3b;
|
||||||
}
|
}
|
||||||
|
|
||||||
.has-warning .form-control {
|
.has-warning .form-control {
|
||||||
border-color: #c09853;
|
border-color: #8a6d3b;
|
||||||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||||||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||||||
}
|
}
|
||||||
|
|
||||||
.has-warning .form-control:focus {
|
.has-warning .form-control:focus {
|
||||||
border-color: #a47e3c;
|
border-color: #66512c;
|
||||||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
|
||||||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
|
||||||
}
|
}
|
||||||
|
|
||||||
.has-warning .input-group-addon {
|
.has-warning .input-group-addon {
|
||||||
color: #c09853;
|
color: #8a6d3b;
|
||||||
background-color: #fcf8e3;
|
background-color: #fcf8e3;
|
||||||
border-color: #c09853;
|
border-color: #8a6d3b;
|
||||||
}
|
}
|
||||||
|
|
||||||
.has-error .help-block,
|
.has-error .help-block,
|
||||||
@ -2107,25 +2114,25 @@ textarea.input-lg {
|
|||||||
.has-error .checkbox,
|
.has-error .checkbox,
|
||||||
.has-error .radio-inline,
|
.has-error .radio-inline,
|
||||||
.has-error .checkbox-inline {
|
.has-error .checkbox-inline {
|
||||||
color: #b94a48;
|
color: #a94442;
|
||||||
}
|
}
|
||||||
|
|
||||||
.has-error .form-control {
|
.has-error .form-control {
|
||||||
border-color: #b94a48;
|
border-color: #a94442;
|
||||||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||||||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||||||
}
|
}
|
||||||
|
|
||||||
.has-error .form-control:focus {
|
.has-error .form-control:focus {
|
||||||
border-color: #953b39;
|
border-color: #843534;
|
||||||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
|
||||||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
|
||||||
}
|
}
|
||||||
|
|
||||||
.has-error .input-group-addon {
|
.has-error .input-group-addon {
|
||||||
color: #b94a48;
|
color: #a94442;
|
||||||
background-color: #f2dede;
|
background-color: #f2dede;
|
||||||
border-color: #b94a48;
|
border-color: #a94442;
|
||||||
}
|
}
|
||||||
|
|
||||||
.has-success .help-block,
|
.has-success .help-block,
|
||||||
@ -2134,25 +2141,25 @@ textarea.input-lg {
|
|||||||
.has-success .checkbox,
|
.has-success .checkbox,
|
||||||
.has-success .radio-inline,
|
.has-success .radio-inline,
|
||||||
.has-success .checkbox-inline {
|
.has-success .checkbox-inline {
|
||||||
color: #468847;
|
color: #3c763d;
|
||||||
}
|
}
|
||||||
|
|
||||||
.has-success .form-control {
|
.has-success .form-control {
|
||||||
border-color: #468847;
|
border-color: #3c763d;
|
||||||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||||||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||||||
}
|
}
|
||||||
|
|
||||||
.has-success .form-control:focus {
|
.has-success .form-control:focus {
|
||||||
border-color: #356635;
|
border-color: #2b542c;
|
||||||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
|
||||||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
|
||||||
}
|
}
|
||||||
|
|
||||||
.has-success .input-group-addon {
|
.has-success .input-group-addon {
|
||||||
color: #468847;
|
color: #3c763d;
|
||||||
background-color: #dff0d8;
|
background-color: #dff0d8;
|
||||||
border-color: #468847;
|
border-color: #3c763d;
|
||||||
}
|
}
|
||||||
|
|
||||||
.form-control-static {
|
.form-control-static {
|
||||||
@ -2175,6 +2182,9 @@ textarea.input-lg {
|
|||||||
.form-inline .form-control {
|
.form-inline .form-control {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
.form-inline select.form-control {
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
.form-inline .radio,
|
.form-inline .radio,
|
||||||
.form-inline .checkbox {
|
.form-inline .checkbox {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
@ -2199,6 +2209,11 @@ textarea.input-lg {
|
|||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.form-horizontal .radio,
|
||||||
|
.form-horizontal .checkbox {
|
||||||
|
min-height: 27px;
|
||||||
|
}
|
||||||
|
|
||||||
.form-horizontal .form-group {
|
.form-horizontal .form-group {
|
||||||
margin-right: -15px;
|
margin-right: -15px;
|
||||||
margin-left: -15px;
|
margin-left: -15px;
|
||||||
@ -2256,7 +2271,7 @@ textarea.input-lg {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.btn:focus {
|
.btn:focus {
|
||||||
outline: thin dotted #333;
|
outline: thin dotted;
|
||||||
outline: 5px auto -webkit-focus-ring-color;
|
outline: 5px auto -webkit-focus-ring-color;
|
||||||
outline-offset: -2px;
|
outline-offset: -2px;
|
||||||
}
|
}
|
||||||
@ -2327,6 +2342,11 @@ fieldset[disabled] .btn-default.active {
|
|||||||
border-color: #cccccc;
|
border-color: #cccccc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.btn-default .badge {
|
||||||
|
color: #ffffff;
|
||||||
|
background-color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
.btn-primary {
|
.btn-primary {
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
background-color: #428bca;
|
background-color: #428bca;
|
||||||
@ -2368,6 +2388,11 @@ fieldset[disabled] .btn-primary.active {
|
|||||||
border-color: #357ebd;
|
border-color: #357ebd;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.btn-primary .badge {
|
||||||
|
color: #428bca;
|
||||||
|
background-color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
.btn-warning {
|
.btn-warning {
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
background-color: #f0ad4e;
|
background-color: #f0ad4e;
|
||||||
@ -2409,6 +2434,11 @@ fieldset[disabled] .btn-warning.active {
|
|||||||
border-color: #eea236;
|
border-color: #eea236;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.btn-warning .badge {
|
||||||
|
color: #f0ad4e;
|
||||||
|
background-color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
.btn-danger {
|
.btn-danger {
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
background-color: #d9534f;
|
background-color: #d9534f;
|
||||||
@ -2450,6 +2480,11 @@ fieldset[disabled] .btn-danger.active {
|
|||||||
border-color: #d43f3a;
|
border-color: #d43f3a;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.btn-danger .badge {
|
||||||
|
color: #d9534f;
|
||||||
|
background-color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
.btn-success {
|
.btn-success {
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
background-color: #5cb85c;
|
background-color: #5cb85c;
|
||||||
@ -2491,6 +2526,11 @@ fieldset[disabled] .btn-success.active {
|
|||||||
border-color: #4cae4c;
|
border-color: #4cae4c;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.btn-success .badge {
|
||||||
|
color: #5cb85c;
|
||||||
|
background-color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
.btn-info {
|
.btn-info {
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
background-color: #5bc0de;
|
background-color: #5bc0de;
|
||||||
@ -2532,6 +2572,11 @@ fieldset[disabled] .btn-info.active {
|
|||||||
border-color: #46b8da;
|
border-color: #46b8da;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.btn-info .badge {
|
||||||
|
color: #5bc0de;
|
||||||
|
background-color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
.btn-link {
|
.btn-link {
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
color: #428bca;
|
color: #428bca;
|
||||||
@ -2577,8 +2622,7 @@ fieldset[disabled] .btn-link:focus {
|
|||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-sm,
|
.btn-sm {
|
||||||
.btn-xs {
|
|
||||||
padding: 5px 10px;
|
padding: 5px 10px;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
@ -2587,6 +2631,9 @@ fieldset[disabled] .btn-link:focus {
|
|||||||
|
|
||||||
.btn-xs {
|
.btn-xs {
|
||||||
padding: 1px 5px;
|
padding: 1px 5px;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 1.5;
|
||||||
|
border-radius: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-block {
|
.btn-block {
|
||||||
@ -2635,7 +2682,7 @@ input[type="button"].btn-block {
|
|||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'Glyphicons Halflings';
|
font-family: 'Glyphicons Halflings';
|
||||||
src: url('../fonts/glyphicons-halflings-regular.eot');
|
src: url('../fonts/glyphicons-halflings-regular.eot');
|
||||||
src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
|
src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons-halflingsregular') format('svg');
|
||||||
}
|
}
|
||||||
|
|
||||||
.glyphicon {
|
.glyphicon {
|
||||||
@ -3460,9 +3507,8 @@ input[type="button"].btn-block {
|
|||||||
height: 0;
|
height: 0;
|
||||||
margin-left: 2px;
|
margin-left: 2px;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
border-top: 4px solid #000000;
|
border-top: 4px solid;
|
||||||
border-right: 4px solid transparent;
|
border-right: 4px solid transparent;
|
||||||
border-bottom: 0 dotted;
|
|
||||||
border-left: 4px solid transparent;
|
border-left: 4px solid transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -3580,8 +3626,8 @@ input[type="button"].btn-block {
|
|||||||
|
|
||||||
.dropup .caret,
|
.dropup .caret,
|
||||||
.navbar-fixed-bottom .dropdown .caret {
|
.navbar-fixed-bottom .dropdown .caret {
|
||||||
border-top: 0 dotted;
|
border-top: 0;
|
||||||
border-bottom: 4px solid #000000;
|
border-bottom: 4px solid;
|
||||||
content: "";
|
content: "";
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -3599,30 +3645,6 @@ input[type="button"].btn-block {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-default .caret {
|
|
||||||
border-top-color: #333333;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-primary .caret,
|
|
||||||
.btn-success .caret,
|
|
||||||
.btn-warning .caret,
|
|
||||||
.btn-danger .caret,
|
|
||||||
.btn-info .caret {
|
|
||||||
border-top-color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dropup .btn-default .caret {
|
|
||||||
border-bottom-color: #333333;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dropup .btn-primary .caret,
|
|
||||||
.dropup .btn-success .caret,
|
|
||||||
.dropup .btn-warning .caret,
|
|
||||||
.dropup .btn-danger .caret,
|
|
||||||
.dropup .btn-info .caret {
|
|
||||||
border-bottom-color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-group,
|
.btn-group,
|
||||||
.btn-group-vertical {
|
.btn-group-vertical {
|
||||||
position: relative;
|
position: relative;
|
||||||
@ -3734,7 +3756,6 @@ input[type="button"].btn-block {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.btn-group-xs > .btn {
|
.btn-group-xs > .btn {
|
||||||
padding: 5px 10px;
|
|
||||||
padding: 1px 5px;
|
padding: 1px 5px;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
@ -3789,7 +3810,8 @@ input[type="button"].btn-block {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.btn-group-vertical > .btn,
|
.btn-group-vertical > .btn,
|
||||||
.btn-group-vertical > .btn-group {
|
.btn-group-vertical > .btn-group,
|
||||||
|
.btn-group-vertical > .btn-group > .btn {
|
||||||
display: block;
|
display: block;
|
||||||
float: none;
|
float: none;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
@ -3866,12 +3888,17 @@ input[type="button"].btn-block {
|
|||||||
table-layout: fixed;
|
table-layout: fixed;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-group-justified .btn {
|
.btn-group-justified > .btn,
|
||||||
|
.btn-group-justified > .btn-group {
|
||||||
display: table-cell;
|
display: table-cell;
|
||||||
float: none;
|
float: none;
|
||||||
width: 1%;
|
width: 1%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.btn-group-justified > .btn-group .btn {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
[data-toggle="buttons"] > .btn > input[type="radio"],
|
[data-toggle="buttons"] > .btn > input[type="radio"],
|
||||||
[data-toggle="buttons"] > .btn > input[type="checkbox"] {
|
[data-toggle="buttons"] > .btn > input[type="checkbox"] {
|
||||||
display: none;
|
display: none;
|
||||||
@ -3883,7 +3910,7 @@ input[type="button"].btn-block {
|
|||||||
border-collapse: separate;
|
border-collapse: separate;
|
||||||
}
|
}
|
||||||
|
|
||||||
.input-group.col {
|
.input-group[class*="col-"] {
|
||||||
float: none;
|
float: none;
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
@ -3897,7 +3924,7 @@ input[type="button"].btn-block {
|
|||||||
.input-group-lg > .form-control,
|
.input-group-lg > .form-control,
|
||||||
.input-group-lg > .input-group-addon,
|
.input-group-lg > .input-group-addon,
|
||||||
.input-group-lg > .input-group-btn > .btn {
|
.input-group-lg > .input-group-btn > .btn {
|
||||||
height: 45px;
|
height: 46px;
|
||||||
padding: 10px 16px;
|
padding: 10px 16px;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
line-height: 1.33;
|
line-height: 1.33;
|
||||||
@ -3907,8 +3934,8 @@ input[type="button"].btn-block {
|
|||||||
select.input-group-lg > .form-control,
|
select.input-group-lg > .form-control,
|
||||||
select.input-group-lg > .input-group-addon,
|
select.input-group-lg > .input-group-addon,
|
||||||
select.input-group-lg > .input-group-btn > .btn {
|
select.input-group-lg > .input-group-btn > .btn {
|
||||||
height: 45px;
|
height: 46px;
|
||||||
line-height: 45px;
|
line-height: 46px;
|
||||||
}
|
}
|
||||||
|
|
||||||
textarea.input-group-lg > .form-control,
|
textarea.input-group-lg > .form-control,
|
||||||
@ -4102,13 +4129,6 @@ textarea.input-group-sm > .input-group-btn > .btn {
|
|||||||
border-color: #428bca;
|
border-color: #428bca;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav .open > a .caret,
|
|
||||||
.nav .open > a:hover .caret,
|
|
||||||
.nav .open > a:focus .caret {
|
|
||||||
border-top-color: #2a6496;
|
|
||||||
border-bottom-color: #2a6496;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav .nav-divider {
|
.nav .nav-divider {
|
||||||
height: 1px;
|
height: 1px;
|
||||||
margin: 9px 0;
|
margin: 9px 0;
|
||||||
@ -4221,13 +4241,6 @@ textarea.input-group-sm > .input-group-btn > .btn {
|
|||||||
background-color: #428bca;
|
background-color: #428bca;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-pills > li.active > a .caret,
|
|
||||||
.nav-pills > li.active > a:hover .caret,
|
|
||||||
.nav-pills > li.active > a:focus .caret {
|
|
||||||
border-top-color: #ffffff;
|
|
||||||
border-bottom-color: #ffffff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-stacked > li {
|
.nav-stacked > li {
|
||||||
float: none;
|
float: none;
|
||||||
}
|
}
|
||||||
@ -4300,16 +4313,6 @@ textarea.input-group-sm > .input-group-btn > .btn {
|
|||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav .caret {
|
|
||||||
border-top-color: #428bca;
|
|
||||||
border-bottom-color: #428bca;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav a:hover .caret {
|
|
||||||
border-top-color: #2a6496;
|
|
||||||
border-bottom-color: #2a6496;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-tabs .dropdown-menu {
|
.nav-tabs .dropdown-menu {
|
||||||
margin-top: -1px;
|
margin-top: -1px;
|
||||||
border-top-right-radius: 0;
|
border-top-right-radius: 0;
|
||||||
@ -4422,16 +4425,13 @@ textarea.input-group-sm > .input-group-btn > .btn {
|
|||||||
overflow: visible !important;
|
overflow: visible !important;
|
||||||
}
|
}
|
||||||
.navbar-collapse.in {
|
.navbar-collapse.in {
|
||||||
overflow-y: auto;
|
overflow-y: visible;
|
||||||
}
|
}
|
||||||
.navbar-collapse .navbar-nav.navbar-left:first-child {
|
.navbar-fixed-top .navbar-collapse,
|
||||||
margin-left: -15px;
|
.navbar-static-top .navbar-collapse,
|
||||||
}
|
.navbar-fixed-bottom .navbar-collapse {
|
||||||
.navbar-collapse .navbar-nav.navbar-right:last-child {
|
padding-right: 0;
|
||||||
margin-right: -15px;
|
padding-left: 0;
|
||||||
}
|
|
||||||
.navbar-collapse .navbar-text:last-child {
|
|
||||||
margin-right: 0;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -4512,6 +4512,7 @@ textarea.input-group-sm > .input-group-btn > .btn {
|
|||||||
margin-right: 15px;
|
margin-right: 15px;
|
||||||
margin-bottom: 8px;
|
margin-bottom: 8px;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
|
background-image: none;
|
||||||
border: 1px solid transparent;
|
border: 1px solid transparent;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
}
|
}
|
||||||
@ -4578,6 +4579,9 @@ textarea.input-group-sm > .input-group-btn > .btn {
|
|||||||
padding-top: 15px;
|
padding-top: 15px;
|
||||||
padding-bottom: 15px;
|
padding-bottom: 15px;
|
||||||
}
|
}
|
||||||
|
.navbar-nav.navbar-right:last-child {
|
||||||
|
margin-right: -15px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
@ -4610,6 +4614,9 @@ textarea.input-group-sm > .input-group-btn > .btn {
|
|||||||
.navbar-form .form-control {
|
.navbar-form .form-control {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
.navbar-form select.form-control {
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
.navbar-form .radio,
|
.navbar-form .radio,
|
||||||
.navbar-form .checkbox {
|
.navbar-form .checkbox {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
@ -4641,6 +4648,9 @@ textarea.input-group-sm > .input-group-btn > .btn {
|
|||||||
-webkit-box-shadow: none;
|
-webkit-box-shadow: none;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
|
.navbar-form.navbar-right:last-child {
|
||||||
|
margin-right: -15px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar-nav > li > .dropdown-menu {
|
.navbar-nav > li > .dropdown-menu {
|
||||||
@ -4665,17 +4675,30 @@ textarea.input-group-sm > .input-group-btn > .btn {
|
|||||||
margin-bottom: 8px;
|
margin-bottom: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.navbar-btn.btn-sm {
|
||||||
|
margin-top: 10px;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar-btn.btn-xs {
|
||||||
|
margin-top: 14px;
|
||||||
|
margin-bottom: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
.navbar-text {
|
.navbar-text {
|
||||||
float: left;
|
|
||||||
margin-top: 15px;
|
margin-top: 15px;
|
||||||
margin-bottom: 15px;
|
margin-bottom: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
.navbar-text {
|
.navbar-text {
|
||||||
|
float: left;
|
||||||
margin-right: 15px;
|
margin-right: 15px;
|
||||||
margin-left: 15px;
|
margin-left: 15px;
|
||||||
}
|
}
|
||||||
|
.navbar-text.navbar-right:last-child {
|
||||||
|
margin-right: 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar-default {
|
.navbar-default {
|
||||||
@ -4739,12 +4762,6 @@ textarea.input-group-sm > .input-group-btn > .btn {
|
|||||||
border-color: #e7e7e7;
|
border-color: #e7e7e7;
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar-default .navbar-nav > .dropdown > a:hover .caret,
|
|
||||||
.navbar-default .navbar-nav > .dropdown > a:focus .caret {
|
|
||||||
border-top-color: #333333;
|
|
||||||
border-bottom-color: #333333;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-default .navbar-nav > .open > a,
|
.navbar-default .navbar-nav > .open > a,
|
||||||
.navbar-default .navbar-nav > .open > a:hover,
|
.navbar-default .navbar-nav > .open > a:hover,
|
||||||
.navbar-default .navbar-nav > .open > a:focus {
|
.navbar-default .navbar-nav > .open > a:focus {
|
||||||
@ -4752,18 +4769,6 @@ textarea.input-group-sm > .input-group-btn > .btn {
|
|||||||
background-color: #e7e7e7;
|
background-color: #e7e7e7;
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar-default .navbar-nav > .open > a .caret,
|
|
||||||
.navbar-default .navbar-nav > .open > a:hover .caret,
|
|
||||||
.navbar-default .navbar-nav > .open > a:focus .caret {
|
|
||||||
border-top-color: #555555;
|
|
||||||
border-bottom-color: #555555;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-default .navbar-nav > .dropdown > a .caret {
|
|
||||||
border-top-color: #777777;
|
|
||||||
border-bottom-color: #777777;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 767px) {
|
@media (max-width: 767px) {
|
||||||
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
|
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
|
||||||
color: #777777;
|
color: #777777;
|
||||||
@ -4863,27 +4868,13 @@ textarea.input-group-sm > .input-group-btn > .btn {
|
|||||||
background-color: #080808;
|
background-color: #080808;
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar-inverse .navbar-nav > .dropdown > a:hover .caret {
|
|
||||||
border-top-color: #ffffff;
|
|
||||||
border-bottom-color: #ffffff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-inverse .navbar-nav > .dropdown > a .caret {
|
|
||||||
border-top-color: #999999;
|
|
||||||
border-bottom-color: #999999;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-inverse .navbar-nav > .open > a .caret,
|
|
||||||
.navbar-inverse .navbar-nav > .open > a:hover .caret,
|
|
||||||
.navbar-inverse .navbar-nav > .open > a:focus .caret {
|
|
||||||
border-top-color: #ffffff;
|
|
||||||
border-bottom-color: #ffffff;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 767px) {
|
@media (max-width: 767px) {
|
||||||
.navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
|
.navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
|
||||||
border-color: #080808;
|
border-color: #080808;
|
||||||
}
|
}
|
||||||
|
.navbar-inverse .navbar-nav .open .dropdown-menu .divider {
|
||||||
|
background-color: #080808;
|
||||||
|
}
|
||||||
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
|
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
|
||||||
color: #999999;
|
color: #999999;
|
||||||
}
|
}
|
||||||
@ -5129,6 +5120,11 @@ textarea.input-group-sm > .input-group-btn > .btn {
|
|||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.btn .label {
|
||||||
|
position: relative;
|
||||||
|
top: -1px;
|
||||||
|
}
|
||||||
|
|
||||||
.label-default {
|
.label-default {
|
||||||
background-color: #999999;
|
background-color: #999999;
|
||||||
}
|
}
|
||||||
@ -5202,6 +5198,11 @@ textarea.input-group-sm > .input-group-btn > .btn {
|
|||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.btn .badge {
|
||||||
|
position: relative;
|
||||||
|
top: -1px;
|
||||||
|
}
|
||||||
|
|
||||||
a.badge:hover,
|
a.badge:hover,
|
||||||
a.badge:focus {
|
a.badge:focus {
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
@ -5209,11 +5210,6 @@ a.badge:focus {
|
|||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn .badge {
|
|
||||||
position: relative;
|
|
||||||
top: -1px;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.list-group-item.active > .badge,
|
a.list-group-item.active > .badge,
|
||||||
.nav-pills > .active > a > .badge {
|
.nav-pills > .active > a > .badge {
|
||||||
color: #428bca;
|
color: #428bca;
|
||||||
@ -5234,7 +5230,8 @@ a.list-group-item.active > .badge,
|
|||||||
background-color: #eeeeee;
|
background-color: #eeeeee;
|
||||||
}
|
}
|
||||||
|
|
||||||
.jumbotron h1 {
|
.jumbotron h1,
|
||||||
|
.jumbotron .h1 {
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
color: inherit;
|
color: inherit;
|
||||||
}
|
}
|
||||||
@ -5247,6 +5244,10 @@ a.list-group-item.active > .badge,
|
|||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.jumbotron .container {
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
@media screen and (min-width: 768px) {
|
@media screen and (min-width: 768px) {
|
||||||
.jumbotron {
|
.jumbotron {
|
||||||
padding-top: 48px;
|
padding-top: 48px;
|
||||||
@ -5256,16 +5257,14 @@ a.list-group-item.active > .badge,
|
|||||||
padding-right: 60px;
|
padding-right: 60px;
|
||||||
padding-left: 60px;
|
padding-left: 60px;
|
||||||
}
|
}
|
||||||
.jumbotron h1 {
|
.jumbotron h1,
|
||||||
|
.jumbotron .h1 {
|
||||||
font-size: 63px;
|
font-size: 63px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.thumbnail {
|
.thumbnail {
|
||||||
display: inline-block;
|
|
||||||
display: block;
|
display: block;
|
||||||
height: auto;
|
|
||||||
max-width: 100%;
|
|
||||||
padding: 4px;
|
padding: 4px;
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
line-height: 1.428571429;
|
line-height: 1.428571429;
|
||||||
@ -5276,7 +5275,8 @@ a.list-group-item.active > .badge,
|
|||||||
transition: all 0.2s ease-in-out;
|
transition: all 0.2s ease-in-out;
|
||||||
}
|
}
|
||||||
|
|
||||||
.thumbnail > img {
|
.thumbnail > img,
|
||||||
|
.thumbnail a > img {
|
||||||
display: block;
|
display: block;
|
||||||
height: auto;
|
height: auto;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
@ -5332,7 +5332,7 @@ a.thumbnail.active {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.alert-success {
|
.alert-success {
|
||||||
color: #468847;
|
color: #3c763d;
|
||||||
background-color: #dff0d8;
|
background-color: #dff0d8;
|
||||||
border-color: #d6e9c6;
|
border-color: #d6e9c6;
|
||||||
}
|
}
|
||||||
@ -5342,11 +5342,11 @@ a.thumbnail.active {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.alert-success .alert-link {
|
.alert-success .alert-link {
|
||||||
color: #356635;
|
color: #2b542c;
|
||||||
}
|
}
|
||||||
|
|
||||||
.alert-info {
|
.alert-info {
|
||||||
color: #3a87ad;
|
color: #31708f;
|
||||||
background-color: #d9edf7;
|
background-color: #d9edf7;
|
||||||
border-color: #bce8f1;
|
border-color: #bce8f1;
|
||||||
}
|
}
|
||||||
@ -5356,11 +5356,11 @@ a.thumbnail.active {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.alert-info .alert-link {
|
.alert-info .alert-link {
|
||||||
color: #2d6987;
|
color: #245269;
|
||||||
}
|
}
|
||||||
|
|
||||||
.alert-warning {
|
.alert-warning {
|
||||||
color: #c09853;
|
color: #8a6d3b;
|
||||||
background-color: #fcf8e3;
|
background-color: #fcf8e3;
|
||||||
border-color: #faebcc;
|
border-color: #faebcc;
|
||||||
}
|
}
|
||||||
@ -5370,11 +5370,11 @@ a.thumbnail.active {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.alert-warning .alert-link {
|
.alert-warning .alert-link {
|
||||||
color: #a47e3c;
|
color: #66512c;
|
||||||
}
|
}
|
||||||
|
|
||||||
.alert-danger {
|
.alert-danger {
|
||||||
color: #b94a48;
|
color: #a94442;
|
||||||
background-color: #f2dede;
|
background-color: #f2dede;
|
||||||
border-color: #ebccd1;
|
border-color: #ebccd1;
|
||||||
}
|
}
|
||||||
@ -5384,7 +5384,7 @@ a.thumbnail.active {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.alert-danger .alert-link {
|
.alert-danger .alert-link {
|
||||||
color: #953b39;
|
color: #843534;
|
||||||
}
|
}
|
||||||
|
|
||||||
@-webkit-keyframes progress-bar-stripes {
|
@-webkit-keyframes progress-bar-stripes {
|
||||||
@ -5396,24 +5396,6 @@ a.thumbnail.active {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@-moz-keyframes progress-bar-stripes {
|
|
||||||
from {
|
|
||||||
background-position: 40px 0;
|
|
||||||
}
|
|
||||||
to {
|
|
||||||
background-position: 0 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@-o-keyframes progress-bar-stripes {
|
|
||||||
from {
|
|
||||||
background-position: 0 0;
|
|
||||||
}
|
|
||||||
to {
|
|
||||||
background-position: 40px 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes progress-bar-stripes {
|
@keyframes progress-bar-stripes {
|
||||||
from {
|
from {
|
||||||
background-position: 40px 0;
|
background-position: 40px 0;
|
||||||
@ -5449,9 +5431,7 @@ a.thumbnail.active {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.progress-striped .progress-bar {
|
.progress-striped .progress-bar {
|
||||||
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
|
|
||||||
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||||||
background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
|
||||||
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||||||
background-size: 40px 40px;
|
background-size: 40px 40px;
|
||||||
}
|
}
|
||||||
@ -5466,9 +5446,7 @@ a.thumbnail.active {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.progress-striped .progress-bar-success {
|
.progress-striped .progress-bar-success {
|
||||||
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
|
|
||||||
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||||||
background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
|
||||||
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -5477,9 +5455,7 @@ a.thumbnail.active {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.progress-striped .progress-bar-info {
|
.progress-striped .progress-bar-info {
|
||||||
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
|
|
||||||
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||||||
background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
|
||||||
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -5488,9 +5464,7 @@ a.thumbnail.active {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.progress-striped .progress-bar-warning {
|
.progress-striped .progress-bar-warning {
|
||||||
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
|
|
||||||
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||||||
background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
|
||||||
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -5499,9 +5473,7 @@ a.thumbnail.active {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.progress-striped .progress-bar-danger {
|
.progress-striped .progress-bar-danger {
|
||||||
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
|
|
||||||
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||||||
background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
|
||||||
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -5674,7 +5646,7 @@ a.list-group-item.active:focus .list-group-item-text {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.panel > .table,
|
.panel > .table,
|
||||||
.panel > .table-responsive {
|
.panel > .table-responsive > .table {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -5683,6 +5655,11 @@ a.list-group-item.active:focus .list-group-item-text {
|
|||||||
border-top: 1px solid #dddddd;
|
border-top: 1px solid #dddddd;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.panel > .table > tbody:first-child th,
|
||||||
|
.panel > .table > tbody:first-child td {
|
||||||
|
border-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.panel > .table-bordered,
|
.panel > .table-bordered,
|
||||||
.panel > .table-responsive > .table-bordered {
|
.panel > .table-responsive > .table-bordered {
|
||||||
border: 0;
|
border: 0;
|
||||||
@ -5733,6 +5710,11 @@ a.list-group-item.active:focus .list-group-item-text {
|
|||||||
border-bottom: 0;
|
border-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.panel > .table-responsive {
|
||||||
|
margin-bottom: 0;
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.panel-heading {
|
.panel-heading {
|
||||||
padding: 10px 15px;
|
padding: 10px 15px;
|
||||||
border-bottom: 1px solid transparent;
|
border-bottom: 1px solid transparent;
|
||||||
@ -5748,6 +5730,7 @@ a.list-group-item.active:focus .list-group-item-text {
|
|||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
|
color: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
.panel-title > a {
|
.panel-title > a {
|
||||||
@ -5802,10 +5785,6 @@ a.list-group-item.active:focus .list-group-item-text {
|
|||||||
border-top-color: #dddddd;
|
border-top-color: #dddddd;
|
||||||
}
|
}
|
||||||
|
|
||||||
.panel-default > .panel-heading > .dropdown .caret {
|
|
||||||
border-color: #333333 transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
.panel-default > .panel-footer + .panel-collapse .panel-body {
|
.panel-default > .panel-footer + .panel-collapse .panel-body {
|
||||||
border-bottom-color: #dddddd;
|
border-bottom-color: #dddddd;
|
||||||
}
|
}
|
||||||
@ -5824,10 +5803,6 @@ a.list-group-item.active:focus .list-group-item-text {
|
|||||||
border-top-color: #428bca;
|
border-top-color: #428bca;
|
||||||
}
|
}
|
||||||
|
|
||||||
.panel-primary > .panel-heading > .dropdown .caret {
|
|
||||||
border-color: #ffffff transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
.panel-primary > .panel-footer + .panel-collapse .panel-body {
|
.panel-primary > .panel-footer + .panel-collapse .panel-body {
|
||||||
border-bottom-color: #428bca;
|
border-bottom-color: #428bca;
|
||||||
}
|
}
|
||||||
@ -5837,7 +5812,7 @@ a.list-group-item.active:focus .list-group-item-text {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.panel-success > .panel-heading {
|
.panel-success > .panel-heading {
|
||||||
color: #468847;
|
color: #3c763d;
|
||||||
background-color: #dff0d8;
|
background-color: #dff0d8;
|
||||||
border-color: #d6e9c6;
|
border-color: #d6e9c6;
|
||||||
}
|
}
|
||||||
@ -5846,10 +5821,6 @@ a.list-group-item.active:focus .list-group-item-text {
|
|||||||
border-top-color: #d6e9c6;
|
border-top-color: #d6e9c6;
|
||||||
}
|
}
|
||||||
|
|
||||||
.panel-success > .panel-heading > .dropdown .caret {
|
|
||||||
border-color: #468847 transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
.panel-success > .panel-footer + .panel-collapse .panel-body {
|
.panel-success > .panel-footer + .panel-collapse .panel-body {
|
||||||
border-bottom-color: #d6e9c6;
|
border-bottom-color: #d6e9c6;
|
||||||
}
|
}
|
||||||
@ -5859,7 +5830,7 @@ a.list-group-item.active:focus .list-group-item-text {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.panel-warning > .panel-heading {
|
.panel-warning > .panel-heading {
|
||||||
color: #c09853;
|
color: #8a6d3b;
|
||||||
background-color: #fcf8e3;
|
background-color: #fcf8e3;
|
||||||
border-color: #faebcc;
|
border-color: #faebcc;
|
||||||
}
|
}
|
||||||
@ -5868,10 +5839,6 @@ a.list-group-item.active:focus .list-group-item-text {
|
|||||||
border-top-color: #faebcc;
|
border-top-color: #faebcc;
|
||||||
}
|
}
|
||||||
|
|
||||||
.panel-warning > .panel-heading > .dropdown .caret {
|
|
||||||
border-color: #c09853 transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
.panel-warning > .panel-footer + .panel-collapse .panel-body {
|
.panel-warning > .panel-footer + .panel-collapse .panel-body {
|
||||||
border-bottom-color: #faebcc;
|
border-bottom-color: #faebcc;
|
||||||
}
|
}
|
||||||
@ -5881,7 +5848,7 @@ a.list-group-item.active:focus .list-group-item-text {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.panel-danger > .panel-heading {
|
.panel-danger > .panel-heading {
|
||||||
color: #b94a48;
|
color: #a94442;
|
||||||
background-color: #f2dede;
|
background-color: #f2dede;
|
||||||
border-color: #ebccd1;
|
border-color: #ebccd1;
|
||||||
}
|
}
|
||||||
@ -5890,10 +5857,6 @@ a.list-group-item.active:focus .list-group-item-text {
|
|||||||
border-top-color: #ebccd1;
|
border-top-color: #ebccd1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.panel-danger > .panel-heading > .dropdown .caret {
|
|
||||||
border-color: #b94a48 transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
.panel-danger > .panel-footer + .panel-collapse .panel-body {
|
.panel-danger > .panel-footer + .panel-collapse .panel-body {
|
||||||
border-bottom-color: #ebccd1;
|
border-bottom-color: #ebccd1;
|
||||||
}
|
}
|
||||||
@ -5903,7 +5866,7 @@ a.list-group-item.active:focus .list-group-item-text {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.panel-info > .panel-heading {
|
.panel-info > .panel-heading {
|
||||||
color: #3a87ad;
|
color: #31708f;
|
||||||
background-color: #d9edf7;
|
background-color: #d9edf7;
|
||||||
border-color: #bce8f1;
|
border-color: #bce8f1;
|
||||||
}
|
}
|
||||||
@ -5912,10 +5875,6 @@ a.list-group-item.active:focus .list-group-item-text {
|
|||||||
border-top-color: #bce8f1;
|
border-top-color: #bce8f1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.panel-info > .panel-heading > .dropdown .caret {
|
|
||||||
border-color: #3a87ad transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
.panel-info > .panel-footer + .panel-collapse .panel-body {
|
.panel-info > .panel-footer + .panel-collapse .panel-body {
|
||||||
border-bottom-color: #bce8f1;
|
border-bottom-color: #bce8f1;
|
||||||
}
|
}
|
||||||
@ -6010,9 +5969,7 @@ button.close {
|
|||||||
position: relative;
|
position: relative;
|
||||||
z-index: 1050;
|
z-index: 1050;
|
||||||
width: auto;
|
width: auto;
|
||||||
padding: 10px;
|
margin: 10px;
|
||||||
margin-right: auto;
|
|
||||||
margin-left: auto;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.modal-content {
|
.modal-content {
|
||||||
@ -6110,8 +6067,7 @@ button.close {
|
|||||||
@media screen and (min-width: 768px) {
|
@media screen and (min-width: 768px) {
|
||||||
.modal-dialog {
|
.modal-dialog {
|
||||||
width: 600px;
|
width: 600px;
|
||||||
padding-top: 30px;
|
margin: 30px auto;
|
||||||
padding-bottom: 30px;
|
|
||||||
}
|
}
|
||||||
.modal-content {
|
.modal-content {
|
||||||
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
|
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
|
||||||
@ -6448,9 +6404,7 @@ button.close {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.carousel-control.left {
|
.carousel-control.left {
|
||||||
background-image: -webkit-gradient(linear, 0 top, 100% top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
|
|
||||||
background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0), color-stop(rgba(0, 0, 0, 0.0001) 100%));
|
background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0), color-stop(rgba(0, 0, 0, 0.0001) 100%));
|
||||||
background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
|
|
||||||
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
|
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
|
||||||
background-repeat: repeat-x;
|
background-repeat: repeat-x;
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
|
||||||
@ -6459,9 +6413,7 @@ button.close {
|
|||||||
.carousel-control.right {
|
.carousel-control.right {
|
||||||
right: 0;
|
right: 0;
|
||||||
left: auto;
|
left: auto;
|
||||||
background-image: -webkit-gradient(linear, 0 top, 100% top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
|
|
||||||
background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0), color-stop(rgba(0, 0, 0, 0.5) 100%));
|
background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0), color-stop(rgba(0, 0, 0, 0.5) 100%));
|
||||||
background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
|
|
||||||
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
|
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
|
||||||
background-repeat: repeat-x;
|
background-repeat: repeat-x;
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
|
||||||
@ -6471,6 +6423,7 @@ button.close {
|
|||||||
.carousel-control:focus {
|
.carousel-control:focus {
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
outline: none;
|
||||||
opacity: 0.9;
|
opacity: 0.9;
|
||||||
filter: alpha(opacity=90);
|
filter: alpha(opacity=90);
|
||||||
}
|
}
|
||||||
@ -6650,6 +6603,9 @@ td.visible-xs {
|
|||||||
.visible-xs {
|
.visible-xs {
|
||||||
display: block !important;
|
display: block !important;
|
||||||
}
|
}
|
||||||
|
table.visible-xs {
|
||||||
|
display: table;
|
||||||
|
}
|
||||||
tr.visible-xs {
|
tr.visible-xs {
|
||||||
display: table-row !important;
|
display: table-row !important;
|
||||||
}
|
}
|
||||||
@ -6663,6 +6619,9 @@ td.visible-xs {
|
|||||||
.visible-xs.visible-sm {
|
.visible-xs.visible-sm {
|
||||||
display: block !important;
|
display: block !important;
|
||||||
}
|
}
|
||||||
|
table.visible-xs.visible-sm {
|
||||||
|
display: table;
|
||||||
|
}
|
||||||
tr.visible-xs.visible-sm {
|
tr.visible-xs.visible-sm {
|
||||||
display: table-row !important;
|
display: table-row !important;
|
||||||
}
|
}
|
||||||
@ -6676,6 +6635,9 @@ td.visible-xs {
|
|||||||
.visible-xs.visible-md {
|
.visible-xs.visible-md {
|
||||||
display: block !important;
|
display: block !important;
|
||||||
}
|
}
|
||||||
|
table.visible-xs.visible-md {
|
||||||
|
display: table;
|
||||||
|
}
|
||||||
tr.visible-xs.visible-md {
|
tr.visible-xs.visible-md {
|
||||||
display: table-row !important;
|
display: table-row !important;
|
||||||
}
|
}
|
||||||
@ -6689,6 +6651,9 @@ td.visible-xs {
|
|||||||
.visible-xs.visible-lg {
|
.visible-xs.visible-lg {
|
||||||
display: block !important;
|
display: block !important;
|
||||||
}
|
}
|
||||||
|
table.visible-xs.visible-lg {
|
||||||
|
display: table;
|
||||||
|
}
|
||||||
tr.visible-xs.visible-lg {
|
tr.visible-xs.visible-lg {
|
||||||
display: table-row !important;
|
display: table-row !important;
|
||||||
}
|
}
|
||||||
@ -6709,6 +6674,9 @@ td.visible-sm {
|
|||||||
.visible-sm.visible-xs {
|
.visible-sm.visible-xs {
|
||||||
display: block !important;
|
display: block !important;
|
||||||
}
|
}
|
||||||
|
table.visible-sm.visible-xs {
|
||||||
|
display: table;
|
||||||
|
}
|
||||||
tr.visible-sm.visible-xs {
|
tr.visible-sm.visible-xs {
|
||||||
display: table-row !important;
|
display: table-row !important;
|
||||||
}
|
}
|
||||||
@ -6722,6 +6690,9 @@ td.visible-sm {
|
|||||||
.visible-sm {
|
.visible-sm {
|
||||||
display: block !important;
|
display: block !important;
|
||||||
}
|
}
|
||||||
|
table.visible-sm {
|
||||||
|
display: table;
|
||||||
|
}
|
||||||
tr.visible-sm {
|
tr.visible-sm {
|
||||||
display: table-row !important;
|
display: table-row !important;
|
||||||
}
|
}
|
||||||
@ -6735,6 +6706,9 @@ td.visible-sm {
|
|||||||
.visible-sm.visible-md {
|
.visible-sm.visible-md {
|
||||||
display: block !important;
|
display: block !important;
|
||||||
}
|
}
|
||||||
|
table.visible-sm.visible-md {
|
||||||
|
display: table;
|
||||||
|
}
|
||||||
tr.visible-sm.visible-md {
|
tr.visible-sm.visible-md {
|
||||||
display: table-row !important;
|
display: table-row !important;
|
||||||
}
|
}
|
||||||
@ -6748,6 +6722,9 @@ td.visible-sm {
|
|||||||
.visible-sm.visible-lg {
|
.visible-sm.visible-lg {
|
||||||
display: block !important;
|
display: block !important;
|
||||||
}
|
}
|
||||||
|
table.visible-sm.visible-lg {
|
||||||
|
display: table;
|
||||||
|
}
|
||||||
tr.visible-sm.visible-lg {
|
tr.visible-sm.visible-lg {
|
||||||
display: table-row !important;
|
display: table-row !important;
|
||||||
}
|
}
|
||||||
@ -6768,6 +6745,9 @@ td.visible-md {
|
|||||||
.visible-md.visible-xs {
|
.visible-md.visible-xs {
|
||||||
display: block !important;
|
display: block !important;
|
||||||
}
|
}
|
||||||
|
table.visible-md.visible-xs {
|
||||||
|
display: table;
|
||||||
|
}
|
||||||
tr.visible-md.visible-xs {
|
tr.visible-md.visible-xs {
|
||||||
display: table-row !important;
|
display: table-row !important;
|
||||||
}
|
}
|
||||||
@ -6781,6 +6761,9 @@ td.visible-md {
|
|||||||
.visible-md.visible-sm {
|
.visible-md.visible-sm {
|
||||||
display: block !important;
|
display: block !important;
|
||||||
}
|
}
|
||||||
|
table.visible-md.visible-sm {
|
||||||
|
display: table;
|
||||||
|
}
|
||||||
tr.visible-md.visible-sm {
|
tr.visible-md.visible-sm {
|
||||||
display: table-row !important;
|
display: table-row !important;
|
||||||
}
|
}
|
||||||
@ -6794,6 +6777,9 @@ td.visible-md {
|
|||||||
.visible-md {
|
.visible-md {
|
||||||
display: block !important;
|
display: block !important;
|
||||||
}
|
}
|
||||||
|
table.visible-md {
|
||||||
|
display: table;
|
||||||
|
}
|
||||||
tr.visible-md {
|
tr.visible-md {
|
||||||
display: table-row !important;
|
display: table-row !important;
|
||||||
}
|
}
|
||||||
@ -6807,6 +6793,9 @@ td.visible-md {
|
|||||||
.visible-md.visible-lg {
|
.visible-md.visible-lg {
|
||||||
display: block !important;
|
display: block !important;
|
||||||
}
|
}
|
||||||
|
table.visible-md.visible-lg {
|
||||||
|
display: table;
|
||||||
|
}
|
||||||
tr.visible-md.visible-lg {
|
tr.visible-md.visible-lg {
|
||||||
display: table-row !important;
|
display: table-row !important;
|
||||||
}
|
}
|
||||||
@ -6827,6 +6816,9 @@ td.visible-lg {
|
|||||||
.visible-lg.visible-xs {
|
.visible-lg.visible-xs {
|
||||||
display: block !important;
|
display: block !important;
|
||||||
}
|
}
|
||||||
|
table.visible-lg.visible-xs {
|
||||||
|
display: table;
|
||||||
|
}
|
||||||
tr.visible-lg.visible-xs {
|
tr.visible-lg.visible-xs {
|
||||||
display: table-row !important;
|
display: table-row !important;
|
||||||
}
|
}
|
||||||
@ -6840,6 +6832,9 @@ td.visible-lg {
|
|||||||
.visible-lg.visible-sm {
|
.visible-lg.visible-sm {
|
||||||
display: block !important;
|
display: block !important;
|
||||||
}
|
}
|
||||||
|
table.visible-lg.visible-sm {
|
||||||
|
display: table;
|
||||||
|
}
|
||||||
tr.visible-lg.visible-sm {
|
tr.visible-lg.visible-sm {
|
||||||
display: table-row !important;
|
display: table-row !important;
|
||||||
}
|
}
|
||||||
@ -6853,6 +6848,9 @@ td.visible-lg {
|
|||||||
.visible-lg.visible-md {
|
.visible-lg.visible-md {
|
||||||
display: block !important;
|
display: block !important;
|
||||||
}
|
}
|
||||||
|
table.visible-lg.visible-md {
|
||||||
|
display: table;
|
||||||
|
}
|
||||||
tr.visible-lg.visible-md {
|
tr.visible-lg.visible-md {
|
||||||
display: table-row !important;
|
display: table-row !important;
|
||||||
}
|
}
|
||||||
@ -6866,6 +6864,9 @@ td.visible-lg {
|
|||||||
.visible-lg {
|
.visible-lg {
|
||||||
display: block !important;
|
display: block !important;
|
||||||
}
|
}
|
||||||
|
table.visible-lg {
|
||||||
|
display: table;
|
||||||
|
}
|
||||||
tr.visible-lg {
|
tr.visible-lg {
|
||||||
display: table-row !important;
|
display: table-row !important;
|
||||||
}
|
}
|
||||||
@ -6879,6 +6880,10 @@ td.visible-lg {
|
|||||||
display: block !important;
|
display: block !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
table.hidden-xs {
|
||||||
|
display: table;
|
||||||
|
}
|
||||||
|
|
||||||
tr.hidden-xs {
|
tr.hidden-xs {
|
||||||
display: table-row !important;
|
display: table-row !important;
|
||||||
}
|
}
|
||||||
@ -6928,6 +6933,10 @@ td.hidden-xs {
|
|||||||
display: block !important;
|
display: block !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
table.hidden-sm {
|
||||||
|
display: table;
|
||||||
|
}
|
||||||
|
|
||||||
tr.hidden-sm {
|
tr.hidden-sm {
|
||||||
display: table-row !important;
|
display: table-row !important;
|
||||||
}
|
}
|
||||||
@ -6977,6 +6986,10 @@ td.hidden-sm {
|
|||||||
display: block !important;
|
display: block !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
table.hidden-md {
|
||||||
|
display: table;
|
||||||
|
}
|
||||||
|
|
||||||
tr.hidden-md {
|
tr.hidden-md {
|
||||||
display: table-row !important;
|
display: table-row !important;
|
||||||
}
|
}
|
||||||
@ -7026,6 +7039,10 @@ td.hidden-md {
|
|||||||
display: block !important;
|
display: block !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
table.hidden-lg {
|
||||||
|
display: table;
|
||||||
|
}
|
||||||
|
|
||||||
tr.hidden-lg {
|
tr.hidden-lg {
|
||||||
display: table-row !important;
|
display: table-row !important;
|
||||||
}
|
}
|
||||||
@ -7082,6 +7099,9 @@ td.visible-print {
|
|||||||
.visible-print {
|
.visible-print {
|
||||||
display: block !important;
|
display: block !important;
|
||||||
}
|
}
|
||||||
|
table.visible-print {
|
||||||
|
display: table;
|
||||||
|
}
|
||||||
tr.visible-print {
|
tr.visible-print {
|
||||||
display: table-row !important;
|
display: table-row !important;
|
||||||
}
|
}
|
||||||
|
6
dist/css/bootstrap.min.css
vendored
6
dist/css/bootstrap.min.css
vendored
File diff suppressed because one or more lines are too long
60
dist/js/bootstrap.js
vendored
60
dist/js/bootstrap.js
vendored
@ -1,15 +1,13 @@
|
|||||||
/*!
|
/*!
|
||||||
* Bootstrap v3.0.2 by @fat and @mdo
|
* Bootstrap v3.0.3 (http://getbootstrap.com)
|
||||||
* Copyright 2013 Twitter, Inc.
|
* Copyright 2013 Twitter, Inc.
|
||||||
* Licensed under http://www.apache.org/licenses/LICENSE-2.0
|
* Licensed under http://www.apache.org/licenses/LICENSE-2.0
|
||||||
*
|
|
||||||
* Designed and built with all the love in the world by @mdo and @fat.
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if (typeof jQuery === "undefined") { throw new Error("Bootstrap requires jQuery") }
|
if (typeof jQuery === "undefined") { throw new Error("Bootstrap requires jQuery") }
|
||||||
|
|
||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: transition.js v3.0.2
|
* Bootstrap: transition.js v3.0.3
|
||||||
* http://getbootstrap.com/javascript/#transitions
|
* http://getbootstrap.com/javascript/#transitions
|
||||||
* ========================================================================
|
* ========================================================================
|
||||||
* Copyright 2013 Twitter, Inc.
|
* Copyright 2013 Twitter, Inc.
|
||||||
@ -66,7 +64,7 @@ if (typeof jQuery === "undefined") { throw new Error("Bootstrap requires jQuery"
|
|||||||
}(jQuery);
|
}(jQuery);
|
||||||
|
|
||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: alert.js v3.0.2
|
* Bootstrap: alert.js v3.0.3
|
||||||
* http://getbootstrap.com/javascript/#alerts
|
* http://getbootstrap.com/javascript/#alerts
|
||||||
* ========================================================================
|
* ========================================================================
|
||||||
* Copyright 2013 Twitter, Inc.
|
* Copyright 2013 Twitter, Inc.
|
||||||
@ -165,7 +163,7 @@ if (typeof jQuery === "undefined") { throw new Error("Bootstrap requires jQuery"
|
|||||||
}(jQuery);
|
}(jQuery);
|
||||||
|
|
||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: button.js v3.0.2
|
* Bootstrap: button.js v3.0.3
|
||||||
* http://getbootstrap.com/javascript/#buttons
|
* http://getbootstrap.com/javascript/#buttons
|
||||||
* ========================================================================
|
* ========================================================================
|
||||||
* Copyright 2013 Twitter, Inc.
|
* Copyright 2013 Twitter, Inc.
|
||||||
@ -220,15 +218,21 @@ if (typeof jQuery === "undefined") { throw new Error("Bootstrap requires jQuery"
|
|||||||
|
|
||||||
Button.prototype.toggle = function () {
|
Button.prototype.toggle = function () {
|
||||||
var $parent = this.$element.closest('[data-toggle="buttons"]')
|
var $parent = this.$element.closest('[data-toggle="buttons"]')
|
||||||
|
var changed = true
|
||||||
|
|
||||||
if ($parent.length) {
|
if ($parent.length) {
|
||||||
var $input = this.$element.find('input')
|
var $input = this.$element.find('input')
|
||||||
.prop('checked', !this.$element.hasClass('active'))
|
if ($input.prop('type') === 'radio') {
|
||||||
.trigger('change')
|
// see if clicking on current one
|
||||||
if ($input.prop('type') === 'radio') $parent.find('.active').removeClass('active')
|
if ($input.prop('checked') && this.$element.hasClass('active'))
|
||||||
|
changed = false
|
||||||
|
else
|
||||||
|
$parent.find('.active').removeClass('active')
|
||||||
|
}
|
||||||
|
if (changed) $input.prop('checked', !this.$element.hasClass('active')).trigger('change')
|
||||||
}
|
}
|
||||||
|
|
||||||
this.$element.toggleClass('active')
|
if (changed) this.$element.toggleClass('active')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -275,7 +279,7 @@ if (typeof jQuery === "undefined") { throw new Error("Bootstrap requires jQuery"
|
|||||||
}(jQuery);
|
}(jQuery);
|
||||||
|
|
||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: carousel.js v3.0.2
|
* Bootstrap: carousel.js v3.0.3
|
||||||
* http://getbootstrap.com/javascript/#carousel
|
* http://getbootstrap.com/javascript/#carousel
|
||||||
* ========================================================================
|
* ========================================================================
|
||||||
* Copyright 2013 Twitter, Inc.
|
* Copyright 2013 Twitter, Inc.
|
||||||
@ -345,7 +349,7 @@ if (typeof jQuery === "undefined") { throw new Error("Bootstrap requires jQuery"
|
|||||||
|
|
||||||
if (pos > (this.$items.length - 1) || pos < 0) return
|
if (pos > (this.$items.length - 1) || pos < 0) return
|
||||||
|
|
||||||
if (this.sliding) return this.$element.one('slid', function () { that.to(pos) })
|
if (this.sliding) return this.$element.one('slid.bs.carousel', function () { that.to(pos) })
|
||||||
if (activeIndex == pos) return this.pause().cycle()
|
if (activeIndex == pos) return this.pause().cycle()
|
||||||
|
|
||||||
return this.slide(pos > activeIndex ? 'next' : 'prev', $(this.$items[pos]))
|
return this.slide(pos > activeIndex ? 'next' : 'prev', $(this.$items[pos]))
|
||||||
@ -397,7 +401,7 @@ if (typeof jQuery === "undefined") { throw new Error("Bootstrap requires jQuery"
|
|||||||
|
|
||||||
if (this.$indicators.length) {
|
if (this.$indicators.length) {
|
||||||
this.$indicators.find('.active').removeClass('active')
|
this.$indicators.find('.active').removeClass('active')
|
||||||
this.$element.one('slid', function () {
|
this.$element.one('slid.bs.carousel', function () {
|
||||||
var $nextIndicator = $(that.$indicators.children()[that.getActiveIndex()])
|
var $nextIndicator = $(that.$indicators.children()[that.getActiveIndex()])
|
||||||
$nextIndicator && $nextIndicator.addClass('active')
|
$nextIndicator && $nextIndicator.addClass('active')
|
||||||
})
|
})
|
||||||
@ -415,7 +419,7 @@ if (typeof jQuery === "undefined") { throw new Error("Bootstrap requires jQuery"
|
|||||||
$next.removeClass([type, direction].join(' ')).addClass('active')
|
$next.removeClass([type, direction].join(' ')).addClass('active')
|
||||||
$active.removeClass(['active', direction].join(' '))
|
$active.removeClass(['active', direction].join(' '))
|
||||||
that.sliding = false
|
that.sliding = false
|
||||||
setTimeout(function () { that.$element.trigger('slid') }, 0)
|
setTimeout(function () { that.$element.trigger('slid.bs.carousel') }, 0)
|
||||||
})
|
})
|
||||||
.emulateTransitionEnd(600)
|
.emulateTransitionEnd(600)
|
||||||
} else {
|
} else {
|
||||||
@ -424,7 +428,7 @@ if (typeof jQuery === "undefined") { throw new Error("Bootstrap requires jQuery"
|
|||||||
$active.removeClass('active')
|
$active.removeClass('active')
|
||||||
$next.addClass('active')
|
$next.addClass('active')
|
||||||
this.sliding = false
|
this.sliding = false
|
||||||
this.$element.trigger('slid')
|
this.$element.trigger('slid.bs.carousel')
|
||||||
}
|
}
|
||||||
|
|
||||||
isCycling && this.cycle()
|
isCycling && this.cycle()
|
||||||
@ -493,7 +497,7 @@ if (typeof jQuery === "undefined") { throw new Error("Bootstrap requires jQuery"
|
|||||||
}(jQuery);
|
}(jQuery);
|
||||||
|
|
||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: collapse.js v3.0.2
|
* Bootstrap: collapse.js v3.0.3
|
||||||
* http://getbootstrap.com/javascript/#collapse
|
* http://getbootstrap.com/javascript/#collapse
|
||||||
* ========================================================================
|
* ========================================================================
|
||||||
* Copyright 2013 Twitter, Inc.
|
* Copyright 2013 Twitter, Inc.
|
||||||
@ -673,7 +677,7 @@ if (typeof jQuery === "undefined") { throw new Error("Bootstrap requires jQuery"
|
|||||||
}(jQuery);
|
}(jQuery);
|
||||||
|
|
||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: dropdown.js v3.0.2
|
* Bootstrap: dropdown.js v3.0.3
|
||||||
* http://getbootstrap.com/javascript/#dropdowns
|
* http://getbootstrap.com/javascript/#dropdowns
|
||||||
* ========================================================================
|
* ========================================================================
|
||||||
* Copyright 2013 Twitter, Inc.
|
* Copyright 2013 Twitter, Inc.
|
||||||
@ -700,7 +704,7 @@ if (typeof jQuery === "undefined") { throw new Error("Bootstrap requires jQuery"
|
|||||||
var backdrop = '.dropdown-backdrop'
|
var backdrop = '.dropdown-backdrop'
|
||||||
var toggle = '[data-toggle=dropdown]'
|
var toggle = '[data-toggle=dropdown]'
|
||||||
var Dropdown = function (element) {
|
var Dropdown = function (element) {
|
||||||
var $el = $(element).on('click.bs.dropdown', this.toggle)
|
$(element).on('click.bs.dropdown', this.toggle)
|
||||||
}
|
}
|
||||||
|
|
||||||
Dropdown.prototype.toggle = function (e) {
|
Dropdown.prototype.toggle = function (e) {
|
||||||
@ -715,7 +719,7 @@ if (typeof jQuery === "undefined") { throw new Error("Bootstrap requires jQuery"
|
|||||||
|
|
||||||
if (!isActive) {
|
if (!isActive) {
|
||||||
if ('ontouchstart' in document.documentElement && !$parent.closest('.navbar-nav').length) {
|
if ('ontouchstart' in document.documentElement && !$parent.closest('.navbar-nav').length) {
|
||||||
// if mobile we we use a backdrop because click events don't delegate
|
// if mobile we use a backdrop because click events don't delegate
|
||||||
$('<div class="dropdown-backdrop"/>').insertAfter($(this)).on('click', clearMenus)
|
$('<div class="dropdown-backdrop"/>').insertAfter($(this)).on('click', clearMenus)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -797,9 +801,9 @@ if (typeof jQuery === "undefined") { throw new Error("Bootstrap requires jQuery"
|
|||||||
$.fn.dropdown = function (option) {
|
$.fn.dropdown = function (option) {
|
||||||
return this.each(function () {
|
return this.each(function () {
|
||||||
var $this = $(this)
|
var $this = $(this)
|
||||||
var data = $this.data('dropdown')
|
var data = $this.data('bs.dropdown')
|
||||||
|
|
||||||
if (!data) $this.data('dropdown', (data = new Dropdown(this)))
|
if (!data) $this.data('bs.dropdown', (data = new Dropdown(this)))
|
||||||
if (typeof option == 'string') data[option].call($this)
|
if (typeof option == 'string') data[option].call($this)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@ -828,7 +832,7 @@ if (typeof jQuery === "undefined") { throw new Error("Bootstrap requires jQuery"
|
|||||||
}(jQuery);
|
}(jQuery);
|
||||||
|
|
||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: modal.js v3.0.2
|
* Bootstrap: modal.js v3.0.3
|
||||||
* http://getbootstrap.com/javascript/#modals
|
* http://getbootstrap.com/javascript/#modals
|
||||||
* ========================================================================
|
* ========================================================================
|
||||||
* Copyright 2013 Twitter, Inc.
|
* Copyright 2013 Twitter, Inc.
|
||||||
@ -1075,7 +1079,7 @@ if (typeof jQuery === "undefined") { throw new Error("Bootstrap requires jQuery"
|
|||||||
}(jQuery);
|
}(jQuery);
|
||||||
|
|
||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: tooltip.js v3.0.2
|
* Bootstrap: tooltip.js v3.0.3
|
||||||
* http://getbootstrap.com/javascript/#tooltip
|
* http://getbootstrap.com/javascript/#tooltip
|
||||||
* Inspired by the original jQuery.tipsy by Jason Frame
|
* Inspired by the original jQuery.tipsy by Jason Frame
|
||||||
* ========================================================================
|
* ========================================================================
|
||||||
@ -1462,7 +1466,7 @@ if (typeof jQuery === "undefined") { throw new Error("Bootstrap requires jQuery"
|
|||||||
}(jQuery);
|
}(jQuery);
|
||||||
|
|
||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: popover.js v3.0.2
|
* Bootstrap: popover.js v3.0.3
|
||||||
* http://getbootstrap.com/javascript/#popovers
|
* http://getbootstrap.com/javascript/#popovers
|
||||||
* ========================================================================
|
* ========================================================================
|
||||||
* Copyright 2013 Twitter, Inc.
|
* Copyright 2013 Twitter, Inc.
|
||||||
@ -1580,7 +1584,7 @@ if (typeof jQuery === "undefined") { throw new Error("Bootstrap requires jQuery"
|
|||||||
}(jQuery);
|
}(jQuery);
|
||||||
|
|
||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: scrollspy.js v3.0.2
|
* Bootstrap: scrollspy.js v3.0.3
|
||||||
* http://getbootstrap.com/javascript/#scrollspy
|
* http://getbootstrap.com/javascript/#scrollspy
|
||||||
* ========================================================================
|
* ========================================================================
|
||||||
* Copyright 2013 Twitter, Inc.
|
* Copyright 2013 Twitter, Inc.
|
||||||
@ -1694,7 +1698,7 @@ if (typeof jQuery === "undefined") { throw new Error("Bootstrap requires jQuery"
|
|||||||
.addClass('active')
|
.addClass('active')
|
||||||
}
|
}
|
||||||
|
|
||||||
active.trigger('activate')
|
active.trigger('activate.bs.scrollspy')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -1739,7 +1743,7 @@ if (typeof jQuery === "undefined") { throw new Error("Bootstrap requires jQuery"
|
|||||||
}(jQuery);
|
}(jQuery);
|
||||||
|
|
||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: tab.js v3.0.2
|
* Bootstrap: tab.js v3.0.3
|
||||||
* http://getbootstrap.com/javascript/#tabs
|
* http://getbootstrap.com/javascript/#tabs
|
||||||
* ========================================================================
|
* ========================================================================
|
||||||
* Copyright 2013 Twitter, Inc.
|
* Copyright 2013 Twitter, Inc.
|
||||||
@ -1875,7 +1879,7 @@ if (typeof jQuery === "undefined") { throw new Error("Bootstrap requires jQuery"
|
|||||||
}(jQuery);
|
}(jQuery);
|
||||||
|
|
||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: affix.js v3.0.2
|
* Bootstrap: affix.js v3.0.3
|
||||||
* http://getbootstrap.com/javascript/#affix
|
* http://getbootstrap.com/javascript/#affix
|
||||||
* ========================================================================
|
* ========================================================================
|
||||||
* Copyright 2013 Twitter, Inc.
|
* Copyright 2013 Twitter, Inc.
|
||||||
|
6
dist/js/bootstrap.min.js
vendored
6
dist/js/bootstrap.min.js
vendored
File diff suppressed because one or more lines are too long
@ -586,14 +586,14 @@ h1[id] {
|
|||||||
border-color: #faebcc;
|
border-color: #faebcc;
|
||||||
}
|
}
|
||||||
.bs-callout-warning h4 {
|
.bs-callout-warning h4 {
|
||||||
color: #c09853;
|
color: #8a6d3b;
|
||||||
}
|
}
|
||||||
.bs-callout-info {
|
.bs-callout-info {
|
||||||
background-color: #f4f8fa;
|
background-color: #f4f8fa;
|
||||||
border-color: #bce8f1;
|
border-color: #bce8f1;
|
||||||
}
|
}
|
||||||
.bs-callout-info h4 {
|
.bs-callout-info h4 {
|
||||||
color: #3a87ad;
|
color: #34789a;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -1062,6 +1062,7 @@ h1[id] {
|
|||||||
.bs-glyphicons .glyphicon-class {
|
.bs-glyphicons .glyphicon-class {
|
||||||
display: block;
|
display: block;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
word-wrap: break-word; /* Help out IE10+ with class names */
|
||||||
}
|
}
|
||||||
.bs-glyphicons li:hover {
|
.bs-glyphicons li:hover {
|
||||||
background-color: rgba(86,61,124,.1);
|
background-color: rgba(86,61,124,.1);
|
||||||
|
@ -100,4 +100,4 @@
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
}(window.jQuery)
|
}(jQuery)
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
|
|
||||||
window.onload = function () { // wait for load in a dumb way because B-0
|
window.onload = function () { // wait for load in a dumb way because B-0
|
||||||
var cw = '/*!\n * Bootstrap v3.0.2\n *\n * Copyright 2013 Twitter, Inc\n * Licensed under the Apache License v2.0\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Designed and built with all the love in the world @twitter by @mdo and @fat.\n */\n\n'
|
var cw = '/*!\n * Bootstrap v3.0.3\n *\n * Copyright 2013 Twitter, Inc\n * Licensed under the Apache License v2.0\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Designed and built with all the love in the world @twitter by @mdo and @fat.\n */\n\n'
|
||||||
|
|
||||||
function showError(msg, err) {
|
function showError(msg, err) {
|
||||||
$('<div id="bsCustomizerAlert" class="bs-customizer-alert">\
|
$('<div id="bsCustomizerAlert" class="bs-customizer-alert">\
|
||||||
@ -231,7 +231,7 @@ window.onload = function () { // wait for load in a dumb way because B-0
|
|||||||
}
|
}
|
||||||
result = {
|
result = {
|
||||||
'bootstrap.css' : cw + tree.toCSS(),
|
'bootstrap.css' : cw + tree.toCSS(),
|
||||||
'bootstrap.min.css' : cw + tree.toCSS({ compress: true })
|
'bootstrap.min.css' : cw + tree.toCSS({ compress: true }).replace(/\n/g, '') // FIXME: remove newline hack once less.js upgraded to v1.4
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
|
@ -14,8 +14,8 @@
|
|||||||
|
|
||||||
/*! @source http://purl.eligrey.com/github/Blob.js/blob/master/Blob.js */
|
/*! @source http://purl.eligrey.com/github/Blob.js/blob/master/Blob.js */
|
||||||
|
|
||||||
if (typeof Blob !== "function" || typeof URL === "undefined")
|
if (!(typeof Blob === "function" || typeof Blob === "object") || typeof URL === "undefined")
|
||||||
if (typeof Blob === "function" && typeof webkitURL !== "undefined") self.URL = webkitURL;
|
if ((typeof Blob === "function" || typeof Blob === "object") && typeof webkitURL !== "undefined") self.URL = webkitURL;
|
||||||
else var Blob = (function (view) {
|
else var Blob = (function (view) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
@ -165,5 +165,235 @@ else var Blob = (function (view) {
|
|||||||
};
|
};
|
||||||
}(self));
|
}(self));
|
||||||
|
|
||||||
|
/* FileSaver.js
|
||||||
|
* A saveAs() FileSaver implementation.
|
||||||
|
* 2013-10-21
|
||||||
|
*
|
||||||
|
* By Eli Grey, http://eligrey.com
|
||||||
|
* License: X11/MIT
|
||||||
|
* See LICENSE.md
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*global self */
|
||||||
|
/*jslint bitwise: true, regexp: true, confusion: true, es5: true, vars: true, white: true,
|
||||||
|
plusplus: true */
|
||||||
|
|
||||||
/*! @source http://purl.eligrey.com/github/FileSaver.js/blob/master/FileSaver.js */
|
/*! @source http://purl.eligrey.com/github/FileSaver.js/blob/master/FileSaver.js */
|
||||||
var saveAs=saveAs||(navigator.msSaveOrOpenBlob&&navigator.msSaveOrOpenBlob.bind(navigator))||(function(h){"use strict";var r=h.document,l=function(){return h.URL||h.webkitURL||h},e=h.URL||h.webkitURL||h,n=r.createElementNS("http://www.w3.org/1999/xhtml","a"),g=!h.externalHost&&"download" in n,j=function(t){var s=r.createEvent("MouseEvents");s.initMouseEvent("click",true,false,h,0,0,0,0,0,false,false,false,false,0,null);t.dispatchEvent(s)},o=h.webkitRequestFileSystem,p=h.requestFileSystem||o||h.mozRequestFileSystem,m=function(s){(h.setImmediate||h.setTimeout)(function(){throw s},0)},c="application/octet-stream",k=0,b=[],i=function(){var t=b.length;while(t--){var s=b[t];if(typeof s==="string"){e.revokeObjectURL(s)}else{s.remove()}}b.length=0},q=function(t,s,w){s=[].concat(s);var v=s.length;while(v--){var x=t["on"+s[v]];if(typeof x==="function"){try{x.call(t,w||t)}catch(u){m(u)}}}},f=function(t,u){var v=this,B=t.type,E=false,x,w,s=function(){var F=l().createObjectURL(t);b.push(F);return F},A=function(){q(v,"writestart progress write writeend".split(" "))},D=function(){if(E||!x){x=s(t)}if(w){w.location.href=x}else{window.open(x,"_blank")}v.readyState=v.DONE;A()},z=function(F){return function(){if(v.readyState!==v.DONE){return F.apply(this,arguments)}}},y={create:true,exclusive:false},C;v.readyState=v.INIT;if(!u){u="download"}if(g){x=s(t);n.href=x;n.download=u;j(n);v.readyState=v.DONE;A();return}if(h.chrome&&B&&B!==c){C=t.slice||t.webkitSlice;t=C.call(t,0,t.size,c);E=true}if(o&&u!=="download"){u+=".download"}if(B===c||o){w=h}if(!p){D();return}k+=t.size;p(h.TEMPORARY,k,z(function(F){F.root.getDirectory("saved",y,z(function(G){var H=function(){G.getFile(u,y,z(function(I){I.createWriter(z(function(J){J.onwriteend=function(K){w.location.href=I.toURL();b.push(I);v.readyState=v.DONE;q(v,"writeend",K)};J.onerror=function(){var K=J.error;if(K.code!==K.ABORT_ERR){D()}};"writestart progress write abort".split(" ").forEach(function(K){J["on"+K]=v["on"+K]});J.write(t);v.abort=function(){J.abort();v.readyState=v.DONE};v.readyState=v.WRITING}),D)}),D)};G.getFile(u,{create:false},z(function(I){I.remove();H()}),z(function(I){if(I.code===I.NOT_FOUND_ERR){H()}else{D()}}))}),D)}),D)},d=f.prototype,a=function(s,t){return new f(s,t)};d.abort=function(){var s=this;s.readyState=s.DONE;q(s,"abort")};d.readyState=d.INIT=0;d.WRITING=1;d.DONE=2;d.error=d.onwritestart=d.onprogress=d.onwrite=d.onabort=d.onerror=d.onwriteend=null;h.addEventListener("unload",i,false);return a}(self));
|
|
||||||
|
var saveAs = saveAs
|
||||||
|
|| (typeof navigator !== 'undefined' && navigator.msSaveOrOpenBlob && navigator.msSaveOrOpenBlob.bind(navigator))
|
||||||
|
|| (function(view) {
|
||||||
|
"use strict";
|
||||||
|
var
|
||||||
|
doc = view.document
|
||||||
|
// only get URL when necessary in case BlobBuilder.js hasn't overridden it yet
|
||||||
|
, get_URL = function() {
|
||||||
|
return view.URL || view.webkitURL || view;
|
||||||
|
}
|
||||||
|
, URL = view.URL || view.webkitURL || view
|
||||||
|
, save_link = doc.createElementNS("http://www.w3.org/1999/xhtml", "a")
|
||||||
|
, can_use_save_link = !view.externalHost && "download" in save_link
|
||||||
|
, click = function(node) {
|
||||||
|
var event = doc.createEvent("MouseEvents");
|
||||||
|
event.initMouseEvent(
|
||||||
|
"click", true, false, view, 0, 0, 0, 0, 0
|
||||||
|
, false, false, false, false, 0, null
|
||||||
|
);
|
||||||
|
node.dispatchEvent(event);
|
||||||
|
}
|
||||||
|
, webkit_req_fs = view.webkitRequestFileSystem
|
||||||
|
, req_fs = view.requestFileSystem || webkit_req_fs || view.mozRequestFileSystem
|
||||||
|
, throw_outside = function (ex) {
|
||||||
|
(view.setImmediate || view.setTimeout)(function() {
|
||||||
|
throw ex;
|
||||||
|
}, 0);
|
||||||
|
}
|
||||||
|
, force_saveable_type = "application/octet-stream"
|
||||||
|
, fs_min_size = 0
|
||||||
|
, deletion_queue = []
|
||||||
|
, process_deletion_queue = function() {
|
||||||
|
var i = deletion_queue.length;
|
||||||
|
while (i--) {
|
||||||
|
var file = deletion_queue[i];
|
||||||
|
if (typeof file === "string") { // file is an object URL
|
||||||
|
URL.revokeObjectURL(file);
|
||||||
|
} else { // file is a File
|
||||||
|
file.remove();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
deletion_queue.length = 0; // clear queue
|
||||||
|
}
|
||||||
|
, dispatch = function(filesaver, event_types, event) {
|
||||||
|
event_types = [].concat(event_types);
|
||||||
|
var i = event_types.length;
|
||||||
|
while (i--) {
|
||||||
|
var listener = filesaver["on" + event_types[i]];
|
||||||
|
if (typeof listener === "function") {
|
||||||
|
try {
|
||||||
|
listener.call(filesaver, event || filesaver);
|
||||||
|
} catch (ex) {
|
||||||
|
throw_outside(ex);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
, FileSaver = function(blob, name) {
|
||||||
|
// First try a.download, then web filesystem, then object URLs
|
||||||
|
var
|
||||||
|
filesaver = this
|
||||||
|
, type = blob.type
|
||||||
|
, blob_changed = false
|
||||||
|
, object_url
|
||||||
|
, target_view
|
||||||
|
, get_object_url = function() {
|
||||||
|
var object_url = get_URL().createObjectURL(blob);
|
||||||
|
deletion_queue.push(object_url);
|
||||||
|
return object_url;
|
||||||
|
}
|
||||||
|
, dispatch_all = function() {
|
||||||
|
dispatch(filesaver, "writestart progress write writeend".split(" "));
|
||||||
|
}
|
||||||
|
// on any filesys errors revert to saving with object URLs
|
||||||
|
, fs_error = function() {
|
||||||
|
// don't create more object URLs than needed
|
||||||
|
if (blob_changed || !object_url) {
|
||||||
|
object_url = get_object_url(blob);
|
||||||
|
}
|
||||||
|
if (target_view) {
|
||||||
|
target_view.location.href = object_url;
|
||||||
|
} else {
|
||||||
|
window.open(object_url, "_blank");
|
||||||
|
}
|
||||||
|
filesaver.readyState = filesaver.DONE;
|
||||||
|
dispatch_all();
|
||||||
|
}
|
||||||
|
, abortable = function(func) {
|
||||||
|
return function() {
|
||||||
|
if (filesaver.readyState !== filesaver.DONE) {
|
||||||
|
return func.apply(this, arguments);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
, create_if_not_found = {create: true, exclusive: false}
|
||||||
|
, slice
|
||||||
|
;
|
||||||
|
filesaver.readyState = filesaver.INIT;
|
||||||
|
if (!name) {
|
||||||
|
name = "download";
|
||||||
|
}
|
||||||
|
if (can_use_save_link) {
|
||||||
|
object_url = get_object_url(blob);
|
||||||
|
// FF for Android has a nasty garbage collection mechanism
|
||||||
|
// that turns all objects that are not pure javascript into 'deadObject'
|
||||||
|
// this means `doc` and `save_link` are unusable and need to be recreated
|
||||||
|
// `view` is usable though:
|
||||||
|
doc = view.document;
|
||||||
|
save_link = doc.createElementNS("http://www.w3.org/1999/xhtml", "a");
|
||||||
|
save_link.href = object_url;
|
||||||
|
save_link.download = name;
|
||||||
|
var event = doc.createEvent("MouseEvents");
|
||||||
|
event.initMouseEvent(
|
||||||
|
"click", true, false, view, 0, 0, 0, 0, 0
|
||||||
|
, false, false, false, false, 0, null
|
||||||
|
);
|
||||||
|
save_link.dispatchEvent(event);
|
||||||
|
filesaver.readyState = filesaver.DONE;
|
||||||
|
dispatch_all();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// Object and web filesystem URLs have a problem saving in Google Chrome when
|
||||||
|
// viewed in a tab, so I force save with application/octet-stream
|
||||||
|
// http://code.google.com/p/chromium/issues/detail?id=91158
|
||||||
|
if (view.chrome && type && type !== force_saveable_type) {
|
||||||
|
slice = blob.slice || blob.webkitSlice;
|
||||||
|
blob = slice.call(blob, 0, blob.size, force_saveable_type);
|
||||||
|
blob_changed = true;
|
||||||
|
}
|
||||||
|
// Since I can't be sure that the guessed media type will trigger a download
|
||||||
|
// in WebKit, I append .download to the filename.
|
||||||
|
// https://bugs.webkit.org/show_bug.cgi?id=65440
|
||||||
|
if (webkit_req_fs && name !== "download") {
|
||||||
|
name += ".download";
|
||||||
|
}
|
||||||
|
if (type === force_saveable_type || webkit_req_fs) {
|
||||||
|
target_view = view;
|
||||||
|
}
|
||||||
|
if (!req_fs) {
|
||||||
|
fs_error();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
fs_min_size += blob.size;
|
||||||
|
req_fs(view.TEMPORARY, fs_min_size, abortable(function(fs) {
|
||||||
|
fs.root.getDirectory("saved", create_if_not_found, abortable(function(dir) {
|
||||||
|
var save = function() {
|
||||||
|
dir.getFile(name, create_if_not_found, abortable(function(file) {
|
||||||
|
file.createWriter(abortable(function(writer) {
|
||||||
|
writer.onwriteend = function(event) {
|
||||||
|
target_view.location.href = file.toURL();
|
||||||
|
deletion_queue.push(file);
|
||||||
|
filesaver.readyState = filesaver.DONE;
|
||||||
|
dispatch(filesaver, "writeend", event);
|
||||||
|
};
|
||||||
|
writer.onerror = function() {
|
||||||
|
var error = writer.error;
|
||||||
|
if (error.code !== error.ABORT_ERR) {
|
||||||
|
fs_error();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
"writestart progress write abort".split(" ").forEach(function(event) {
|
||||||
|
writer["on" + event] = filesaver["on" + event];
|
||||||
|
});
|
||||||
|
writer.write(blob);
|
||||||
|
filesaver.abort = function() {
|
||||||
|
writer.abort();
|
||||||
|
filesaver.readyState = filesaver.DONE;
|
||||||
|
};
|
||||||
|
filesaver.readyState = filesaver.WRITING;
|
||||||
|
}), fs_error);
|
||||||
|
}), fs_error);
|
||||||
|
};
|
||||||
|
dir.getFile(name, {create: false}, abortable(function(file) {
|
||||||
|
// delete file if it already exists
|
||||||
|
file.remove();
|
||||||
|
save();
|
||||||
|
}), abortable(function(ex) {
|
||||||
|
if (ex.code === ex.NOT_FOUND_ERR) {
|
||||||
|
save();
|
||||||
|
} else {
|
||||||
|
fs_error();
|
||||||
|
}
|
||||||
|
}));
|
||||||
|
}), fs_error);
|
||||||
|
}), fs_error);
|
||||||
|
}
|
||||||
|
, FS_proto = FileSaver.prototype
|
||||||
|
, saveAs = function(blob, name) {
|
||||||
|
return new FileSaver(blob, name);
|
||||||
|
}
|
||||||
|
;
|
||||||
|
FS_proto.abort = function() {
|
||||||
|
var filesaver = this;
|
||||||
|
filesaver.readyState = filesaver.DONE;
|
||||||
|
dispatch(filesaver, "abort");
|
||||||
|
};
|
||||||
|
FS_proto.readyState = FS_proto.INIT = 0;
|
||||||
|
FS_proto.WRITING = 1;
|
||||||
|
FS_proto.DONE = 2;
|
||||||
|
|
||||||
|
FS_proto.error =
|
||||||
|
FS_proto.onwritestart =
|
||||||
|
FS_proto.onprogress =
|
||||||
|
FS_proto.onwrite =
|
||||||
|
FS_proto.onabort =
|
||||||
|
FS_proto.onerror =
|
||||||
|
FS_proto.onwriteend =
|
||||||
|
null;
|
||||||
|
|
||||||
|
view.addEventListener("unload", process_deletion_queue, false);
|
||||||
|
return saveAs;
|
||||||
|
}(this.self || this.window || this.content));
|
||||||
|
// `self` is undefined in Firefox for Android content script context
|
||||||
|
// while `this` is nsIContentFrameMessageManager
|
||||||
|
// with an attribute `content` that corresponds to the window
|
||||||
|
|
||||||
|
if (typeof module !== 'undefined') module.exports = saveAs;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
|
|
||||||
Holder - 2.1 - client side image placeholders
|
Holder - 2.2 - client side image placeholders
|
||||||
(c) 2012-2013 Ivan Malopinsky / http://imsky.co
|
(c) 2012-2013 Ivan Malopinsky / http://imsky.co
|
||||||
|
|
||||||
Provided under the MIT License.
|
Provided under the MIT License.
|
||||||
@ -14,6 +14,8 @@ var Holder = Holder || {};
|
|||||||
var preempted = false,
|
var preempted = false,
|
||||||
fallback = false,
|
fallback = false,
|
||||||
canvas = document.createElement('canvas');
|
canvas = document.createElement('canvas');
|
||||||
|
var dpr = 1, bsr = 1;
|
||||||
|
var resizable_images = [];
|
||||||
|
|
||||||
if (!canvas.getContext) {
|
if (!canvas.getContext) {
|
||||||
fallback = true;
|
fallback = true;
|
||||||
@ -27,8 +29,6 @@ if (!canvas.getContext) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
var dpr = 1, bsr = 1;
|
|
||||||
|
|
||||||
if(!fallback){
|
if(!fallback){
|
||||||
dpr = window.devicePixelRatio || 1,
|
dpr = window.devicePixelRatio || 1,
|
||||||
bsr = ctx.webkitBackingStorePixelRatio || ctx.mozBackingStorePixelRatio || ctx.msBackingStorePixelRatio || ctx.oBackingStorePixelRatio || ctx.backingStorePixelRatio || 1;
|
bsr = ctx.webkitBackingStorePixelRatio || ctx.mozBackingStorePixelRatio || ctx.msBackingStorePixelRatio || ctx.oBackingStorePixelRatio || ctx.backingStorePixelRatio || 1;
|
||||||
@ -36,181 +36,6 @@ if(!fallback){
|
|||||||
|
|
||||||
var ratio = dpr / bsr;
|
var ratio = dpr / bsr;
|
||||||
|
|
||||||
//getElementsByClassName polyfill
|
|
||||||
document.getElementsByClassName||(document.getElementsByClassName=function(e){var t=document,n,r,i,s=[];if(t.querySelectorAll)return t.querySelectorAll("."+e);if(t.evaluate){r=".//*[contains(concat(' ', @class, ' '), ' "+e+" ')]",n=t.evaluate(r,t,null,0,null);while(i=n.iterateNext())s.push(i)}else{n=t.getElementsByTagName("*"),r=new RegExp("(^|\\s)"+e+"(\\s|$)");for(i=0;i<n.length;i++)r.test(n[i].className)&&s.push(n[i])}return s})
|
|
||||||
|
|
||||||
//getComputedStyle polyfill
|
|
||||||
window.getComputedStyle||(window.getComputedStyle=function(e){return this.el=e,this.getPropertyValue=function(t){var n=/(\-([a-z]){1})/g;return t=="float"&&(t="styleFloat"),n.test(t)&&(t=t.replace(n,function(){return arguments[2].toUpperCase()})),e.currentStyle[t]?e.currentStyle[t]:null},this})
|
|
||||||
|
|
||||||
//http://javascript.nwbox.com/ContentLoaded by Diego Perini with modifications
|
|
||||||
function contentLoaded(n,t){var l="complete",s="readystatechange",u=!1,h=u,c=!0,i=n.document,a=i.documentElement,e=i.addEventListener?"addEventListener":"attachEvent",v=i.addEventListener?"removeEventListener":"detachEvent",f=i.addEventListener?"":"on",r=function(e){(e.type!=s||i.readyState==l)&&((e.type=="load"?n:i)[v](f+e.type,r,u),!h&&(h=!0)&&t.call(n,null))},o=function(){try{a.doScroll("left")}catch(n){setTimeout(o,50);return}r("poll")};if(i.readyState==l)t.call(n,"lazy");else{if(i.createEventObject&&a.doScroll){try{c=!n.frameElement}catch(y){}c&&o()}i[e](f+"DOMContentLoaded",r,u),i[e](f+s,r,u),n[e](f+"load",r,u)}}
|
|
||||||
|
|
||||||
//https://gist.github.com/991057 by Jed Schmidt with modifications
|
|
||||||
function selector(a){
|
|
||||||
a=a.match(/^(\W)?(.*)/);var b=document["getElement"+(a[1]?a[1]=="#"?"ById":"sByClassName":"sByTagName")](a[2]);
|
|
||||||
var ret=[]; b!==null&&(b.length?ret=b:b.length===0?ret=b:ret=[b]); return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
//shallow object property extend
|
|
||||||
function extend(a,b){var c={};for(var d in a)c[d]=a[d];for(var e in b)c[e]=b[e];return c}
|
|
||||||
|
|
||||||
//hasOwnProperty polyfill
|
|
||||||
if (!Object.prototype.hasOwnProperty)
|
|
||||||
/*jshint -W001, -W103 */
|
|
||||||
Object.prototype.hasOwnProperty = function(prop) {
|
|
||||||
var proto = this.__proto__ || this.constructor.prototype;
|
|
||||||
return (prop in this) && (!(prop in proto) || proto[prop] !== this[prop]);
|
|
||||||
}
|
|
||||||
/*jshint +W001, +W103 */
|
|
||||||
|
|
||||||
function text_size(width, height, template) {
|
|
||||||
height = parseInt(height, 10);
|
|
||||||
width = parseInt(width, 10);
|
|
||||||
var bigSide = Math.max(height, width)
|
|
||||||
var smallSide = Math.min(height, width)
|
|
||||||
var scale = 1 / 12;
|
|
||||||
var newHeight = Math.min(smallSide * 0.75, 0.75 * bigSide * scale);
|
|
||||||
return {
|
|
||||||
height: Math.round(Math.max(template.size, newHeight))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function draw(ctx, dimensions, template, ratio, literal) {
|
|
||||||
var ts = text_size(dimensions.width, dimensions.height, template);
|
|
||||||
var text_height = ts.height;
|
|
||||||
var width = dimensions.width * ratio,
|
|
||||||
height = dimensions.height * ratio;
|
|
||||||
var font = template.font ? template.font : "sans-serif";
|
|
||||||
canvas.width = width;
|
|
||||||
canvas.height = height;
|
|
||||||
ctx.textAlign = "center";
|
|
||||||
ctx.textBaseline = "middle";
|
|
||||||
ctx.fillStyle = template.background;
|
|
||||||
ctx.fillRect(0, 0, width, height);
|
|
||||||
ctx.fillStyle = template.foreground;
|
|
||||||
ctx.font = "bold " + text_height + "px " + font;
|
|
||||||
var text = template.text ? template.text : (Math.floor(dimensions.width) + "x" + Math.floor(dimensions.height));
|
|
||||||
if (literal) {
|
|
||||||
text = template.literalText;
|
|
||||||
}
|
|
||||||
var text_width = ctx.measureText(text).width;
|
|
||||||
if (text_width / width >= 0.75) {
|
|
||||||
text_height = Math.floor(text_height * 0.75 * (width / text_width));
|
|
||||||
}
|
|
||||||
//Resetting font size if necessary
|
|
||||||
ctx.font = "bold " + (text_height * ratio) + "px " + font;
|
|
||||||
ctx.fillText(text, (width / 2), (height / 2), width);
|
|
||||||
return canvas.toDataURL("image/png");
|
|
||||||
}
|
|
||||||
|
|
||||||
function render(mode, el, holder, src) {
|
|
||||||
var dimensions = holder.dimensions,
|
|
||||||
theme = holder.theme,
|
|
||||||
text = holder.text ? decodeURIComponent(holder.text) : holder.text;
|
|
||||||
var dimensions_caption = dimensions.width + "x" + dimensions.height;
|
|
||||||
theme = (text ? extend(theme, {
|
|
||||||
text: text
|
|
||||||
}) : theme);
|
|
||||||
theme = (holder.font ? extend(theme, {
|
|
||||||
font: holder.font
|
|
||||||
}) : theme);
|
|
||||||
el.setAttribute("data-src", src);
|
|
||||||
theme.literalText = dimensions_caption;
|
|
||||||
holder.originalTheme = holder.theme;
|
|
||||||
holder.theme = theme;
|
|
||||||
|
|
||||||
if (mode == "image") {
|
|
||||||
el.setAttribute("alt", text ? text : theme.text ? theme.text + " [" + dimensions_caption + "]" : dimensions_caption);
|
|
||||||
if (fallback || !holder.auto) {
|
|
||||||
el.style.width = dimensions.width + "px";
|
|
||||||
el.style.height = dimensions.height + "px";
|
|
||||||
}
|
|
||||||
if (fallback) {
|
|
||||||
el.style.backgroundColor = theme.background;
|
|
||||||
} else {
|
|
||||||
el.setAttribute("src", draw(ctx, dimensions, theme, ratio));
|
|
||||||
}
|
|
||||||
} else if (mode == "background") {
|
|
||||||
if (!fallback) {
|
|
||||||
el.style.backgroundImage = "url(" + draw(ctx, dimensions, theme, ratio) + ")";
|
|
||||||
el.style.backgroundSize = dimensions.width + "px " + dimensions.height + "px";
|
|
||||||
}
|
|
||||||
} else if (mode == "fluid") {
|
|
||||||
el.setAttribute("alt", text ? text : theme.text ? theme.text + " [" + dimensions_caption + "]" : dimensions_caption);
|
|
||||||
if (dimensions.height.slice(-1) == "%") {
|
|
||||||
el.style.height = dimensions.height
|
|
||||||
} else {
|
|
||||||
el.style.height = dimensions.height + "px"
|
|
||||||
}
|
|
||||||
if (dimensions.width.slice(-1) == "%") {
|
|
||||||
el.style.width = dimensions.width
|
|
||||||
} else {
|
|
||||||
el.style.width = dimensions.width + "px"
|
|
||||||
}
|
|
||||||
if (el.style.display == "inline" || el.style.display === "") {
|
|
||||||
el.style.display = "block";
|
|
||||||
}
|
|
||||||
if (fallback) {
|
|
||||||
el.style.backgroundColor = theme.background;
|
|
||||||
} else {
|
|
||||||
el.holderData = holder;
|
|
||||||
fluid_images.push(el);
|
|
||||||
fluid_update(el);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function fluid_update(element) {
|
|
||||||
var images;
|
|
||||||
if (element.nodeType == null) {
|
|
||||||
images = fluid_images;
|
|
||||||
} else {
|
|
||||||
images = [element]
|
|
||||||
}
|
|
||||||
for (var i in images) {
|
|
||||||
var el = images[i]
|
|
||||||
if (el.holderData) {
|
|
||||||
var holder = el.holderData;
|
|
||||||
el.setAttribute("src", draw(ctx, {
|
|
||||||
height: el.clientHeight,
|
|
||||||
width: el.clientWidth
|
|
||||||
}, holder.theme, ratio, !! holder.literal));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function parse_flags(flags, options) {
|
|
||||||
var ret = {
|
|
||||||
theme: settings.themes.gray
|
|
||||||
};
|
|
||||||
var render = false;
|
|
||||||
for (sl = flags.length, j = 0; j < sl; j++) {
|
|
||||||
var flag = flags[j];
|
|
||||||
if (app.flags.dimensions.match(flag)) {
|
|
||||||
render = true;
|
|
||||||
ret.dimensions = app.flags.dimensions.output(flag);
|
|
||||||
} else if (app.flags.fluid.match(flag)) {
|
|
||||||
render = true;
|
|
||||||
ret.dimensions = app.flags.fluid.output(flag);
|
|
||||||
ret.fluid = true;
|
|
||||||
} else if (app.flags.literal.match(flag)) {
|
|
||||||
ret.literal = true;
|
|
||||||
} else if (app.flags.colors.match(flag)) {
|
|
||||||
ret.theme = app.flags.colors.output(flag);
|
|
||||||
} else if (options.themes[flag]) {
|
|
||||||
//If a theme is specified, it will override custom colors
|
|
||||||
ret.theme = options.themes[flag];
|
|
||||||
} else if (app.flags.font.match(flag)) {
|
|
||||||
ret.font = app.flags.font.output(flag);
|
|
||||||
} else if (app.flags.auto.match(flag)) {
|
|
||||||
ret.auto = true;
|
|
||||||
} else if (app.flags.text.match(flag)) {
|
|
||||||
ret.text = app.flags.text.output(flag);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return render ? ret : false;
|
|
||||||
}
|
|
||||||
var fluid_images = [];
|
|
||||||
var settings = {
|
var settings = {
|
||||||
domain: "holder.js",
|
domain: "holder.js",
|
||||||
images: "img",
|
images: "img",
|
||||||
@ -230,6 +55,21 @@ var settings = {
|
|||||||
background: "#434A52",
|
background: "#434A52",
|
||||||
foreground: "#C2F200",
|
foreground: "#C2F200",
|
||||||
size: 12
|
size: 12
|
||||||
|
},
|
||||||
|
"sky": {
|
||||||
|
background: "#0D8FDB",
|
||||||
|
foreground: "#fff",
|
||||||
|
size: 12
|
||||||
|
},
|
||||||
|
"vine": {
|
||||||
|
background: "#39DBAC",
|
||||||
|
foreground: "#1E292C",
|
||||||
|
size: 12
|
||||||
|
},
|
||||||
|
"lava": {
|
||||||
|
background: "#F8591A",
|
||||||
|
foreground: "#1C2846",
|
||||||
|
size: 12
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
stylesheet: ""
|
stylesheet: ""
|
||||||
@ -281,10 +121,264 @@ app.flags = {
|
|||||||
auto: {
|
auto: {
|
||||||
regex: /^auto$/
|
regex: /^auto$/
|
||||||
},
|
},
|
||||||
literal: {
|
textmode: {
|
||||||
regex: /^literal$/
|
regex: /textmode\:(.*)/,
|
||||||
|
output: function(val){
|
||||||
|
return this.regex.exec(val)[1];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//getElementsByClassName polyfill
|
||||||
|
document.getElementsByClassName||(document.getElementsByClassName=function(e){var t=document,n,r,i,s=[];if(t.querySelectorAll)return t.querySelectorAll("."+e);if(t.evaluate){r=".//*[contains(concat(' ', @class, ' '), ' "+e+" ')]",n=t.evaluate(r,t,null,0,null);while(i=n.iterateNext())s.push(i)}else{n=t.getElementsByTagName("*"),r=new RegExp("(^|\\s)"+e+"(\\s|$)");for(i=0;i<n.length;i++)r.test(n[i].className)&&s.push(n[i])}return s})
|
||||||
|
|
||||||
|
//getComputedStyle polyfill
|
||||||
|
window.getComputedStyle||(window.getComputedStyle=function(e){return this.el=e,this.getPropertyValue=function(t){var n=/(\-([a-z]){1})/g;return t=="float"&&(t="styleFloat"),n.test(t)&&(t=t.replace(n,function(){return arguments[2].toUpperCase()})),e.currentStyle[t]?e.currentStyle[t]:null},this})
|
||||||
|
|
||||||
|
//http://javascript.nwbox.com/ContentLoaded by Diego Perini with modifications
|
||||||
|
function contentLoaded(n,t){var l="complete",s="readystatechange",u=!1,h=u,c=!0,i=n.document,a=i.documentElement,e=i.addEventListener?"addEventListener":"attachEvent",v=i.addEventListener?"removeEventListener":"detachEvent",f=i.addEventListener?"":"on",r=function(e){(e.type!=s||i.readyState==l)&&((e.type=="load"?n:i)[v](f+e.type,r,u),!h&&(h=!0)&&t.call(n,null))},o=function(){try{a.doScroll("left")}catch(n){setTimeout(o,50);return}r("poll")};if(i.readyState==l)t.call(n,"lazy");else{if(i.createEventObject&&a.doScroll){try{c=!n.frameElement}catch(y){}c&&o()}i[e](f+"DOMContentLoaded",r,u),i[e](f+s,r,u),n[e](f+"load",r,u)}}
|
||||||
|
|
||||||
|
//https://gist.github.com/991057 by Jed Schmidt with modifications
|
||||||
|
function selector(a){
|
||||||
|
a=a.match(/^(\W)?(.*)/);var b=document["getElement"+(a[1]?a[1]=="#"?"ById":"sByClassName":"sByTagName")](a[2]);
|
||||||
|
var ret=[]; b!==null&&(b.length?ret=b:b.length===0?ret=b:ret=[b]); return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
//shallow object property extend
|
||||||
|
function extend(a,b){
|
||||||
|
var c={};
|
||||||
|
for(var i in a){
|
||||||
|
if(a.hasOwnProperty(i)){
|
||||||
|
c[i]=a[i];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for(var i in b){
|
||||||
|
if(b.hasOwnProperty(i)){
|
||||||
|
c[i]=b[i];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return c
|
||||||
|
}
|
||||||
|
|
||||||
|
//hasOwnProperty polyfill
|
||||||
|
if (!Object.prototype.hasOwnProperty)
|
||||||
|
/*jshint -W001, -W103 */
|
||||||
|
Object.prototype.hasOwnProperty = function(prop) {
|
||||||
|
var proto = this.__proto__ || this.constructor.prototype;
|
||||||
|
return (prop in this) && (!(prop in proto) || proto[prop] !== this[prop]);
|
||||||
|
}
|
||||||
|
/*jshint +W001, +W103 */
|
||||||
|
|
||||||
|
function text_size(width, height, template) {
|
||||||
|
height = parseInt(height, 10);
|
||||||
|
width = parseInt(width, 10);
|
||||||
|
var bigSide = Math.max(height, width)
|
||||||
|
var smallSide = Math.min(height, width)
|
||||||
|
var scale = 1 / 12;
|
||||||
|
var newHeight = Math.min(smallSide * 0.75, 0.75 * bigSide * scale);
|
||||||
|
return {
|
||||||
|
height: Math.round(Math.max(template.size, newHeight))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function draw(args) {
|
||||||
|
var ctx = args.ctx;
|
||||||
|
var dimensions = args.dimensions;
|
||||||
|
var template = args.template;
|
||||||
|
var ratio = args.ratio;
|
||||||
|
var holder = args.holder;
|
||||||
|
var literal = holder.textmode == "literal";
|
||||||
|
var exact = holder.textmode == "exact";
|
||||||
|
|
||||||
|
var ts = text_size(dimensions.width, dimensions.height, template);
|
||||||
|
var text_height = ts.height;
|
||||||
|
var width = dimensions.width * ratio,
|
||||||
|
height = dimensions.height * ratio;
|
||||||
|
var font = template.font ? template.font : "sans-serif";
|
||||||
|
canvas.width = width;
|
||||||
|
canvas.height = height;
|
||||||
|
ctx.textAlign = "center";
|
||||||
|
ctx.textBaseline = "middle";
|
||||||
|
ctx.fillStyle = template.background;
|
||||||
|
ctx.fillRect(0, 0, width, height);
|
||||||
|
ctx.fillStyle = template.foreground;
|
||||||
|
ctx.font = "bold " + text_height + "px " + font;
|
||||||
|
var text = template.text ? template.text : (Math.floor(dimensions.width) + "x" + Math.floor(dimensions.height));
|
||||||
|
if (literal) {
|
||||||
|
var dimensions = holder.dimensions;
|
||||||
|
text = dimensions.width + "x" + dimensions.height;
|
||||||
|
}
|
||||||
|
else if(exact && holder.exact_dimensions){
|
||||||
|
var dimensions = holder.exact_dimensions;
|
||||||
|
text = (Math.floor(dimensions.width) + "x" + Math.floor(dimensions.height));
|
||||||
|
}
|
||||||
|
var text_width = ctx.measureText(text).width;
|
||||||
|
if (text_width / width >= 0.75) {
|
||||||
|
text_height = Math.floor(text_height * 0.75 * (width / text_width));
|
||||||
|
}
|
||||||
|
//Resetting font size if necessary
|
||||||
|
ctx.font = "bold " + (text_height * ratio) + "px " + font;
|
||||||
|
ctx.fillText(text, (width / 2), (height / 2), width);
|
||||||
|
return canvas.toDataURL("image/png");
|
||||||
|
}
|
||||||
|
|
||||||
|
function render(mode, el, holder, src) {
|
||||||
|
|
||||||
|
var dimensions = holder.dimensions,
|
||||||
|
theme = holder.theme,
|
||||||
|
text = holder.text ? decodeURIComponent(holder.text) : holder.text;
|
||||||
|
var dimensions_caption = dimensions.width + "x" + dimensions.height;
|
||||||
|
theme = (text ? extend(theme, {
|
||||||
|
text: text
|
||||||
|
}) : theme);
|
||||||
|
theme = (holder.font ? extend(theme, {
|
||||||
|
font: holder.font
|
||||||
|
}) : theme);
|
||||||
|
el.setAttribute("data-src", src);
|
||||||
|
holder.theme = theme;
|
||||||
|
el.holder_data = holder;
|
||||||
|
|
||||||
|
if (mode == "image") {
|
||||||
|
el.setAttribute("alt", text ? text : theme.text ? theme.text + " [" + dimensions_caption + "]" : dimensions_caption);
|
||||||
|
if (fallback || !holder.auto) {
|
||||||
|
el.style.width = dimensions.width + "px";
|
||||||
|
el.style.height = dimensions.height + "px";
|
||||||
|
}
|
||||||
|
if (fallback) {
|
||||||
|
el.style.backgroundColor = theme.background;
|
||||||
|
} else {
|
||||||
|
el.setAttribute("src", draw({ctx: ctx, dimensions: dimensions, template: theme, ratio:ratio, holder: holder}));
|
||||||
|
|
||||||
|
if(holder.textmode && holder.textmode == "exact"){
|
||||||
|
resizable_images.push(el);
|
||||||
|
resizable_update(el);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
} else if (mode == "background") {
|
||||||
|
if (!fallback) {
|
||||||
|
el.style.backgroundImage = "url(" + draw({ctx:ctx, dimensions: dimensions, template: theme, ratio: ratio, holder: holder}) + ")";
|
||||||
|
el.style.backgroundSize = dimensions.width + "px " + dimensions.height + "px";
|
||||||
|
}
|
||||||
|
} else if (mode == "fluid") {
|
||||||
|
el.setAttribute("alt", text ? text : theme.text ? theme.text + " [" + dimensions_caption + "]" : dimensions_caption);
|
||||||
|
if (dimensions.height.slice(-1) == "%") {
|
||||||
|
el.style.height = dimensions.height
|
||||||
|
} else {
|
||||||
|
el.style.height = dimensions.height + "px"
|
||||||
|
}
|
||||||
|
if (dimensions.width.slice(-1) == "%") {
|
||||||
|
el.style.width = dimensions.width
|
||||||
|
} else {
|
||||||
|
el.style.width = dimensions.width + "px"
|
||||||
|
}
|
||||||
|
if (el.style.display == "inline" || el.style.display === "" || el.style.display == "none") {
|
||||||
|
el.style.display = "block";
|
||||||
|
}
|
||||||
|
if (fallback) {
|
||||||
|
el.style.backgroundColor = theme.background;
|
||||||
|
} else {
|
||||||
|
resizable_images.push(el);
|
||||||
|
resizable_update(el);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function dimension_check(el, callback) {
|
||||||
|
var dimensions = {
|
||||||
|
height: el.clientHeight,
|
||||||
|
width: el.clientWidth
|
||||||
|
};
|
||||||
|
if (!dimensions.height && !dimensions.width) {
|
||||||
|
if (el.hasAttribute("data-holder-invisible")) {
|
||||||
|
throw new Error("Holder: placeholder is not visible");
|
||||||
|
} else {
|
||||||
|
el.setAttribute("data-holder-invisible", true)
|
||||||
|
setTimeout(function () {
|
||||||
|
callback.call(this, el)
|
||||||
|
}, 1)
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
el.removeAttribute("data-holder-invisible")
|
||||||
|
}
|
||||||
|
return dimensions;
|
||||||
|
}
|
||||||
|
|
||||||
|
function resizable_update(element) {
|
||||||
|
var images;
|
||||||
|
if (element.nodeType == null) {
|
||||||
|
images = resizable_images;
|
||||||
|
} else {
|
||||||
|
images = [element]
|
||||||
|
}
|
||||||
|
for (var i in images) {
|
||||||
|
if (!images.hasOwnProperty(i)) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
var el = images[i]
|
||||||
|
if (el.holder_data) {
|
||||||
|
var holder = el.holder_data;
|
||||||
|
var dimensions = dimension_check(el, resizable_update)
|
||||||
|
if(dimensions){
|
||||||
|
if(holder.fluid){
|
||||||
|
el.setAttribute("src", draw({
|
||||||
|
ctx: ctx,
|
||||||
|
dimensions: dimensions,
|
||||||
|
template: holder.theme,
|
||||||
|
ratio: ratio,
|
||||||
|
holder: holder
|
||||||
|
}))
|
||||||
|
}
|
||||||
|
if(holder.textmode && holder.textmode == "exact"){
|
||||||
|
holder.exact_dimensions = dimensions;
|
||||||
|
el.setAttribute("src", draw({
|
||||||
|
ctx: ctx,
|
||||||
|
dimensions: holder.dimensions,
|
||||||
|
template: holder.theme,
|
||||||
|
ratio: ratio,
|
||||||
|
holder: holder
|
||||||
|
}))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function parse_flags(flags, options) {
|
||||||
|
var ret = {
|
||||||
|
theme: extend(settings.themes.gray, {})
|
||||||
|
};
|
||||||
|
var render = false;
|
||||||
|
for (sl = flags.length, j = 0; j < sl; j++) {
|
||||||
|
var flag = flags[j];
|
||||||
|
if (app.flags.dimensions.match(flag)) {
|
||||||
|
render = true;
|
||||||
|
ret.dimensions = app.flags.dimensions.output(flag);
|
||||||
|
} else if (app.flags.fluid.match(flag)) {
|
||||||
|
render = true;
|
||||||
|
ret.dimensions = app.flags.fluid.output(flag);
|
||||||
|
ret.fluid = true;
|
||||||
|
} else if (app.flags.textmode.match(flag)) {
|
||||||
|
ret.textmode = app.flags.textmode.output(flag)
|
||||||
|
} else if (app.flags.colors.match(flag)) {
|
||||||
|
ret.theme = app.flags.colors.output(flag);
|
||||||
|
} else if (options.themes[flag]) {
|
||||||
|
//If a theme is specified, it will override custom colors
|
||||||
|
if(options.themes.hasOwnProperty(flag)){
|
||||||
|
ret.theme = extend(options.themes[flag], {});
|
||||||
|
}
|
||||||
|
} else if (app.flags.font.match(flag)) {
|
||||||
|
ret.font = app.flags.font.output(flag);
|
||||||
|
} else if (app.flags.auto.match(flag)) {
|
||||||
|
ret.auto = true;
|
||||||
|
} else if (app.flags.text.match(flag)) {
|
||||||
|
ret.text = app.flags.text.output(flag);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return render ? ret : false;
|
||||||
|
}
|
||||||
|
|
||||||
for (var flag in app.flags) {
|
for (var flag in app.flags) {
|
||||||
if (!app.flags.hasOwnProperty(flag)) continue;
|
if (!app.flags.hasOwnProperty(flag)) continue;
|
||||||
app.flags[flag].match = function (val) {
|
app.flags[flag].match = function (val) {
|
||||||
@ -307,6 +401,8 @@ app.add_image = function (src, el) {
|
|||||||
return app;
|
return app;
|
||||||
};
|
};
|
||||||
app.run = function (o) {
|
app.run = function (o) {
|
||||||
|
preempted = true;
|
||||||
|
|
||||||
var options = extend(settings, o),
|
var options = extend(settings, o),
|
||||||
images = [],
|
images = [],
|
||||||
imageNodes = [],
|
imageNodes = [],
|
||||||
@ -318,6 +414,7 @@ app.run = function (o) {
|
|||||||
} else if (window.Node && options.images instanceof window.Node) {
|
} else if (window.Node && options.images instanceof window.Node) {
|
||||||
imageNodes = [options.images];
|
imageNodes = [options.images];
|
||||||
}
|
}
|
||||||
|
|
||||||
if (typeof (options.bgnodes) == "string") {
|
if (typeof (options.bgnodes) == "string") {
|
||||||
bgnodes = selector(options.bgnodes);
|
bgnodes = selector(options.bgnodes);
|
||||||
} else if (window.NodeList && options.elements instanceof window.NodeList) {
|
} else if (window.NodeList && options.elements instanceof window.NodeList) {
|
||||||
@ -325,7 +422,6 @@ app.run = function (o) {
|
|||||||
} else if (window.Node && options.bgnodes instanceof window.Node) {
|
} else if (window.Node && options.bgnodes instanceof window.Node) {
|
||||||
bgnodes = [options.bgnodes];
|
bgnodes = [options.bgnodes];
|
||||||
}
|
}
|
||||||
preempted = true;
|
|
||||||
for (i = 0, l = imageNodes.length; i < l; i++) images.push(imageNodes[i]);
|
for (i = 0, l = imageNodes.length; i < l; i++) images.push(imageNodes[i]);
|
||||||
var holdercss = document.getElementById("holderjs-style");
|
var holdercss = document.getElementById("holderjs-style");
|
||||||
if (!holdercss) {
|
if (!holdercss) {
|
||||||
@ -388,10 +484,10 @@ app.run = function (o) {
|
|||||||
};
|
};
|
||||||
contentLoaded(win, function () {
|
contentLoaded(win, function () {
|
||||||
if (window.addEventListener) {
|
if (window.addEventListener) {
|
||||||
window.addEventListener("resize", fluid_update, false);
|
window.addEventListener("resize", resizable_update, false);
|
||||||
window.addEventListener("orientationchange", fluid_update, false);
|
window.addEventListener("orientationchange", resizable_update, false);
|
||||||
} else {
|
} else {
|
||||||
window.attachEvent("onresize", fluid_update)
|
window.attachEvent("onresize", resizable_update)
|
||||||
}
|
}
|
||||||
preempted || app.run();
|
preempted || app.run();
|
||||||
});
|
});
|
||||||
|
@ -16,7 +16,9 @@ Usage:
|
|||||||
base64zip = zip.generate();
|
base64zip = zip.generate();
|
||||||
|
|
||||||
**/
|
**/
|
||||||
"use strict";
|
// We use strict, but it should not be placed outside of a function because
|
||||||
|
// the environment is shared inside the browser.
|
||||||
|
// "use strict";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Representation a of zip file in js
|
* Representation a of zip file in js
|
||||||
@ -93,8 +95,8 @@ JSZip.support = {
|
|||||||
catch(e) {}
|
catch(e) {}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
var builder = new (window.BlobBuilder || window.WebKitBlobBuilder ||
|
var BlobBuilder = window.BlobBuilder || window.WebKitBlobBuilder || window.MozBlobBuilder || window.MSBlobBuilder;
|
||||||
window.MozBlobBuilder || window.MSBlobBuilder)();
|
var builder = new BlobBuilder();
|
||||||
builder.append(buffer);
|
builder.append(buffer);
|
||||||
return builder.getBlob('application/zip').size === 0;
|
return builder.getBlob('application/zip').size === 0;
|
||||||
}
|
}
|
||||||
@ -161,7 +163,7 @@ JSZip.prototype = (function () {
|
|||||||
return file.asBinary();
|
return file.asBinary();
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Transform this._data into a string.
|
* Transform this._data into a string.
|
||||||
@ -287,9 +289,11 @@ JSZip.prototype = (function () {
|
|||||||
*/
|
*/
|
||||||
var prepareFileAttrs = function (o) {
|
var prepareFileAttrs = function (o) {
|
||||||
o = o || {};
|
o = o || {};
|
||||||
|
/*jshint -W041 */
|
||||||
if (o.base64 === true && o.binary == null) {
|
if (o.base64 === true && o.binary == null) {
|
||||||
o.binary = true;
|
o.binary = true;
|
||||||
}
|
}
|
||||||
|
/*jshint +W041 */
|
||||||
o = extend(o, JSZip.defaults);
|
o = extend(o, JSZip.defaults);
|
||||||
o.date = o.date || new Date();
|
o.date = o.date || new Date();
|
||||||
if (o.compression !== null) o.compression = o.compression.toUpperCase();
|
if (o.compression !== null) o.compression = o.compression.toUpperCase();
|
||||||
@ -341,7 +345,9 @@ JSZip.prototype = (function () {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return this.files[name] = new ZipObject(name, data, o);
|
var object = new ZipObject(name, data, o);
|
||||||
|
this.files[name] = object;
|
||||||
|
return object;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
@ -399,7 +405,7 @@ JSZip.prototype = (function () {
|
|||||||
} else if (file._data.compressionMethod === compression.magic) {
|
} else if (file._data.compressionMethod === compression.magic) {
|
||||||
result.compressedContent = file._data.getCompressedContent();
|
result.compressedContent = file._data.getCompressedContent();
|
||||||
} else {
|
} else {
|
||||||
content = file._data.getContent()
|
content = file._data.getContent();
|
||||||
// need to decompress / recompress
|
// need to decompress / recompress
|
||||||
result.compressedContent = compression.compress(JSZip.utils.transformTo(compression.compressInputType, content));
|
result.compressedContent = compression.compress(JSZip.utils.transformTo(compression.compressInputType, content));
|
||||||
}
|
}
|
||||||
@ -756,8 +762,9 @@ JSZip.prototype = (function () {
|
|||||||
case "nodebuffer" :
|
case "nodebuffer" :
|
||||||
writer = new Uint8ArrayWriter(localDirLength + centralDirLength + dirEnd.length);
|
writer = new Uint8ArrayWriter(localDirLength + centralDirLength + dirEnd.length);
|
||||||
break;
|
break;
|
||||||
case "base64" :
|
// case "base64" :
|
||||||
default : // case "string" :
|
// case "string" :
|
||||||
|
default :
|
||||||
writer = new StringWriter(localDirLength + centralDirLength + dirEnd.length);
|
writer = new StringWriter(localDirLength + centralDirLength + dirEnd.length);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -1066,8 +1073,8 @@ JSZip.compressions = {
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
// deprecated, browser only, old way
|
// deprecated, browser only, old way
|
||||||
var builder = new (window.BlobBuilder || window.WebKitBlobBuilder ||
|
var BlobBuilder = window.BlobBuilder || window.WebKitBlobBuilder || window.MozBlobBuilder || window.MSBlobBuilder;
|
||||||
window.MozBlobBuilder || window.MSBlobBuilder)();
|
var builder = new BlobBuilder();
|
||||||
builder.append(buffer);
|
builder.append(buffer);
|
||||||
return builder.getBlob('application/zip');
|
return builder.getBlob('application/zip');
|
||||||
}
|
}
|
||||||
@ -1095,7 +1102,7 @@ JSZip.compressions = {
|
|||||||
*/
|
*/
|
||||||
function identity(input) {
|
function identity(input) {
|
||||||
return input;
|
return input;
|
||||||
};
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Fill in an array with a string.
|
* Fill in an array with a string.
|
||||||
@ -1108,7 +1115,7 @@ JSZip.compressions = {
|
|||||||
array[i] = str.charCodeAt(i) & 0xFF;
|
array[i] = str.charCodeAt(i) & 0xFF;
|
||||||
}
|
}
|
||||||
return array;
|
return array;
|
||||||
};
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Transform an array-like object to a string.
|
* Transform an array-like object to a string.
|
||||||
@ -1165,7 +1172,7 @@ JSZip.compressions = {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
return result.join("");
|
return result.join("");
|
||||||
};
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Copy the data from an array-like to an other array-like.
|
* Copy the data from an array-like to an other array-like.
|
||||||
@ -1178,7 +1185,7 @@ JSZip.compressions = {
|
|||||||
arrayTo[i] = arrayFrom[i];
|
arrayTo[i] = arrayFrom[i];
|
||||||
}
|
}
|
||||||
return arrayTo;
|
return arrayTo;
|
||||||
};
|
}
|
||||||
|
|
||||||
// a matrix containing functions to transform everything into everything.
|
// a matrix containing functions to transform everything into everything.
|
||||||
var transform = {};
|
var transform = {};
|
||||||
|
File diff suppressed because one or more lines are too long
@ -40,7 +40,7 @@
|
|||||||
<a class="navbar-brand" href="#">Project name</a>
|
<a class="navbar-brand" href="#">Project name</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="navbar-collapse collapse">
|
<div class="navbar-collapse collapse">
|
||||||
<form class="navbar-form navbar-right">
|
<form class="navbar-form navbar-right" role="form">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<input type="text" placeholder="Email" class="form-control">
|
<input type="text" placeholder="Email" class="form-control">
|
||||||
</div>
|
</div>
|
||||||
|
@ -52,7 +52,8 @@
|
|||||||
<!-- Example row of columns -->
|
<!-- Example row of columns -->
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-lg-4">
|
<div class="col-lg-4">
|
||||||
<h2>Heading</h2>
|
<h2>Safari bug warning!</h2>
|
||||||
|
<p class="text-danger">Safari exhibits a bug in which resizing your browser horizontally causes rendering errors in the justified nav that are cleared upon refreshing.</p>
|
||||||
<p>Donec id elit non mi porta gravida at eget metus. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Etiam porta sem malesuada magna mollis euismod. Donec sed odio dui. </p>
|
<p>Donec id elit non mi porta gravida at eget metus. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Etiam porta sem malesuada magna mollis euismod. Donec sed odio dui. </p>
|
||||||
<p><a class="btn btn-primary" href="#" role="button">View details »</a></p>
|
<p><a class="btn btn-primary" href="#" role="button">View details »</a></p>
|
||||||
</div>
|
</div>
|
||||||
|
@ -8,6 +8,7 @@
|
|||||||
body {
|
body {
|
||||||
padding-top: 70px;
|
padding-top: 70px;
|
||||||
padding-bottom: 30px;
|
padding-bottom: 30px;
|
||||||
|
min-width: 970px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Finesse the page header spacing */
|
/* Finesse the page header spacing */
|
||||||
@ -63,6 +64,9 @@ body {
|
|||||||
.navbar-toggle {
|
.navbar-toggle {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
.navbar-collapse {
|
||||||
|
border-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.navbar-brand {
|
.navbar-brand {
|
||||||
margin-left: -15px;
|
margin-left: -15px;
|
||||||
@ -86,7 +90,7 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Undo custom dropdowns */
|
/* Undo custom dropdowns */
|
||||||
.navbar .open .dropdown-menu {
|
.navbar .navbar-nav .open .dropdown-menu {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
float: left;
|
float: left;
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
@ -97,20 +101,20 @@ body {
|
|||||||
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
||||||
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
||||||
}
|
}
|
||||||
.navbar .open .dropdown-menu > li > a {
|
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
|
||||||
color: #333;
|
color: #333;
|
||||||
}
|
}
|
||||||
.navbar .open .dropdown-menu > li > a:hover,
|
.navbar .navbar-nav .open .dropdown-menu > li > a:hover,
|
||||||
.navbar .open .dropdown-menu > li > a:focus,
|
.navbar .navbar-nav .open .dropdown-menu > li > a:focus,
|
||||||
.navbar .open .dropdown-menu > .active > a,
|
.navbar .navbar-nav .open .dropdown-menu > .active > a,
|
||||||
.navbar .open .dropdown-menu > .active > a:hover,
|
.navbar .navbar-nav .open .dropdown-menu > .active > a:hover,
|
||||||
.navbar .open .dropdown-menu > .active > a:focus {
|
.navbar .navbar-nav .open .dropdown-menu > .active > a:focus {
|
||||||
color: #fff !important;
|
color: #fff !important;
|
||||||
background-color: #428bca !important;
|
background-color: #428bca !important;
|
||||||
}
|
}
|
||||||
.navbar .open .dropdown-menu > .disabled > a,
|
.navbar .navbar-nav .open .dropdown-menu > .disabled > a,
|
||||||
.navbar .open .dropdown-menu > .disabled > a:hover,
|
.navbar .navbar-nav .open .dropdown-menu > .disabled > a:hover,
|
||||||
.navbar .open .dropdown-menu > .disabled > a:focus {
|
.navbar .navbar-nav .open .dropdown-menu > .disabled > a:focus {
|
||||||
color: #999 !important;
|
color: #999 !important;
|
||||||
background-color: transparent !important;
|
background-color: transparent !important;
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,8 @@
|
|||||||
* Style tweaks
|
* Style tweaks
|
||||||
* --------------------------------------------------
|
* --------------------------------------------------
|
||||||
*/
|
*/
|
||||||
html {
|
html,
|
||||||
|
body {
|
||||||
overflow-x: hidden; /* Prevent scroll on narrow devices */
|
overflow-x: hidden; /* Prevent scroll on narrow devices */
|
||||||
}
|
}
|
||||||
body {
|
body {
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 76 KiB After Width: | Height: | Size: 119 KiB |
@ -30,7 +30,7 @@
|
|||||||
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
|
|
||||||
<form class="form-signin">
|
<form class="form-signin" role="form">
|
||||||
<h2 class="form-signin-heading">Please sign in</h2>
|
<h2 class="form-signin-heading">Please sign in</h2>
|
||||||
<input type="text" class="form-control" placeholder="Email address" required autofocus>
|
<input type="text" class="form-control" placeholder="Email address" required autofocus>
|
||||||
<input type="password" class="form-control" placeholder="Password" required>
|
<input type="password" class="form-control" placeholder="Password" required>
|
||||||
|
@ -77,7 +77,7 @@
|
|||||||
|
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<p class="text-muted credit">Example courtesy <a href="http://martinbean.co.uk">Martin Bean</a> and <a href="http://ryanfait.com/sticky-footer/">Ryan Fait</a>.</p>
|
<p class="text-muted">Place sticky footer content here.</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -31,7 +31,7 @@ body {
|
|||||||
#wrap > .container {
|
#wrap > .container {
|
||||||
padding: 60px 15px 0;
|
padding: 60px 15px 0;
|
||||||
}
|
}
|
||||||
.container .credit {
|
.container .text-muted {
|
||||||
margin: 20px 0;
|
margin: 20px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -43,7 +43,7 @@
|
|||||||
|
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<p class="text-muted credit">Example courtesy <a href="http://martinbean.co.uk">Martin Bean</a> and <a href="http://ryanfait.com/sticky-footer/">Ryan Fait</a>.</p>
|
<p class="text-muted">Place sticky footer content here.</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -33,6 +33,6 @@ body {
|
|||||||
max-width: 680px;
|
max-width: 680px;
|
||||||
padding: 0 15px;
|
padding: 0 15px;
|
||||||
}
|
}
|
||||||
.container .credit {
|
.container .text-muted {
|
||||||
margin: 20px 0;
|
margin: 20px 0;
|
||||||
}
|
}
|
||||||
|
@ -62,9 +62,15 @@ base_url: "../"
|
|||||||
<div class="page-header">
|
<div class="page-header">
|
||||||
<h1 id="whats-included">What's included</h1>
|
<h1 id="whats-included">What's included</h1>
|
||||||
</div>
|
</div>
|
||||||
<p class="lead">Within the download you'll find the following directories and files, logically grouping common resources and providing both compiled and minified variations.</p>
|
<p class="lead">Bootstrap is downloadable in two forms, within which you'll find the following directories and files, logically grouping common resources and providing both compiled and minified variations.</p>
|
||||||
<p>Once downloaded, unzip the compressed folder to see the structure of (the compiled) Bootstrap. You'll see something like this:</p>
|
|
||||||
|
|
||||||
|
<div class="bs-callout bs-callout-warning" id="jquery-required">
|
||||||
|
<h4>jQuery required</h4>
|
||||||
|
<p>Please note that <strong>all JavaScript plugins require jQuery</strong> to be included, as shown in the <a href="#template">starter template</a>. <a href="{{ site.repo }}/blob/v{{ site.current_version }}/bower.json">Consult our <code>bower.json</code></a> to see which versions of jQuery are supported.</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h2 id="whats-included-precompiled">Precompiled Bootstrap</h2>
|
||||||
|
<p>Once downloaded, unzip the compressed folder to see the structure of (the compiled) Bootstrap. You'll see something like this:</p>
|
||||||
<!-- NOTE: This info is intentionally duplicated in the README.
|
<!-- NOTE: This info is intentionally duplicated in the README.
|
||||||
Copy any changes made here over to the README too. -->
|
Copy any changes made here over to the README too. -->
|
||||||
{% highlight bash %}
|
{% highlight bash %}
|
||||||
@ -85,11 +91,24 @@ bootstrap/
|
|||||||
{% endhighlight %}
|
{% endhighlight %}
|
||||||
|
|
||||||
<p>This is the most basic form of Bootstrap: precompiled files for quick drop-in usage in nearly any web project. We provide compiled CSS and JS (<code>bootstrap.*</code>), as well as compiled and minified CSS and JS (<code>bootstrap.min.*</code>). Fonts from Glyphicons are included, as is the optional Bootstrap theme.</p>
|
<p>This is the most basic form of Bootstrap: precompiled files for quick drop-in usage in nearly any web project. We provide compiled CSS and JS (<code>bootstrap.*</code>), as well as compiled and minified CSS and JS (<code>bootstrap.min.*</code>). Fonts from Glyphicons are included, as is the optional Bootstrap theme.</p>
|
||||||
<div class="bs-callout bs-callout-danger" id="jquery-required">
|
|
||||||
<h4>jQuery required</h4>
|
<h2 id="whats-included-source">Bootstrap source code</h2>
|
||||||
<p>Please note that <strong>all JavaScript plugins require jQuery</strong> to be included, as shown in the <a href="#template">starter template</a>. <a href="{{ site.repo }}/blob/v{{ site.current_version }}/bower.json">Consult our <code>bower.json</code></a> to see which versions of jQuery are supported.</p>
|
<p>The Bootstrap source code download includes the precompiled CSS, JavaScript, and font assets, along with source LESS, JavaScript, and documentation. More specifically, it includes the following and more:</p>
|
||||||
</div>
|
{% highlight bash %}
|
||||||
|
bootstrap/
|
||||||
|
├── less/
|
||||||
|
├── js/
|
||||||
|
├── fonts/
|
||||||
|
├── dist/
|
||||||
|
│ ├── css/
|
||||||
|
│ ├── js/
|
||||||
|
│ └── fonts/
|
||||||
|
├── docs-assets/
|
||||||
|
├── examples/
|
||||||
|
└── *.html
|
||||||
|
{% endhighlight %}
|
||||||
</div>
|
</div>
|
||||||
|
<p>The <code>less/</code>, <code>js/</code>, and <code>fonts/</code> are the source code for our CSS, JS, and icon fonts (respectively). The <code>dist/</code> folder includes everything listed in the precompiled download section above. <code>docs-assets/</code>, <code>examples/</code>, and all <code>*.html</code> files are for our documentation. Beyond that, any other included file provides support for packages, license information, and development.</p>
|
||||||
|
|
||||||
|
|
||||||
<!-- Template
|
<!-- Template
|
||||||
@ -379,7 +398,7 @@ bootstrap/
|
|||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><code>.visible-desktop</code></td>
|
<td><code>.visible-desktop</code></td>
|
||||||
<td><code>.visible-md</code></td>
|
<td>Split into <code>.visible-md .visible-lg</code></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><code>.hidden-phone</code></td>
|
<td><code>.hidden-phone</code></td>
|
||||||
@ -391,7 +410,7 @@ bootstrap/
|
|||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><code>.hidden-desktop</code></td>
|
<td><code>.hidden-desktop</code></td>
|
||||||
<td><code>.hidden-md</code></td>
|
<td>Split into <code>.hidden-md .hidden-lg</code></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><code>.input-small</code></td>
|
<td><code>.input-small</code></td>
|
||||||
@ -405,6 +424,10 @@ bootstrap/
|
|||||||
<td><code>.control-group</code></td>
|
<td><code>.control-group</code></td>
|
||||||
<td><code>.form-group</code></td>
|
<td><code>.form-group</code></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><code>.control-group.warning .control-group.error .control-group.success</code></td>
|
||||||
|
<td><code>.form-group.has-*</code></td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><code>.checkbox.inline</code> <code>.radio.inline</code></td>
|
<td><code>.checkbox.inline</code> <code>.radio.inline</code></td>
|
||||||
<td><code>.checkbox-inline</code> <code>.radio-inline</code></td>
|
<td><code>.checkbox-inline</code> <code>.radio-inline</code></td>
|
||||||
@ -433,6 +456,14 @@ bootstrap/
|
|||||||
<td><code>.muted</code></td>
|
<td><code>.muted</code></td>
|
||||||
<td><code>.text-muted</code></td>
|
<td><code>.text-muted</code></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><code>.label</code></td>
|
||||||
|
<td><code>.label .label-default</code></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><code>.label-important</code></td>
|
||||||
|
<td><code>.label-danger</code></td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><code>.text-error</code></td>
|
<td><code>.text-error</code></td>
|
||||||
<td><code>.text-danger</code></td>
|
<td><code>.text-danger</code></td>
|
||||||
@ -611,6 +642,11 @@ bootstrap/
|
|||||||
<td><code>.form-search</code></td>
|
<td><code>.form-search</code></td>
|
||||||
<td class="text-muted">N/A</td>
|
<td class="text-muted">N/A</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Form group with info</td>
|
||||||
|
<td><code>.control-group.info</code></td>
|
||||||
|
<td class="text-muted">N/A</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Fluid container</td>
|
<td>Fluid container</td>
|
||||||
<td><code>.container-fluid</code></td>
|
<td><code>.container-fluid</code></td>
|
||||||
@ -674,7 +710,7 @@ bootstrap/
|
|||||||
<li>Typeahead has been dropped, in favor of using <a href="http://twitter.github.io/typeahead.js/">Twitter Typeahead</a>.</li>
|
<li>Typeahead has been dropped, in favor of using <a href="http://twitter.github.io/typeahead.js/">Twitter Typeahead</a>.</li>
|
||||||
<li>Modal markup has changed significantly. The <code>.modal-header</code>, <code>.modal-body</code>, and <code>.modal-footer</code> sections are now wrapped in <code>.modal-content</code> and <code>.modal-dialog</code> for better mobile styling and behavior.</li>
|
<li>Modal markup has changed significantly. The <code>.modal-header</code>, <code>.modal-body</code>, and <code>.modal-footer</code> sections are now wrapped in <code>.modal-content</code> and <code>.modal-dialog</code> for better mobile styling and behavior.</li>
|
||||||
<li>The HTML loaded by the <code>remote</code> modal option is now injected into the <code>.modal</code> instead of into the <code>.modal-body</code>. This allows you to also easily vary the header and footer of the modal, not just the modal body.</li>
|
<li>The HTML loaded by the <code>remote</code> modal option is now injected into the <code>.modal</code> instead of into the <code>.modal-body</code>. This allows you to also easily vary the header and footer of the modal, not just the modal body.</li>
|
||||||
<li>JavaScript events are namespaced. For example, to handle the modal "show" event, use <code>'show.bs.modal'</code>. For tabs "shown" use <code>'shown.bs.tab'</code>, etc..</li>
|
<li>JavaScript events are namespaced. For example, to handle the modal "show" event, use <code>'show.bs.modal'</code>. For tabs "shown" use <code>'shown.bs.tab'</code>, etc.</li>
|
||||||
</ul>
|
</ul>
|
||||||
<p>For more information on upgrading to v3.0, and code snippets from the community, see <a href="http://bootply.com/">Bootply</a>.</p>
|
<p>For more information on upgrading to v3.0, and code snippets from the community, see <a href="http://bootply.com/">Bootply</a>.</p>
|
||||||
</div>
|
</div>
|
||||||
|
@ -43,14 +43,14 @@ $(document).off('.alert.data-api')
|
|||||||
<h3 id="js-programmatic-api">Programmatic API</h3>
|
<h3 id="js-programmatic-api">Programmatic API</h3>
|
||||||
<p>We also believe you should be able to use all Bootstrap plugins purely through the JavaScript API. All public APIs are single, chainable methods, and return the collection acted upon.</p>
|
<p>We also believe you should be able to use all Bootstrap plugins purely through the JavaScript API. All public APIs are single, chainable methods, and return the collection acted upon.</p>
|
||||||
{% highlight js %}
|
{% highlight js %}
|
||||||
$(".btn.danger").button("toggle").addClass("fat")
|
$('.btn.danger').button('toggle').addClass('fat')
|
||||||
{% endhighlight %}
|
{% endhighlight %}
|
||||||
|
|
||||||
<p>All methods should accept an optional options object, a string which targets a particular method, or nothing (which initiates a plugin with default behavior):</p>
|
<p>All methods should accept an optional options object, a string which targets a particular method, or nothing (which initiates a plugin with default behavior):</p>
|
||||||
{% highlight js %}
|
{% highlight js %}
|
||||||
$("#myModal").modal() // initialized with defaults
|
$('#myModal').modal() // initialized with defaults
|
||||||
$("#myModal").modal({ keyboard: false }) // initialized with no keyboard
|
$('#myModal').modal({ keyboard: false }) // initialized with no keyboard
|
||||||
$("#myModal").modal('show') // initializes and invokes show immediately</p>
|
$('#myModal').modal('show') // initializes and invokes show immediately</p>
|
||||||
{% endhighlight %}
|
{% endhighlight %}
|
||||||
|
|
||||||
<p>Each plugin also exposes its raw constructor on a <code>Constructor</code> property: <code>$.fn.popover.Constructor</code>. If you'd like to get a particular plugin instance, retrieve it directly from an element: <code>$('[rel=popover]').data('popover')</code>.</p>
|
<p>Each plugin also exposes its raw constructor on a <code>Constructor</code> property: <code>$.fn.popover.Constructor</code>. If you'd like to get a particular plugin instance, retrieve it directly from an element: <code>$('[rel=popover]').data('popover')</code>.</p>
|
||||||
@ -304,15 +304,15 @@ $('#myModal').modal({
|
|||||||
{% endhighlight %}
|
{% endhighlight %}
|
||||||
|
|
||||||
<h4>.modal('toggle')</h4>
|
<h4>.modal('toggle')</h4>
|
||||||
<p>Manually toggles a modal.</p>
|
<p>Manually toggles a modal. <strong>Returns to the caller before the modal has actually been shown or hidden</strong> (i.e. before the <code>shown.bs.modal</code> or <code>hidden.bs.modal</code> event occurs).</p>
|
||||||
{% highlight js %}$('#myModal').modal('toggle'){% endhighlight %}
|
{% highlight js %}$('#myModal').modal('toggle'){% endhighlight %}
|
||||||
|
|
||||||
<h4>.modal('show')</h4>
|
<h4>.modal('show')</h4>
|
||||||
<p>Manually opens a modal.</p>
|
<p>Manually opens a modal. <strong>Returns to the caller before the modal has actually been shown</strong> (i.e. before the <code>shown.bs.modal</code> event occurs).</p>
|
||||||
{% highlight js %}$('#myModal').modal('show'){% endhighlight %}
|
{% highlight js %}$('#myModal').modal('show'){% endhighlight %}
|
||||||
|
|
||||||
<h4>.modal('hide')</h4>
|
<h4>.modal('hide')</h4>
|
||||||
<p>Manually hides a modal.</p>
|
<p>Manually hides a modal. <strong>Returns to the caller before the modal has actually been hidden</strong> (i.e. before the <code>hidden.bs.modal</code> event occurs).</p>
|
||||||
{% highlight js %}$('#myModal').modal('hide'){% endhighlight %}
|
{% highlight js %}$('#myModal').modal('hide'){% endhighlight %}
|
||||||
|
|
||||||
<h3>Events</h3>
|
<h3>Events</h3>
|
||||||
@ -328,11 +328,11 @@ $('#myModal').modal({
|
|||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<td>show.bs.modal</td>
|
<td>show.bs.modal</td>
|
||||||
<td>This event fires immediately when the <code>show</code> instance method is called.</td>
|
<td>This event fires immediately when the <code>show</code> instance method is called. If caused by a click, the clicked element is available as the <code>relatedTarget</code> property of the event.</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>shown.bs.modal</td>
|
<td>shown.bs.modal</td>
|
||||||
<td>This event is fired when the modal has been made visible to the user (will wait for CSS transitions to complete).</td>
|
<td>This event is fired when the modal has been made visible to the user (will wait for CSS transitions to complete). If caused by a click, the clicked element is available as the <code>relatedTarget</code> property of the event.</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>hide.bs.modal</td>
|
<td>hide.bs.modal</td>
|
||||||
@ -346,8 +346,8 @@ $('#myModal').modal({
|
|||||||
</table>
|
</table>
|
||||||
</div><!-- /.table-responsive -->
|
</div><!-- /.table-responsive -->
|
||||||
{% highlight js %}
|
{% highlight js %}
|
||||||
$('#myModal').on('hidden.bs.modal', function () {
|
$('#myModal').on('hidden.bs.modal', function (e) {
|
||||||
// do something…
|
// do something...
|
||||||
})
|
})
|
||||||
{% endhighlight %}
|
{% endhighlight %}
|
||||||
</div>
|
</div>
|
||||||
@ -529,6 +529,7 @@ $('#myDropdown').on('show.bs.dropdown', function () {
|
|||||||
{% endhighlight %}
|
{% endhighlight %}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<!-- ScrollSpy
|
<!-- ScrollSpy
|
||||||
================================================== -->
|
================================================== -->
|
||||||
<div class="bs-docs-section">
|
<div class="bs-docs-section">
|
||||||
@ -588,7 +589,13 @@ $('#myDropdown').on('show.bs.dropdown', function () {
|
|||||||
<h3>Via data attributes</h3>
|
<h3>Via data attributes</h3>
|
||||||
<p>To easily add scrollspy behavior to your topbar navigation, add <code>data-spy="scroll"</code> to the element you want to spy on (most typically this would be the <code><body></code>). Then add the <code>data-target</code> attribute with the ID or class of the parent element of any Bootstrap <code>.nav</code> component.</p>
|
<p>To easily add scrollspy behavior to your topbar navigation, add <code>data-spy="scroll"</code> to the element you want to spy on (most typically this would be the <code><body></code>). Then add the <code>data-target</code> attribute with the ID or class of the parent element of any Bootstrap <code>.nav</code> component.</p>
|
||||||
{% highlight html %}
|
{% highlight html %}
|
||||||
<body data-spy="scroll" data-target="#navbar-example">
|
<body data-spy="scroll" data-target=".navbar-example">
|
||||||
|
...
|
||||||
|
<div class="navbar-example">
|
||||||
|
<ul class="nav nav-tabs">
|
||||||
|
...
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
...
|
...
|
||||||
</body>
|
</body>
|
||||||
{% endhighlight %}
|
{% endhighlight %}
|
||||||
@ -596,7 +603,7 @@ $('#myDropdown').on('show.bs.dropdown', function () {
|
|||||||
<h3>Via JavaScript</h3>
|
<h3>Via JavaScript</h3>
|
||||||
<p>Call the scrollspy via JavaScript:</p>
|
<p>Call the scrollspy via JavaScript:</p>
|
||||||
{% highlight js %}
|
{% highlight js %}
|
||||||
$('body').scrollspy({ target: '#navbar-example' })
|
$('body').scrollspy({ target: '.navbar-example' })
|
||||||
{% endhighlight %}
|
{% endhighlight %}
|
||||||
|
|
||||||
<div class="bs-callout bs-callout-danger">
|
<div class="bs-callout bs-callout-danger">
|
||||||
@ -1408,7 +1415,7 @@ $('#my-alert').bind('closed.bs.alert', function () {
|
|||||||
<h2 id="buttons-usage">Usage</h2>
|
<h2 id="buttons-usage">Usage</h2>
|
||||||
<p>Enable buttons via JavaScript:</p>
|
<p>Enable buttons via JavaScript:</p>
|
||||||
{% highlight js %}
|
{% highlight js %}
|
||||||
$('.btn-group').button()
|
$('.btn').button()
|
||||||
{% endhighlight %}
|
{% endhighlight %}
|
||||||
|
|
||||||
<h3>Markup</h3>
|
<h3>Markup</h3>
|
||||||
@ -1593,7 +1600,7 @@ $('.btn-group').button()
|
|||||||
<h3>Via JavaScript</h3>
|
<h3>Via JavaScript</h3>
|
||||||
<p>Enable manually with:</p>
|
<p>Enable manually with:</p>
|
||||||
{% highlight js %}
|
{% highlight js %}
|
||||||
$(".collapse").collapse()
|
$('.collapse').collapse()
|
||||||
{% endhighlight %}
|
{% endhighlight %}
|
||||||
|
|
||||||
<h3>Options</h3>
|
<h3>Options</h3>
|
||||||
@ -1926,22 +1933,27 @@ $('#myCarousel').on('slide.bs.carousel', function () {
|
|||||||
<hr class="bs-docs-separator">
|
<hr class="bs-docs-separator">
|
||||||
|
|
||||||
<h2 id="affix-usage">Usage</h2>
|
<h2 id="affix-usage">Usage</h2>
|
||||||
|
<p>Use the affix plugin via data attributes or manually with your own JavaScript. <strong>In both situations, you must provide CSS for the positioning of your content.</strong></p>
|
||||||
|
|
||||||
|
<h3>Positioning via CSS</h3>
|
||||||
|
<p>The affix plugin toggles between three classes, each representing a particular state: <code>.affix</code>, <code>.affix-top</code>, and <code>.affix-bottom</code>. You must provide the styles for these classes yourself (independent of this plugin) to handle the actual positions.</p>
|
||||||
|
<p>Here's how the affix plugin works:</p>
|
||||||
|
<ol>
|
||||||
|
<li>To start, the plugin adds <code>.affix-top</code> to indicate the element is in it's top-most position. At this point no CSS positioning is required.</li>
|
||||||
|
<li>Scrolling past the element you want affixed should trigger the actual affixing. This is where <code>.affix</code> replaces <code>.affix-top</code> and sets <code>position: fixed;</code> (provided by Bootstrap's code CSS).</li>
|
||||||
|
<li>If a bottom offset is defined, scrolling past that should replace <code>.affix</code> with <code>.affix-bottom</code>. Since offsets are optional, setting one requires you to set the appropriate CSS. In this case, add <code>position: absolute;</code> when necessary. The plugin uses the data attribute or JavaScript option to determine where to position the elemtn from there.</li>
|
||||||
|
</ol>
|
||||||
|
<p>Follow the above steps to set your CSS for either of the usage options below.</p>
|
||||||
|
|
||||||
<h3>Via data attributes</h3>
|
<h3>Via data attributes</h3>
|
||||||
<p>To easily add affix behavior to any element, just add <code>data-spy="affix"</code> to the element you want to spy on. Then use offsets to define when to toggle the pinning of an element on and off.</p>
|
<p>To easily add affix behavior to any element, just add <code>data-spy="affix"</code> to the element you want to spy on. Use offsets to define when to toggle the pinning of an element.</p>
|
||||||
|
|
||||||
{% highlight html %}
|
{% highlight html %}
|
||||||
<div data-spy="affix" data-offset-top="200">...</div>
|
<div data-spy="affix" data-offset-top="60" data-offset-bottom="200">
|
||||||
|
...
|
||||||
|
</div>
|
||||||
{% endhighlight %}
|
{% endhighlight %}
|
||||||
|
|
||||||
<div class="bs-callout bs-callout-warning">
|
|
||||||
<h4>Requires independent styling ;)</h4>
|
|
||||||
<p>
|
|
||||||
Affix toggles between three states/classes: <code>.affix</code>, <code>.affix-top</code>, and <code>.affix-bottom</code>. You must provide the styles for these classes yourself (independent of this plugin).
|
|
||||||
The <code>.affix-top</code> class should be in the regular flow of the document. The <code>.affix</code> class should be <code>position: fixed</code>. And <code>.affix-bottom</code> should be <code>position: absolute</code>. Note: <code>.affix-bottom</code> is special in that the plugin will place the element with JS relative to the <code>offset: { bottom: number }</code> option you've provided.
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<h3>Via JavaScript</h3>
|
<h3>Via JavaScript</h3>
|
||||||
<p>Call the affix plugin via JavaScript:</p>
|
<p>Call the affix plugin via JavaScript:</p>
|
||||||
{% highlight js %}
|
{% highlight js %}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: affix.js v3.0.2
|
* Bootstrap: affix.js v3.0.3
|
||||||
* http://getbootstrap.com/javascript/#affix
|
* http://getbootstrap.com/javascript/#affix
|
||||||
* ========================================================================
|
* ========================================================================
|
||||||
* Copyright 2013 Twitter, Inc.
|
* Copyright 2013 Twitter, Inc.
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: alert.js v3.0.2
|
* Bootstrap: alert.js v3.0.3
|
||||||
* http://getbootstrap.com/javascript/#alerts
|
* http://getbootstrap.com/javascript/#alerts
|
||||||
* ========================================================================
|
* ========================================================================
|
||||||
* Copyright 2013 Twitter, Inc.
|
* Copyright 2013 Twitter, Inc.
|
||||||
|
16
js/button.js
16
js/button.js
@ -1,5 +1,5 @@
|
|||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: button.js v3.0.2
|
* Bootstrap: button.js v3.0.3
|
||||||
* http://getbootstrap.com/javascript/#buttons
|
* http://getbootstrap.com/javascript/#buttons
|
||||||
* ========================================================================
|
* ========================================================================
|
||||||
* Copyright 2013 Twitter, Inc.
|
* Copyright 2013 Twitter, Inc.
|
||||||
@ -54,15 +54,21 @@
|
|||||||
|
|
||||||
Button.prototype.toggle = function () {
|
Button.prototype.toggle = function () {
|
||||||
var $parent = this.$element.closest('[data-toggle="buttons"]')
|
var $parent = this.$element.closest('[data-toggle="buttons"]')
|
||||||
|
var changed = true
|
||||||
|
|
||||||
if ($parent.length) {
|
if ($parent.length) {
|
||||||
var $input = this.$element.find('input')
|
var $input = this.$element.find('input')
|
||||||
.prop('checked', !this.$element.hasClass('active'))
|
if ($input.prop('type') === 'radio') {
|
||||||
.trigger('change')
|
// see if clicking on current one
|
||||||
if ($input.prop('type') === 'radio') $parent.find('.active').removeClass('active')
|
if ($input.prop('checked') && this.$element.hasClass('active'))
|
||||||
|
changed = false
|
||||||
|
else
|
||||||
|
$parent.find('.active').removeClass('active')
|
||||||
|
}
|
||||||
|
if (changed) $input.prop('checked', !this.$element.hasClass('active')).trigger('change')
|
||||||
}
|
}
|
||||||
|
|
||||||
this.$element.toggleClass('active')
|
if (changed) this.$element.toggleClass('active')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: carousel.js v3.0.2
|
* Bootstrap: carousel.js v3.0.3
|
||||||
* http://getbootstrap.com/javascript/#carousel
|
* http://getbootstrap.com/javascript/#carousel
|
||||||
* ========================================================================
|
* ========================================================================
|
||||||
* Copyright 2013 Twitter, Inc.
|
* Copyright 2013 Twitter, Inc.
|
||||||
@ -69,7 +69,7 @@
|
|||||||
|
|
||||||
if (pos > (this.$items.length - 1) || pos < 0) return
|
if (pos > (this.$items.length - 1) || pos < 0) return
|
||||||
|
|
||||||
if (this.sliding) return this.$element.one('slid', function () { that.to(pos) })
|
if (this.sliding) return this.$element.one('slid.bs.carousel', function () { that.to(pos) })
|
||||||
if (activeIndex == pos) return this.pause().cycle()
|
if (activeIndex == pos) return this.pause().cycle()
|
||||||
|
|
||||||
return this.slide(pos > activeIndex ? 'next' : 'prev', $(this.$items[pos]))
|
return this.slide(pos > activeIndex ? 'next' : 'prev', $(this.$items[pos]))
|
||||||
@ -121,7 +121,7 @@
|
|||||||
|
|
||||||
if (this.$indicators.length) {
|
if (this.$indicators.length) {
|
||||||
this.$indicators.find('.active').removeClass('active')
|
this.$indicators.find('.active').removeClass('active')
|
||||||
this.$element.one('slid', function () {
|
this.$element.one('slid.bs.carousel', function () {
|
||||||
var $nextIndicator = $(that.$indicators.children()[that.getActiveIndex()])
|
var $nextIndicator = $(that.$indicators.children()[that.getActiveIndex()])
|
||||||
$nextIndicator && $nextIndicator.addClass('active')
|
$nextIndicator && $nextIndicator.addClass('active')
|
||||||
})
|
})
|
||||||
@ -139,7 +139,7 @@
|
|||||||
$next.removeClass([type, direction].join(' ')).addClass('active')
|
$next.removeClass([type, direction].join(' ')).addClass('active')
|
||||||
$active.removeClass(['active', direction].join(' '))
|
$active.removeClass(['active', direction].join(' '))
|
||||||
that.sliding = false
|
that.sliding = false
|
||||||
setTimeout(function () { that.$element.trigger('slid') }, 0)
|
setTimeout(function () { that.$element.trigger('slid.bs.carousel') }, 0)
|
||||||
})
|
})
|
||||||
.emulateTransitionEnd(600)
|
.emulateTransitionEnd(600)
|
||||||
} else {
|
} else {
|
||||||
@ -148,7 +148,7 @@
|
|||||||
$active.removeClass('active')
|
$active.removeClass('active')
|
||||||
$next.addClass('active')
|
$next.addClass('active')
|
||||||
this.sliding = false
|
this.sliding = false
|
||||||
this.$element.trigger('slid')
|
this.$element.trigger('slid.bs.carousel')
|
||||||
}
|
}
|
||||||
|
|
||||||
isCycling && this.cycle()
|
isCycling && this.cycle()
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: collapse.js v3.0.2
|
* Bootstrap: collapse.js v3.0.3
|
||||||
* http://getbootstrap.com/javascript/#collapse
|
* http://getbootstrap.com/javascript/#collapse
|
||||||
* ========================================================================
|
* ========================================================================
|
||||||
* Copyright 2013 Twitter, Inc.
|
* Copyright 2013 Twitter, Inc.
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: dropdown.js v3.0.2
|
* Bootstrap: dropdown.js v3.0.3
|
||||||
* http://getbootstrap.com/javascript/#dropdowns
|
* http://getbootstrap.com/javascript/#dropdowns
|
||||||
* ========================================================================
|
* ========================================================================
|
||||||
* Copyright 2013 Twitter, Inc.
|
* Copyright 2013 Twitter, Inc.
|
||||||
@ -26,7 +26,7 @@
|
|||||||
var backdrop = '.dropdown-backdrop'
|
var backdrop = '.dropdown-backdrop'
|
||||||
var toggle = '[data-toggle=dropdown]'
|
var toggle = '[data-toggle=dropdown]'
|
||||||
var Dropdown = function (element) {
|
var Dropdown = function (element) {
|
||||||
var $el = $(element).on('click.bs.dropdown', this.toggle)
|
$(element).on('click.bs.dropdown', this.toggle)
|
||||||
}
|
}
|
||||||
|
|
||||||
Dropdown.prototype.toggle = function (e) {
|
Dropdown.prototype.toggle = function (e) {
|
||||||
@ -41,7 +41,7 @@
|
|||||||
|
|
||||||
if (!isActive) {
|
if (!isActive) {
|
||||||
if ('ontouchstart' in document.documentElement && !$parent.closest('.navbar-nav').length) {
|
if ('ontouchstart' in document.documentElement && !$parent.closest('.navbar-nav').length) {
|
||||||
// if mobile we we use a backdrop because click events don't delegate
|
// if mobile we use a backdrop because click events don't delegate
|
||||||
$('<div class="dropdown-backdrop"/>').insertAfter($(this)).on('click', clearMenus)
|
$('<div class="dropdown-backdrop"/>').insertAfter($(this)).on('click', clearMenus)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -123,9 +123,9 @@
|
|||||||
$.fn.dropdown = function (option) {
|
$.fn.dropdown = function (option) {
|
||||||
return this.each(function () {
|
return this.each(function () {
|
||||||
var $this = $(this)
|
var $this = $(this)
|
||||||
var data = $this.data('dropdown')
|
var data = $this.data('bs.dropdown')
|
||||||
|
|
||||||
if (!data) $this.data('dropdown', (data = new Dropdown(this)))
|
if (!data) $this.data('bs.dropdown', (data = new Dropdown(this)))
|
||||||
if (typeof option == 'string') data[option].call($this)
|
if (typeof option == 'string') data[option].call($this)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: modal.js v3.0.2
|
* Bootstrap: modal.js v3.0.3
|
||||||
* http://getbootstrap.com/javascript/#modals
|
* http://getbootstrap.com/javascript/#modals
|
||||||
* ========================================================================
|
* ========================================================================
|
||||||
* Copyright 2013 Twitter, Inc.
|
* Copyright 2013 Twitter, Inc.
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: popover.js v3.0.2
|
* Bootstrap: popover.js v3.0.3
|
||||||
* http://getbootstrap.com/javascript/#popovers
|
* http://getbootstrap.com/javascript/#popovers
|
||||||
* ========================================================================
|
* ========================================================================
|
||||||
* Copyright 2013 Twitter, Inc.
|
* Copyright 2013 Twitter, Inc.
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: scrollspy.js v3.0.2
|
* Bootstrap: scrollspy.js v3.0.3
|
||||||
* http://getbootstrap.com/javascript/#scrollspy
|
* http://getbootstrap.com/javascript/#scrollspy
|
||||||
* ========================================================================
|
* ========================================================================
|
||||||
* Copyright 2013 Twitter, Inc.
|
* Copyright 2013 Twitter, Inc.
|
||||||
@ -113,7 +113,7 @@
|
|||||||
.addClass('active')
|
.addClass('active')
|
||||||
}
|
}
|
||||||
|
|
||||||
active.trigger('activate')
|
active.trigger('activate.bs.scrollspy')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: tab.js v3.0.2
|
* Bootstrap: tab.js v3.0.3
|
||||||
* http://getbootstrap.com/javascript/#tabs
|
* http://getbootstrap.com/javascript/#tabs
|
||||||
* ========================================================================
|
* ========================================================================
|
||||||
* Copyright 2013 Twitter, Inc.
|
* Copyright 2013 Twitter, Inc.
|
||||||
|
@ -111,6 +111,12 @@ $(function () {
|
|||||||
ok(!btn1.find('input').prop('checked'), 'btn1 is checked')
|
ok(!btn1.find('input').prop('checked'), 'btn1 is checked')
|
||||||
ok(btn2.hasClass('active'), 'btn2 has active class')
|
ok(btn2.hasClass('active'), 'btn2 has active class')
|
||||||
ok(btn2.find('input').prop('checked'), 'btn2 is checked')
|
ok(btn2.find('input').prop('checked'), 'btn2 is checked')
|
||||||
|
|
||||||
|
btn2.find('input').click() /* clicking an already checked radio should not un-check it */
|
||||||
|
ok(!btn1.hasClass('active'), 'btn1 does not have active class')
|
||||||
|
ok(!btn1.find('input').prop('checked'), 'btn1 is checked')
|
||||||
|
ok(btn2.hasClass('active'), 'btn2 has active class')
|
||||||
|
ok(btn2.find('input').prop('checked'), 'btn2 is checked')
|
||||||
})
|
})
|
||||||
|
|
||||||
})
|
})
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: tooltip.js v3.0.2
|
* Bootstrap: tooltip.js v3.0.3
|
||||||
* http://getbootstrap.com/javascript/#tooltip
|
* http://getbootstrap.com/javascript/#tooltip
|
||||||
* Inspired by the original jQuery.tipsy by Jason Frame
|
* Inspired by the original jQuery.tipsy by Jason Frame
|
||||||
* ========================================================================
|
* ========================================================================
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: transition.js v3.0.2
|
* Bootstrap: transition.js v3.0.3
|
||||||
* http://getbootstrap.com/javascript/#transitions
|
* http://getbootstrap.com/javascript/#transitions
|
||||||
* ========================================================================
|
* ========================================================================
|
||||||
* Copyright 2013 Twitter, Inc.
|
* Copyright 2013 Twitter, Inc.
|
||||||
|
@ -22,6 +22,12 @@
|
|||||||
&:empty {
|
&:empty {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Quick fix for badges in buttons
|
||||||
|
.btn & {
|
||||||
|
position: relative;
|
||||||
|
top: -1px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Hover state, but only for links
|
// Hover state, but only for links
|
||||||
@ -34,12 +40,6 @@ a.badge {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Quick fix for labels/badges in buttons
|
|
||||||
.btn .badge {
|
|
||||||
position: relative;
|
|
||||||
top: -1px;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Account for counters in navs
|
// Account for counters in navs
|
||||||
a.list-group-item.active > .badge,
|
a.list-group-item.active > .badge,
|
||||||
.nav-pills > .active > a > .badge {
|
.nav-pills > .active > a > .badge {
|
||||||
|
@ -2,37 +2,6 @@
|
|||||||
// Button groups
|
// Button groups
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
||||||
|
|
||||||
// Button carets
|
|
||||||
//
|
|
||||||
// Match the button text color to the arrow/caret for indicating dropdown-ness.
|
|
||||||
|
|
||||||
.caret {
|
|
||||||
.btn-default & {
|
|
||||||
border-top-color: @btn-default-color;
|
|
||||||
}
|
|
||||||
.btn-primary &,
|
|
||||||
.btn-success &,
|
|
||||||
.btn-warning &,
|
|
||||||
.btn-danger &,
|
|
||||||
.btn-info & {
|
|
||||||
border-top-color: #fff;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.dropup {
|
|
||||||
.btn-default .caret {
|
|
||||||
border-bottom-color: @btn-default-color;
|
|
||||||
}
|
|
||||||
.btn-primary,
|
|
||||||
.btn-success,
|
|
||||||
.btn-warning,
|
|
||||||
.btn-danger,
|
|
||||||
.btn-info {
|
|
||||||
.caret {
|
|
||||||
border-bottom-color: #fff;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Make the div behave like a button
|
// Make the div behave like a button
|
||||||
.btn-group,
|
.btn-group,
|
||||||
.btn-group-vertical {
|
.btn-group-vertical {
|
||||||
@ -178,7 +147,8 @@
|
|||||||
|
|
||||||
.btn-group-vertical {
|
.btn-group-vertical {
|
||||||
> .btn,
|
> .btn,
|
||||||
> .btn-group {
|
> .btn-group,
|
||||||
|
> .btn-group > .btn {
|
||||||
display: block;
|
display: block;
|
||||||
float: none;
|
float: none;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
@ -238,11 +208,15 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
table-layout: fixed;
|
table-layout: fixed;
|
||||||
border-collapse: separate;
|
border-collapse: separate;
|
||||||
.btn {
|
> .btn,
|
||||||
|
> .btn-group {
|
||||||
float: none;
|
float: none;
|
||||||
display: table-cell;
|
display: table-cell;
|
||||||
width: 1%;
|
width: 1%;
|
||||||
}
|
}
|
||||||
|
> .btn-group .btn {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
// Base styles
|
// Base styles
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
||||||
|
|
||||||
// Core styles
|
|
||||||
.btn {
|
.btn {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
margin-bottom: 0; // For input.btn
|
margin-bottom: 0; // For input.btn
|
||||||
@ -45,7 +44,6 @@
|
|||||||
.opacity(.65);
|
.opacity(.65);
|
||||||
.box-shadow(none);
|
.box-shadow(none);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -123,13 +121,12 @@
|
|||||||
// line-height: ensure even-numbered height of button next to large input
|
// line-height: ensure even-numbered height of button next to large input
|
||||||
.button-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @border-radius-large);
|
.button-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @border-radius-large);
|
||||||
}
|
}
|
||||||
.btn-sm,
|
.btn-sm {
|
||||||
.btn-xs {
|
|
||||||
// line-height: ensure proper height of button next to small input
|
// line-height: ensure proper height of button next to small input
|
||||||
.button-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-small);
|
.button-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-small);
|
||||||
}
|
}
|
||||||
.btn-xs {
|
.btn-xs {
|
||||||
padding: 1px 5px;
|
.button-size(@padding-xs-vertical; @padding-xs-horizontal; @font-size-small; @line-height-small; @border-radius-small);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -91,6 +91,7 @@
|
|||||||
// Hover/focus state
|
// Hover/focus state
|
||||||
&:hover,
|
&:hover,
|
||||||
&:focus {
|
&:focus {
|
||||||
|
outline: none;
|
||||||
color: @carousel-control-color;
|
color: @carousel-control-color;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
.opacity(.9);
|
.opacity(.9);
|
||||||
|
@ -10,12 +10,9 @@
|
|||||||
height: 0;
|
height: 0;
|
||||||
margin-left: 2px;
|
margin-left: 2px;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
border-top: @caret-width-base solid @dropdown-caret-color;
|
border-top: @caret-width-base solid;
|
||||||
border-right: @caret-width-base solid transparent;
|
border-right: @caret-width-base solid transparent;
|
||||||
border-left: @caret-width-base solid transparent;
|
border-left: @caret-width-base solid transparent;
|
||||||
// Firefox fix for https://github.com/twbs/bootstrap/issues/9538. Once fixed,
|
|
||||||
// we can just straight up remove this.
|
|
||||||
border-bottom: 0 dotted;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// The dropdown wrapper (div)
|
// The dropdown wrapper (div)
|
||||||
@ -163,10 +160,8 @@
|
|||||||
.navbar-fixed-bottom .dropdown {
|
.navbar-fixed-bottom .dropdown {
|
||||||
// Reverse the caret
|
// Reverse the caret
|
||||||
.caret {
|
.caret {
|
||||||
// Firefox fix for https://github.com/twbs/bootstrap/issues/9538. Once this
|
border-top: 0;
|
||||||
// gets fixed, restore `border-top: 0;`.
|
border-bottom: @caret-width-base solid;
|
||||||
border-top: 0 dotted;
|
|
||||||
border-bottom: @caret-width-base solid @dropdown-caret-color;
|
|
||||||
content: "";
|
content: "";
|
||||||
}
|
}
|
||||||
// Different positioning for bottom up menu
|
// Different positioning for bottom up menu
|
||||||
|
@ -309,6 +309,11 @@ input[type="checkbox"],
|
|||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Override `width: 100%;` when not within a `.form-group`
|
||||||
|
select.form-control {
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
|
|
||||||
// Remove default margin on radios/checkboxes that were used for stacking, and
|
// Remove default margin on radios/checkboxes that were used for stacking, and
|
||||||
// then undo the floating of radios and checkboxes to match (which also avoids
|
// then undo the floating of radios and checkboxes to match (which also avoids
|
||||||
// a bug in WebKit: https://github.com/twbs/bootstrap/issues/1969).
|
// a bug in WebKit: https://github.com/twbs/bootstrap/issues/1969).
|
||||||
@ -345,6 +350,12 @@ input[type="checkbox"],
|
|||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
padding-top: (@padding-base-vertical + 1); // Default padding plus a border
|
padding-top: (@padding-base-vertical + 1); // Default padding plus a border
|
||||||
}
|
}
|
||||||
|
// Account for padding we're adding to ensure the alignment and of help text
|
||||||
|
// and other content below items
|
||||||
|
.radio,
|
||||||
|
.checkbox {
|
||||||
|
min-height: @line-height-computed + (@padding-base-vertical + 1);
|
||||||
|
}
|
||||||
|
|
||||||
// Make form groups behave like rows
|
// Make form groups behave like rows
|
||||||
.form-group {
|
.form-group {
|
||||||
|
@ -10,11 +10,11 @@
|
|||||||
// Import the fonts
|
// Import the fonts
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'Glyphicons Halflings';
|
font-family: 'Glyphicons Halflings';
|
||||||
src: url('@{icon-font-path}@{icon-font-name}.eot');
|
src: ~"url('@{icon-font-path}@{icon-font-name}.eot')";
|
||||||
src: url('@{icon-font-path}@{icon-font-name}.eot?#iefix') format('embedded-opentype'),
|
src: ~"url('@{icon-font-path}@{icon-font-name}.eot?#iefix') format('embedded-opentype')",
|
||||||
url('@{icon-font-path}@{icon-font-name}.woff') format('woff'),
|
~"url('@{icon-font-path}@{icon-font-name}.woff') format('woff')",
|
||||||
url('@{icon-font-path}@{icon-font-name}.ttf') format('truetype'),
|
~"url('@{icon-font-path}@{icon-font-name}.ttf') format('truetype')",
|
||||||
url('@{icon-font-path}@{icon-font-name}.svg#glyphicons_halflingsregular') format('svg');
|
~"url('@{icon-font-path}@{icon-font-name}.svg#glyphicons-halflingsregular') format('svg')";
|
||||||
}
|
}
|
||||||
|
|
||||||
// Catchall baseclass
|
// Catchall baseclass
|
||||||
|
@ -5,6 +5,16 @@
|
|||||||
// Set the container width, and override it for fixed navbars in media queries
|
// Set the container width, and override it for fixed navbars in media queries
|
||||||
.container {
|
.container {
|
||||||
.container-fixed();
|
.container-fixed();
|
||||||
|
|
||||||
|
@media (min-width: @screen-sm) {
|
||||||
|
width: @container-sm;
|
||||||
|
}
|
||||||
|
@media (min-width: @screen-md) {
|
||||||
|
width: @container-md;
|
||||||
|
}
|
||||||
|
@media (min-width: @screen-lg-min) {
|
||||||
|
width: @container-lg;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// mobile first defaults
|
// mobile first defaults
|
||||||
@ -18,11 +28,8 @@
|
|||||||
|
|
||||||
// Extra small grid
|
// Extra small grid
|
||||||
//
|
//
|
||||||
// Grid classes for extra small devices like smartphones. No offset, push, or
|
// Columns, offsets, pushes, and pulls for extra small devices like
|
||||||
// pull classes are present here due to the size of the target.
|
// smartphones.
|
||||||
//
|
|
||||||
// Note that `.col-xs-12` doesn't get floated on purpose--there's no need since
|
|
||||||
// it's full-width.
|
|
||||||
|
|
||||||
.make-grid-columns-float(xs);
|
.make-grid-columns-float(xs);
|
||||||
.make-grid(@grid-columns, xs, width);
|
.make-grid(@grid-columns, xs, width);
|
||||||
@ -35,15 +42,8 @@
|
|||||||
//
|
//
|
||||||
// Columns, offsets, pushes, and pulls for the small device range, from phones
|
// Columns, offsets, pushes, and pulls for the small device range, from phones
|
||||||
// to tablets.
|
// to tablets.
|
||||||
//
|
|
||||||
// Note that `.col-sm-12` doesn't get floated on purpose--there's no need since
|
|
||||||
// it's full-width.
|
|
||||||
|
|
||||||
@media (min-width: @screen-sm-min) {
|
@media (min-width: @screen-sm-min) {
|
||||||
.container {
|
|
||||||
width: @container-sm;
|
|
||||||
}
|
|
||||||
|
|
||||||
.make-grid-columns-float(sm);
|
.make-grid-columns-float(sm);
|
||||||
.make-grid(@grid-columns, sm, width);
|
.make-grid(@grid-columns, sm, width);
|
||||||
.make-grid(@grid-columns, sm, pull);
|
.make-grid(@grid-columns, sm, pull);
|
||||||
@ -55,15 +55,8 @@
|
|||||||
// Medium grid
|
// Medium grid
|
||||||
//
|
//
|
||||||
// Columns, offsets, pushes, and pulls for the desktop device range.
|
// Columns, offsets, pushes, and pulls for the desktop device range.
|
||||||
//
|
|
||||||
// Note that `.col-md-12` doesn't get floated on purpose--there's no need since
|
|
||||||
// it's full-width.
|
|
||||||
|
|
||||||
@media (min-width: @screen-md-min) {
|
@media (min-width: @screen-md-min) {
|
||||||
.container {
|
|
||||||
width: @container-md;
|
|
||||||
}
|
|
||||||
|
|
||||||
.make-grid-columns-float(md);
|
.make-grid-columns-float(md);
|
||||||
.make-grid(@grid-columns, md, width);
|
.make-grid(@grid-columns, md, width);
|
||||||
.make-grid(@grid-columns, md, pull);
|
.make-grid(@grid-columns, md, pull);
|
||||||
@ -75,15 +68,8 @@
|
|||||||
// Large grid
|
// Large grid
|
||||||
//
|
//
|
||||||
// Columns, offsets, pushes, and pulls for the large desktop device range.
|
// Columns, offsets, pushes, and pulls for the large desktop device range.
|
||||||
//
|
|
||||||
// Note that `.col-lg-12` doesn't get floated on purpose--there's no need since
|
|
||||||
// it's full-width.
|
|
||||||
|
|
||||||
@media (min-width: @screen-lg-min) {
|
@media (min-width: @screen-lg-min) {
|
||||||
.container {
|
|
||||||
width: @container-lg;
|
|
||||||
}
|
|
||||||
|
|
||||||
.make-grid-columns-float(lg);
|
.make-grid-columns-float(lg);
|
||||||
.make-grid(@grid-columns, lg, width);
|
.make-grid(@grid-columns, lg, width);
|
||||||
.make-grid(@grid-columns, lg, pull);
|
.make-grid(@grid-columns, lg, pull);
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
border-collapse: separate; // prevent input groups from inheriting border styles from table cells when placed within a table
|
border-collapse: separate; // prevent input groups from inheriting border styles from table cells when placed within a table
|
||||||
|
|
||||||
// Undo padding and float of grid classes
|
// Undo padding and float of grid classes
|
||||||
&.col {
|
&[class*="col-"] {
|
||||||
float: none;
|
float: none;
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
|
@ -12,7 +12,8 @@
|
|||||||
color: @jumbotron-color;
|
color: @jumbotron-color;
|
||||||
background-color: @jumbotron-bg;
|
background-color: @jumbotron-bg;
|
||||||
|
|
||||||
h1 {
|
h1,
|
||||||
|
.h1 {
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
color: @jumbotron-heading-color;
|
color: @jumbotron-heading-color;
|
||||||
}
|
}
|
||||||
@ -24,6 +25,10 @@
|
|||||||
border-radius: @border-radius-large; // Only round corners at higher resolutions if contained in a container
|
border-radius: @border-radius-large; // Only round corners at higher resolutions if contained in a container
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
@media screen and (min-width: @screen-sm-min) {
|
@media screen and (min-width: @screen-sm-min) {
|
||||||
padding-top: (@jumbotron-padding * 1.6);
|
padding-top: (@jumbotron-padding * 1.6);
|
||||||
padding-bottom: (@jumbotron-padding * 1.6);
|
padding-bottom: (@jumbotron-padding * 1.6);
|
||||||
@ -33,7 +38,8 @@
|
|||||||
padding-right: (@jumbotron-padding * 2);
|
padding-right: (@jumbotron-padding * 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
h1 {
|
h1,
|
||||||
|
.h1 {
|
||||||
font-size: (@font-size-base * 4.5);
|
font-size: (@font-size-base * 4.5);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -28,6 +28,12 @@
|
|||||||
&:empty {
|
&:empty {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Quick fix for labels in buttons
|
||||||
|
.btn & {
|
||||||
|
position: relative;
|
||||||
|
top: -1px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Colors
|
// Colors
|
||||||
|
@ -19,8 +19,8 @@
|
|||||||
.clearfix() {
|
.clearfix() {
|
||||||
&:before,
|
&:before,
|
||||||
&:after {
|
&:after {
|
||||||
content: " "; /* 1 */
|
content: " "; // 1
|
||||||
display: table; /* 2 */
|
display: table; // 2
|
||||||
}
|
}
|
||||||
&:after {
|
&:after {
|
||||||
clear: both;
|
clear: both;
|
||||||
@ -30,7 +30,7 @@
|
|||||||
// WebKit-style focus
|
// WebKit-style focus
|
||||||
.tab-focus() {
|
.tab-focus() {
|
||||||
// Default
|
// Default
|
||||||
outline: thin dotted #333;
|
outline: thin dotted;
|
||||||
// WebKit
|
// WebKit
|
||||||
outline: 5px auto -webkit-focus-ring-color;
|
outline: 5px auto -webkit-focus-ring-color;
|
||||||
outline-offset: -2px;
|
outline-offset: -2px;
|
||||||
@ -55,7 +55,8 @@
|
|||||||
// Placeholder text
|
// Placeholder text
|
||||||
.placeholder(@color: @input-color-placeholder) {
|
.placeholder(@color: @input-color-placeholder) {
|
||||||
&:-moz-placeholder { color: @color; } // Firefox 4-18
|
&:-moz-placeholder { color: @color; } // Firefox 4-18
|
||||||
&::-moz-placeholder { color: @color; } // Firefox 19+
|
&::-moz-placeholder { color: @color; // Firefox 19+
|
||||||
|
opacity: 1; } // See https://github.com/twbs/bootstrap/pull/11526
|
||||||
&:-ms-input-placeholder { color: @color; } // Internet Explorer 10+
|
&:-ms-input-placeholder { color: @color; } // Internet Explorer 10+
|
||||||
&::-webkit-input-placeholder { color: @color; } // Safari and Chrome
|
&::-webkit-input-placeholder { color: @color; } // Safari and Chrome
|
||||||
}
|
}
|
||||||
@ -87,11 +88,7 @@
|
|||||||
}
|
}
|
||||||
// New mixin to use as of v3.0.1
|
// New mixin to use as of v3.0.1
|
||||||
.text-hide() {
|
.text-hide() {
|
||||||
font: ~"0/0" a;
|
.hide-text();
|
||||||
color: transparent;
|
|
||||||
text-shadow: none;
|
|
||||||
background-color: transparent;
|
|
||||||
border: 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -277,10 +274,8 @@
|
|||||||
// Creates two color stops, start and end, by specifying a color and position for each color stop.
|
// Creates two color stops, start and end, by specifying a color and position for each color stop.
|
||||||
// Color stops are not available in IE9 and below.
|
// Color stops are not available in IE9 and below.
|
||||||
.horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {
|
.horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {
|
||||||
background-image: -webkit-gradient(linear, @start-percent top, @end-percent top, from(@start-color), to(@end-color)); // Safari 4+, Chrome 2+
|
background-image: -webkit-linear-gradient(left, color-stop(@start-color @start-percent), color-stop(@end-color @end-percent)); // Safari 5.1-6, Chrome 10+
|
||||||
background-image: -webkit-linear-gradient(left, color-stop(@start-color @start-percent), color-stop(@end-color @end-percent)); // Safari 5.1+, Chrome 10+
|
background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+
|
||||||
background-image: -moz-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // FF 3.6+
|
|
||||||
background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10
|
|
||||||
background-repeat: repeat-x;
|
background-repeat: repeat-x;
|
||||||
filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)",argb(@start-color),argb(@end-color))); // IE9 and down
|
filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)",argb(@start-color),argb(@end-color))); // IE9 and down
|
||||||
}
|
}
|
||||||
@ -290,47 +285,36 @@
|
|||||||
// Creates two color stops, start and end, by specifying a color and position for each color stop.
|
// Creates two color stops, start and end, by specifying a color and position for each color stop.
|
||||||
// Color stops are not available in IE9 and below.
|
// Color stops are not available in IE9 and below.
|
||||||
.vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {
|
.vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {
|
||||||
background-image: -webkit-gradient(linear, left @start-percent, left @end-percent, from(@start-color), to(@end-color)); // Safari 4+, Chrome 2+
|
background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+
|
||||||
background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Safari 5.1+, Chrome 10+
|
background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+
|
||||||
background-image: -moz-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // FF 3.6+
|
|
||||||
background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10
|
|
||||||
background-repeat: repeat-x;
|
background-repeat: repeat-x;
|
||||||
filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb(@start-color),argb(@end-color))); // IE9 and down
|
filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb(@start-color),argb(@end-color))); // IE9 and down
|
||||||
}
|
}
|
||||||
|
|
||||||
.directional(@start-color: #555; @end-color: #333; @deg: 45deg) {
|
.directional(@start-color: #555; @end-color: #333; @deg: 45deg) {
|
||||||
background-repeat: repeat-x;
|
background-repeat: repeat-x;
|
||||||
background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1+, Chrome 10+
|
background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+
|
||||||
background-image: -moz-linear-gradient(@deg, @start-color, @end-color); // FF 3.6+
|
background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+
|
||||||
background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10
|
|
||||||
}
|
}
|
||||||
.horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {
|
.horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {
|
||||||
background-image: -webkit-gradient(left, linear, 0 0, 0 100%, from(@start-color), color-stop(@color-stop, @mid-color), to(@end-color));
|
|
||||||
background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);
|
background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);
|
||||||
background-image: -moz-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);
|
|
||||||
background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);
|
background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback
|
filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback
|
||||||
}
|
}
|
||||||
.vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {
|
.vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {
|
||||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(@start-color), color-stop(@color-stop, @mid-color), to(@end-color));
|
|
||||||
background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);
|
background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);
|
||||||
background-image: -moz-linear-gradient(top, @start-color, @mid-color @color-stop, @end-color);
|
|
||||||
background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);
|
background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback
|
filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback
|
||||||
}
|
}
|
||||||
.radial(@inner-color: #555; @outer-color: #333) {
|
.radial(@inner-color: #555; @outer-color: #333) {
|
||||||
background-image: -webkit-gradient(radial, center center, 0, center center, 460, from(@inner-color), to(@outer-color));
|
|
||||||
background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);
|
background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);
|
||||||
background-image: -moz-radial-gradient(circle, @inner-color, @outer-color);
|
|
||||||
background-image: radial-gradient(circle, @inner-color, @outer-color);
|
background-image: radial-gradient(circle, @inner-color, @outer-color);
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.striped(@color: rgba(255,255,255,.15); @angle: 45deg) {
|
.striped(@color: rgba(255,255,255,.15); @angle: 45deg) {
|
||||||
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, @color), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, @color), color-stop(.75, @color), color-stop(.75, transparent), to(transparent));
|
|
||||||
background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);
|
background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);
|
||||||
background-image: -moz-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);
|
|
||||||
background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);
|
background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -391,7 +375,7 @@
|
|||||||
|
|
||||||
// Panels
|
// Panels
|
||||||
// -------------------------
|
// -------------------------
|
||||||
.panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border;) {
|
.panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) {
|
||||||
border-color: @border;
|
border-color: @border;
|
||||||
|
|
||||||
& > .panel-heading {
|
& > .panel-heading {
|
||||||
@ -402,9 +386,6 @@
|
|||||||
+ .panel-collapse .panel-body {
|
+ .panel-collapse .panel-body {
|
||||||
border-top-color: @border;
|
border-top-color: @border;
|
||||||
}
|
}
|
||||||
& > .dropdown .caret {
|
|
||||||
border-color: @heading-text-color transparent;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
& > .panel-footer {
|
& > .panel-footer {
|
||||||
+ .panel-collapse .panel-body {
|
+ .panel-collapse .panel-body {
|
||||||
@ -430,27 +411,27 @@
|
|||||||
|
|
||||||
// Tables
|
// Tables
|
||||||
// -------------------------
|
// -------------------------
|
||||||
.table-row-variant(@state; @background; @border) {
|
.table-row-variant(@state; @background) {
|
||||||
// Exact selectors below required to override `.table-striped` and prevent
|
// Exact selectors below required to override `.table-striped` and prevent
|
||||||
// inheritance to nested tables.
|
// inheritance to nested tables.
|
||||||
.table > thead > tr,
|
.table {
|
||||||
.table > tbody > tr,
|
> thead,
|
||||||
.table > tfoot > tr {
|
> tbody,
|
||||||
> td.@{state},
|
> tfoot {
|
||||||
> th.@{state},
|
> tr > .@{state},
|
||||||
&.@{state} > td,
|
> .@{state} > td,
|
||||||
&.@{state} > th {
|
> .@{state} > th {
|
||||||
background-color: @background;
|
background-color: @background;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Hover states for `.table-hover`
|
// Hover states for `.table-hover`
|
||||||
// Note: this is not available for cells or rows within `thead` or `tfoot`.
|
// Note: this is not available for cells or rows within `thead` or `tfoot`.
|
||||||
.table-hover > tbody > tr {
|
.table-hover > tbody {
|
||||||
> td.@{state}:hover,
|
> tr > .@{state}:hover,
|
||||||
> th.@{state}:hover,
|
> .@{state}:hover > td,
|
||||||
&.@{state}:hover > td,
|
> .@{state}:hover > th {
|
||||||
&.@{state}:hover > th {
|
|
||||||
background-color: darken(@background, 5%);
|
background-color: darken(@background, 5%);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -491,6 +472,11 @@
|
|||||||
border-color: @border;
|
border-color: @border;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.badge {
|
||||||
|
color: @background;
|
||||||
|
background-color: #fff;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Button sizes
|
// Button sizes
|
||||||
@ -561,6 +547,7 @@
|
|||||||
// More easily include all the states for responsive-utilities.less.
|
// More easily include all the states for responsive-utilities.less.
|
||||||
.responsive-visibility() {
|
.responsive-visibility() {
|
||||||
display: block !important;
|
display: block !important;
|
||||||
|
table& { display: table; }
|
||||||
tr& { display: table-row !important; }
|
tr& { display: table-row !important; }
|
||||||
th&,
|
th&,
|
||||||
td& { display: table-cell !important; }
|
td& { display: table-cell !important; }
|
||||||
@ -738,11 +725,11 @@
|
|||||||
@item: ~".col-@{class}-@{index}";
|
@item: ~".col-@{class}-@{index}";
|
||||||
.col(@index + 1, @item);
|
.col(@index + 1, @item);
|
||||||
}
|
}
|
||||||
.col(@index, @list) when (@index < @grid-columns) { // general
|
.col(@index, @list) when (@index =< @grid-columns) { // general
|
||||||
@item: ~".col-@{class}-@{index}";
|
@item: ~".col-@{class}-@{index}";
|
||||||
.col(@index + 1, ~"@{list}, @{item}");
|
.col(@index + 1, ~"@{list}, @{item}");
|
||||||
}
|
}
|
||||||
.col(@index, @list) when (@index = @grid-columns) { // terminal
|
.col(@index, @list) when (@index > @grid-columns) { // terminal
|
||||||
@{list} {
|
@{list} {
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
|
@ -35,10 +35,8 @@
|
|||||||
// Shell div to position the modal with bottom padding
|
// Shell div to position the modal with bottom padding
|
||||||
.modal-dialog {
|
.modal-dialog {
|
||||||
position: relative;
|
position: relative;
|
||||||
margin-left: auto;
|
|
||||||
margin-right: auto;
|
|
||||||
width: auto;
|
width: auto;
|
||||||
padding: 10px;
|
margin: 10px;
|
||||||
z-index: (@zindex-modal-background + 10);
|
z-index: (@zindex-modal-background + 10);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -122,8 +120,7 @@
|
|||||||
|
|
||||||
.modal-dialog {
|
.modal-dialog {
|
||||||
width: 600px;
|
width: 600px;
|
||||||
padding-top: 30px;
|
margin: 30px auto;
|
||||||
padding-bottom: 30px;
|
|
||||||
}
|
}
|
||||||
.modal-content {
|
.modal-content {
|
||||||
.box-shadow(0 5px 15px rgba(0,0,0,.5));
|
.box-shadow(0 5px 15px rgba(0,0,0,.5));
|
||||||
|
@ -74,18 +74,16 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&.in {
|
&.in {
|
||||||
overflow-y: auto;
|
overflow-y: visible;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Account for first and last children spacing
|
// Undo the collapse side padding for navbars with containers to ensure
|
||||||
.navbar-nav.navbar-left:first-child {
|
// alignment of right-aligned contents.
|
||||||
margin-left: -@navbar-padding-horizontal;
|
.navbar-fixed-top &,
|
||||||
}
|
.navbar-static-top &,
|
||||||
.navbar-nav.navbar-right:last-child {
|
.navbar-fixed-bottom & {
|
||||||
margin-right: -@navbar-padding-horizontal;
|
padding-left: 0;
|
||||||
}
|
padding-right: 0;
|
||||||
.navbar-text:last-child {
|
|
||||||
margin-right: 0;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -180,6 +178,7 @@
|
|||||||
padding: 9px 10px;
|
padding: 9px 10px;
|
||||||
.navbar-vertical-align(34px);
|
.navbar-vertical-align(34px);
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
|
background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214
|
||||||
border: 1px solid transparent;
|
border: 1px solid transparent;
|
||||||
border-radius: @border-radius-base;
|
border-radius: @border-radius-base;
|
||||||
|
|
||||||
@ -214,7 +213,7 @@
|
|||||||
line-height: @line-height-computed;
|
line-height: @line-height-computed;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: @screen-xs-max) {
|
@media (max-width: @grid-float-breakpoint-max) {
|
||||||
// Dropdowns get custom display when collapsed
|
// Dropdowns get custom display when collapsed
|
||||||
.open .dropdown-menu {
|
.open .dropdown-menu {
|
||||||
position: static;
|
position: static;
|
||||||
@ -246,12 +245,15 @@
|
|||||||
> li {
|
> li {
|
||||||
float: left;
|
float: left;
|
||||||
> a {
|
> a {
|
||||||
padding-top: ((@navbar-height - @line-height-computed) / 2);
|
padding-top: @navbar-padding-vertical;
|
||||||
padding-bottom: ((@navbar-height - @line-height-computed) / 2);
|
padding-bottom: @navbar-padding-vertical;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.navbar-right:last-child {
|
||||||
|
margin-right: -@navbar-padding-horizontal;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -285,7 +287,7 @@
|
|||||||
.form-inline();
|
.form-inline();
|
||||||
|
|
||||||
.form-group {
|
.form-group {
|
||||||
@media (max-width: @screen-xs-max) {
|
@media (max-width: @grid-float-breakpoint-max) {
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -302,6 +304,11 @@
|
|||||||
padding-top: 0;
|
padding-top: 0;
|
||||||
padding-bottom: 0;
|
padding-bottom: 0;
|
||||||
.box-shadow(none);
|
.box-shadow(none);
|
||||||
|
|
||||||
|
// Outdent the form if last child to line up with content down the page
|
||||||
|
&.navbar-right:last-child {
|
||||||
|
margin-right: -@navbar-padding-horizontal;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -332,6 +339,13 @@
|
|||||||
|
|
||||||
.navbar-btn {
|
.navbar-btn {
|
||||||
.navbar-vertical-align(@input-height-base);
|
.navbar-vertical-align(@input-height-base);
|
||||||
|
|
||||||
|
&.btn-sm {
|
||||||
|
.navbar-vertical-align(@input-height-small);
|
||||||
|
}
|
||||||
|
&.btn-xs {
|
||||||
|
.navbar-vertical-align(22);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -340,12 +354,17 @@
|
|||||||
// Add a class to make any element properly align itself vertically within the navbars.
|
// Add a class to make any element properly align itself vertically within the navbars.
|
||||||
|
|
||||||
.navbar-text {
|
.navbar-text {
|
||||||
float: left;
|
|
||||||
.navbar-vertical-align(@line-height-computed);
|
.navbar-vertical-align(@line-height-computed);
|
||||||
|
|
||||||
@media (min-width: @grid-float-breakpoint) {
|
@media (min-width: @grid-float-breakpoint) {
|
||||||
|
float: left;
|
||||||
margin-left: @navbar-padding-horizontal;
|
margin-left: @navbar-padding-horizontal;
|
||||||
margin-right: @navbar-padding-horizontal;
|
margin-right: @navbar-padding-horizontal;
|
||||||
|
|
||||||
|
// Outdent the form if last child to line up with content down the page
|
||||||
|
&.navbar-right:last-child {
|
||||||
|
margin-right: 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -414,15 +433,8 @@
|
|||||||
border-color: @navbar-default-border;
|
border-color: @navbar-default-border;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Dropdown menu items and carets
|
// Dropdown menu items
|
||||||
.navbar-nav {
|
.navbar-nav {
|
||||||
// Caret should match text color on hover
|
|
||||||
> .dropdown > a:hover .caret,
|
|
||||||
> .dropdown > a:focus .caret {
|
|
||||||
border-top-color: @navbar-default-link-hover-color;
|
|
||||||
border-bottom-color: @navbar-default-link-hover-color;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Remove background color from open dropdown
|
// Remove background color from open dropdown
|
||||||
> .open > a {
|
> .open > a {
|
||||||
&,
|
&,
|
||||||
@ -430,19 +442,10 @@
|
|||||||
&:focus {
|
&:focus {
|
||||||
background-color: @navbar-default-link-active-bg;
|
background-color: @navbar-default-link-active-bg;
|
||||||
color: @navbar-default-link-active-color;
|
color: @navbar-default-link-active-color;
|
||||||
.caret {
|
|
||||||
border-top-color: @navbar-default-link-active-color;
|
|
||||||
border-bottom-color: @navbar-default-link-active-color;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
> .dropdown > a .caret {
|
|
||||||
border-top-color: @navbar-default-link-color;
|
|
||||||
border-bottom-color: @navbar-default-link-color;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
@media (max-width: @grid-float-breakpoint-max) {
|
||||||
@media (max-width: @screen-xs-max) {
|
|
||||||
// Dropdowns get custom display when collapsed
|
// Dropdowns get custom display when collapsed
|
||||||
.open .dropdown-menu {
|
.open .dropdown-menu {
|
||||||
> li > a {
|
> li > a {
|
||||||
@ -561,31 +564,16 @@
|
|||||||
color: @navbar-inverse-link-active-color;
|
color: @navbar-inverse-link-active-color;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
> .dropdown > a:hover .caret {
|
|
||||||
border-top-color: @navbar-inverse-link-hover-color;
|
|
||||||
border-bottom-color: @navbar-inverse-link-hover-color;
|
|
||||||
}
|
|
||||||
> .dropdown > a .caret {
|
|
||||||
border-top-color: @navbar-inverse-link-color;
|
|
||||||
border-bottom-color: @navbar-inverse-link-color;
|
|
||||||
}
|
|
||||||
> .open > a {
|
|
||||||
&,
|
|
||||||
&:hover,
|
|
||||||
&:focus {
|
|
||||||
.caret {
|
|
||||||
border-top-color: @navbar-inverse-link-active-color;
|
|
||||||
border-bottom-color: @navbar-inverse-link-active-color;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: @screen-xs-max) {
|
@media (max-width: @grid-float-breakpoint-max) {
|
||||||
// Dropdowns get custom display
|
// Dropdowns get custom display
|
||||||
.open .dropdown-menu {
|
.open .dropdown-menu {
|
||||||
> .dropdown-header {
|
> .dropdown-header {
|
||||||
border-color: @navbar-inverse-border;
|
border-color: @navbar-inverse-border;
|
||||||
}
|
}
|
||||||
|
.divider {
|
||||||
|
background-color: @navbar-inverse-border;
|
||||||
|
}
|
||||||
> li > a {
|
> li > a {
|
||||||
color: @navbar-inverse-link-color;
|
color: @navbar-inverse-link-color;
|
||||||
&:hover,
|
&:hover,
|
||||||
|
@ -48,11 +48,6 @@
|
|||||||
&:focus {
|
&:focus {
|
||||||
background-color: @nav-link-hover-bg;
|
background-color: @nav-link-hover-bg;
|
||||||
border-color: @link-color;
|
border-color: @link-color;
|
||||||
|
|
||||||
.caret {
|
|
||||||
border-top-color: @link-hover-color;
|
|
||||||
border-bottom-color: @link-hover-color;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -138,11 +133,6 @@
|
|||||||
&:focus {
|
&:focus {
|
||||||
color: @nav-pills-active-link-hover-color;
|
color: @nav-pills-active-link-hover-color;
|
||||||
background-color: @nav-pills-active-link-hover-bg;
|
background-color: @nav-pills-active-link-hover-bg;
|
||||||
|
|
||||||
.caret {
|
|
||||||
border-top-color: @nav-pills-active-link-hover-color;
|
|
||||||
border-bottom-color: @nav-pills-active-link-hover-color;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -243,16 +233,6 @@
|
|||||||
// Dropdowns
|
// Dropdowns
|
||||||
// -------------------------
|
// -------------------------
|
||||||
|
|
||||||
// Make dropdown carets use link color in navs
|
|
||||||
.nav .caret {
|
|
||||||
border-top-color: @link-color;
|
|
||||||
border-bottom-color: @link-color;
|
|
||||||
}
|
|
||||||
.nav a:hover .caret {
|
|
||||||
border-top-color: @link-hover-color;
|
|
||||||
border-bottom-color: @link-hover-color;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Specific dropdowns
|
// Specific dropdowns
|
||||||
.nav-tabs .dropdown-menu {
|
.nav-tabs .dropdown-menu {
|
||||||
// make dropdown border overlap tab border
|
// make dropdown border overlap tab border
|
||||||
|
@ -57,13 +57,17 @@
|
|||||||
|
|
||||||
.panel {
|
.panel {
|
||||||
> .table,
|
> .table,
|
||||||
> .table-responsive {
|
> .table-responsive > .table {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
> .panel-body + .table,
|
> .panel-body + .table,
|
||||||
> .panel-body + .table-responsive {
|
> .panel-body + .table-responsive {
|
||||||
border-top: 1px solid @table-border-color;
|
border-top: 1px solid @table-border-color;
|
||||||
}
|
}
|
||||||
|
> .table > tbody:first-child th,
|
||||||
|
> .table > tbody:first-child td {
|
||||||
|
border-top: 0;
|
||||||
|
}
|
||||||
> .table-bordered,
|
> .table-bordered,
|
||||||
> .table-responsive > .table-bordered {
|
> .table-responsive > .table-bordered {
|
||||||
border: 0;
|
border: 0;
|
||||||
@ -87,6 +91,10 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
> .table-responsive {
|
||||||
|
border: 0;
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -106,6 +114,8 @@
|
|||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
font-size: ceil((@font-size-base * 1.125));
|
font-size: ceil((@font-size-base * 1.125));
|
||||||
|
color: inherit;
|
||||||
|
|
||||||
> a {
|
> a {
|
||||||
color: inherit;
|
color: inherit;
|
||||||
}
|
}
|
||||||
|
@ -12,18 +12,6 @@
|
|||||||
to { background-position: 0 0; }
|
to { background-position: 0 0; }
|
||||||
}
|
}
|
||||||
|
|
||||||
// Firefox
|
|
||||||
@-moz-keyframes progress-bar-stripes {
|
|
||||||
from { background-position: 40px 0; }
|
|
||||||
to { background-position: 0 0; }
|
|
||||||
}
|
|
||||||
|
|
||||||
// Opera
|
|
||||||
@-o-keyframes progress-bar-stripes {
|
|
||||||
from { background-position: 0 0; }
|
|
||||||
to { background-position: 40px 0; }
|
|
||||||
}
|
|
||||||
|
|
||||||
// Spec and IE10+
|
// Spec and IE10+
|
||||||
@keyframes progress-bar-stripes {
|
@keyframes progress-bar-stripes {
|
||||||
from { background-position: 40px 0; }
|
from { background-position: 40px 0; }
|
||||||
|
@ -104,11 +104,13 @@ th {
|
|||||||
//
|
//
|
||||||
// Default zebra-stripe styles (alternating gray and transparent backgrounds)
|
// Default zebra-stripe styles (alternating gray and transparent backgrounds)
|
||||||
|
|
||||||
.table-striped > tbody > tr:nth-child(odd) {
|
.table-striped {
|
||||||
|
> tbody > tr:nth-child(odd) {
|
||||||
> td,
|
> td,
|
||||||
> th {
|
> th {
|
||||||
background-color: @table-bg-accent;
|
background-color: @table-bg-accent;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -116,11 +118,13 @@ th {
|
|||||||
//
|
//
|
||||||
// Placed here since it has to come after the potential zebra striping
|
// Placed here since it has to come after the potential zebra striping
|
||||||
|
|
||||||
.table-hover > tbody > tr:hover {
|
.table-hover {
|
||||||
|
> tbody > tr:hover {
|
||||||
> td,
|
> td,
|
||||||
> th {
|
> th {
|
||||||
background-color: @table-bg-hover;
|
background-color: @table-bg-hover;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -129,6 +133,7 @@ th {
|
|||||||
// Reset default table behavior
|
// Reset default table behavior
|
||||||
|
|
||||||
table col[class*="col-"] {
|
table col[class*="col-"] {
|
||||||
|
position: static; // Prevent border hiding in Firefox and IE9/10 (see https://github.com/twbs/bootstrap/issues/11623)
|
||||||
float: none;
|
float: none;
|
||||||
display: table-column;
|
display: table-column;
|
||||||
}
|
}
|
||||||
@ -148,21 +153,11 @@ table {
|
|||||||
// Exact selectors below required to override `.table-striped` and prevent
|
// Exact selectors below required to override `.table-striped` and prevent
|
||||||
// inheritance to nested tables.
|
// inheritance to nested tables.
|
||||||
|
|
||||||
.table > thead > tr,
|
|
||||||
.table > tbody > tr,
|
|
||||||
.table > tfoot > tr {
|
|
||||||
> td.active,
|
|
||||||
> th.active,
|
|
||||||
&.active > td,
|
|
||||||
&.active > th {
|
|
||||||
background-color: @table-bg-active;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Generate the contextual variants
|
// Generate the contextual variants
|
||||||
.table-row-variant(success; @state-success-bg; @state-success-border);
|
.table-row-variant(active; @table-bg-active);
|
||||||
.table-row-variant(danger; @state-danger-bg; @state-danger-border);
|
.table-row-variant(success; @state-success-bg);
|
||||||
.table-row-variant(warning; @state-warning-bg; @state-warning-border);
|
.table-row-variant(danger; @state-danger-bg);
|
||||||
|
.table-row-variant(warning; @state-warning-bg);
|
||||||
|
|
||||||
|
|
||||||
// Responsive tables
|
// Responsive tables
|
||||||
|
@ -5,11 +5,17 @@
|
|||||||
|
|
||||||
// Mixin and adjust the regular image class
|
// Mixin and adjust the regular image class
|
||||||
.thumbnail {
|
.thumbnail {
|
||||||
.img-thumbnail();
|
display: block;
|
||||||
display: block; // Override the inline-block from `.img-thumbnail`
|
padding: @thumbnail-padding;
|
||||||
margin-bottom: @line-height-computed;
|
margin-bottom: @line-height-computed;
|
||||||
|
line-height: @line-height-base;
|
||||||
|
background-color: @thumbnail-bg;
|
||||||
|
border: 1px solid @thumbnail-border;
|
||||||
|
border-radius: @thumbnail-border-radius;
|
||||||
|
.transition(all .2s ease-in-out);
|
||||||
|
|
||||||
> img {
|
> img,
|
||||||
|
a > img {
|
||||||
.img-responsive();
|
.img-responsive();
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
|
106
less/type.less
106
less/type.less
@ -3,12 +3,62 @@
|
|||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
// Headings
|
||||||
|
// -------------------------
|
||||||
|
|
||||||
|
h1, h2, h3, h4, h5, h6,
|
||||||
|
.h1, .h2, .h3, .h4, .h5, .h6 {
|
||||||
|
font-family: @headings-font-family;
|
||||||
|
font-weight: @headings-font-weight;
|
||||||
|
line-height: @headings-line-height;
|
||||||
|
color: @headings-color;
|
||||||
|
|
||||||
|
small,
|
||||||
|
.small {
|
||||||
|
font-weight: normal;
|
||||||
|
line-height: 1;
|
||||||
|
color: @headings-small-color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
h1,
|
||||||
|
h2,
|
||||||
|
h3 {
|
||||||
|
margin-top: @line-height-computed;
|
||||||
|
margin-bottom: (@line-height-computed / 2);
|
||||||
|
|
||||||
|
small,
|
||||||
|
.small {
|
||||||
|
font-size: 65%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
h4,
|
||||||
|
h5,
|
||||||
|
h6 {
|
||||||
|
margin-top: (@line-height-computed / 2);
|
||||||
|
margin-bottom: (@line-height-computed / 2);
|
||||||
|
|
||||||
|
small,
|
||||||
|
.small {
|
||||||
|
font-size: 75%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
h1, .h1 { font-size: @font-size-h1; }
|
||||||
|
h2, .h2 { font-size: @font-size-h2; }
|
||||||
|
h3, .h3 { font-size: @font-size-h3; }
|
||||||
|
h4, .h4 { font-size: @font-size-h4; }
|
||||||
|
h5, .h5 { font-size: @font-size-h5; }
|
||||||
|
h6, .h6 { font-size: @font-size-h6; }
|
||||||
|
|
||||||
|
|
||||||
// Body text
|
// Body text
|
||||||
// -------------------------
|
// -------------------------
|
||||||
|
|
||||||
p {
|
p {
|
||||||
margin: 0 0 (@line-height-computed / 2);
|
margin: 0 0 (@line-height-computed / 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
.lead {
|
.lead {
|
||||||
margin-bottom: @line-height-computed;
|
margin-bottom: @line-height-computed;
|
||||||
font-size: floor(@font-size-base * 1.15);
|
font-size: floor(@font-size-base * 1.15);
|
||||||
@ -72,55 +122,6 @@ cite { font-style: normal; }
|
|||||||
.text-center { text-align: center; }
|
.text-center { text-align: center; }
|
||||||
|
|
||||||
|
|
||||||
// Headings
|
|
||||||
// -------------------------
|
|
||||||
|
|
||||||
h1, h2, h3, h4, h5, h6,
|
|
||||||
.h1, .h2, .h3, .h4, .h5, .h6 {
|
|
||||||
font-family: @headings-font-family;
|
|
||||||
font-weight: @headings-font-weight;
|
|
||||||
line-height: @headings-line-height;
|
|
||||||
color: @headings-color;
|
|
||||||
|
|
||||||
small,
|
|
||||||
.small {
|
|
||||||
font-weight: normal;
|
|
||||||
line-height: 1;
|
|
||||||
color: @headings-small-color;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
h1,
|
|
||||||
h2,
|
|
||||||
h3 {
|
|
||||||
margin-top: @line-height-computed;
|
|
||||||
margin-bottom: (@line-height-computed / 2);
|
|
||||||
|
|
||||||
small,
|
|
||||||
.small {
|
|
||||||
font-size: 65%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
h4,
|
|
||||||
h5,
|
|
||||||
h6 {
|
|
||||||
margin-top: (@line-height-computed / 2);
|
|
||||||
margin-bottom: (@line-height-computed / 2);
|
|
||||||
|
|
||||||
small,
|
|
||||||
.small {
|
|
||||||
font-size: 75%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
h1, .h1 { font-size: @font-size-h1; }
|
|
||||||
h2, .h2 { font-size: @font-size-h2; }
|
|
||||||
h3, .h3 { font-size: @font-size-h3; }
|
|
||||||
h4, .h4 { font-size: @font-size-h4; }
|
|
||||||
h5, .h5 { font-size: @font-size-h5; }
|
|
||||||
h6, .h6 { font-size: @font-size-h6; }
|
|
||||||
|
|
||||||
|
|
||||||
// Page header
|
// Page header
|
||||||
// -------------------------
|
// -------------------------
|
||||||
|
|
||||||
@ -131,7 +132,6 @@ h6, .h6 { font-size: @font-size-h6; }
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// Lists
|
// Lists
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
||||||
|
|
||||||
@ -171,6 +171,7 @@ ol {
|
|||||||
|
|
||||||
// Description Lists
|
// Description Lists
|
||||||
dl {
|
dl {
|
||||||
|
margin-top: 0; // Remove browser default
|
||||||
margin-bottom: @line-height-computed;
|
margin-bottom: @line-height-computed;
|
||||||
}
|
}
|
||||||
dt,
|
dt,
|
||||||
@ -215,7 +216,7 @@ abbr[data-original-title] {
|
|||||||
cursor: help;
|
cursor: help;
|
||||||
border-bottom: 1px dotted @abbr-border-color;
|
border-bottom: 1px dotted @abbr-border-color;
|
||||||
}
|
}
|
||||||
abbr.initialism {
|
.initialism {
|
||||||
font-size: 90%;
|
font-size: 90%;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
}
|
}
|
||||||
@ -233,7 +234,8 @@ blockquote {
|
|||||||
p:last-child {
|
p:last-child {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
small {
|
small,
|
||||||
|
.small {
|
||||||
display: block;
|
display: block;
|
||||||
line-height: @line-height-base;
|
line-height: @line-height-base;
|
||||||
color: @blockquote-small-color;
|
color: @blockquote-small-color;
|
||||||
|
@ -41,7 +41,7 @@
|
|||||||
|
|
||||||
@font-family-sans-serif: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
@font-family-sans-serif: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||||
@font-family-serif: Georgia, "Times New Roman", Times, serif;
|
@font-family-serif: Georgia, "Times New Roman", Times, serif;
|
||||||
@font-family-monospace: Monaco, Menlo, Consolas, "Courier New", monospace;
|
@font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace;
|
||||||
@font-family-base: @font-family-sans-serif;
|
@font-family-base: @font-family-sans-serif;
|
||||||
|
|
||||||
@font-size-base: 14px;
|
@font-size-base: 14px;
|
||||||
@ -84,6 +84,9 @@
|
|||||||
@padding-small-vertical: 5px;
|
@padding-small-vertical: 5px;
|
||||||
@padding-small-horizontal: 10px;
|
@padding-small-horizontal: 10px;
|
||||||
|
|
||||||
|
@padding-xs-vertical: 1px;
|
||||||
|
@padding-xs-horizontal: 5px;
|
||||||
|
|
||||||
@line-height-large: 1.33;
|
@line-height-large: 1.33;
|
||||||
@line-height-small: 1.5;
|
@line-height-small: 1.5;
|
||||||
|
|
||||||
@ -157,7 +160,7 @@
|
|||||||
@input-color-placeholder: @gray-light;
|
@input-color-placeholder: @gray-light;
|
||||||
|
|
||||||
@input-height-base: (@line-height-computed + (@padding-base-vertical * 2) + 2);
|
@input-height-base: (@line-height-computed + (@padding-base-vertical * 2) + 2);
|
||||||
@input-height-large: (floor(@font-size-large * @line-height-large) + (@padding-large-vertical * 2) + 2);
|
@input-height-large: (ceil(@font-size-large * @line-height-large) + (@padding-large-vertical * 2) + 2);
|
||||||
@input-height-small: (floor(@font-size-small * @line-height-small) + (@padding-small-vertical * 2) + 2);
|
@input-height-small: (floor(@font-size-small * @line-height-small) + (@padding-small-vertical * 2) + 2);
|
||||||
|
|
||||||
@legend-color: @gray-dark;
|
@legend-color: @gray-dark;
|
||||||
@ -186,8 +189,6 @@
|
|||||||
|
|
||||||
@dropdown-header-color: @gray-light;
|
@dropdown-header-color: @gray-light;
|
||||||
|
|
||||||
@dropdown-caret-color: #000;
|
|
||||||
|
|
||||||
|
|
||||||
// COMPONENT VARIABLES
|
// COMPONENT VARIABLES
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
||||||
@ -246,8 +247,13 @@
|
|||||||
@grid-columns: 12;
|
@grid-columns: 12;
|
||||||
// Padding, to be divided by two and applied to the left and right of all columns
|
// Padding, to be divided by two and applied to the left and right of all columns
|
||||||
@grid-gutter-width: 30px;
|
@grid-gutter-width: 30px;
|
||||||
// Point at which the navbar stops collapsing
|
|
||||||
|
// Navbar collapse
|
||||||
|
|
||||||
|
// Point at which the navbar becomes uncollapsed
|
||||||
@grid-float-breakpoint: @screen-sm-min;
|
@grid-float-breakpoint: @screen-sm-min;
|
||||||
|
// Point at which the navbar begins collapsing
|
||||||
|
@grid-float-breakpoint-max: (@grid-float-breakpoint - 1);
|
||||||
|
|
||||||
|
|
||||||
// Navbar
|
// Navbar
|
||||||
@ -321,7 +327,6 @@
|
|||||||
@nav-disabled-link-hover-color: @gray-light;
|
@nav-disabled-link-hover-color: @gray-light;
|
||||||
|
|
||||||
@nav-open-link-hover-color: #fff;
|
@nav-open-link-hover-color: #fff;
|
||||||
@nav-open-caret-border-color: #fff;
|
|
||||||
|
|
||||||
// Tabs
|
// Tabs
|
||||||
@nav-tabs-border-color: #ddd;
|
@nav-tabs-border-color: #ddd;
|
||||||
@ -375,19 +380,19 @@
|
|||||||
// Form states and alerts
|
// Form states and alerts
|
||||||
// -------------------------
|
// -------------------------
|
||||||
|
|
||||||
@state-success-text: #468847;
|
@state-success-text: #3c763d;
|
||||||
@state-success-bg: #dff0d8;
|
@state-success-bg: #dff0d8;
|
||||||
@state-success-border: darken(spin(@state-success-bg, -10), 5%);
|
@state-success-border: darken(spin(@state-success-bg, -10), 5%);
|
||||||
|
|
||||||
@state-info-text: #3a87ad;
|
@state-info-text: #31708f;
|
||||||
@state-info-bg: #d9edf7;
|
@state-info-bg: #d9edf7;
|
||||||
@state-info-border: darken(spin(@state-info-bg, -10), 7%);
|
@state-info-border: darken(spin(@state-info-bg, -10), 7%);
|
||||||
|
|
||||||
@state-warning-text: #c09853;
|
@state-warning-text: #8a6d3b;
|
||||||
@state-warning-bg: #fcf8e3;
|
@state-warning-bg: #fcf8e3;
|
||||||
@state-warning-border: darken(spin(@state-warning-bg, -10), 5%);
|
@state-warning-border: darken(spin(@state-warning-bg, -10), 5%);
|
||||||
|
|
||||||
@state-danger-text: #b94a48;
|
@state-danger-text: #a94442;
|
||||||
@state-danger-bg: #f2dede;
|
@state-danger-bg: #f2dede;
|
||||||
@state-danger-border: darken(spin(@state-danger-bg, -10), 5%);
|
@state-danger-border: darken(spin(@state-danger-bg, -10), 5%);
|
||||||
|
|
||||||
|
19
package.json
19
package.json
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "bootstrap"
|
"name": "bootstrap"
|
||||||
, "description": "Sleek, intuitive, and powerful front-end framework for faster and easier web development."
|
, "description": "Sleek, intuitive, and powerful front-end framework for faster and easier web development."
|
||||||
, "version": "3.0.2"
|
, "version": "3.0.3"
|
||||||
, "keywords": ["bootstrap", "css"]
|
, "keywords": ["bootstrap", "css"]
|
||||||
, "homepage": "http://getbootstrap.com"
|
, "homepage": "http://getbootstrap.com"
|
||||||
, "author": "Twitter, Inc."
|
, "author": "Twitter, Inc."
|
||||||
@ -20,8 +20,7 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
, "devDependencies": {
|
, "devDependencies": {
|
||||||
"browserstack-runner": "~0.0.12"
|
"btoa": "~1.1.1"
|
||||||
, "btoa": "~1.1.1"
|
|
||||||
, "grunt": "~0.4.1"
|
, "grunt": "~0.4.1"
|
||||||
, "grunt-contrib-clean": "~0.5.0"
|
, "grunt-contrib-clean": "~0.5.0"
|
||||||
, "grunt-contrib-concat": "~0.3.0"
|
, "grunt-contrib-concat": "~0.3.0"
|
||||||
@ -33,8 +32,20 @@
|
|||||||
, "grunt-contrib-watch": "~0.5.3"
|
, "grunt-contrib-watch": "~0.5.3"
|
||||||
, "grunt-html-validation": "~0.1.6"
|
, "grunt-html-validation": "~0.1.6"
|
||||||
, "grunt-jekyll": "~0.4.0"
|
, "grunt-jekyll": "~0.4.0"
|
||||||
, "grunt-recess": "~0.4.0"
|
, "grunt-recess": "~0.5.0"
|
||||||
|
, "grunt-saucelabs": "~4.1.2"
|
||||||
, "grunt-sed": "~0.1.1"
|
, "grunt-sed": "~0.1.1"
|
||||||
, "regexp-quote": "~0.0.0"
|
, "regexp-quote": "~0.0.0"
|
||||||
}
|
}
|
||||||
|
, "jspm": {
|
||||||
|
"main": "js/bootstrap"
|
||||||
|
, "directories": { "lib": "dist" }
|
||||||
|
, "shim": {
|
||||||
|
"js/bootstrap": {
|
||||||
|
"imports": "jquery"
|
||||||
|
, "exports": "$"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
, "buildConfig": { "uglify": true }
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user