Update XStatic-bootswatch to 3.3.7.0

Also used xstatic-release script and fixed LICENSE reference

Change-Id: I9427ac7f124b47d4f2d9c3deb8e2806a189f2922
This commit is contained in:
Rob Cresswell 2016-08-22 12:09:13 +01:00
parent e4f6678159
commit 49c0d56698
139 changed files with 21442 additions and 565 deletions

2
.gitignore vendored
View File

@ -6,4 +6,4 @@
.venv .venv
.tox .tox
build build
dist dist

View File

@ -1,6 +1,5 @@
include README.txt include README.txt
recursive-include xstatic/pkg/bootswatch * recursive-include xstatic *
global-exclude *.pyc global-exclude *.pyc
global-exclude *.pyo global-exclude *.pyo
global-exclude *.orig global-exclude *.orig

20
setup.cfg Normal file
View File

@ -0,0 +1,20 @@
[metadata]
name = XStatic-bootswatch
description = bootswatch 3.3.7 (XStatic packaging standard)
description-file = README.rst
maintainer = Rob Cresswell
maintainer-email = robert.cresswell@outlook.com
home-page = http://bootswatch.com
keywords = bootswatch xstatic
license = MIT
zip_safe = False
namespace_packages =
xstatic
xstatic.pkg
[files]
packages =
xstatic
[bdist_wheel]
universal = True

View File

