mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
fix transparency bug for sidebar in mobile (#6764)
This commit is contained in:
parent
5883152bf1
commit
17aeb2f5e4
@ -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 @@
|
|||||||
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 @@
|
|||||||
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;
|
||||||
|
Loading…
Reference in New Issue
Block a user