mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 13:01:15 +00:00
c82bef515e
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
67 lines
2.1 KiB
Go HTML Template
67 lines
2.1 KiB
Go HTML Template
<div class="item">
|
|
<div class="tw-flex tw-items-center">
|
|
<div class="icon tw-ml-2 tw-mr-2">
|
|
{{if eq .Process.Type "request"}}
|
|
{{svg "octicon-globe" 16}}
|
|
{{else if eq .Process.Type "system"}}
|
|
{{svg "octicon-cpu" 16}}
|
|
{{else if eq .Process.Type "normal"}}
|
|
{{svg "octicon-terminal" 16}}
|
|
{{else}}
|
|
{{svg "octicon-code" 16}}
|
|
{{end}}
|
|
</div>
|
|
<div class="content tw-flex-1">
|
|
<div class="header">{{.Process.Description}}</div>
|
|
<div class="description">{{if ne .Process.Type "none"}}{{TimeSince .Process.Start ctx.Locale}}{{end}}</div>
|
|
</div>
|
|
<div>
|
|
{{if or (eq .Process.Type "request") (eq .Process.Type "normal")}}
|
|
<a class="delete-button icon" href="" data-url="{{.root.Link}}/cancel/{{.Process.PID}}" data-id="{{.Process.PID}}" data-name="{{.Process.Description}}">{{svg "octicon-trash" 16 "text-red"}}</a>
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
{{if .Process.Stacks}}
|
|
<div class="divided list tw-ml-2">
|
|
{{range .Process.Stacks}}
|
|
<div class="item">
|
|
<details>
|
|
<summary>
|
|
<div class="flex-text-inline">
|
|
<div class="header tw-ml-2">
|
|
<span class="icon tw-mr-2">{{svg "octicon-code" 16}}</span>{{.Description}}{{if gt .Count 1}} * {{.Count}}{{end}}
|
|
</div>
|
|
<div class="description">
|
|
{{range .Labels}}
|
|
<div class="ui label">{{.Name}}<div class="detail">{{.Value}}</div></div>
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
</summary>
|
|
<div class="list">
|
|
{{range .Entry}}
|
|
<div class="item tw-flex tw-items-center">
|
|
<span class="icon tw-mr-4">{{svg "octicon-dot-fill" 16}}</span>
|
|
<div class="content tw-flex-1">
|
|
<div class="header"><code>{{.Function}}</code></div>
|
|
<div class="description"><code>{{.File}}:{{.Line}}</code></div>
|
|
</div>
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
</details>
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
{{end}}
|
|
|
|
{{if .Process.Children}}
|
|
<div class="divided list">
|
|
{{range .Process.Children}}
|
|
{{template "admin/stacktrace-row" dict "Process" . "root" $.root}}
|
|
{{end}}
|
|
</div>
|
|
{{end}}
|
|
|
|
</div>
|