mirror of
https://github.com/friendica/friendica
synced 2024-11-10 07:02:54 +00:00
Improved icons
This commit is contained in:
parent
fc94cad5f2
commit
06a4461fc4
4 changed files with 9 additions and 4 deletions
|
@ -1162,6 +1162,10 @@ input#dfrn-url {
|
|||
margin-left: 10px;
|
||||
float: left;
|
||||
}
|
||||
.pin-item {
|
||||
margin-left: 10px;
|
||||
float: left;
|
||||
}
|
||||
.star-item {
|
||||
margin-left: 10px;
|
||||
float: left;
|
||||
|
|
|
@ -120,8 +120,8 @@ as the value of $top_child_total (this is done at the end of this file)
|
|||
|
||||
{{if $item.pin}}
|
||||
<li role="menuitem">
|
||||
<button type="button" id="pin-{{$item.id}}" onclick="dopin({{$item.id}});" class="btn-link {{$item.pin.classdo}}" title="{{$item.pin.do}}"><i class="fa fa-check-square-o" aria-hidden="true"></i> {{$item.pin.do}}</button>
|
||||
<button type="button" id="unpin-{{$item.id}}" onclick="dopin({{$item.id}});" class="btn-link {{$item.pin.classundo}}" title="{{$item.pin.undo}}"><i class="fa fa-check-square" aria-hidden="true"></i> {{$item.pin.undo}}</button>
|
||||
<button type="button" id="pin-{{$item.id}}" onclick="dopin({{$item.id}});" class="btn-link {{$item.pin.classdo}}" title="{{$item.pin.do}}"><i class="fa fa-circle-o" aria-hidden="true"></i> {{$item.pin.do}}</button>
|
||||
<button type="button" id="unpin-{{$item.id}}" onclick="dopin({{$item.id}});" class="btn-link {{$item.pin.classundo}}" title="{{$item.pin.undo}}"><i class="fa fa-dot-circle-o" aria-hidden="true"></i> {{$item.pin.undo}}</button>
|
||||
</li>
|
||||
{{/if}}
|
||||
|
||||
|
|
|
@ -1615,6 +1615,7 @@ ul .sidebar-group-li .icon {
|
|||
margin-right: 20px;
|
||||
}
|
||||
|
||||
.pin-item,
|
||||
.star-item,
|
||||
.tag-item {
|
||||
float: left;
|
||||
|
|
|
@ -124,8 +124,8 @@
|
|||
{{/if}}
|
||||
|
||||
{{if $item.pin}}
|
||||
<a role="button" id="pin-{{$item.id}}" onclick="dopin({{$item.id}}); return false;" class="{{$item.pin.classdo}}" title="{{$item.pin.do}}"><i class="icon-pin icon-large"><span class="sr-only">{{$item.pin.do}}</span></i></a>
|
||||
<a role="button" id="unpin-{{$item.id}}" onclick="dopin({{$item.id}}); return false;" class="{{$item.pin.classundo}}" title="{{$item.pin.undo}}"><i class="icon-pin-empty icon-large"><span class="sr-only">{{$item.pin.undo}}</span></i></a>
|
||||
<a role="button" id="pin-{{$item.id}}" onclick="dopin({{$item.id}}); return false;" class="{{$item.pin.classdo}}" title="{{$item.pin.do}}"><i class="icon-circle icon-large"><span class="sr-only">{{$item.pin.do}}</span></i></a>
|
||||
<a role="button" id="unpin-{{$item.id}}" onclick="dopin({{$item.id}}); return false;" class="{{$item.pin.classundo}}" title="{{$item.pin.undo}}"><i class="icon-remove-circle icon-large"><span class="sr-only">{{$item.pin.undo}}</span></i></a>
|
||||
{{/if}}
|
||||
{{if $item.star}}
|
||||
<a role="button" id="star-{{$item.id}}" onclick="dostar({{$item.id}}); return false;" class="{{$item.star.classdo}}" title="{{$item.star.do}}"><i class="icon-star icon-large"><span class="sr-only">{{$item.star.do}}</span></i></a>
|
||||
|
|
Loading…
Reference in a new issue