requested changes

This commit is contained in:
Sanskar Tiwari 2024-03-31 18:49:53 +05:30
parent c4497f5824
commit abd4669b34
7 changed files with 16 additions and 8 deletions

View file

@ -90,4 +90,6 @@ return [
'forever' => 'Für immer',
'yes' => 'Ja',
'no' => 'Nein',
'open-in-a-new-tab' => 'Open in a new tab',
'copied' => 'Copied',
];

View file

@ -90,4 +90,6 @@ return [
'forever' => 'Forever',
'yes' => 'Yes',
'no' => 'No',
'open-in-a-new-tab' => 'Open in a new tab',
'copied' => 'Copied',
];

View file

@ -90,4 +90,6 @@ return [
'forever' => 'Infinie',
'yes' => 'Oui',
'no' => 'Non',
'open-in-a-new-tab' => 'Open in a new tab',
'copied' => 'Copied',
];

View file

@ -90,4 +90,6 @@ return [
'forever' => '로그인 기억',
'yes' => '네',
'no' => '아니요',
'open-in-a-new-tab' => 'Open in a new tab',
'copied' => 'Copied',
];

View file

@ -1,4 +1,4 @@
<svg class="w-6 h-6 fill-primary"
<svg class="w-5 h-5 fill-primary"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<g stroke-width="0"></g>

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

View file

@ -7,5 +7,5 @@
x-transition:leave-start="opacity-100 scale-100"
x-transition:leave-end="opacity-0 scale-90"
x-cloak>
Copied
@lang('app.copied')
</div>

View file

@ -667,9 +667,9 @@
@lang('app.preview-link')
</div>
<x-tooltip x-show="copynotify.preview" x-on:click.away="copynotify.preview = false" />
<div class="w-2/3 shadow flex items-center">
<input id="copy-preview" x-model="bundle.preview_link" class="w-full bg-transparent text-slate-700 h-8 px-2 py-1 rounded-none border border-primary-superlight outline-none" type="text" readonly x-on:click="selectCopy($el)" />
<a class="p-1" title="Open in a new Tab" :href="bundle.preview_link" target="_blank">
<div class="w-2/3 shadow flex items-center border border-primary-superlight ">
<input id="copy-preview" x-model="bundle.preview_link" class="w-full bg-transparent text-slate-700 h-8 px-2 py-1 rounded-none outline-none" type="text" readonly x-on:click="selectCopy($el)" />
<a class="p-1" title="@lang('app.open-in-a-new-tab')" :href="bundle.preview_link" target="_blank">
<x-newtab />
</a>
</div>
@ -681,9 +681,9 @@
@lang('app.direct-link')
</div>
<x-tooltip x-show="copynotify.direct_download" x-on:click.away="copynotify.direct_download = false" />
<div class="w-2/3 flex items-center shadow">
<input id="copy-direct-download" x-model="bundle.download_link" class="w-full bg-transparent text-slate-700 h-8 px-2 py-1 rounded-none border border-primary-superlight outline-none" type="text" readonly x-on:click="selectCopy($el)" />
<a class="p-1" title="Open in a new Tab" :href="bundle.download_link" target="_blank">
<div class="w-2/3 flex items-center shadow border border-primary-superlight">
<input id="copy-direct-download" x-model="bundle.download_link" class="w-full bg-transparent text-slate-700 h-8 px-2 py-1 rounded-none outline-none" type="text" readonly x-on:click="selectCopy($el)" />
<a class="p-1" title="@lang('app.open-in-a-new-tab')" :href="bundle.download_link" target="_blank">
<x-newtab />
</a>
</div>