Mark Otto
c053f23fe6
Merge pull request #17362 from omeid/v4-container-mixin
...
Semantic grid: add make-container-breakpoint
2015-09-01 20:13:52 -07:00
Mark Otto
5d5398afdb
Merge pull request #17389 from Gupocca/link-fixing
...
Fix several erroneous links in docs.
2015-09-01 20:06:00 -07:00
Chris Rebert
d258559f11
Merge pull request #17427 from supergibbs/v4-docs-nav-link-in-scrollspy
...
Fixed link to nav component from scrollspy documentation
2015-09-01 18:01:39 -07:00
Mark Otto
88ec75b6e6
Merge pull request #17428 from abitdodgy/docs-fix
...
Adds table-responsive class to docs table
2015-09-01 16:49:52 -07:00
Mohamad El-Husseini
b994b1f999
adds table-responsive class to table
2015-09-01 20:26:11 -03:00
Supergibbs
9d30cb38d9
Fixed link to nav component from scrollspy documentation
...
(reported by ianhernandez in Slack)
2015-09-01 15:45:02 -07:00
Mark Otto
82168e4014
Merge pull request #17393 from twbs/v4-dev-xmr-rm-gfonts
...
Remove the unused Google fonts.
2015-09-01 13:22:44 -07:00
Chris Rebert
4bd671a70b
Merge pull request #17418 from zalog/patch-6
...
Apply !default to SCSS variables
2015-09-01 02:42:23 -07:00
Catalin Zalog
18395219cc
Apply !default to SCSS variables
...
Missed one variable :(
2015-09-01 11:26:01 +03:00
Gleb Mazovetskiy
33a510c63c
Merge pull request #17402 from twbs/pr-14552-v4
...
Accept elements as the tooltip / popover content
2015-08-31 13:03:09 +01:00
Vincent 4J
1ca33002d4
add Chinese translations website boot4.com
2015-08-31 11:27:14 +08:00
Gleb Mazovetskiy
c7d8e7a077
Accept elements as the tooltip / popover content
...
When a DOM node is passed to an HTML tooltip, the `title` node is only
moved if it is not already in the tooltip. Otherwise, `empty()` is used
instead of `detach()` before appending the `title` to avoid memory
leaks. If a DOM node is passed to a plain text tooltip, its text is
copied via jQuery `.text()`.
Replaces `.detach()` with `.empty()`, as `.detach()` is almost never
useful but instead leaks memory. The difference between `empty` and
`detach` is that the latter keeps all the attached jQuery events/data.
However, since we do not return the previous children, the user would
have to keep these themselves, thus they can `detach()` if necessary.
This is a port of https://github.com/twbs/bootstrap/pull/14552 to v4.
2015-08-31 01:06:13 +01:00
XhmikosR
74a1648bf7
Remove the unused Google fonts.
...
[ci skip]
2015-08-30 13:32:42 +03:00
XhmikosR
8941bdfbda
Merge pull request #17392 from twbs/v4-dev-xmr-https
...
Use `https` when possible.
2015-08-30 13:31:05 +03:00
Chris Rebert
8ad1f8ddbe
Merge pull request #17331 from twbs/fix-17323
...
rm unused $state param from form-control-validation mixin
2015-08-29 15:55:45 -07:00
XhmikosR
22a10a1096
Tabs to spaces.
...
[ci skip]
2015-08-30 00:05:02 +03:00
XhmikosR
fc35ea815e
grunt/configBridge.json: Remove unused autoprefixer config.
...
[ci skip]
2015-08-30 00:05:02 +03:00
XhmikosR
6e732ace2c
Run grunt
.
...
[ci skip]
2015-08-30 00:01:30 +03:00
XhmikosR
647ad1cbed
Merge pull request #17384 from twbs/v4-dev-xmr-jekyll-search
...
Fix the JS errors due to jekyll-search.
2015-08-29 23:59:10 +03:00
Chris Rebert
d7a62d52f6
Merge pull request #17394 from twbs/v4-dev-xmr-rm-jade
...
Remove the now unused grunt-contrib-jade references.
2015-08-29 13:39:03 -07:00
Gupocca
34932d71b4
Fix several erroneous links in docs.
...
Related to #17314 .
2015-08-29 10:59:04 -07:00
XhmikosR
5998b93859
Enforce LF for .py files too.
...
[ci skip]
2015-08-29 18:57:36 +03:00
XhmikosR
48f50ab913
Remove the now unused grunt-contrib-jade references.
...
[skip sauce]
[skip validator]
2015-08-29 18:54:49 +03:00
XhmikosR
8328344212
Use https
when possible.
...
[ci skip]
2015-08-29 18:50:20 +03:00
Mohamad El-Husseini
81806703e5
removes table-responsive div from components/navs
2015-08-28 11:35:11 -03:00
XhmikosR
3fef66eaf5
Fix the JS errors due to jekyll-search.
...
1) Update it to v1.0.8
2) Include jekyll-search where it's used only
[ci skip]
2015-08-28 14:28:47 +03:00
XhmikosR
232469549c
Merge pull request #17368 from twbs/v4-dev-xmr-qunit
...
Update QUnit to v1.18.0.
2015-08-27 19:00:59 +03:00
XhmikosR
7da2d3c68a
Lossy compress the 2 new images.
...
Before: 538 KB (551.052 bytes)
After: 179 KB (183.296 bytes)
[ci skip]
2015-08-27 18:49:39 +03:00
XhmikosR
4631b229fb
Losslessly compress images.
...
Before: 1,28 MB (1.351.880 bytes)
After: 1,27 MB (1.341.411 bytes)
[ci skip]
2015-08-27 18:49:39 +03:00
XhmikosR
73c61199a1
Remove CSSLint references.
2015-08-27 18:49:08 +03:00
O'meid
c42d0e10f4
scss: semantic grid: add make-container-breakpoint
...
Signed-off-by: O'meid <public@omeid.me>
2015-08-28 00:48:06 +10:00
Gleb Mazovetskiy
f7b27a02ce
Remove all uses of selector &
...
If we want to support namespaced import:
```scss
.twbs {
@import 'bootstrap';
}
```
We cannot use `selector &`, see sass/sass#1817 .
`fieldset[disabled] &` is not needed as we no longer support IE8.
2015-08-27 13:11:14 +01:00
XhmikosR
4dd9a5a6dc
Update QUnit to v1.18.0.
2015-08-27 08:15:19 +03:00
XhmikosR
3e66427127
Less to Sass typos.
...
[ci skip]
2015-08-27 08:14:39 +03:00
XhmikosR
1029240b2d
Update Anchor.js to v1.2.1.
...
[ci skip]
2015-08-27 08:14:39 +03:00
XhmikosR
0269da3c50
.travis.yml: cleanup old variables.
...
[ci skip]
2015-08-27 08:11:11 +03:00
XhmikosR
13e33e329c
Remove the obsolete JSHint references.
2015-08-27 08:11:11 +03:00
XhmikosR
97f0da3239
Update Rubygems.
2015-08-27 08:11:10 +03:00
Caleb Land
ec83b06d55
Update static form control example
...
Use the `row` class on the `form-group`, and change the `control-label` class to `form-control-label`
2015-08-26 23:47:50 -04:00
Tom Byrer
d2930ce1ad
clarifies normalize.css is a dependency
...
Perhaps I'm a little slow & need to have things spelled out :)
https://github.com/twbs/bootstrap/issues/17301#issuecomment-134469886
2015-08-26 18:59:08 -06:00
Chris Rebert
bdc10b4a5b
Merge pull request #17357 from twbs/responsive-visibility-rip
...
Remove defunct responsive-(in)visibility mixins
2015-08-26 15:35:25 -07:00
Chris Rebert
c6e648d79b
rm responsive-invisibility mixin since it's only used once
...
inline the one remaining usage into .hidden-print's definition
rm now-empty scss/_utilities-responsive.scss file
[skip sauce]
[skip validator]
2015-08-26 15:31:36 -07:00
Chris Rebert
4bc8b495fb
Merge pull request #17257 from twbs/clear-translations
...
Clear out non-v4 docs translations
2015-08-26 15:30:32 -07:00
Chris Rebert
19e996c623
tree shaking: rm unused responsive-visibility mixin
...
[skip sauce]
[skip validator]
2015-08-26 15:06:09 -07:00
Chris Rebert
db2ba70970
Merge pull request #17346 from Sapphire64/patch-2
...
Bump year in jumbotron example
2015-08-26 13:43:33 -07:00
David Baughman
1eea52b263
Updated default navbar example to use responsive navbar
2015-08-26 13:03:47 -07:00
Anton Vlasenko
9234bb630b
Bump year in jumbotron example
2015-08-26 20:22:37 +02:00
petetnt
6aebac8e38
Document .bg-inverse
2015-08-26 16:01:34 +03:00
Rakhat Jabagin
56aadd25da
add media vertical flexbox classes
2015-08-26 16:50:24 +06:00
Rakhat Jabagin
865911c35d
combine size & square mixins into one
2015-08-26 16:17:00 +06:00