mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-15 12:50:01 +00:00
web/PickerItem: always show type badge, prevent right click on video
- fixed type badge centering in webkit - increased border radius of type badge to match icons inside it
This commit is contained in:
parent
c03337fed9
commit
b0a69f9944
1 changed files with 15 additions and 12 deletions
|
@ -26,21 +26,20 @@
|
|||
downloadFile(item.url);
|
||||
}}
|
||||
>
|
||||
{#if item.type}
|
||||
<div class="picker-type">
|
||||
{#if item.type === "video"}
|
||||
{#if itemType === "video"}
|
||||
<IconMovie />
|
||||
{:else if item.type === "photo"}
|
||||
{:else}
|
||||
<IconPhoto />
|
||||
{/if}
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
<img
|
||||
class="picker-image"
|
||||
src={item.thumb ? item.thumb : item.url}
|
||||
|
||||
class:loading={!imageLoaded}
|
||||
class:video-thumbnail={item.thumb}
|
||||
on:load={() => (imageLoaded = true)}
|
||||
|
||||
alt="{$t(`a11y.dialog.picker.item.${itemType}`)} {number}"
|
||||
|
@ -77,6 +76,10 @@
|
|||
opacity: 0.8;
|
||||
}
|
||||
|
||||
.picker-image.video-thumbnail {
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
@media (hover: hover) {
|
||||
.picker-item:hover .picker-image {
|
||||
opacity: 0.8;
|
||||
|
@ -99,13 +102,13 @@
|
|||
top: 6px;
|
||||
left: 6px;
|
||||
|
||||
border-radius: 4px;
|
||||
border-radius: 6px;
|
||||
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.picker-type :global(svg) {
|
||||
width: 21px;
|
||||
height: 21px;
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in a new issue