diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2018-04-13 22:54:09 +0200 |
|---|---|---|
| committer | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2018-04-17 23:35:43 +0200 |
| commit | f2ad3c3f6c1c8c2220127e3d38bcf095533a0e47 (patch) | |
| tree | 8cf0210b7f728961dd44e28847a385e4c11617ce /src/librustdoc/html/static/themes | |
| parent | 9379bcdd0b4ef06303e8c4e3e7c3fd79882372cc (diff) | |
| download | rust-f2ad3c3f6c1c8c2220127e3d38bcf095533a0e47.tar.gz rust-f2ad3c3f6c1c8c2220127e3d38bcf095533a0e47.zip | |
Add rustdoc settings menu
Diffstat (limited to 'src/librustdoc/html/static/themes')
| -rw-r--r-- | src/librustdoc/html/static/themes/dark.css | 5 | ||||
| -rw-r--r-- | src/librustdoc/html/static/themes/light.css | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/src/librustdoc/html/static/themes/dark.css b/src/librustdoc/html/static/themes/dark.css index 93971a205bf..da4be7db5aa 100644 --- a/src/librustdoc/html/static/themes/dark.css +++ b/src/librustdoc/html/static/themes/dark.css @@ -362,12 +362,13 @@ kbd { box-shadow-color: #c6cbd1; } -#theme-picker { +#theme-picker, #settings-menu { border-color: #e0e0e0; background: #f0f0f0; } -#theme-picker:hover, #theme-picker:focus { +#theme-picker:hover, #theme-picker:focus, +#settings-menu:hover, #settings-menu:focus { border-color: #ffb900; } diff --git a/src/librustdoc/html/static/themes/light.css b/src/librustdoc/html/static/themes/light.css index e13818b4bd2..12af01d2e24 100644 --- a/src/librustdoc/html/static/themes/light.css +++ b/src/librustdoc/html/static/themes/light.css @@ -356,12 +356,13 @@ kbd { box-shadow-color: #c6cbd1; } -#theme-picker { +#theme-picker, #settings-menu { border-color: #e0e0e0; background-color: #fff; } -#theme-picker:hover, #theme-picker:focus { +#theme-picker:hover, #theme-picker:focus, +#settings-menu:hover, #settings-menu:focus { border-color: #717171; } |
