Commit 17aeb2f5 authored by Seth Ladd's avatar Seth Ladd Committed by GitHub

fix transparency bug for sidebar in mobile (#6764)

parent 5883152b
...@@ -2,8 +2,7 @@ ...@@ -2,8 +2,7 @@
set -e set -e
# Install dartdoc. # Install dartdoc.
# We peg to this version to work around a bug affecting Flutter in 0.9.7+2. pub global activate dartdoc 0.9.7+6
pub global activate dartdoc 0.9.7+1
# Generate flutter docs into dev/docs/doc/api/. # Generate flutter docs into dev/docs/doc/api/.
(cd dev/tools; pub get) (cd dev/tools; pub get)
......
...@@ -50,6 +50,16 @@ ...@@ -50,6 +50,16 @@
font-size: inherit; font-size: inherit;
} }
.sidebar-offcanvas-left {
background-color: #fdfdfd;
}
@media screen and (max-width: 768px) {
.sidebar-offcanvas-left.active {
padding: 10px;
}
}
.sidebar-offcanvas-left ol { .sidebar-offcanvas-left ol {
padding: 0 16px 16px 0; padding: 0 16px 16px 0;
} }
...@@ -58,10 +68,6 @@ ...@@ -58,10 +68,6 @@
display: none; display: none;
} }
.sidebar-offcanvas-left {
background-color: inherit;
}
.sidebar-offcanvas-left h5 { .sidebar-offcanvas-left h5 {
border-bottom: none; border-bottom: none;
padding: 0 0 16px 0; padding: 0 0 16px 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment