diff options
| author | Eitan Adler <lists@eitanadler.com> | 2016-09-17 22:56:22 -0700 | 
|---|---|---|
| committer | Eitan Adler <lists@eitanadler.com> | 2016-09-17 22:56:22 -0700 | 
| commit | f7811c1ca6fc8208667cea7f1f39d7a75588717c (patch) | |
| tree | 2786f3ddf8224c51daa21dc96eb3147fb522dc18 | |
| parent | 8de97dddfdb9ef6e84684235912476de30e34903 (diff) | |
| download | rust-f7811c1ca6fc8208667cea7f1f39d7a75588717c.tar.gz rust-f7811c1ca6fc8208667cea7f1f39d7a75588717c.zip | |
Fix order of @import
In CSS 2.1, any @import rules must precede all other rules (except the @charset rule, if present).
| -rw-r--r-- | src/librustdoc/html/static/rustdoc.css | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/librustdoc/html/static/rustdoc.css b/src/librustdoc/html/static/rustdoc.css index e2fb63fc7f9..667a22fcd14 100644 --- a/src/librustdoc/html/static/rustdoc.css +++ b/src/librustdoc/html/static/rustdoc.css @@ -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 @@ -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; | 
