Skip to content

Commit

Permalink
requested changes
Browse files Browse the repository at this point in the history
  • Loading branch information
sanskar-mk2 committed Mar 31, 2024
1 parent c4497f5 commit abd4669
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 8 deletions.
2 changes: 2 additions & 0 deletions lang/de/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,4 +90,6 @@
'forever' => 'Für immer',
'yes' => 'Ja',
'no' => 'Nein',
'open-in-a-new-tab' => 'Open in a new tab',
'copied' => 'Copied',
];
2 changes: 2 additions & 0 deletions lang/en/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,4 +90,6 @@
'forever' => 'Forever',
'yes' => 'Yes',
'no' => 'No',
'open-in-a-new-tab' => 'Open in a new tab',
'copied' => 'Copied',
];
2 changes: 2 additions & 0 deletions lang/fr/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,4 +90,6 @@
'forever' => 'Infinie',
'yes' => 'Oui',
'no' => 'Non',
'open-in-a-new-tab' => 'Open in a new tab',
'copied' => 'Copied',
];
2 changes: 2 additions & 0 deletions lang/kr/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,4 +90,6 @@
'forever' => '로그인 기억',
'yes' => '',
'no' => '아니요',
'open-in-a-new-tab' => 'Open in a new tab',
'copied' => 'Copied',
];
2 changes: 1 addition & 1 deletion resources/views/components/newtab.blade.php
Original file line number Diff line number Diff line change
@@ -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>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/components/tooltip.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ class="px-2 py-1 rounded text-xs cursor-default z-50 absolute -top-8 left-1/2 bg
x-transition:leave-start="opacity-100 scale-100"
x-transition:leave-end="opacity-0 scale-90"
x-cloak>
Copied
@lang('app.copied')
</div>
12 changes: 6 additions & 6 deletions resources/views/upload.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -667,9 +667,9 @@ class="relative flex items-center leading-5 list-inside even:bg-gray-50 rounded
@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>
Expand All @@ -681,9 +681,9 @@ class="relative flex items-center leading-5 list-inside even:bg-gray-50 rounded
@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>
Expand Down

0 comments on commit abd4669

Please sign in to comment.