Fixes #702 - Prevent browser from trying to load empty logo ref

This commit is contained in:
Sam Georges 2014-11-01 10:18:19 +11:00
parent 03e9f48333
commit 8cb512e8dd
1 changed files with 2 additions and 2 deletions

View File

@ -12,10 +12,10 @@
// Logos
//
.oc-bg-logo {
.oc-bg-logo when not (@logo-image = '') {
background-image: linear-gradient(to bottom, rgba(249,249,249,0.7) 0%,rgba(249,249,249,0.7) 100%), url('@{logo-image}');
}
.oc-logo-white {
.oc-logo-white when not (@logo-image = '') {
background-image: url('@{logo-image}');
height: 170px !important;
}