Elipsize menu text instead of break-word wrapping

Change-Id: I8df4d2500f185cdc5144b7e0f2b507fde27173da
This commit is contained in:
Becky Siegel
2017-07-05 17:30:17 -07:00
parent aa354e9365
commit ac9c6a02bc

View File

@@ -38,10 +38,14 @@ limitations under the License.
#nav ::content li {
border-bottom: 1px solid transparent;
border-top: 1px solid transparent;
display: block;
padding: 0 2em;
}
#nav ::content li a {
word-break: break-all;
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
#nav ::content .subsectionItem {
padding-left: 3em;
@@ -56,7 +60,6 @@ limitations under the License.
margin-top: 1em;
}
#nav ::content .title {
display: flex;
font-weight: bold;
margin: .4em 0;
}