@ -1,12 +1,10 @@
from setuptools import setup, find_packages
from xstatic.pkg import bootswatch as xs from xstatic.pkg import bootswatch as xs
# The README.txt file should be written in reST so that PyPI can use # The README.txt file should be written in reST so that PyPI can use
# it to generate your project's PyPI page. # it to generate your project's PyPI page.
long_description = open('README.txt').read() long_description = open('README.txt').read()
from setuptools import setup, find_packages
setup( setup(
name=xs.PACKAGE_NAME, name=xs.PACKAGE_NAME,
version=xs.PACKAGE_VERSION, version=xs.PACKAGE_VERSION,
@ -20,7 +18,7 @@ setup(
url=xs.HOMEPAGE, url=xs.HOMEPAGE,
platforms=xs.PLATFORMS, platforms=xs.PLATFORMS,
packages=find_packages(), packages=find_packages(),
namespace_packages=['xstatic', 'xstatic.pkg', ], namespace_packages=['xstatic', 'xstatic.pkg'],
include_package_data=True, include_package_data=True,
zip_safe=False, zip_safe=False,
install_requires=[], install_requires=[],

View File

@ -15,7 +15,7 @@ NAME = __name__.split('.')[-1] # package name (e.g. 'foo' or 'foo_bar')
# please use a all-lowercase valid python # please use a all-lowercase valid python
# package name # package name
VERSION = '3.3.6' # version of the packaged files, please use the upstream VERSION = '3.3.7' # version of the packaged files, please use the upstream
# version number # version number
BUILD = '0' # our package build number, so we can release new builds BUILD = '0' # our package build number, so we can release new builds
# with fixes for xstatic stuff. # with fixes for xstatic stuff.
@ -28,14 +28,14 @@ CLASSIFIERS = []
KEYWORDS = 'bootswatch xstatic' KEYWORDS = 'bootswatch xstatic'
# XStatic-* package maintainer: # XStatic-* package maintainer:
MAINTAINER = 'Diana Whitten' MAINTAINER = 'Rob Cresswell'
MAINTAINER_EMAIL = 'hurgleburgler@gmail.com' MAINTAINER_EMAIL = 'robert.cresswell@outlook.com'
# this refers to the project homepage of the stuff we packaged: # this refers to the project homepage of the stuff we packaged:
HOMEPAGE = 'http://bootswatch.com' HOMEPAGE = 'http://bootswatch.com'
# this refers to all files: # this refers to all files:
LICENSE = '(same as %s)' % DISPLAY_NAME LICENSE = 'MIT'
from os.path import join, dirname from os.path import join, dirname
BASE_DIR = join(dirname(__file__), 'data') BASE_DIR = join(dirname(__file__), 'data')

45
xstatic/pkg/bootswatch/data/README.md Normal file → Executable file
View File

@ -1,18 +1,35 @@
Bootswatch Bootswatch
========== ==========
Bootswatch is a collection of free themes for [Bootstrap](http://getbootstrap.com/). Check it out at [bootswatch.com](http://bootswatch.com). [![Bootswatch Logo](./assets/img/logo-dark.png)](http://bootswatch.com)
Bootswatch is a collection of open source themes for [Bootstrap](http://getbootstrap.com/). Check it out at [bootswatch.com](http://bootswatch.com).
Usage Usage
----- -----
Download the `bootstrap.min.css` file associated with a theme and replace Bootstrap's default stylesheet. Download the `bootstrap.min.css` file associated with a theme and replace Bootstrap's default stylesheet. You must still include Bootstrap's JavaScript file to have functional dropdowns, modals, etc.
The themes are also hosted on [BootstrapCDN](http://www.bootstrapcdn.com/bootswatch/). The themes are also hosted on [BootstrapCDN](http://www.bootstrapcdn.com/bootswatch/).
Rails users should check out: You can import a theme into your styles using either LESS or SASS.
* [twitter-bootswatch-rails](https://github.com/scottvrosenthal/twitter-bootswatch-rails) if using _LESS_. LESS:
* [bootswatch-rails](https://github.com/maxim/bootswatch-rails) if using _SASS_.
```
@import "bootstrap/less/bootstrap.less";
@import "bootswatch/theme/variables.less";
@import "bootswatch/theme/bootswatch.less";
```
SASS:
```
@import "bootswatch/theme/variables";
@import "bootstrap-sass-official/assets/stylesheets/bootstrap";
@import "bootswatch/theme/bootswatch";
```
Customization Customization
@ -28,21 +45,19 @@ Check out the [Help page](http://bootswatch.com/help/) for more details on build
API API
----- -----
A simple API is available for integrating your platform with Bootswatch. Send your request to `http://api.bootswatch.com/3/`. A simple API is available for integrating your platform with Bootswatch. More info at http://bootswatch.com/help/#api
The swatch objects are returned in an array called `themes`, each one with the following properties: `name`, `description`, `preview`, `thumbnail`, `css`, `cssMin`, `less`, and `lessVariables`.
More info at http://bootswatch.com/help/#api
Contributing Contributing
----- -----
It's through your contributions that Bootswatch will continue to improve. You can contribute in several ways. It's through your contributions that Bootswatch will continue to improve. You can contribute in several ways.
Bug Reports: Provide a detailed report of any bugs you encounter and open an issue on [GitHub](https://github.com/thomaspark/bootswatch/issues). **Issues:** Provide a detailed report of any bugs you encounter and open an issue on [GitHub](https://github.com/thomaspark/bootswatch/issues).
Documentation: If you'd like to fix a typo or beef up the docs, you can fork the project, make your changes, and submit a pull request. **Documentation:** If you'd like to fix a typo or beef up the docs, you can fork the project, make your changes, and submit a pull request.
Fixes: You're more than welcome to make a fix and submit it as a pull request. When making changes, it's important to keep the CSS, LESS and SASS versions in sync. To do this, be sure to edit the LESS source files for the particular theme, then run the tasks `grunt swatch` and `grunt:convert_less` to build the CSS and LESS. **Code:** Make a fix and submit it as a pull request. When making changes, it's important to keep the CSS, LESS and SASS versions in sync. To do this, be sure to edit the LESS source files for the particular theme, then run the tasks `grunt swatch` and `grunt:convert_less` to build the CSS and LESS.
**Donation:** Donations are gratefully accepted via [PayPal](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=F22JEM3Q78JC2) and [Gratipay](https://gratipay.com/bootswatch/).
Author Author
------ ------
@ -64,6 +79,6 @@ Thanks
Copyright and License Copyright and License
---- ----
Copyright 2014 Thomas Park Copyright 2014-2016 Thomas Park
Code released under the MIT License. Code released under the MIT License.

2
xstatic/pkg/bootswatch/data/cerulean/_bootswatch.scss Normal file → Executable file
View File

@ -1,4 +1,4 @@
// Cerulean 3.3.5 // Cerulean 3.3.7
// Bootswatch // Bootswatch
// ----------------------------------------------------- // -----------------------------------------------------

6
xstatic/pkg/bootswatch/data/cerulean/_variables.scss Normal file → Executable file
View File

@ -1,5 +1,5 @@
$bootstrap-sass-asset-helper: false !default; $bootstrap-sass-asset-helper: false !default;
// Cerulean 3.3.6 // Cerulean 3.3.7
// Variables // Variables
// -------------------------------------------------- // --------------------------------------------------
@ -68,7 +68,7 @@ $line-height-computed: floor(($font-size-base * $line-height-base)) !default;
//** By default, this inherits from the `<body>`. //** By default, this inherits from the `<body>`.
$headings-font-family: $font-family-base !default; $headings-font-family: $font-family-base !default;
$headings-font-weight: 500 !default; $headings-font-weight: 500 !default;
$headings-line-height: 1.1 !default; $headings-line-height: 1.2 !default;
$headings-color: #317EAC !default; $headings-color: #317EAC !default;
@ -112,7 +112,7 @@ $component-active-color: #fff !default;
//** Global background color for active items (e.g., navs or dropdowns). //** Global background color for active items (e.g., navs or dropdowns).
$component-active-bg: $brand-primary !default; $component-active-bg: $brand-primary !default;
//** Width of the `border` for generating carets that indicator dropdowns. //** Width of the `border` for generating carets that indicate dropdowns.
$caret-width-base: 4px !default; $caret-width-base: 4px !default;
//** Carets increase slightly in size for larger components. //** Carets increase slightly in size for larger components.
$caret-width-large: 5px !default; $caret-width-large: 5px !default;

13
xstatic/pkg/bootswatch/data/cerulean/bootstrap.css vendored Normal file → Executable file
View File

@ -1,13 +1,13 @@
/*! /*!
* bootswatch v3.3.6 * bootswatch v3.3.7
* Homepage: http://bootswatch.com * Homepage: http://bootswatch.com
* Copyright 2012-2015 Thomas Park * Copyright 2012-2016 Thomas Park
* Licensed under MIT * Licensed under MIT
* Based on Bootstrap * Based on Bootstrap
*/ */
/*! /*!
* Bootstrap v3.3.6 (http://getbootstrap.com) * Bootstrap v3.3.7 (http://getbootstrap.com)
* Copyright 2011-2015 Twitter, Inc. * Copyright 2011-2016 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/ */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
@ -1109,7 +1109,6 @@ a:focus {
text-decoration: underline; text-decoration: underline;
} }
a:focus { a:focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color; outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; outline-offset: -2px;
} }
@ -1189,7 +1188,7 @@ h6,
.h6 { .h6 {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 500; font-weight: 500;
line-height: 1.1; line-height: 1.2;
color: #317eac; color: #317eac;
} }
h1 small, h1 small,
@ -2540,7 +2539,6 @@ select[size] {
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;
outline: 5px auto -webkit-focus-ring-color; outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; outline-offset: -2px;
} }
@ -3032,7 +3030,6 @@ select[multiple].input-lg {
.btn.focus, .btn.focus,
.btn:active.focus, .btn:active.focus,
.btn.active.focus { .btn.active.focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color; outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; outline-offset: -2px;
} }

10
xstatic/pkg/bootswatch/data/cerulean/bootstrap.min.css vendored Normal file → Executable file

File diff suppressed because one or more lines are too long

2
xstatic/pkg/bootswatch/data/cerulean/bootswatch.less Normal file → Executable file
View File

@ -1,4 +1,4 @@
// Cerulean 3.3.5 // Cerulean 3.3.7
// Bootswatch // Bootswatch
// ----------------------------------------------------- // -----------------------------------------------------

File diff suppressed because it is too large Load Diff

0
xstatic/pkg/bootswatch/data/cerulean/thumbnail.png Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 38 KiB

After

Width:  |  Height:  |  Size: 38 KiB

6
xstatic/pkg/bootswatch/data/cerulean/variables.less Normal file → Executable file
View File

@ -1,4 +1,4 @@
// Cerulean 3.3.6 // Cerulean 3.3.7
// Variables // Variables
// -------------------------------------------------- // --------------------------------------------------
@ -67,7 +67,7 @@
//** By default, this inherits from the `<body>`. //** By default, this inherits from the `<body>`.
@headings-font-family: @font-family-base; @headings-font-family: @font-family-base;
@headings-font-weight: 500; @headings-font-weight: 500;
@headings-line-height: 1.1; @headings-line-height: 1.2;
@headings-color: #317EAC; @headings-color: #317EAC;
@ -111,7 +111,7 @@
//** Global background color for active items (e.g., navs or dropdowns). //** Global background color for active items (e.g., navs or dropdowns).
@component-active-bg: @brand-primary; @component-active-bg: @brand-primary;
//** Width of the `border` for generating carets that indicator dropdowns. //** Width of the `border` for generating carets that indicate dropdowns.
@caret-width-base: 4px; @caret-width-base: 4px;
//** Carets increase slightly in size for larger components. //** Carets increase slightly in size for larger components.
@caret-width-large: 5px; @caret-width-large: 5px;

2
xstatic/pkg/bootswatch/data/cosmo/_bootswatch.scss Normal file → Executable file
View File

@ -1,4 +1,4 @@
// Cosmo 3.3.5 // Cosmo 3.3.7
// Bootswatch // Bootswatch
// ----------------------------------------------------- // -----------------------------------------------------

4
xstatic/pkg/bootswatch/data/cosmo/_variables.scss Normal file → Executable file
View File

@ -1,5 +1,5 @@
$bootstrap-sass-asset-helper: false !default; $bootstrap-sass-asset-helper: false !default;
// Cosmo 3.3.6 // Cosmo 3.3.7
// Variables // Variables
// -------------------------------------------------- // --------------------------------------------------
@ -112,7 +112,7 @@ $component-active-color: #fff !default;
//** Global background color for active items (e.g., navs or dropdowns). //** Global background color for active items (e.g., navs or dropdowns).
$component-active-bg: $brand-primary !default; $component-active-bg: $brand-primary !default;
//** Width of the `border` for generating carets that indicator dropdowns. //** Width of the `border` for generating carets that indicate dropdowns.
$caret-width-base: 4px !default; $caret-width-base: 4px !default;
//** Carets increase slightly in size for larger components. //** Carets increase slightly in size for larger components.
$caret-width-large: 5px !default; $caret-width-large: 5px !default;

11
xstatic/pkg/bootswatch/data/cosmo/bootstrap.css vendored Normal file → Executable file
View File

@ -1,14 +1,14 @@
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700"); @import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700");
/*! /*!
* bootswatch v3.3.6 * bootswatch v3.3.7
* Homepage: http://bootswatch.com * Homepage: http://bootswatch.com
* Copyright 2012-2015 Thomas Park * Copyright 2012-2016 Thomas Park
* Licensed under MIT * Licensed under MIT
* Based on Bootstrap * Based on Bootstrap
*/ */
/*! /*!
* Bootstrap v3.3.6 (http://getbootstrap.com) * Bootstrap v3.3.7 (http://getbootstrap.com)
* Copyright 2011-2015 Twitter, Inc. * Copyright 2011-2016 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/ */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
@ -1110,7 +1110,6 @@ a:focus {
text-decoration: underline; text-decoration: underline;
} }
a:focus { a:focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color; outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; outline-offset: -2px;
} }
@ -2541,7 +2540,6 @@ select[size] {
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;
outline: 5px auto -webkit-focus-ring-color; outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; outline-offset: -2px;
} }
@ -3033,7 +3031,6 @@ select[multiple].input-lg {
.btn.focus, .btn.focus,
.btn:active.focus, .btn:active.focus,
.btn.active.focus { .btn.active.focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color; outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; outline-offset: -2px;
} }

10
xstatic/pkg/bootswatch/data/cosmo/bootstrap.min.css vendored Normal file → Executable file

File diff suppressed because one or more lines are too long

2
xstatic/pkg/bootswatch/data/cosmo/bootswatch.less Normal file → Executable file
View File

@ -1,4 +1,4 @@
// Cosmo 3.3.5 // Cosmo 3.3.7
// Bootswatch // Bootswatch
// ----------------------------------------------------- // -----------------------------------------------------

File diff suppressed because it is too large Load Diff

0
xstatic/pkg/bootswatch/data/cosmo/thumbnail.png Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 22 KiB

4
xstatic/pkg/bootswatch/data/cosmo/variables.less Normal file → Executable file
View File

@ -1,4 +1,4 @@
// Cosmo 3.3.6 // Cosmo 3.3.7
// Variables // Variables
// -------------------------------------------------- // --------------------------------------------------
@ -111,7 +111,7 @@
//** Global background color for active items (e.g., navs or dropdowns). //** Global background color for active items (e.g., navs or dropdowns).
@component-active-bg: @brand-primary; @component-active-bg: @brand-primary;
//** Width of the `border` for generating carets that indicator dropdowns. //** Width of the `border` for generating carets that indicate dropdowns.
@caret-width-base: 4px; @caret-width-base: 4px;
//** Carets increase slightly in size for larger components. //** Carets increase slightly in size for larger components.
@caret-width-large: 5px; @caret-width-large: 5px;

2
xstatic/pkg/bootswatch/data/cyborg/_bootswatch.scss Normal file → Executable file
View File

@ -1,4 +1,4 @@
// Cyborg 3.3.5 // Cyborg 3.3.7
// Bootswatch // Bootswatch
// ----------------------------------------------------- // -----------------------------------------------------

4
xstatic/pkg/bootswatch/data/cyborg/_variables.scss Normal file → Executable file
View File

@ -1,5 +1,5 @@
$bootstrap-sass-asset-helper: false !default; $bootstrap-sass-asset-helper: false !default;
// Cyborg 3.3.6 // Cyborg 3.3.7
// Variables // Variables
// -------------------------------------------------- // --------------------------------------------------
@ -112,7 +112,7 @@ $component-active-color: #fff !default;
//** Global background color for active items (e.g., navs or dropdowns). //** Global background color for active items (e.g., navs or dropdowns).
$component-active-bg: $brand-primary !default; $component-active-bg: $brand-primary !default;
//** Width of the `border` for generating carets that indicator dropdowns. //** Width of the `border` for generating carets that indicate dropdowns.
$caret-width-base: 4px !default; $caret-width-base: 4px !default;
//** Carets increase slightly in size for larger components. //** Carets increase slightly in size for larger components.
$caret-width-large: 5px !default; $caret-width-large: 5px !default;

11
xstatic/pkg/bootswatch/data/cyborg/bootstrap.css vendored Normal file → Executable file
View File

@ -1,14 +1,14 @@
@import url("https://fonts.googleapis.com/css?family=Roboto:400,700"); @import url("https://fonts.googleapis.com/css?family=Roboto:400,700");
/*! /*!
* bootswatch v3.3.6 * bootswatch v3.3.7
* Homepage: http://bootswatch.com * Homepage: http://bootswatch.com
* Copyright 2012-2015 Thomas Park * Copyright 2012-2016 Thomas Park
* Licensed under MIT * Licensed under MIT
* Based on Bootstrap * Based on Bootstrap
*/ */
/*! /*!
* Bootstrap v3.3.6 (http://getbootstrap.com) * Bootstrap v3.3.7 (http://getbootstrap.com)
* Copyright 2011-2015 Twitter, Inc. * Copyright 2011-2016 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/ */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
@ -1110,7 +1110,6 @@ a:focus {
text-decoration: underline; text-decoration: underline;
} }
a:focus { a:focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color; outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; outline-offset: -2px;
} }
@ -2541,7 +2540,6 @@ select[size] {
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;
outline: 5px auto -webkit-focus-ring-color; outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; outline-offset: -2px;
} }
@ -3033,7 +3031,6 @@ select[multiple].input-lg {
.btn.focus, .btn.focus,
.btn:active.focus, .btn:active.focus,
.btn.active.focus { .btn.active.focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color; outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; outline-offset: -2px;
} }

10
xstatic/pkg/bootswatch/data/cyborg/bootstrap.min.css vendored Normal file → Executable file

File diff suppressed because one or more lines are too long

2
xstatic/pkg/bootswatch/data/cyborg/bootswatch.less Normal file → Executable file
View File

@ -1,4 +1,4 @@
// Cyborg 3.3.5 // Cyborg 3.3.7
// Bootswatch // Bootswatch
// ----------------------------------------------------- // -----------------------------------------------------

File diff suppressed because it is too large Load Diff

0
xstatic/pkg/bootswatch/data/cyborg/thumbnail.png Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 25 KiB

4
xstatic/pkg/bootswatch/data/cyborg/variables.less Normal file → Executable file
View File

@ -1,4 +1,4 @@
// Cyborg 3.3.6 // Cyborg 3.3.7
// Variables // Variables
// -------------------------------------------------- // --------------------------------------------------
@ -111,7 +111,7 @@
//** Global background color for active items (e.g., navs or dropdowns). //** Global background color for active items (e.g., navs or dropdowns).
@component-active-bg: @brand-primary; @component-active-bg: @brand-primary;
//** Width of the `border` for generating carets that indicator dropdowns. //** Width of the `border` for generating carets that indicate dropdowns.
@caret-width-base: 4px; @caret-width-base: 4px;
//** Carets increase slightly in size for larger components. //** Carets increase slightly in size for larger components.
@caret-width-large: 5px; @caret-width-large: 5px;

6
xstatic/pkg/bootswatch/data/darkly/_bootswatch.scss Normal file → Executable file
View File

@ -1,4 +1,4 @@
// Darkly 3.3.5 // Darkly 3.3.7
// Bootswatch // Bootswatch
// ----------------------------------------------------- // -----------------------------------------------------
@ -145,6 +145,10 @@ textarea {
} }
} }
.form-control-feedback {
color: $input-color;
}
.has-warning { .has-warning {
.help-block, .help-block,
.control-label, .control-label,

6
xstatic/pkg/bootswatch/data/darkly/_variables.scss Normal file → Executable file
View File

@ -1,5 +1,5 @@
$bootstrap-sass-asset-helper: false !default; $bootstrap-sass-asset-helper: false !default;
// Darkly 3.3.6 // Darkly 3.3.7
// Variables // Variables
// -------------------------------------------------- // --------------------------------------------------
@ -112,7 +112,7 @@ $component-active-color: #fff !default;
//** Global background color for active items (e.g., navs or dropdowns). //** Global background color for active items (e.g., navs or dropdowns).
$component-active-bg: $brand-primary !default; $component-active-bg: $brand-primary !default;
//** Width of the `border` for generating carets that indicator dropdowns. //** Width of the `border` for generating carets that indicate dropdowns.
$caret-width-base: 4px !default; $caret-width-base: 4px !default;
//** Carets increase slightly in size for larger components. //** Carets increase slightly in size for larger components.
$caret-width-large: 5px !default; $caret-width-large: 5px !default;
@ -365,7 +365,7 @@ $navbar-padding-horizontal: floor(($grid-gutter-width / 2)) !default;
$navbar-padding-vertical: (($navbar-height - $line-height-computed) / 2) !default; $navbar-padding-vertical: (($navbar-height - $line-height-computed) / 2) !default;
$navbar-collapse-max-height: 340px !default; $navbar-collapse-max-height: 340px !default;
$navbar-default-color: #777 !default; $navbar-default-color: #fff !default;
$navbar-default-bg: $brand-primary !default; $navbar-default-bg: $brand-primary !default;
$navbar-default-border: transparent !default; $navbar-default-border: transparent !default;

16
xstatic/pkg/bootswatch/data/darkly/bootstrap.css vendored Normal file → Executable file
View File

@ -1,14 +1,14 @@
@import url("https://fonts.googleapis.com/css?family=Lato:400,700,400italic"); @import url("https://fonts.googleapis.com/css?family=Lato:400,700,400italic");
/*! /*!
* bootswatch v3.3.6 * bootswatch v3.3.7
* Homepage: http://bootswatch.com * Homepage: http://bootswatch.com
* Copyright 2012-2015 Thomas Park * Copyright 2012-2016 Thomas Park
* Licensed under MIT * Licensed under MIT
* Based on Bootstrap * Based on Bootstrap
*/ */
/*! /*!
* Bootstrap v3.3.6 (http://getbootstrap.com) * Bootstrap v3.3.7 (http://getbootstrap.com)
* Copyright 2011-2015 Twitter, Inc. * Copyright 2011-2016 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/ */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
@ -1110,7 +1110,6 @@ a:focus {
text-decoration: underline; text-decoration: underline;
} }
a:focus { a:focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color; outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; outline-offset: -2px;
} }
@ -2541,7 +2540,6 @@ select[size] {
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;
outline: 5px auto -webkit-focus-ring-color; outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; outline-offset: -2px;
} }
@ -3033,7 +3031,6 @@ select[multiple].input-lg {
.btn.focus, .btn.focus,
.btn:active.focus, .btn:active.focus,
.btn.active.focus { .btn.active.focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color; outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; outline-offset: -2px;
} }
@ -4512,7 +4509,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
background-color: transparent; background-color: transparent;
} }
.navbar-default .navbar-text { .navbar-default .navbar-text {
color: #777777; color: #ffffff;
} }
.navbar-default .navbar-nav > li > a { .navbar-default .navbar-nav > li > a {
color: #ffffff; color: #ffffff;
@ -6898,6 +6895,9 @@ textarea:focus {
-webkit-box-shadow: none; -webkit-box-shadow: none;
box-shadow: none; box-shadow: none;
} }
.form-control-feedback {
color: #464545;
}
.has-warning .help-block, .has-warning .help-block,
.has-warning .control-label, .has-warning .control-label,
.has-warning .radio, .has-warning .radio,

10
xstatic/pkg/bootswatch/data/darkly/bootstrap.min.css vendored Normal file → Executable file

File diff suppressed because one or more lines are too long

6
xstatic/pkg/bootswatch/data/darkly/bootswatch.less Normal file → Executable file
View File

@ -1,4 +1,4 @@
// Darkly 3.3.5 // Darkly 3.3.7
// Bootswatch // Bootswatch
// ----------------------------------------------------- // -----------------------------------------------------
@ -149,6 +149,10 @@ textarea {
} }
} }
.form-control-feedback {
color: @input-color;
}
.has-warning { .has-warning {
.help-block, .help-block,
.control-label, .control-label,

File diff suppressed because it is too large Load Diff

0
xstatic/pkg/bootswatch/data/darkly/thumbnail.png Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 25 KiB

6
xstatic/pkg/bootswatch/data/darkly/variables.less Normal file → Executable file
View File

@ -1,4 +1,4 @@
// Darkly 3.3.6 // Darkly 3.3.7
// Variables // Variables
// -------------------------------------------------- // --------------------------------------------------
@ -111,7 +111,7 @@
//** Global background color for active items (e.g., navs or dropdowns). //** Global background color for active items (e.g., navs or dropdowns).
@component-active-bg: @brand-primary; @component-active-bg: @brand-primary;
//** Width of the `border` for generating carets that indicator dropdowns. //** Width of the `border` for generating carets that indicate dropdowns.
@caret-width-base: 4px; @caret-width-base: 4px;
//** Carets increase slightly in size for larger components. //** Carets increase slightly in size for larger components.
@caret-width-large: 5px; @caret-width-large: 5px;
@ -364,7 +364,7 @@
@navbar-padding-vertical: ((@navbar-height - @line-height-computed) / 2); @navbar-padding-vertical: ((@navbar-height - @line-height-computed) / 2);
@navbar-collapse-max-height: 340px; @navbar-collapse-max-height: 340px;
@navbar-default-color: #777; @navbar-default-color: #fff;
@navbar-default-bg: @brand-primary; @navbar-default-bg: @brand-primary;
@navbar-default-border: transparent; @navbar-default-border: transparent;

4
xstatic/pkg/bootswatch/data/flatly/_bootswatch.scss Normal file → Executable file
View File

@ -1,4 +1,4 @@
// Flatly 3.3.5 // Flatly 3.3.7
// Bootswatch // Bootswatch
// ----------------------------------------------------- // -----------------------------------------------------
@ -120,7 +120,7 @@ table,
// Forms ====================================================================== // Forms ======================================================================
.form-control, .form-control,
input, { input {
border-width: 2px; border-width: 2px;
@include box-shadow(none); @include box-shadow(none);

6
xstatic/pkg/bootswatch/data/flatly/_variables.scss Normal file → Executable file
View File

@ -1,5 +1,5 @@
$bootstrap-sass-asset-helper: false !default; $bootstrap-sass-asset-helper: false !default;
// Flatly 3.3.6 // Flatly 3.3.7
// Variables // Variables
// -------------------------------------------------- // --------------------------------------------------
@ -112,7 +112,7 @@ $component-active-color: #fff !default;
//** Global background color for active items (e.g., navs or dropdowns). //** Global background color for active items (e.g., navs or dropdowns).
$component-active-bg: $brand-primary !default; $component-active-bg: $brand-primary !default;
//** Width of the `border` for generating carets that indicator dropdowns. //** Width of the `border` for generating carets that indicate dropdowns.
$caret-width-base: 4px !default; $caret-width-base: 4px !default;
//** Carets increase slightly in size for larger components. //** Carets increase slightly in size for larger components.
$caret-width-large: 5px !default; $caret-width-large: 5px !default;
@ -365,7 +365,7 @@ $navbar-padding-horizontal: floor(($grid-gutter-width / 2)) !default;
$navbar-padding-vertical: (($navbar-height - $line-height-computed) / 2) !default; $navbar-padding-vertical: (($navbar-height - $line-height-computed) / 2) !default;
$navbar-collapse-max-height: 340px !default; $navbar-collapse-max-height: 340px !default;
$navbar-default-color: #777 !default; $navbar-default-color: #fff !default;
$navbar-default-bg: $brand-primary !default; $navbar-default-bg: $brand-primary !default;
$navbar-default-border: transparent !default; $navbar-default-border: transparent !default;

13
xstatic/pkg/bootswatch/data/flatly/bootstrap.css vendored Normal file → Executable file
View File

@ -1,14 +1,14 @@
@import url("https://fonts.googleapis.com/css?family=Lato:400,700,400italic"); @import url("https://fonts.googleapis.com/css?family=Lato:400,700,400italic");
/*! /*!
* bootswatch v3.3.6 * bootswatch v3.3.7
* Homepage: http://bootswatch.com * Homepage: http://bootswatch.com
* Copyright 2012-2015 Thomas Park * Copyright 2012-2016 Thomas Park
* Licensed under MIT * Licensed under MIT
* Based on Bootstrap * Based on Bootstrap
*/ */
/*! /*!
* Bootstrap v3.3.6 (http://getbootstrap.com) * Bootstrap v3.3.7 (http://getbootstrap.com)
* Copyright 2011-2015 Twitter, Inc. * Copyright 2011-2016 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/ */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
@ -1110,7 +1110,6 @@ a:focus {
text-decoration: underline; text-decoration: underline;
} }
a:focus { a:focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color; outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; outline-offset: -2px;
} }
@ -2541,7 +2540,6 @@ select[size] {
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;
outline: 5px auto -webkit-focus-ring-color; outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; outline-offset: -2px;
} }
@ -3033,7 +3031,6 @@ select[multiple].input-lg {
.btn.focus, .btn.focus,
.btn:active.focus, .btn:active.focus,
.btn.active.focus { .btn.active.focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color; outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; outline-offset: -2px;
} }
@ -4512,7 +4509,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
background-color: transparent; background-color: transparent;
} }
.navbar-default .navbar-text { .navbar-default .navbar-text {
color: #777777; color: #ffffff;
} }
.navbar-default .navbar-nav > li > a { .navbar-default .navbar-nav > li > a {
color: #ffffff; color: #ffffff;

10
xstatic/pkg/bootswatch/data/flatly/bootstrap.min.css vendored Normal file → Executable file

File diff suppressed because one or more lines are too long

4
xstatic/pkg/bootswatch/data/flatly/bootswatch.less Normal file → Executable file
View File

@ -1,4 +1,4 @@
// Flatly 3.3.5 // Flatly 3.3.7
// Bootswatch // Bootswatch
// ----------------------------------------------------- // -----------------------------------------------------
@ -124,7 +124,7 @@ table,
// Forms ====================================================================== // Forms ======================================================================
.form-control, .form-control,
input, { input {
border-width: 2px; border-width: 2px;
.box-shadow(none); .box-shadow(none);

File diff suppressed because it is too large Load Diff

0
xstatic/pkg/bootswatch/data/flatly/thumbnail.png Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 24 KiB

6
xstatic/pkg/bootswatch/data/flatly/variables.less Normal file → Executable file
View File

@ -1,4 +1,4 @@
// Flatly 3.3.6 // Flatly 3.3.7
// Variables // Variables
// -------------------------------------------------- // --------------------------------------------------
@ -111,7 +111,7 @@
//** Global background color for active items (e.g., navs or dropdowns). //** Global background color for active items (e.g., navs or dropdowns).
@component-active-bg: @brand-primary; @component-active-bg: @brand-primary;
//** Width of the `border` for generating carets that indicator dropdowns. //** Width of the `border` for generating carets that indicate dropdowns.
@caret-width-base: 4px; @caret-width-base: 4px;
//** Carets increase slightly in size for larger components. //** Carets increase slightly in size for larger components.
@caret-width-large: 5px; @caret-width-large: 5px;
@ -364,7 +364,7 @@
@navbar-padding-vertical: ((@navbar-height - @line-height-computed) / 2); @navbar-padding-vertical: ((@navbar-height - @line-height-computed) / 2);
@navbar-collapse-max-height: 340px; @navbar-collapse-max-height: 340px;
@navbar-default-color: #777; @navbar-default-color: #fff;
@navbar-default-bg: @brand-primary; @navbar-default-bg: @brand-primary;
@navbar-default-border: transparent; @navbar-default-border: transparent;

View File

View File

Before

Width:  |  Height:  |  Size: 106 KiB

After

Width:  |  Height:  |  Size: 106 KiB

View File

View File

View File

2
xstatic/pkg/bootswatch/data/journal/_bootswatch.scss Normal file → Executable file
View File

@ -1,4 +1,4 @@
// Journal 3.3.5 // Journal 3.3.7
// Bootswatch // Bootswatch
// ----------------------------------------------------- // -----------------------------------------------------

4
xstatic/pkg/bootswatch/data/journal/_variables.scss Normal file → Executable file
View File

@ -1,5 +1,5 @@
$bootstrap-sass-asset-helper: false !default; $bootstrap-sass-asset-helper: false !default;
// Journal 3.3.6 // Journal 3.3.7
// Variables // Variables
// -------------------------------------------------- // --------------------------------------------------
@ -112,7 +112,7 @@ $component-active-color: #fff !default;
//** Global background color for active items (e.g., navs or dropdowns). //** Global background color for active items (e.g., navs or dropdowns).
$component-active-bg: $brand-primary !default; $component-active-bg: $brand-primary !default;
//** Width of the `border` for generating carets that indicator dropdowns. //** Width of the `border` for generating carets that indicate dropdowns.
$caret-width-base: 4px !default; $caret-width-base: 4px !default;
//** Carets increase slightly in size for larger components. //** Carets increase slightly in size for larger components.
$caret-width-large: 5px !default; $caret-width-large: 5px !default;

11
xstatic/pkg/bootswatch/data/journal/bootstrap.css vendored Normal file → Executable file
View File

@ -1,14 +1,14 @@
@import url("https://fonts.googleapis.com/css?family=News+Cycle:400,700"); @import url("https://fonts.googleapis.com/css?family=News+Cycle:400,700");
/*! /*!
* bootswatch v3.3.6 * bootswatch v3.3.7
* Homepage: http://bootswatch.com * Homepage: http://bootswatch.com
* Copyright 2012-2015 Thomas Park * Copyright 2012-2016 Thomas Park
* Licensed under MIT * Licensed under MIT
* Based on Bootstrap * Based on Bootstrap
*/ */
/*! /*!
* Bootstrap v3.3.6 (http://getbootstrap.com) * Bootstrap v3.3.7 (http://getbootstrap.com)
* Copyright 2011-2015 Twitter, Inc. * Copyright 2011-2016 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/ */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
@ -1110,7 +1110,6 @@ a:focus {
text-decoration: underline; text-decoration: underline;
} }
a:focus { a:focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color; outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; outline-offset: -2px;
} }
@ -2541,7 +2540,6 @@ select[size] {
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;
outline: 5px auto -webkit-focus-ring-color; outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; outline-offset: -2px;
} }
@ -3033,7 +3031,6 @@ select[multiple].input-lg {
.btn.focus, .btn.focus,
.btn:active.focus, .btn:active.focus,
.btn.active.focus { .btn.active.focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color; outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; outline-offset: -2px;
} }

10
xstatic/pkg/bootswatch/data/journal/bootstrap.min.css vendored Normal file → Executable file

File diff suppressed because one or more lines are too long

2
xstatic/pkg/bootswatch/data/journal/bootswatch.less Normal file → Executable file
View File

@ -1,4 +1,4 @@
// Journal 3.3.5 // Journal 3.3.7
// Bootswatch // Bootswatch
// ----------------------------------------------------- // -----------------------------------------------------

File diff suppressed because it is too large Load Diff

0
xstatic/pkg/bootswatch/data/journal/thumbnail.png Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 26 KiB

4
xstatic/pkg/bootswatch/data/journal/variables.less Normal file → Executable file
View File

@ -1,4 +1,4 @@
// Journal 3.3.6 // Journal 3.3.7
// Variables // Variables
// -------------------------------------------------- // --------------------------------------------------
@ -111,7 +111,7 @@
//** Global background color for active items (e.g., navs or dropdowns). //** Global background color for active items (e.g., navs or dropdowns).
@component-active-bg: @brand-primary; @component-active-bg: @brand-primary;
//** Width of the `border` for generating carets that indicator dropdowns. //** Width of the `border` for generating carets that indicate dropdowns.
@caret-width-base: 4px; @caret-width-base: 4px;
//** Carets increase slightly in size for larger components. //** Carets increase slightly in size for larger components.
@caret-width-large: 5px; @caret-width-large: 5px;

2
xstatic/pkg/bootswatch/data/lumen/_bootswatch.scss Normal file → Executable file
View File

@ -1,4 +1,4 @@
// Lumen 3.3.5 // Lumen 3.3.7
// Bootswatch // Bootswatch
// ----------------------------------------------------- // -----------------------------------------------------

4
xstatic/pkg/bootswatch/data/lumen/_variables.scss Normal file → Executable file
View File

@ -1,5 +1,5 @@
$bootstrap-sass-asset-helper: false !default; $bootstrap-sass-asset-helper: false !default;
// Lumen 3.3.6 // Lumen 3.3.7
// Variables // Variables
// -------------------------------------------------- // --------------------------------------------------
@ -112,7 +112,7 @@ $component-active-color: #fff !default;
//** Global background color for active items (e.g., navs or dropdowns). //** Global background color for active items (e.g., navs or dropdowns).
$component-active-bg: $brand-primary !default; $component-active-bg: $brand-primary !default;
//** Width of the `border` for generating carets that indicator dropdowns. //** Width of the `border` for generating carets that indicate dropdowns.
$caret-width-base: 4px !default; $caret-width-base: 4px !default;
//** Carets increase slightly in size for larger components. //** Carets increase slightly in size for larger components.
$caret-width-large: 5px !default; $caret-width-large: 5px !default;

11
xstatic/pkg/bootswatch/data/lumen/bootstrap.css vendored Normal file → Executable file
View File

@ -1,14 +1,14 @@
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,400italic"); @import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,400italic");
/*! /*!
* bootswatch v3.3.6 * bootswatch v3.3.7
* Homepage: http://bootswatch.com * Homepage: http://bootswatch.com
* Copyright 2012-2015 Thomas Park * Copyright 2012-2016 Thomas Park
* Licensed under MIT * Licensed under MIT
* Based on Bootstrap * Based on Bootstrap
*/ */
/*! /*!
* Bootstrap v3.3.6 (http://getbootstrap.com) * Bootstrap v3.3.7 (http://getbootstrap.com)
* Copyright 2011-2015 Twitter, Inc. * Copyright 2011-2016 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/ */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
@ -1110,7 +1110,6 @@ a:focus {
text-decoration: underline; text-decoration: underline;
} }
a:focus { a:focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color; outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; outline-offset: -2px;
} }
@ -2541,7 +2540,6 @@ select[size] {
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;
outline: 5px auto -webkit-focus-ring-color; outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; outline-offset: -2px;
} }
@ -3033,7 +3031,6 @@ select[multiple].input-lg {
.btn.focus, .btn.focus,
.btn:active.focus, .btn:active.focus,
.btn.active.focus { .btn.active.focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color; outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; outline-offset: -2px;
} }

10
xstatic/pkg/bootswatch/data/lumen/bootstrap.min.css vendored Normal file → Executable file

File diff suppressed because one or more lines are too long

2
xstatic/pkg/bootswatch/data/lumen/bootswatch.less Normal file → Executable file
View File

@ -1,4 +1,4 @@
// Lumen 3.3.5 // Lumen 3.3.7
// Bootswatch // Bootswatch
// ----------------------------------------------------- // -----------------------------------------------------

File diff suppressed because it is too large Load Diff

0
xstatic/pkg/bootswatch/data/lumen/thumbnail.png Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 19 KiB

4
xstatic/pkg/bootswatch/data/lumen/variables.less Normal file → Executable file
View File

@ -1,4 +1,4 @@
// Lumen 3.3.6 // Lumen 3.3.7
// Variables // Variables
// -------------------------------------------------- // --------------------------------------------------
@ -111,7 +111,7 @@
//** Global background color for active items (e.g., navs or dropdowns). //** Global background color for active items (e.g., navs or dropdowns).
@component-active-bg: @brand-primary; @component-active-bg: @brand-primary;
//** Width of the `border` for generating carets that indicator dropdowns. //** Width of the `border` for generating carets that indicate dropdowns.
@caret-width-base: 4px; @caret-width-base: 4px;
//** Carets increase slightly in size for larger components. //** Carets increase slightly in size for larger components.
@caret-width-large: 5px; @caret-width-large: 5px;

15
xstatic/pkg/bootswatch/data/paper/_bootswatch.scss Normal file → Executable file
View File

@ -1,4 +1,4 @@
// Paper 3.3.5 // Paper 3.3.7
// Bootswatch // Bootswatch
// ----------------------------------------------------- // -----------------------------------------------------
@ -36,7 +36,7 @@ $web-font-path: "https://fonts.googleapis.com/css?family=Roboto:300,400,500,700"
@mixin btn($class,$bg){ @mixin btn($class,$bg){
.btn-#{$class} { .btn-#{$class} {
background-size: 200%; background-size: 200% 200%;
background-position: 50%; background-position: 50%;
&:focus { &:focus {
@ -51,7 +51,7 @@ $web-font-path: "https://fonts.googleapis.com/css?family=Roboto:300,400,500,700"
&:active { &:active {
background-color: darken($bg, 12%); background-color: darken($bg, 12%);
@include gradient-radial(darken($bg, 12%) 10%, $bg 11%); @include gradient-radial(darken($bg, 12%) 10%, $bg 11%);
background-size: 1000%; background-size: 1000% 1000%;
@include box-shadow(2px 2px 4px rgba(0,0,0,.4)); @include box-shadow(2px 2px 4px rgba(0,0,0,.4));
} }
} }
@ -410,6 +410,13 @@ input[type="checkbox"],
} }
} }
.form-group-lg {
select,
select.form-control {
line-height: 1.5;
}
}
// Navs ======================================================================= // Navs =======================================================================
.nav-tabs { .nav-tabs {
@ -490,7 +497,7 @@ input[type="checkbox"],
background-color: $brand-danger; background-color: $brand-danger;
} }
a:not(.close), a:not(.close):not(.btn),
.alert-link { .alert-link {
color: #fff; color: #fff;
font-weight: bold; font-weight: bold;

4
xstatic/pkg/bootswatch/data/paper/_variables.scss Normal file → Executable file
View File

@ -1,5 +1,5 @@
$bootstrap-sass-asset-helper: false !default; $bootstrap-sass-asset-helper: false !default;
// Paper 3.3.6 // Paper 3.3.7
// Variables // Variables
// -------------------------------------------------- // --------------------------------------------------
@ -112,7 +112,7 @@ $component-active-color: #fff !default;
//** Global background color for active items (e.g., navs or dropdowns). //** Global background color for active items (e.g., navs or dropdowns).
$component-active-bg: $brand-primary !default; $component-active-bg: $brand-primary !default;
//** Width of the `border` for generating carets that indicator dropdowns. //** Width of the `border` for generating carets that indicate dropdowns.
$caret-width-base: 4px !default; $caret-width-base: 4px !default;
//** Carets increase slightly in size for larger components. //** Carets increase slightly in size for larger components.
$caret-width-large: 5px !default; $caret-width-large: 5px !default;

45
xstatic/pkg/bootswatch/data/paper/bootstrap.css vendored Normal file → Executable file
View File

@ -1,14 +1,14 @@
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700"); @import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700");
/*! /*!
* bootswatch v3.3.6 * bootswatch v3.3.7
* Homepage: http://bootswatch.com * Homepage: http://bootswatch.com
* Copyright 2012-2015 Thomas Park * Copyright 2012-2016 Thomas Park
* Licensed under MIT * Licensed under MIT
* Based on Bootstrap * Based on Bootstrap
*/ */
/*! /*!
* Bootstrap v3.3.6 (http://getbootstrap.com) * Bootstrap v3.3.7 (http://getbootstrap.com)
* Copyright 2011-2015 Twitter, Inc. * Copyright 2011-2016 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/ */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
@ -1110,7 +1110,6 @@ a:focus {
text-decoration: underline; text-decoration: underline;
} }
a:focus { a:focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color; outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; outline-offset: -2px;
} }
@ -2541,7 +2540,6 @@ select[size] {
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;
outline: 5px auto -webkit-focus-ring-color; outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; outline-offset: -2px;
} }
@ -3033,7 +3031,6 @@ select[multiple].input-lg {
.btn.focus, .btn.focus,
.btn:active.focus, .btn:active.focus,
.btn.active.focus { .btn.active.focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color; outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; outline-offset: -2px;
} }
@ -6791,7 +6788,7 @@ button.close {
} }
.btn-default { .btn-default {
-webkit-background-size: 200% 200%; -webkit-background-size: 200% 200%;
background-size: 200%; background-size: 200% 200%;
background-position: 50%; background-position: 50%;
} }
.btn-default:focus { .btn-default:focus {
@ -6808,13 +6805,13 @@ button.close {
background-image: radial-gradient(circle, #e0e0e0 10%, #ffffff 11%); background-image: radial-gradient(circle, #e0e0e0 10%, #ffffff 11%);
background-repeat: no-repeat; background-repeat: no-repeat;
-webkit-background-size: 1000% 1000%; -webkit-background-size: 1000% 1000%;
background-size: 1000%; background-size: 1000% 1000%;
-webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
} }
.btn-primary { .btn-primary {
-webkit-background-size: 200% 200%; -webkit-background-size: 200% 200%;
background-size: 200%; background-size: 200% 200%;
background-position: 50%; background-position: 50%;
} }
.btn-primary:focus { .btn-primary:focus {
@ -6831,13 +6828,13 @@ button.close {
background-image: radial-gradient(circle, #0b76cc 10%, #2196f3 11%); background-image: radial-gradient(circle, #0b76cc 10%, #2196f3 11%);
background-repeat: no-repeat; background-repeat: no-repeat;
-webkit-background-size: 1000% 1000%; -webkit-background-size: 1000% 1000%;
background-size: 1000%; background-size: 1000% 1000%;
-webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
} }
.btn-success { .btn-success {
-webkit-background-size: 200% 200%; -webkit-background-size: 200% 200%;
background-size: 200%; background-size: 200% 200%;
background-position: 50%; background-position: 50%;
} }
.btn-success:focus { .btn-success:focus {
@ -6854,13 +6851,13 @@ button.close {
background-image: radial-gradient(circle, #39843c 10%, #4caf50 11%); background-image: radial-gradient(circle, #39843c 10%, #4caf50 11%);
background-repeat: no-repeat; background-repeat: no-repeat;
-webkit-background-size: 1000% 1000%; -webkit-background-size: 1000% 1000%;
background-size: 1000%; background-size: 1000% 1000%;
-webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
} }
.btn-info { .btn-info {
-webkit-background-size: 200% 200%; -webkit-background-size: 200% 200%;
background-size: 200%; background-size: 200% 200%;
background-position: 50%; background-position: 50%;
} }
.btn-info:focus { .btn-info:focus {
@ -6877,13 +6874,13 @@ button.close {
background-image: radial-gradient(circle, #701c7e 10%, #9c27b0 11%); background-image: radial-gradient(circle, #701c7e 10%, #9c27b0 11%);
background-repeat: no-repeat; background-repeat: no-repeat;
-webkit-background-size: 1000% 1000%; -webkit-background-size: 1000% 1000%;
background-size: 1000%; background-size: 1000% 1000%;
-webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
} }
.btn-warning { .btn-warning {
-webkit-background-size: 200% 200%; -webkit-background-size: 200% 200%;
background-size: 200%; background-size: 200% 200%;
background-position: 50%; background-position: 50%;
} }
.btn-warning:focus { .btn-warning:focus {
@ -6900,13 +6897,13 @@ button.close {
background-image: radial-gradient(circle, #c27400 10%, #ff9800 11%); background-image: radial-gradient(circle, #c27400 10%, #ff9800 11%);
background-repeat: no-repeat; background-repeat: no-repeat;
-webkit-background-size: 1000% 1000%; -webkit-background-size: 1000% 1000%;
background-size: 1000%; background-size: 1000% 1000%;
-webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
} }
.btn-danger { .btn-danger {
-webkit-background-size: 200% 200%; -webkit-background-size: 200% 200%;
background-size: 200%; background-size: 200% 200%;
background-position: 50%; background-position: 50%;
} }
.btn-danger:focus { .btn-danger:focus {
@ -6923,13 +6920,13 @@ button.close {
background-image: radial-gradient(circle, #b0141a 10%, #e51c23 11%); background-image: radial-gradient(circle, #b0141a 10%, #e51c23 11%);
background-repeat: no-repeat; background-repeat: no-repeat;
-webkit-background-size: 1000% 1000%; -webkit-background-size: 1000% 1000%;
background-size: 1000%; background-size: 1000% 1000%;
-webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
} }
.btn-link { .btn-link {
-webkit-background-size: 200% 200%; -webkit-background-size: 200% 200%;
background-size: 200%; background-size: 200% 200%;
background-position: 50%; background-position: 50%;
} }
.btn-link:focus { .btn-link:focus {
@ -6946,7 +6943,7 @@ button.close {
background-image: radial-gradient(circle, #e0e0e0 10%, #ffffff 11%); background-image: radial-gradient(circle, #e0e0e0 10%, #ffffff 11%);
background-repeat: no-repeat; background-repeat: no-repeat;
-webkit-background-size: 1000% 1000%; -webkit-background-size: 1000% 1000%;
background-size: 1000%; background-size: 1000% 1000%;
-webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
} }
@ -7352,6 +7349,10 @@ input[type="checkbox"]:disabled:checked:after,
border-color: transparent; border-color: transparent;
background-color: transparent; background-color: transparent;
} }
.form-group-lg select,
.form-group-lg select.form-control {
line-height: 1.5;
}
.nav-tabs > li > a, .nav-tabs > li > a,
.nav-tabs > li > a:focus { .nav-tabs > li > a:focus {
margin-right: 0; margin-right: 0;
@ -7420,7 +7421,7 @@ input[type="checkbox"]:disabled:checked:after,
.alert-danger { .alert-danger {
background-color: #e51c23; background-color: #e51c23;
} }
.alert a:not(.close), .alert a:not(.close):not(.btn),
.alert .alert-link { .alert .alert-link {
color: #fff; color: #fff;
font-weight: bold; font-weight: bold;

10
xstatic/pkg/bootswatch/data/paper/bootstrap.min.css vendored Normal file → Executable file

File diff suppressed because one or more lines are too long

15
xstatic/pkg/bootswatch/data/paper/bootswatch.less Normal file → Executable file
View File

@ -1,4 +1,4 @@
// Paper 3.3.5 // Paper 3.3.7
// Bootswatch // Bootswatch
// ----------------------------------------------------- // -----------------------------------------------------
@ -40,7 +40,7 @@
#btn(@class,@bg) { #btn(@class,@bg) {
.btn-@{class} { .btn-@{class} {
background-size: 200%; background-size: 200% 200%;
background-position: 50%; background-position: 50%;
&:focus { &:focus {
@ -55,7 +55,7 @@
&:active { &:active {
background-color: darken(@bg, 12%); background-color: darken(@bg, 12%);
#gradient > .radial(darken(@bg, 12%) 10%, @bg 11%); #gradient > .radial(darken(@bg, 12%) 10%, @bg 11%);
background-size: 1000%; background-size: 1000% 1000%;
.box-shadow(2px 2px 4px rgba(0,0,0,.4)); .box-shadow(2px 2px 4px rgba(0,0,0,.4));
} }
} }
@ -414,6 +414,13 @@ input[type="checkbox"],
} }
} }
.form-group-lg {
select,
select.form-control {
line-height: 1.5;
}
}
// Navs ======================================================================= // Navs =======================================================================
.nav-tabs { .nav-tabs {
@ -494,7 +501,7 @@ input[type="checkbox"],
background-color: @brand-danger; background-color: @brand-danger;
} }
a:not(.close), a:not(.close):not(.btn),
.alert-link { .alert-link {
color: #fff; color: #fff;
font-weight: bold; font-weight: bold;

File diff suppressed because it is too large Load Diff

0
xstatic/pkg/bootswatch/data/paper/thumbnail.png Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 25 KiB

4
xstatic/pkg/bootswatch/data/paper/variables.less Normal file → Executable file
View File

@ -1,4 +1,4 @@
// Paper 3.3.6 // Paper 3.3.7
// Variables // Variables
// -------------------------------------------------- // --------------------------------------------------
@ -111,7 +111,7 @@
//** Global background color for active items (e.g., navs or dropdowns). //** Global background color for active items (e.g., navs or dropdowns).
@component-active-bg: @brand-primary; @component-active-bg: @brand-primary;
//** Width of the `border` for generating carets that indicator dropdowns. //** Width of the `border` for generating carets that indicate dropdowns.
@caret-width-base: 4px; @caret-width-base: 4px;
//** Carets increase slightly in size for larger components. //** Carets increase slightly in size for larger components.
@caret-width-large: 5px; @caret-width-large: 5px;

2
xstatic/pkg/bootswatch/data/readable/_bootswatch.scss Normal file → Executable file
View File

@ -1,4 +1,4 @@
// Readable 3.3.5 // Readable 3.3.7
// Bootswatch // Bootswatch
// ----------------------------------------------------- // -----------------------------------------------------

4
xstatic/pkg/bootswatch/data/readable/_variables.scss Normal file → Executable file
View File

@ -1,5 +1,5 @@
$bootstrap-sass-asset-helper: false !default; $bootstrap-sass-asset-helper: false !default;
// Readable 3.3.6 // Readable 3.3.7
// Variables // Variables
// -------------------------------------------------- // --------------------------------------------------
@ -112,7 +112,7 @@ $component-active-color: #fff !default;
//** Global background color for active items (e.g., navs or dropdowns). //** Global background color for active items (e.g., navs or dropdowns).
$component-active-bg: $brand-primary !default; $component-active-bg: $brand-primary !default;
//** Width of the `border` for generating carets that indicator dropdowns. //** Width of the `border` for generating carets that indicate dropdowns.
$caret-width-base: 4px !default; $caret-width-base: 4px !default;
//** Carets increase slightly in size for larger components. //** Carets increase slightly in size for larger components.
$caret-width-large: 5px !default; $caret-width-large: 5px !default;

11
xstatic/pkg/bootswatch/data/readable/bootstrap.css vendored Normal file → Executable file
View File

@ -1,14 +1,14 @@
@import url("https://fonts.googleapis.com/css?family=Raleway:400,700"); @import url("https://fonts.googleapis.com/css?family=Raleway:400,700");
/*! /*!
* bootswatch v3.3.6 * bootswatch v3.3.7
* Homepage: http://bootswatch.com * Homepage: http://bootswatch.com
* Copyright 2012-2015 Thomas Park * Copyright 2012-2016 Thomas Park
* Licensed under MIT * Licensed under MIT
* Based on Bootstrap * Based on Bootstrap
*/ */
/*! /*!
* Bootstrap v3.3.6 (http://getbootstrap.com) * Bootstrap v3.3.7 (http://getbootstrap.com)
* Copyright 2011-2015 Twitter, Inc. * Copyright 2011-2016 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/ */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
@ -1110,7 +1110,6 @@ a:focus {
text-decoration: underline; text-decoration: underline;
} }
a:focus { a:focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color; outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; outline-offset: -2px;
} }
@ -2541,7 +2540,6 @@ select[size] {
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;
outline: 5px auto -webkit-focus-ring-color; outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; outline-offset: -2px;
} }
@ -3033,7 +3031,6 @@ select[multiple].input-lg {
.btn.focus, .btn.focus,
.btn:active.focus, .btn:active.focus,
.btn.active.focus { .btn.active.focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color; outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; outline-offset: -2px;
} }

10
xstatic/pkg/bootswatch/data/readable/bootstrap.min.css vendored Normal file → Executable file

File diff suppressed because one or more lines are too long

2
xstatic/pkg/bootswatch/data/readable/bootswatch.less Normal file → Executable file
View File

@ -1,4 +1,4 @@
// Readable 3.3.5 // Readable 3.3.7
// Bootswatch // Bootswatch
// ----------------------------------------------------- // -----------------------------------------------------

File diff suppressed because it is too large Load Diff

0
xstatic/pkg/bootswatch/data/readable/thumbnail.png Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 28 KiB

4
xstatic/pkg/bootswatch/data/readable/variables.less Normal file → Executable file
View File

@ -1,4 +1,4 @@
// Readable 3.3.6 // Readable 3.3.7
// Variables // Variables
// -------------------------------------------------- // --------------------------------------------------
@ -111,7 +111,7 @@
//** Global background color for active items (e.g., navs or dropdowns). //** Global background color for active items (e.g., navs or dropdowns).
@component-active-bg: @brand-primary; @component-active-bg: @brand-primary;
//** Width of the `border` for generating carets that indicator dropdowns. //** Width of the `border` for generating carets that indicate dropdowns.
@caret-width-base: 4px; @caret-width-base: 4px;
//** Carets increase slightly in size for larger components. //** Carets increase slightly in size for larger components.
@caret-width-large: 5px; @caret-width-large: 5px;

4
xstatic/pkg/bootswatch/data/sandstone/_bootswatch.scss Normal file → Executable file
View File

@ -1,8 +1,8 @@
// Sandstone 3.3.5 // Sandstone 3.3.7
// Bootswatch // Bootswatch
// ----------------------------------------------------- // -----------------------------------------------------
$web-font-path: "https://fonts.googleapis.com/css?family=Roboto:400,500" !default; $web-font-path: "https://fonts.googleapis.com/css?family=Roboto:400,500,700" !default;
@import url($web-font-path); @import url($web-font-path);
// Navbar ===================================================================== // Navbar =====================================================================

4
xstatic/pkg/bootswatch/data/sandstone/_variables.scss Normal file → Executable file
View File

@ -1,5 +1,5 @@
$bootstrap-sass-asset-helper: false !default; $bootstrap-sass-asset-helper: false !default;
// Sandstone 3.3.6 // Sandstone 3.3.7
// Variables // Variables
// -------------------------------------------------- // --------------------------------------------------
@ -112,7 +112,7 @@ $component-active-color: $gray !default;
//** Global background color for active items (e.g., navs or dropdowns). //** Global background color for active items (e.g., navs or dropdowns).
$component-active-bg: $gray-lighter !default; $component-active-bg: $gray-lighter !default;
//** Width of the `border` for generating carets that indicator dropdowns. //** Width of the `border` for generating carets that indicate dropdowns.
$caret-width-base: 4px !default; $caret-width-base: 4px !default;
//** Carets increase slightly in size for larger components. //** Carets increase slightly in size for larger components.
$caret-width-large: 5px !default; $caret-width-large: 5px !default;

13
xstatic/pkg/bootswatch/data/sandstone/bootstrap.css vendored Normal file → Executable file
View File

@ -1,14 +1,14 @@
@import url("https://fonts.googleapis.com/css?family=Roboto:400,500"); @import url("https://fonts.googleapis.com/css?family=Roboto:400,500,700");
/*! /*!
* bootswatch v3.3.6 * bootswatch v3.3.7
* Homepage: http://bootswatch.com * Homepage: http://bootswatch.com
* Copyright 2012-2015 Thomas Park * Copyright 2012-2016 Thomas Park
* Licensed under MIT * Licensed under MIT
* Based on Bootstrap * Based on Bootstrap
*/ */
/*! /*!
* Bootstrap v3.3.6 (http://getbootstrap.com) * Bootstrap v3.3.7 (http://getbootstrap.com)
* Copyright 2011-2015 Twitter, Inc. * Copyright 2011-2016 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/ */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
@ -1110,7 +1110,6 @@ a:focus {
text-decoration: underline; text-decoration: underline;
} }
a:focus { a:focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color; outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; outline-offset: -2px;
} }
@ -2541,7 +2540,6 @@ select[size] {
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;
outline: 5px auto -webkit-focus-ring-color; outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; outline-offset: -2px;
} }
@ -3033,7 +3031,6 @@ select[multiple].input-lg {
.btn.focus, .btn.focus,
.btn:active.focus, .btn:active.focus,
.btn.active.focus { .btn.active.focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color; outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; outline-offset: -2px;
} }

12
xstatic/pkg/bootswatch/data/sandstone/bootstrap.min.css vendored Normal file → Executable file

File diff suppressed because one or more lines are too long

4
xstatic/pkg/bootswatch/data/sandstone/bootswatch.less Normal file → Executable file
View File

@ -1,8 +1,8 @@
// Sandstone 3.3.5 // Sandstone 3.3.7
// Bootswatch // Bootswatch
// ----------------------------------------------------- // -----------------------------------------------------
@web-font-path: "https://fonts.googleapis.com/css?family=Roboto:400,500"; @web-font-path: "https://fonts.googleapis.com/css?family=Roboto:400,500,700";
.web-font(@path) { .web-font(@path) {
@import url("@{path}"); @import url("@{path}");

File diff suppressed because it is too large Load Diff

0
xstatic/pkg/bootswatch/data/sandstone/thumbnail.png Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 21 KiB

4
xstatic/pkg/bootswatch/data/sandstone/variables.less Normal file → Executable file
View File

@ -1,4 +1,4 @@
// Sandstone 3.3.6 // Sandstone 3.3.7
// Variables // Variables
// -------------------------------------------------- // --------------------------------------------------
@ -111,7 +111,7 @@
//** Global background color for active items (e.g., navs or dropdowns). //** Global background color for active items (e.g., navs or dropdowns).
@component-active-bg: @gray-lighter; @component-active-bg: @gray-lighter;
//** Width of the `border` for generating carets that indicator dropdowns. //** Width of the `border` for generating carets that indicate dropdowns.
@caret-width-base: 4px; @caret-width-base: 4px;
//** Carets increase slightly in size for larger components. //** Carets increase slightly in size for larger components.
@caret-width-large: 5px; @caret-width-large: 5px;

2
xstatic/pkg/bootswatch/data/simplex/_bootswatch.scss Normal file → Executable file
View File

@ -1,4 +1,4 @@
// Simplex 3.3.5 // Simplex 3.3.7
// Bootswatch // Bootswatch
// ----------------------------------------------------- // -----------------------------------------------------

4
xstatic/pkg/bootswatch/data/simplex/_variables.scss Normal file → Executable file
View File

@ -1,5 +1,5 @@
$bootstrap-sass-asset-helper: false !default; $bootstrap-sass-asset-helper: false !default;
// Simplex 3.3.6 // Simplex 3.3.7
// Variables // Variables
// -------------------------------------------------- // --------------------------------------------------
@ -112,7 +112,7 @@ $component-active-color: #fff !default;
//** Global background color for active items (e.g., navs or dropdowns). //** Global background color for active items (e.g., navs or dropdowns).
$component-active-bg: $brand-primary !default; $component-active-bg: $brand-primary !default;
//** Width of the `border` for generating carets that indicator dropdowns. //** Width of the `border` for generating carets that indicate dropdowns.
$caret-width-base: 4px !default; $caret-width-base: 4px !default;
//** Carets increase slightly in size for larger components. //** Carets increase slightly in size for larger components.
$caret-width-large: 5px !default; $caret-width-large: 5px !default;

11
xstatic/pkg/bootswatch/data/simplex/bootstrap.css vendored Normal file → Executable file
View File

@ -1,14 +1,14 @@
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,700"); @import url("https://fonts.googleapis.com/css?family=Open+Sans:400,700");
/*! /*!
* bootswatch v3.3.6 * bootswatch v3.3.7
* Homepage: http://bootswatch.com * Homepage: http://bootswatch.com
* Copyright 2012-2015 Thomas Park * Copyright 2012-2016 Thomas Park
* Licensed under MIT * Licensed under MIT
* Based on Bootstrap * Based on Bootstrap
*/ */
/*! /*!
* Bootstrap v3.3.6 (http://getbootstrap.com) * Bootstrap v3.3.7 (http://getbootstrap.com)
* Copyright 2011-2015 Twitter, Inc. * Copyright 2011-2016 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/ */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
@ -1110,7 +1110,6 @@ a:focus {
text-decoration: underline; text-decoration: underline;
} }
a:focus { a:focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color; outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; outline-offset: -2px;
} }
@ -2541,7 +2540,6 @@ select[size] {
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;
outline: 5px auto -webkit-focus-ring-color; outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; outline-offset: -2px;
} }
@ -3033,7 +3031,6 @@ select[multiple].input-lg {
.btn.focus, .btn.focus,
.btn:active.focus, .btn:active.focus,
.btn.active.focus { .btn.active.focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color; outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; outline-offset: -2px;
} }

10
xstatic/pkg/bootswatch/data/simplex/bootstrap.min.css vendored Normal file → Executable file

File diff suppressed because one or more lines are too long

2
xstatic/pkg/bootswatch/data/simplex/bootswatch.less Normal file → Executable file
View File

@ -1,4 +1,4 @@
// Simplex 3.3.5 // Simplex 3.3.7
// Bootswatch // Bootswatch
// ----------------------------------------------------- // -----------------------------------------------------

File diff suppressed because it is too large Load Diff

0
xstatic/pkg/bootswatch/data/simplex/thumbnail.png Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 26 KiB

4
xstatic/pkg/bootswatch/data/simplex/variables.less Normal file → Executable file
View File

@ -1,4 +1,4 @@
// Simplex 3.3.6 // Simplex 3.3.7
// Variables // Variables
// -------------------------------------------------- // --------------------------------------------------
@ -111,7 +111,7 @@
//** Global background color for active items (e.g., navs or dropdowns). //** Global background color for active items (e.g., navs or dropdowns).
@component-active-bg: @brand-primary; @component-active-bg: @brand-primary;
//** Width of the `border` for generating carets that indicator dropdowns. //** Width of the `border` for generating carets that indicate dropdowns.
@caret-width-base: 4px; @caret-width-base: 4px;
//** Carets increase slightly in size for larger components. //** Carets increase slightly in size for larger components.
@caret-width-large: 5px; @caret-width-large: 5px;

45
xstatic/pkg/bootswatch/data/slate/_bootswatch.scss Normal file → Executable file
View File

@ -1,4 +1,4 @@
// Slate 3.3.5 // Slate 3.3.7
// Bootswatch // Bootswatch
// ----------------------------------------------------- // -----------------------------------------------------
@ -8,7 +8,7 @@
} }
@mixin btn-shadow-inverse($color){ @mixin btn-shadow-inverse($color){
@include gradient-vertical-three-colors(darken($color, 24%), darken($color, 18%), 40%, darken($color, 14%)); @include gradient-vertical-three-colors(darken($color, 24%), darken($color, 18%), 40%, darken($color, 16%));
filter: none; filter: none;
} }
@ -20,15 +20,7 @@
border: 1px solid rgba(0, 0, 0, 0.6); border: 1px solid rgba(0, 0, 0, 0.6);
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3); text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
&-inverse { .navbar-nav > li > a {
@include btn-shadow($navbar-inverse-bg);
.badge {
background-color: $navbar-inverse-link-active-bg;
}
}
&-nav > li > a {
border-right: 1px solid rgba(0, 0, 0, 0.2); border-right: 1px solid rgba(0, 0, 0, 0.2);
border-left: 1px solid rgba(255, 255, 255, 0.1); border-left: 1px solid rgba(255, 255, 255, 0.1);
@ -38,6 +30,21 @@
} }
} }
&-inverse {
@include btn-shadow($navbar-inverse-bg);
.badge {
background-color: $navbar-inverse-link-active-bg;
}
.navbar-nav > li > a {
&:hover {
@include btn-shadow-inverse($navbar-inverse-bg);
}
}
}
.nav .open > a { .nav .open > a {
border-color: transparent; border-color: transparent;
} }
@ -201,8 +208,8 @@ textarea {
} }
.input-group-addon { .input-group-addon {
background-color: $body-bg; background-color: $gray-dark;
border: none; border-color: $input-group-addon-border-color;
} }
} }
@ -227,8 +234,8 @@ textarea {
} }
.input-group-addon { .input-group-addon {
background-color: $body-bg; background-color: $gray-dark;
border: none; border-color: $input-group-addon-border-color;
} }
} }
@ -253,8 +260,8 @@ textarea {
} }
.input-group-addon { .input-group-addon {
background-color: $body-bg; background-color: $gray-dark;
border: none; border-color: $input-group-addon-border-color;
} }
} }
@ -263,9 +270,9 @@ legend {
} }
.input-group-addon { .input-group-addon {
border-color: rgba(0, 0, 0, 0.6); background-color: $gray-dark;
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
@include btn-shadow($btn-default-bg); @include btn-shadow($btn-default-bg);
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
color: $btn-default-color; color: $btn-default-color;
} }

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