mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-10-31 22:58:59 +01:00
Replace all simple inline styles with tailwind (#30032)
These should be all simple inline styles that were left in the templates. Co-authored-by: Giteabot <teabot@gitea.io> (cherry picked from commit 0bef9a2775af0e27a0754207fc87537b96c2792e)
This commit is contained in:
parent
76315e0919
commit
eaac4af245
9 changed files with 14 additions and 10 deletions
|
@ -20,7 +20,7 @@
|
||||||
<td><div class="ui checkbox tw-flex" data-id="{{.ID}}"><input type="checkbox"></div></td>
|
<td><div class="ui checkbox tw-flex" data-id="{{.ID}}"><input type="checkbox"></div></td>
|
||||||
<td>{{.ID}}</td>
|
<td>{{.ID}}</td>
|
||||||
<td>{{ctx.Locale.Tr .TrStr}}</td>
|
<td>{{ctx.Locale.Tr .TrStr}}</td>
|
||||||
<td class="view-detail auto-ellipsis" style="width: 80%;"><span class="notice-description">{{.Description}}</span></td>
|
<td class="view-detail auto-ellipsis tw-w-4/5"><span class="notice-description">{{.Description}}</span></td>
|
||||||
<td nowrap>{{DateTime "short" .CreatedUnix}}</td>
|
<td nowrap>{{DateTime "short" .CreatedUnix}}</td>
|
||||||
<td class="view-detail"><a href="#">{{svg "octicon-note" 16}}</a></td>
|
<td class="view-detail"><a href="#">{{svg "octicon-note" 16}}</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
|
@ -73,7 +73,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="flex-item-trailing">
|
<div class="flex-item-trailing">
|
||||||
<a class="muted" href="{{$.Link}}">
|
<a class="muted" href="{{$.Link}}">
|
||||||
<span class="flex-text-inline"><i class="color-icon gt-mr-3" style="background-color: aqua"></i>Go</span>
|
<span class="flex-text-inline"><i class="color-icon gt-mr-3 tw-bg-blue"></i>Go</span>
|
||||||
</a>
|
</a>
|
||||||
<a class="text grey flex-text-inline" href="{{$.Link}}">{{svg "octicon-star" 16}}45000</a>
|
<a class="text grey flex-text-inline" href="{{$.Link}}">{{svg "octicon-star" 16}}45000</a>
|
||||||
<a class="text grey flex-text-inline" href="{{$.Link}}">{{svg "octicon-git-branch" 16}}1234</a>
|
<a class="text grey flex-text-inline" href="{{$.Link}}">{{svg "octicon-git-branch" 16}}1234</a>
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
{{template "base/head" .}}
|
{{template "base/head" .}}
|
||||||
<div class="page-content devtest">
|
<div class="page-content devtest">
|
||||||
<div class="tw-flex">
|
<div class="tw-flex">
|
||||||
<div style="width: 80%; ">
|
<div class="tw-w-4/5">
|
||||||
hello hello hello hello hello hello hello hello hello hello
|
hello hello hello hello hello hello hello hello hello hello
|
||||||
</div>
|
</div>
|
||||||
<div style="width: 20%;">
|
<div class="tw-w-1/5">
|
||||||
{{template "devtest/tmplerr-sub" .}}
|
{{template "devtest/tmplerr-sub" .}}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -181,7 +181,7 @@
|
||||||
<div class="diff-file-body ui attached unstackable table segment" {{if and $file.IsViewed $.IsShowingAllCommits}}data-folded="true"{{end}}>
|
<div class="diff-file-body ui attached unstackable table segment" {{if and $file.IsViewed $.IsShowingAllCommits}}data-folded="true"{{end}}>
|
||||||
<div id="diff-source-{{$file.NameHash}}" class="file-body file-code unicode-escaped code-diff{{if $.IsSplitStyle}} code-diff-split{{else}} code-diff-unified{{end}}{{if $showFileViewToggle}} gt-hidden{{end}}">
|
<div id="diff-source-{{$file.NameHash}}" class="file-body file-code unicode-escaped code-diff{{if $.IsSplitStyle}} code-diff-split{{else}} code-diff-unified{{end}}{{if $showFileViewToggle}} gt-hidden{{end}}">
|
||||||
{{if or $file.IsIncomplete $file.IsBin}}
|
{{if or $file.IsIncomplete $file.IsBin}}
|
||||||
<div class="diff-file-body binary" style="padding: 5px 10px;">
|
<div class="diff-file-body binary">
|
||||||
{{if $file.IsIncomplete}}
|
{{if $file.IsIncomplete}}
|
||||||
{{if $file.IsIncompleteLineTooLong}}
|
{{if $file.IsIncompleteLineTooLong}}
|
||||||
{{ctx.Locale.Tr "repo.diff.file_suppressed_line_too_long"}}
|
{{ctx.Locale.Tr "repo.diff.file_suppressed_line_too_long"}}
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<div class="header">
|
<div class="header">
|
||||||
{{ctx.Locale.Tr "repo.issues.context.reference_issue"}}
|
{{ctx.Locale.Tr "repo.issues.context.reference_issue"}}
|
||||||
</div>
|
</div>
|
||||||
<div class="content" style="text-align:left">
|
<div class="content tw-text-left">
|
||||||
<form class="ui form form-fetch-action" action="{{printf "%s/issues/new" .Repository.Link}}" method="post">
|
<form class="ui form form-fetch-action" action="{{printf "%s/issues/new" .Repository.Link}}" method="post">
|
||||||
{{.CsrfTokenHtml}}
|
{{.CsrfTokenHtml}}
|
||||||
<div class="ui segment content">
|
<div class="ui segment content">
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
<label for="is_writable">
|
<label for="is_writable">
|
||||||
{{ctx.Locale.Tr "repo.settings.is_writable"}}
|
{{ctx.Locale.Tr "repo.settings.is_writable"}}
|
||||||
</label>
|
</label>
|
||||||
<small style="padding-left: 26px;">{{ctx.Locale.Tr "repo.settings.is_writable_info"}}</small>
|
<small class="tw-pl-[26px]">{{ctx.Locale.Tr "repo.settings.is_writable_info"}}</small>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<button class="ui primary button">
|
<button class="ui primary button">
|
||||||
|
|
|
@ -110,7 +110,7 @@
|
||||||
<table class="ui table">
|
<table class="ui table">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th style="width:40%">{{ctx.Locale.Tr "repo.settings.mirror_settings.mirrored_repository"}}</th>
|
<th class="tw-w-2/5">{{ctx.Locale.Tr "repo.settings.mirror_settings.mirrored_repository"}}</th>
|
||||||
<th>{{ctx.Locale.Tr "repo.settings.mirror_settings.direction"}}</th>
|
<th>{{ctx.Locale.Tr "repo.settings.mirror_settings.direction"}}</th>
|
||||||
<th>{{ctx.Locale.Tr "repo.settings.mirror_settings.last_update"}}</th>
|
<th>{{ctx.Locale.Tr "repo.settings.mirror_settings.last_update"}}</th>
|
||||||
<th></th>
|
<th></th>
|
||||||
|
@ -207,7 +207,7 @@
|
||||||
<table class="ui table">
|
<table class="ui table">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th style="width:40%">{{ctx.Locale.Tr "repo.settings.mirror_settings.pushed_repository"}}</th>
|
<th class="tw-w-2/5">{{ctx.Locale.Tr "repo.settings.mirror_settings.pushed_repository"}}</th>
|
||||||
<th>{{ctx.Locale.Tr "repo.settings.mirror_settings.direction"}}</th>
|
<th>{{ctx.Locale.Tr "repo.settings.mirror_settings.direction"}}</th>
|
||||||
<th>{{ctx.Locale.Tr "repo.settings.mirror_settings.last_update"}}</th>
|
<th>{{ctx.Locale.Tr "repo.settings.mirror_settings.last_update"}}</th>
|
||||||
<th></th>
|
<th></th>
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
<p>{{ctx.Locale.Tr "webauthn_sign_in"}}</p>
|
<p>{{ctx.Locale.Tr "webauthn_sign_in"}}</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="ui attached segment tw-flex tw-items-center tw-justify-center gt-gap-2 gt-py-3">
|
<div class="ui attached segment tw-flex tw-items-center tw-justify-center gt-gap-2 gt-py-3">
|
||||||
<div class="is-loading" style="width: 40px; height: 40px"></div>
|
<div class="is-loading tw-w-[40px] tw-h-[40px]"></div>
|
||||||
{{ctx.Locale.Tr "webauthn_press_button"}}
|
{{ctx.Locale.Tr "webauthn_press_button"}}
|
||||||
</div>
|
</div>
|
||||||
{{if .HasTwoFactor}}
|
{{if .HasTwoFactor}}
|
||||||
|
|
|
@ -198,6 +198,10 @@
|
||||||
margin: 0 0 0 3em;
|
margin: 0 0 0 3em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.diff-file-body.binary {
|
||||||
|
padding: 5px 10px;
|
||||||
|
}
|
||||||
|
|
||||||
.file-comment {
|
.file-comment {
|
||||||
color: var(--color-text);
|
color: var(--color-text);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue