mirror of
https://github.com/xuthus83/pigallery2.git
synced 2025-01-14 14:43:17 +08:00
Making inset button always visible on touchscreens #309
This commit is contained in:
parent
f6aaa6de58
commit
e41ac5b990
@ -22,6 +22,12 @@
|
||||
.autocomplete-item-selected .insert-button {
|
||||
display: block;
|
||||
}
|
||||
@media (hover: none) {
|
||||
.insert-button {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
.autocomplete-item-selected .insert-button:hover {
|
||||
color: black;
|
||||
}
|
||||
|
@ -48,7 +48,10 @@
|
||||
<span *ngSwitchCase="SearchQueryTypes.distance" class="oi oi-map-marker"></span>
|
||||
</span>
|
||||
{{item.preText}}<strong>{{item.highLightText}}</strong>{{item.postText}}
|
||||
<span class="oi oi-chevron-right insert-button float-right" (click)="applyAutoComplete(item)"></span>
|
||||
<span class="oi oi-chevron-right insert-button float-right" (click)="applyAutoComplete(item)"
|
||||
title="Insert"
|
||||
i18n-title>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
Loading…
x
Reference in New Issue
Block a user