Move metadata prefix to variable.
parent
5fead9ecc2
commit
a748cc419d
|
@ -5,6 +5,7 @@ $icedream-text-color: #eee !default;
|
||||||
|
|
||||||
// extra features
|
// extra features
|
||||||
$icedream-metadata-overlay: false !default;
|
$icedream-metadata-overlay: false !default;
|
||||||
|
$icedream-metadata-prefix: '🎶 Now playing: ' !default;
|
||||||
$icedream-nav-tab-fix: false !default;
|
$icedream-nav-tab-fix: false !default;
|
||||||
$icedream-nav-bg-fade: true !default;
|
$icedream-nav-bg-fade: true !default;
|
||||||
$icedream-fog-bg: true !default;
|
$icedream-fog-bg: true !default;
|
||||||
|
|
|
@ -57,9 +57,11 @@ body {
|
||||||
#meta {
|
#meta {
|
||||||
color: $icedream-text-color;
|
color: $icedream-text-color;
|
||||||
|
|
||||||
&:before {
|
@if $icedream-metadata-prefix {
|
||||||
content: '🎶 Now playing: ';
|
&:before {
|
||||||
font-weight: 700;
|
content: $icedream-metadata-prefix;
|
||||||
|
font-weight: 700;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue