diff --git a/templates/admin/notice.tmpl b/templates/admin/notice.tmpl index 5cd617a0b5..ac5851f853 100644 --- a/templates/admin/notice.tmpl +++ b/templates/admin/notice.tmpl @@ -17,7 +17,7 @@ {{range .Notices}} -
+
{{.ID}} {{$.locale.Tr .TrStr}} {{.Description}} diff --git a/templates/admin/stacktrace-row.tmpl b/templates/admin/stacktrace-row.tmpl index 15e51e4aca..b0e282bcc7 100644 --- a/templates/admin/stacktrace-row.tmpl +++ b/templates/admin/stacktrace-row.tmpl @@ -27,7 +27,7 @@
-
+
{{svg "octicon-code" 16}}{{.Description}}{{if gt .Count 1}} * {{.Count}}{{end}}
diff --git a/templates/org/home.tmpl b/templates/org/home.tmpl index 0bd744d2b8..72be948650 100644 --- a/templates/org/home.tmpl +++ b/templates/org/home.tmpl @@ -57,7 +57,7 @@ {{if .NumMembers}}

{{.locale.Tr "org.members"}} - {{.NumMembers}} {{svg "octicon-chevron-right"}} + {{.NumMembers}} {{svg "octicon-chevron-right"}}

{{$isMember := .IsOrganizationMember}} @@ -71,7 +71,7 @@ {{if .IsOrganizationMember}}
{{range .Teams}} diff --git a/templates/org/team/repositories.tmpl b/templates/org/team/repositories.tmpl index ab5f6c6e75..65eb64cb54 100644 --- a/templates/org/team/repositories.tmpl +++ b/templates/org/team/repositories.tmpl @@ -10,7 +10,7 @@ {{$canAddRemove := and $.IsOrganizationOwner (not $.Team.IncludesAllRepositories)}} {{if $canAddRemove}}
-
+ {{.CsrfTokenHtml}}
-
- {{.locale.Tr "settings.at_least_one_permission"}} -
- + {{/* Fomantic ".ui.form .warning.message" is hidden by default, so put the warning message out of the form*/}} +
+ {{.locale.Tr "settings.at_least_one_permission"}} +
{{if .EnableOAuth2}} diff --git a/web_src/css/helpers.css b/web_src/css/helpers.css index 17a89ebfb7..bd1fb992ac 100644 --- a/web_src/css/helpers.css +++ b/web_src/css/helpers.css @@ -2,14 +2,10 @@ Gitea's tailwind-style CSS helper classes have `gt-` prefix. Gitea's private styles use `g-` prefix. */ -.gt-db { display: block !important; } .gt-df { display: flex !important; } -.gt-di { display: inline !important; } -.gt-dif { display: inline-flex !important; } .gt-dib { display: inline-block !important; } .gt-ac { align-items: center !important; } .gt-jc { justify-content: center !important; } -.gt-js { justify-content: flex-start !important; } .gt-je { justify-content: flex-end !important; } .gt-sb { justify-content: space-between !important; } .gt-fc { flex-direction: column !important; } diff --git a/web_src/css/repo/release-tag.css b/web_src/css/repo/release-tag.css index 33ff2cddd9..70925f5a0e 100644 --- a/web_src/css/repo/release-tag.css +++ b/web_src/css/repo/release-tag.css @@ -23,8 +23,11 @@ .repository.releases #release-list > li .meta { margin-top: 4px; - text-align: right; position: relative; + text-align: right; + display: flex; + flex-direction: column; + gap: 1em; } .repository.releases #release-list > li .detail { diff --git a/web_src/js/components/DashboardRepoList.vue b/web_src/js/components/DashboardRepoList.vue index bc6cc6a2c4..f1ea937f05 100644 --- a/web_src/js/components/DashboardRepoList.vue +++ b/web_src/js/components/DashboardRepoList.vue @@ -17,7 +17,7 @@