diff options
| author | Vitaly _Vi Shukela <vi0oss@gmail.com> | 2018-02-07 00:46:47 +0300 |
|---|---|---|
| committer | Vitaly _Vi Shukela <vi0oss@gmail.com> | 2018-02-07 00:46:47 +0300 |
| commit | 71c4da866a0e71fccc25d9be7e86b992545d4f3d (patch) | |
| tree | 298e86e4b9a21a24e10b3c37f793f30b0d2565f0 | |
| parent | bc277b271dfa808c378291e12394db4c4b6e47a3 (diff) | |
| download | rust-71c4da866a0e71fccc25d9be7e86b992545d4f3d.tar.gz rust-71c4da866a0e71fccc25d9be7e86b992545d4f3d.zip | |
rustdoc: Fix doc and impl collapsing on small screens
| -rw-r--r-- | src/librustdoc/html/static/rustdoc.css | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/librustdoc/html/static/rustdoc.css b/src/librustdoc/html/static/rustdoc.css index d4b9fbab801..515d728c174 100644 --- a/src/librustdoc/html/static/rustdoc.css +++ b/src/librustdoc/html/static/rustdoc.css @@ -1192,5 +1192,6 @@ kbd { .hidden-by-impl-hider, .hidden-by-usual-hider { - display: none; + /* important because of conflicting rule for small screens */ + display: none !important; } |
