Skip to content

Rollup of 7 pull requests #36684

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 29 commits into from
Sep 24, 2016
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
0d3d23b
add stronger warning to CString::from_raw
durka Aug 26, 2016
d742894
Fix wording for out-of-crate macro error
Sep 15, 2016
b19c9ec
This installs documentation not man pages
Sep 15, 2016
a6d804e
Browsers do not consistently handle non-integer values for font-size.
grimreaper Sep 18, 2016
8de97dd
simplify python code
grimreaper Sep 18, 2016
f7811c1
Fix order of @import
grimreaper Sep 18, 2016
266ef88
pep8 prefers triple quoted with double quotes
grimreaper Sep 18, 2016
1a67298
prefer tuple to array
grimreaper Sep 18, 2016
3545785
Remove unused code
grimreaper Sep 18, 2016
733fe1d
make functions static where possible
grimreaper Sep 18, 2016
22c66c4
modern style classes
grimreaper Sep 18, 2016
1a4a723
remove useless semicolon from python
grimreaper Sep 18, 2016
73d2653
duplicate the
grimreaper Sep 18, 2016
101d987
add missing semi-colon
grimreaper Sep 18, 2016
ccb78d2
border-color > border
grimreaper Sep 18, 2016
4f11a39
invisible isn't a tag
grimreaper Sep 18, 2016
9c3cf06
inherit from object
grimreaper Sep 18, 2016
fad6a09
remove duplicate duplicate words
grimreaper Sep 18, 2016
0c252ff
per timnn
grimreaper Sep 18, 2016
e0d554a
Add regression test for #9837.
frewsxcv Sep 18, 2016
313fb8f
Replace 'e.g.' by 'i.e.'
GuillaumeGomez Sep 19, 2016
3b97344
Minor `VecDeque` doc examples cleanup.
frewsxcv Sep 23, 2016
f45283b
Rollup merge of #36018 - durka:patch-28, r=steveklabnik
GuillaumeGomez Sep 23, 2016
f17bdb7
Rollup merge of #36498 - jonathandturner:macro_std_lib, r=nikomatsakis
GuillaumeGomez Sep 23, 2016
677ede2
Rollup merge of #36500 - orbea:docdir, r=nikomatsakis
GuillaumeGomez Sep 23, 2016
d56b116
Rollup merge of #36559 - grimreaper:eax/fix/r1, r=nikomatsakis
GuillaumeGomez Sep 23, 2016
9b7c375
Rollup merge of #36566 - frewsxcv:9837, r=nikomatsakis
GuillaumeGomez Sep 23, 2016
812f908
Rollup merge of #36578 - GuillaumeGomez:fix_typo, r=steveklabnik
GuillaumeGomez Sep 23, 2016
f342ece
Rollup merge of #36664 - frewsxcv:vec-deque, r=GuillaumeGomez
GuillaumeGomez Sep 23, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix order of @import
In CSS 2.1, any @import rules must precede all other rules (except the
@charset rule, if present).
  • Loading branch information
grimreaper committed Sep 18, 2016
commit f7811c1ca6fc8208667cea7f1f39d7a75588717c
4 changes: 2 additions & 2 deletions src/librustdoc/html/static/rustdoc.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@import "normalize.css";

/**
* Copyright 2013 The Rust Project Developers. See the COPYRIGHT
* file at the top-level directory of this distribution and at
Expand Down Expand Up @@ -59,8 +61,6 @@
src: local('Source Code Pro Semibold'), url("SourceCodePro-Semibold.woff") format('woff');
}

@import "normalize.css";

* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
Expand Down