From d2808981cb84088ce7a3bdbfa91d08cb3d286a7e Mon Sep 17 00:00:00 2001 From: Tom Giannattasio Date: Wed, 22 Aug 2012 12:09:57 -0400 Subject: [PATCH] fixed wiki breadcrumb arrow bug --- lms/static/sass/course/wiki/_wiki.scss | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/lms/static/sass/course/wiki/_wiki.scss b/lms/static/sass/course/wiki/_wiki.scss index 1ddb52da56..e88d5e79af 100644 --- a/lms/static/sass/course/wiki/_wiki.scss +++ b/lms/static/sass/course/wiki/_wiki.scss @@ -38,22 +38,26 @@ section.wiki { float: left; margin-right: 10px; font-size: 0.9em; - line-height: 31px; a { - display: inline-block; - max-width: 200px; + float: left; + display: block; overflow: hidden; - height: 30px; + height: 30px; + line-height: 31px; + max-width: 200px; + height: 100%; text-overflow: ellipsis; white-space: nowrap; } &:after { content: '›'; - display: inline-block; + display: inline; margin-left: 10px; color: $base-font-color; + height: 30px; + line-height: 31px; } } }