diff options
author | silverwind <me@silverwind.io> | 2024-03-23 22:22:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-23 21:22:15 +0000 |
commit | 75e2e5c736687ae1897cf760a432b572feed56f5 (patch) | |
tree | c928e537cf5488c07c4ef08709aa7d4fef379766 /templates/user | |
parent | 0bef9a2775af0e27a0754207fc87537b96c2792e (diff) | |
download | gitea-75e2e5c736687ae1897cf760a432b572feed56f5.tar.gz gitea-75e2e5c736687ae1897cf760a432b572feed56f5.zip |
Migrate font-size helpers to tailwind (#30029)
Migrate `gt-font-*` to `tw-text-*` All tailwind-original class names are
also available and render like they would with 16px root font size.
We currently have root font size at 14px, but I would like to eventually
migrate us to 16px so that the tailwind docs apply to us unchangend and
because 16px is the recommended root font size for web pages in general.
Also the number 16 is much better dividable than 14 so will result in
more integers.
Diffstat (limited to 'templates/user')
-rw-r--r-- | templates/user/dashboard/feeds.tmpl | 2 | ||||
-rw-r--r-- | templates/user/notification/notification_div.tmpl | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/templates/user/dashboard/feeds.tmpl b/templates/user/dashboard/feeds.tmpl index 382b0d4542..c58d7e22d7 100644 --- a/templates/user/dashboard/feeds.tmpl +++ b/templates/user/dashboard/feeds.tmpl @@ -107,7 +107,7 @@ <a href="{{.GetCommentLink ctx}}" class="text truncate issue title">{{(.GetIssueTitle ctx) | RenderEmoji $.Context | RenderCodeBlock}}</a> {{$comment := index .GetIssueInfos 1}} {{if $comment}} - <div class="markup gt-font-14">{{RenderMarkdownToHtml ctx $comment}}</div> + <div class="markup tw-text-14">{{RenderMarkdownToHtml ctx $comment}}</div> {{end}} {{else if .GetOpType.InActions "merge_pull_request"}} <div class="flex-item-body text black">{{index .GetIssueInfos 1}}</div> diff --git a/templates/user/notification/notification_div.tmpl b/templates/user/notification/notification_div.tmpl index 371da129ce..da5a920fd1 100644 --- a/templates/user/notification/notification_div.tmpl +++ b/templates/user/notification/notification_div.tmpl @@ -44,13 +44,13 @@ {{end}} </div> <a class="notifications-link tw-flex tw-flex-1 tw-flex-col silenced" href="{{.Link ctx}}"> - <div class="notifications-top-row gt-font-13"> + <div class="notifications-top-row tw-text-13"> {{.Repository.FullName}} {{if .Issue}}<span class="text light-3">#{{.Issue.Index}}</span>{{end}} {{if eq .Status 3}} {{svg "octicon-pin" 13 "text blue gt-mt-1 gt-ml-2"}} {{end}} </div> - <div class="notifications-bottom-row gt-font-16 gt-py-1"> + <div class="notifications-bottom-row tw-text-16 gt-py-1"> <span class="issue-title"> {{if .Issue}} {{.Issue.Title | RenderEmoji $.Context | RenderCodeBlock}} |