gulp copy:bs-docs

This commit is contained in:
Kevin Ross 2016-03-28 12:23:04 -05:00
parent ea95e7bd62
commit 2db7032ebf
6 changed files with 25 additions and 5 deletions

View File

@ -6,5 +6,13 @@ scss:
javascript:
enabled: false
eslint:
enabled: true
config_file: .eslintrc
jscs:
enabled: true
config_file: js/.jscsrc
ruby:
enabled: false

View File

@ -17,7 +17,6 @@ before_install:
- rvm install 2.2.2
- rvm use 2.2.2 --fuzzy
- export GEMDIR=$(rvm gemdir)
- npm install -g npm
- "export TRAVIS_COMMIT_MSG=\"$(git log --format=%B --no-merges -n 1)\""
- echo "$TRAVIS_COMMIT_MSG" | grep '\[skip validator\]'; export BMD_DO_VALIDATOR=$?; true

View File

@ -25,6 +25,10 @@ restrictions:
* Please **do not** derail or troll issues. Keep the discussion on topic and
respect the opinions of others.
* Please **do not** post comments consisting solely of "+1" or ":thumbsup:".
Use [GitHub's "reactions" feature](https://github.com/blog/2119-add-reactions-to-pull-requests-issues-and-comments)
instead. We reserve the right to delete comments which violate this rule.
* Please **do not** open issues or pull requests regarding the code in dependencies such as:
[`Bootstrap`](https://github.com/twbs/bootstrap) (open them in their respective repositories).

View File

@ -5,8 +5,6 @@
//
.bd-navbar {
font-size: 87.5%; // 14px
.navbar-nav {
.nav-link {
color: $bd-graphite-light;
@ -19,7 +17,8 @@
}
&.active {
color: darken($gray-dark, 25%);
font-weight: 500;
color: darken($gray-dark, 15%);
}
}
}

View File

@ -46,7 +46,7 @@ Always try to place a modal's HTML code in a top-level position in your document
{% callout warning %}
#### Mobile device caveats
There are some caveats regarding using modals on mobile devices. [See our browser support docs]({{ site.baseurl }}/getting-started/browsers-devices/#modals-navbars-and-virtual-keyboards) for details.
There are some caveats regarding using modals on mobile devices. [See our browser support docs]({{ site.baseurl }}/getting-started/browsers-devices/#modals-and-dropdowns-on-mobile) for details.
{% endcallout %}
### Static example

View File

@ -579,6 +579,16 @@ For more information, read [this Stack Overflow answer](https://stackoverflow.co
### Reflow
Turn traditional tables on their side by using `table-reflow`. When using reflow, the table header becomes the first column of the table, the first row within the table body becomes the second column, the second row becomes the third column, etc.
{% callout warning %}
#### Content order and complex tables
Beware that the `table-reflow` style changes the visual order of content. Make sure that you only apply this style to well-formed and simple data tables (and in particular, don't use this for layout tables) with appropriate `<th>` table header cells for each row and column.
In addition, this class will not work correctly for tables with cells that span multiple rows or columns (using `rowspan` or `colspan` attributes).
{% endcallout %}
{% example html %}
<table class="table table-reflow">