Fix breadcrumb background right arrow due to incorrect background-image syntax

This commit is contained in:
Pellaeon Lin 2016-03-12 11:31:58 +08:00
parent 72ac5dd8a1
commit 56241afad7
1 changed files with 3 additions and 1 deletions

View File

@ -856,7 +856,9 @@ span.ui-icon {float: left; margin: 3px 7px 30px 0;}
div.crumb {
float: left;
display: block;
background-image: url('../img/breadcrumb.svg') no-repeat right center;
background-image: url('../img/breadcrumb.svg');
background-repeat: no-repeat;
background-position: right center;
height: 44px;
background-size: auto 24px;
}