diff options
| author | gohyda <gohyda@gohyda.com> | 2016-03-03 04:46:30 +0100 |
|---|---|---|
| committer | gohyda <gohyda@gohyda.com> | 2016-03-03 04:46:30 +0100 |
| commit | 311ff0367da8769d9d87a3c3b4c7f95d45f9c284 (patch) | |
| tree | 2c6bf6510b795a41fce6c38a4b5773535d8fdc5f | |
| parent | 7b0b80ae21a195a5dba91d557f94a96136c27eaf (diff) | |
| download | rust-311ff0367da8769d9d87a3c3b4c7f95d45f9c284.tar.gz rust-311ff0367da8769d9d87a3c3b4c7f95d45f9c284.zip | |
Responsive layout correction.
| -rw-r--r-- | src/librustdoc/html/static/rustdoc.css | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/librustdoc/html/static/rustdoc.css b/src/librustdoc/html/static/rustdoc.css index 1cadc4e476a..c07871a4029 100644 --- a/src/librustdoc/html/static/rustdoc.css +++ b/src/librustdoc/html/static/rustdoc.css @@ -616,15 +616,19 @@ a.test-arrow { } .sidebar .location { - float: left; + float: right; margin: 0px; - padding: 5px; - width: 60%; + padding: 3px 10px 1px 10px; + min-height: 39px; background: inherit; text-align: left; font-size: 24px; } + .sidebar .location:empty { + padding: 0; + } + .sidebar img { width: 35px; margin-top: 5px; |
