Moves watermark link to be css variable.

This commit is contained in:
damencho 2016-09-13 16:42:39 -05:00
parent c602839e06
commit 4a460e09b9
2 changed files with 2 additions and 1 deletions

View File

@ -114,7 +114,7 @@ form {
display: none; display: none;
left: $defaultToolbarSize; left: $defaultToolbarSize;
margin-left: 10px; margin-left: 10px;
background-image:url(../images/watermark.png); background-image: url($defaultWatermarkLink);
background-position: center left; background-position: center left;
} }

View File

@ -28,6 +28,7 @@ $buttonBackground: #44A5FF;
* Misc. * Misc.
*/ */
$borderRadius: 4px; $borderRadius: 4px;
$defaultWatermarkLink: '../images/watermark.png';
/** /**
* Z-indexes. TODO: Replace this by a function. * Z-indexes. TODO: Replace this by a function.