Merge pull request #860 from jitsi/css-watermark-link-variable
Moves watermark link to be css variable.
This commit is contained in:
commit
0396a05b38
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -29,6 +29,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.
|
||||||
|
|
Loading…
Reference in New Issue