Display sticky label in linklist
Add sticky label, like private label, in linklist to make it more visible.
This commit is contained in:
parent
90e048594a
commit
d3defcac1c
2 changed files with 18 additions and 9 deletions
|
@ -716,11 +716,19 @@ body,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.label {
|
||||||
|
font-family: Arial, sans-serif;
|
||||||
|
font-size: .65em;
|
||||||
|
}
|
||||||
|
|
||||||
.label-private {
|
.label-private {
|
||||||
border: solid 1px $orange;
|
border: solid 1px $orange;
|
||||||
color: $orange;
|
color: $orange;
|
||||||
font-family: Arial, sans-serif;
|
}
|
||||||
font-size: .65em;
|
|
||||||
|
.label-sticky {
|
||||||
|
border: solid 1px $blue;
|
||||||
|
color: $blue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -146,13 +146,14 @@
|
||||||
</div>
|
</div>
|
||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
{if="$is_logged_in"}
|
|
||||||
<div class="linklist-item-editbuttons">
|
<div class="linklist-item-editbuttons">
|
||||||
|
{if="$value.sticky"}
|
||||||
|
<span class="label label-sticky">{$strSticky}</span>
|
||||||
|
{/if}
|
||||||
{if="$value.private"}
|
{if="$value.private"}
|
||||||
<span class="label label-private">{$strPrivate}</span>
|
<span class="label label-private">{$strPrivate}</span>
|
||||||
{/if}
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
{/if}
|
|
||||||
|
|
||||||
<h2>
|
<h2>
|
||||||
<a href="{$value.real_url}">
|
<a href="{$value.real_url}">
|
||||||
|
|
Loading…
Reference in a new issue