2020-12-13 19:12:27 +00:00
|
|
|
<div class="dropzone-attachments">
|
2021-04-11 03:46:37 +00:00
|
|
|
{{if .Attachments}}
|
2023-06-29 12:24:22 +00:00
|
|
|
<div class="divider"></div>
|
2021-04-11 03:46:37 +00:00
|
|
|
{{end}}
|
2023-04-20 06:39:44 +00:00
|
|
|
{{$hasThumbnails := false}}
|
|
|
|
{{- range .Attachments -}}
|
2024-03-22 13:45:10 +00:00
|
|
|
<div class="tw-flex">
|
Migrate margin and padding helpers to tailwind (#30043)
This will conclude the refactor of 1:1 class replacements to tailwind,
except `gt-hidden`. Commands ran:
```bash
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-0#tw-$1$2-0#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-1#tw-$1$2-0.5#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-2#tw-$1$2-1#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-3#tw-$1$2-2#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-4#tw-$1$2-4#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-5#tw-$1$2-8#g' {web_src/js,templates,routers,services}/**/*
```
(cherry picked from commit 68ec9b48592fe88765bcc3a73093d43c98b315de)
Conflicts:
routers/web/repo/view.go
templates/base/head_navbar.tmpl
templates/repo/code/recently_pushed_new_branches.tmpl
templates/repo/diff/box.tmpl
templates/repo/diff/compare.tmpl
templates/repo/diff/conversation.tmpl
templates/repo/header.tmpl
templates/repo/issue/filter_list.tmpl
templates/repo/issue/view_content/conversation.tmpl
templates/repo/issue/view_content/sidebar.tmpl
templates/repo/settings/options.tmpl
templates/repo/view_file.tmpl
templates/shared/user/blocked_users.tmpl
templates/status/500.tmpl
web_src/js/components/DashboardRepoList.vue
resolved by prefering Forgejo version and applying the
commands to all files
2024-03-24 16:42:49 +00:00
|
|
|
<div class="tw-flex-1 tw-p-2">
|
2023-09-25 08:56:50 +00:00
|
|
|
<a target="_blank" rel="noopener noreferrer" href="{{.DownloadURL}}" title="{{ctx.Locale.Tr "repo.issues.attachment.open_tab" .Name}}">
|
2021-04-11 03:46:37 +00:00
|
|
|
{{if FilenameIsImage .Name}}
|
2024-03-01 10:56:29 +00:00
|
|
|
{{if not (StringUtils.Contains (StringUtils.ToString $.RenderedContent) .UUID)}}
|
2021-04-11 03:46:37 +00:00
|
|
|
{{$hasThumbnails = true}}
|
|
|
|
{{end}}
|
2022-09-12 09:08:46 +00:00
|
|
|
{{svg "octicon-file"}}
|
2021-04-11 03:46:37 +00:00
|
|
|
{{else}}
|
2022-09-12 09:08:46 +00:00
|
|
|
{{svg "octicon-desktop-download"}}
|
2021-04-11 03:46:37 +00:00
|
|
|
{{end}}
|
|
|
|
<span><strong>{{.Name}}</strong></span>
|
|
|
|
</a>
|
|
|
|
</div>
|
Migrate margin and padding helpers to tailwind (#30043)
This will conclude the refactor of 1:1 class replacements to tailwind,
except `gt-hidden`. Commands ran:
```bash
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-0#tw-$1$2-0#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-1#tw-$1$2-0.5#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-2#tw-$1$2-1#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-3#tw-$1$2-2#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-4#tw-$1$2-4#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-5#tw-$1$2-8#g' {web_src/js,templates,routers,services}/**/*
```
(cherry picked from commit 68ec9b48592fe88765bcc3a73093d43c98b315de)
Conflicts:
routers/web/repo/view.go
templates/base/head_navbar.tmpl
templates/repo/code/recently_pushed_new_branches.tmpl
templates/repo/diff/box.tmpl
templates/repo/diff/compare.tmpl
templates/repo/diff/conversation.tmpl
templates/repo/header.tmpl
templates/repo/issue/filter_list.tmpl
templates/repo/issue/view_content/conversation.tmpl
templates/repo/issue/view_content/sidebar.tmpl
templates/repo/settings/options.tmpl
templates/repo/view_file.tmpl
templates/shared/user/blocked_users.tmpl
templates/status/500.tmpl
web_src/js/components/DashboardRepoList.vue
resolved by prefering Forgejo version and applying the
commands to all files
2024-03-24 16:42:49 +00:00
|
|
|
<div class="tw-p-2 tw-flex tw-items-center">
|
2024-03-19 10:52:32 +00:00
|
|
|
<span class="ui text grey">{{.Size | ctx.Locale.TrSize}}</span>
|
2021-04-11 03:46:37 +00:00
|
|
|
</div>
|
2023-04-20 06:39:44 +00:00
|
|
|
</div>
|
|
|
|
{{end -}}
|
2020-12-13 19:12:27 +00:00
|
|
|
|
2021-04-11 03:46:37 +00:00
|
|
|
{{if $hasThumbnails}}
|
2023-06-29 12:24:22 +00:00
|
|
|
<div class="divider"></div>
|
2022-09-12 09:08:46 +00:00
|
|
|
<div class="ui small thumbnails">
|
2021-04-11 03:46:37 +00:00
|
|
|
{{- range .Attachments -}}
|
|
|
|
{{if FilenameIsImage .Name}}
|
2024-03-01 10:56:29 +00:00
|
|
|
{{if not (StringUtils.Contains (StringUtils.ToString $.RenderedContent) .UUID)}}
|
2021-04-11 03:46:37 +00:00
|
|
|
<a target="_blank" rel="noopener noreferrer" href="{{.DownloadURL}}">
|
2023-09-25 08:56:50 +00:00
|
|
|
<img alt="{{.Name}}" src="{{.DownloadURL}}" title="{{ctx.Locale.Tr "repo.issues.attachment.open_tab" .Name}}">
|
2021-04-11 03:46:37 +00:00
|
|
|
</a>
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
|
|
|
{{end -}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2020-12-13 19:12:27 +00:00
|
|
|
|
2020-04-21 04:15:41 +00:00
|
|
|
</div>
|