2023-06-09 12:10:51 +03:00
{{ $notificationUnreadCount := 0 }}
{{ if and .IsSigned .NotificationUnreadCount }}
{{ $notificationUnreadCount = call .NotificationUnreadCount }}
{{ end }}
2023-09-25 11:56:50 +03:00
< nav id = "navbar" aria-label = " {{ ctx .Locale.Tr "aria.navbar" }} " >
2023-06-20 23:35:25 +03:00
< div class = "navbar-left ui secondary menu" >
2023-06-09 12:10:51 +03:00
<!-- the logo -->
2023-09-25 15:42:40 +03:00
< a class = "item" id = "navbar-logo" href = " {{ AppSubUrl }} /" aria-label = " {{ if .IsSigned }}{{ ctx .Locale.Tr "dashboard" }}{{ else }}{{ ctx .Locale.Tr "home" }}{{ end }} " >
2023-09-25 11:56:50 +03:00
< img width = "30" height = "30" src = " {{ AssetUrlPrefix }} /img/logo.svg" alt = " {{ ctx .Locale.Tr "logo" }} " aria-hidden = "true" >
2018-09-07 05:59:06 +03:00
< / a >
2023-06-09 12:10:51 +03:00
<!-- mobile right menu, it must be here because in mobile view, each item is a flex column, the first item is a full row column -->
2024-03-21 20:04:03 +03:00
< div class = "ui secondary menu item navbar-mobile-right only-mobile" >
2023-02-09 08:42:18 +03:00
{{ if .IsSigned }}
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 19:42:49 +03:00
< a id = "mobile-notifications-icon" class = "item tw-w-auto tw-p-2" href = " {{ AppSubUrl }} /notifications" data-tooltip-content = " {{ ctx .Locale.Tr "notifications" }} " aria-label = " {{ ctx .Locale.Tr "notifications" }} " >
2024-03-05 08:29:32 +03:00
< div class = "tw-relative" >
2023-02-09 08:42:18 +03:00
{{ svg "octicon-bell" }}
2024-03-24 21:23:38 +03:00
< span class = "notification_count {{ if not $notificationUnreadCount }} tw-hidden {{ end }} " > {{ $notificationUnreadCount }} </ span >
2023-06-09 12:10:51 +03:00
< / div >
2023-02-09 08:42:18 +03:00
< / a >
{{ end }}
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 19:42:49 +03:00
< button class = "item tw-w-auto ui icon mini button tw-p-2 tw-m-0" id = "navbar-expand-toggle" aria-label = " {{ ctx .Locale.Tr "toggle_menu" }} " > {{ svg "octicon-three-bars" }} </ button >
2018-09-07 05:59:06 +03:00
< / div >
2023-06-20 23:35:25 +03:00
<!-- navbar links non - mobile -->
{{ if and .IsSigned .MustChangePassword }}
{{/* No links */}}
{{ else if .IsSigned }}
{{ if not .UnitIssuesGlobalDisabled }}
2023-09-25 11:56:50 +03:00
< a class = "item {{ if .PageIsIssues }} active {{ end }} " href = " {{ AppSubUrl }} /issues" > {{ ctx .Locale.Tr "issues" }} </ a >
2023-06-20 23:35:25 +03:00
{{ end }}
{{ if not .UnitPullsGlobalDisabled }}
2023-09-25 11:56:50 +03:00
< a class = "item {{ if .PageIsPulls }} active {{ end }} " href = " {{ AppSubUrl }} /pulls" > {{ ctx .Locale.Tr "pull_requests" }} </ a >
2023-06-20 23:35:25 +03:00
{{ end }}
{{ if not ( and .UnitIssuesGlobalDisabled .UnitPullsGlobalDisabled ) }}
{{ if .ShowMilestonesDashboardPage }}
2023-09-25 11:56:50 +03:00
< a class = "item {{ if .PageIsMilestonesDashboard }} active {{ end }} " href = " {{ AppSubUrl }} /milestones" > {{ ctx .Locale.Tr "milestones" }} </ a >
2023-06-20 23:35:25 +03:00
{{ end }}
2023-06-09 12:10:51 +03:00
{{ end }}
2023-09-25 11:56:50 +03:00
< a class = "item {{ if .PageIsExplore }} active {{ end }} " href = " {{ AppSubUrl }} /explore/repos" > {{ ctx .Locale.Tr "explore" }} </ a >
2023-06-20 23:35:25 +03:00
{{ else if .IsLandingPageOrganizations }}
2023-09-25 11:56:50 +03:00
< a class = "item {{ if .PageIsExplore }} active {{ end }} " href = " {{ AppSubUrl }} /explore/organizations" > {{ ctx .Locale.Tr "explore" }} </ a >
2023-06-20 23:35:25 +03:00
{{ else }}
2023-09-25 11:56:50 +03:00
< a class = "item {{ if .PageIsExplore }} active {{ end }} " href = " {{ AppSubUrl }} /explore/repos" > {{ ctx .Locale.Tr "explore" }} </ a >
2020-01-17 10:34:37 +03:00
{{ end }}
2018-09-07 05:59:06 +03:00
2023-06-20 23:35:25 +03:00
{{ template "custom/extra_links" . }}
2018-09-07 05:59:06 +03:00
2023-06-20 23:35:25 +03:00
{{ if not .IsSigned }}
2023-01-09 16:01:00 +03:00
< a class = "item" target = "_blank" rel = "noopener noreferrer" href = "https://forgejo.org/docs/latest/" > {{ ctx .Locale.Tr "help" }} </ a >
2023-06-20 23:35:25 +03:00
{{ end }}
< / div >
2020-05-27 01:39:39 +03:00
2023-06-09 12:10:51 +03:00
<!-- the full dropdown menus -->
2023-06-20 23:35:25 +03:00
< div class = "navbar-right ui secondary menu" >
2023-06-09 12:10:51 +03:00
{{ if and .IsSigned .MustChangePassword }}
2023-09-25 11:56:50 +03:00
< div class = "ui dropdown jump item" data-tooltip-content = " {{ ctx .Locale.Tr "user_profile_and_more" }} " >
2024-03-22 22:51:29 +03:00
< span class = "text tw-flex tw-items-center" >
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 19:42:49 +03:00
{{ ctx .AvatarUtils.Avatar .SignedUser 24 "tw-mr-1" }}
< span class = "only-mobile tw-ml-2" > {{ .SignedUser.Name }} </ span >
2023-06-09 12:10:51 +03:00
< span class = "not-mobile" > {{ svg "octicon-triangle-down" }} </ span >
2020-05-27 01:39:39 +03:00
< / span >
2023-06-09 12:10:51 +03:00
< div class = "menu user-menu" >
2020-05-27 01:39:39 +03:00
< div class = "ui header" >
2023-09-25 11:56:50 +03:00
{{ ctx .Locale.Tr "signed_in_as" }} < strong > {{ .SignedUser.Name }} </ strong >
2020-05-27 01:39:39 +03:00
< / div >
< div class = "divider" > < / div >
2023-06-26 22:36:10 +03:00
< a class = "item link-action" href data-url = " {{ AppSubUrl }} /user/logout" >
2020-09-11 23:19:00 +03:00
{{ svg "octicon-sign-out" }}
2023-09-25 11:56:50 +03:00
{{ ctx .Locale.Tr "sign_out" }}
2020-05-27 01:39:39 +03:00
< / a >
< / div > <!-- end content avatar menu -->
< / div > <!-- end dropdown avatar menu -->
2023-06-09 12:10:51 +03:00
{{ else if .IsSigned }}
2023-01-10 05:53:11 +03:00
{{ if EnableTimetracking }}
2024-03-24 21:23:38 +03:00
< a class = "active-stopwatch-trigger item tw-mx-0 {{ if not .ActiveStopwatch }} tw-hidden {{ end }} " href = " {{ .ActiveStopwatch.IssueLink }} " title = " {{ ctx .Locale.Tr "active_stopwatch" }} " >
2024-03-05 08:29:32 +03:00
< div class = "tw-relative" >
2023-02-09 08:42:18 +03:00
{{ svg "octicon-stopwatch" }}
< span class = "header-stopwatch-dot" > < / span >
2023-06-09 12:10:51 +03:00
< / 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 19:42:49 +03:00
< span class = "only-mobile tw-ml-2" > {{ ctx .Locale.Tr "active_stopwatch" }} </ span >
2021-01-21 17:51:52 +03:00
< / a >
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 19:42:49 +03:00
< div class = "active-stopwatch-popup item tippy-target tw-p-2" >
2024-03-22 22:51:29 +03:00
< div class = "tw-flex tw-items-center" >
< a class = "stopwatch-link tw-flex tw-items-center" href = " {{ .ActiveStopwatch.IssueLink }} " >
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 19:42:49 +03:00
{{ svg "octicon-issue-opened" 16 "tw-mr-2" }}
2021-01-21 17:51:52 +03:00
< span class = "stopwatch-issue" > {{ .ActiveStopwatch.RepoSlug }} #{{ .ActiveStopwatch.IssueIndex }} </ span >
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 19:42:49 +03:00
< span class = "ui primary label stopwatch-time tw-my-0 tw-mx-4" data-seconds = " {{ .ActiveStopwatch.Seconds }} " >
2021-01-21 17:51:52 +03:00
{{ if .ActiveStopwatch }}{{ Sec2Time .ActiveStopwatch.Seconds }}{{ end }}
< / span >
< / a >
2023-06-14 21:17:58 +03:00
< form class = "stopwatch-commit" method = "post" action = " {{ .ActiveStopwatch.IssueLink }} /times/stopwatch/toggle" >
2021-01-21 17:51:52 +03:00
{{ .CsrfTokenHtml }}
< button
2022-08-09 15:37:34 +03:00
type="submit"
2023-06-09 12:10:51 +03:00
class="ui button mini compact basic icon"
2023-09-25 11:56:50 +03:00
data-tooltip-content="{{ ctx .Locale.Tr "repo.issues.stop_tracking" }} "
2021-01-21 17:51:52 +03:00
>{{ svg "octicon-square-fill" }} </ button >
< / form >
2023-06-14 21:17:58 +03:00
< form class = "stopwatch-cancel" method = "post" action = " {{ .ActiveStopwatch.IssueLink }} /times/stopwatch/cancel" >
2021-01-21 17:51:52 +03:00
{{ .CsrfTokenHtml }}
< button
2022-08-09 15:37:34 +03:00
type="submit"
2023-06-09 12:10:51 +03:00
class="ui button mini compact basic icon"
2023-09-25 11:56:50 +03:00
data-tooltip-content="{{ ctx .Locale.Tr "repo.issues.cancel_tracking" }} "
2021-03-22 07:04:19 +03:00
>{{ svg "octicon-trash" }} </ button >
2021-01-21 17:51:52 +03:00
< / form >
< / div >
< / div >
2023-01-10 05:53:11 +03:00
{{ end }}
2021-01-21 17:51:52 +03:00
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 19:42:49 +03:00
< a class = "item not-mobile tw-mx-0" href = " {{ AppSubUrl }} /notifications" data-tooltip-content = " {{ ctx .Locale.Tr "notifications" }} " aria-label = " {{ ctx .Locale.Tr "notifications" }} " >
2024-03-05 08:29:32 +03:00
< div class = "tw-relative" >
2023-02-09 08:42:18 +03:00
{{ svg "octicon-bell" }}
2024-03-24 21:23:38 +03:00
< span class = "notification_count {{ if not $notificationUnreadCount }} tw-hidden {{ end }} " > {{ $notificationUnreadCount }} </ span >
2023-06-09 12:10:51 +03:00
< / div >
2018-09-07 05:59:06 +03:00
< / a >
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 19:42:49 +03:00
< div class = "ui dropdown jump item tw-mx-0 tw-pr-2" data-tooltip-content = " {{ ctx .Locale.Tr "create_new" }} " >
2018-09-07 05:59:06 +03:00
< span class = "text" >
2023-06-09 12:10:51 +03:00
{{ svg "octicon-plus" }}
< span class = "not-mobile" > {{ svg "octicon-triangle-down" }} </ span >
2024-03-21 20:04:03 +03:00
< span class = "only-mobile" > {{ ctx .Locale.Tr "create_new" }} </ span >
2018-09-07 05:59:06 +03:00
< / span >
< div class = "menu" >
< a class = "item" href = " {{ AppSubUrl }} /repo/create" >
2023-09-25 11:56:50 +03:00
{{ svg "octicon-plus" }} {{ ctx .Locale.Tr "new_repo" }}
2018-09-07 05:59:06 +03:00
< / a >
2020-12-21 17:39:41 +03:00
{{ if not .DisableMigrations }}
< a class = "item" href = " {{ AppSubUrl }} /repo/migrate" >
2023-09-25 11:56:50 +03:00
{{ svg "octicon-repo-push" }} {{ ctx .Locale.Tr "new_migrate" }}
2020-12-21 17:39:41 +03:00
< / a >
{{ end }}
2018-09-07 05:59:06 +03:00
{{ if .SignedUser.CanCreateOrganization }}
< a class = "item" href = " {{ AppSubUrl }} /org/create" >
2023-09-25 11:56:50 +03:00
{{ svg "octicon-organization" }} {{ ctx .Locale.Tr "new_org" }}
2018-09-07 05:59:06 +03:00
< / a >
{{ end }}
< / div > <!-- end content create new menu -->
< / div > <!-- end dropdown menu create new -->
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 19:42:49 +03:00
< div class = "ui dropdown jump item tw-mx-0 tw-pr-2" data-tooltip-content = " {{ ctx .Locale.Tr "user_profile_and_more" }} " >
2024-03-22 22:51:29 +03:00
< span class = "text tw-flex tw-items-center" >
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 19:42:49 +03:00
{{ ctx .AvatarUtils.Avatar .SignedUser 24 "tw-mr-1" }}
< span class = "only-mobile tw-ml-2" > {{ .SignedUser.Name }} </ span >
2023-06-09 12:10:51 +03:00
< span class = "not-mobile" > {{ svg "octicon-triangle-down" }} </ span >
2018-09-07 05:59:06 +03:00
< / span >
2023-06-09 12:10:51 +03:00
< div class = "menu user-menu" >
2018-09-07 05:59:06 +03:00
< div class = "ui header" >
2023-09-25 11:56:50 +03:00
{{ ctx .Locale.Tr "signed_in_as" }} < strong > {{ .SignedUser.Name }} </ strong >
2018-09-07 05:59:06 +03:00
< / div >
< div class = "divider" > < / div >
2021-11-16 21:18:25 +03:00
< a class = "item" href = " {{ .SignedUser.HomeLink }} " >
2020-09-11 23:19:00 +03:00
{{ svg "octicon-person" }}
2023-09-25 11:56:50 +03:00
{{ ctx .Locale.Tr "your_profile" }}
2018-09-07 05:59:06 +03:00
< / a >
2021-04-15 19:53:57 +03:00
{{ if not .DisableStars }}
2021-11-16 21:18:25 +03:00
< a class = "item" href = " {{ .SignedUser.HomeLink }} ?tab=stars" >
2021-04-15 19:53:57 +03:00
{{ svg "octicon-star" }}
2023-09-25 11:56:50 +03:00
{{ ctx .Locale.Tr "your_starred" }}
2021-04-15 19:53:57 +03:00
< / a >
{{ end }}
2022-09-29 22:09:14 +03:00
< a class = "item" href = " {{ AppSubUrl }} /notifications/subscriptions" >
{{ svg "octicon-bell" }}
2023-09-25 11:56:50 +03:00
{{ ctx .Locale.Tr "notification.subscriptions" }}
2022-09-29 22:09:14 +03:00
< / a >
2022-12-09 16:34:51 +03:00
< a class = " {{ if .PageIsUserSettings }} active {{ end }} item" href = " {{ AppSubUrl }} /user/settings" >
2020-09-11 23:19:00 +03:00
{{ svg "octicon-tools" }}
2023-09-25 11:56:50 +03:00
{{ ctx .Locale.Tr "your_settings" }}
2018-09-07 05:59:06 +03:00
< / a >
2023-01-09 16:01:00 +03:00
< a class = "item" target = "_blank" rel = "noopener noreferrer" href = "https://forgejo.org/docs/latest/" >
2020-09-11 23:19:00 +03:00
{{ svg "octicon-question" }}
2023-09-25 11:56:50 +03:00
{{ ctx .Locale.Tr "help" }}
2018-09-07 05:59:06 +03:00
< / a >
{{ if .IsAdmin }}
< div class = "divider" > < / div >
2022-12-09 16:34:51 +03:00
< a class = " {{ if .PageIsAdmin }} active {{ end }} item" href = " {{ AppSubUrl }} /admin" >
2021-02-25 15:35:43 +03:00
{{ svg "octicon-server" }}
2023-09-25 11:56:50 +03:00
{{ ctx .Locale.Tr "admin_panel" }}
2018-09-07 05:59:06 +03:00
< / a >
{{ end }}
< div class = "divider" > < / div >
2023-06-26 22:36:10 +03:00
< a class = "item link-action" href data-url = " {{ AppSubUrl }} /user/logout" >
2020-09-11 23:19:00 +03:00
{{ svg "octicon-sign-out" }}
2023-09-25 11:56:50 +03:00
{{ ctx .Locale.Tr "sign_out" }}
2018-09-07 05:59:06 +03:00
< / a >
< / div > <!-- end content avatar menu -->
< / div > <!-- end dropdown avatar menu -->
2023-06-09 12:10:51 +03:00
{{ else }}
2018-09-07 05:59:06 +03:00
{{ if .ShowRegistrationButton }}
< a class = "item {{ if .PageIsSignUp }} active {{ end }} " href = " {{ AppSubUrl }} /user/sign_up" >
2023-09-25 11:56:50 +03:00
{{ svg "octicon-person" }} {{ ctx .Locale.Tr "register" }}
2018-09-07 05:59:06 +03:00
< / a >
{{ end }}
2021-10-28 13:09:25 +03:00
< a class = "item {{ if .PageIsSignIn }} active {{ end }} " rel = "nofollow" href = " {{ AppSubUrl }} /user/login {{ if not .PageIsSignIn }} ?redirect_to= {{ .CurrentURL }}{{ end }} " >
2023-09-25 11:56:50 +03:00
{{ svg "octicon-sign-in" }} {{ ctx .Locale.Tr "sign_in" }}
2018-09-07 05:59:06 +03:00
< / a >
2023-06-09 12:10:51 +03:00
{{ end }}
< / div > <!-- end full right menu -->
2023-03-17 06:52:44 +03:00
< / nav >