diff options
author | wxiaoguang <wxiaoguang@gmail.com> | 2024-01-12 20:28:01 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-12 20:28:01 +0800 |
commit | 34a0684397a58c585e35307ae0d9f4362919fbac (patch) | |
tree | 80584326daa3602828bc781c2661623995547594 /templates/repo | |
parent | 7d62615513b8985360de497e9a051b51ca0faaf2 (diff) | |
download | gitea-34a0684397a58c585e35307ae0d9f4362919fbac.tar.gz gitea-34a0684397a58c585e35307ae0d9f4362919fbac.zip |
Improve CSS helper naming (#28769)
* `gt-w-100` => `gt-w-full` to match tailwind
* clarify `gt-hidden` priority
Diffstat (limited to 'templates/repo')
-rw-r--r-- | templates/repo/diff/box.tmpl | 2 | ||||
-rw-r--r-- | templates/repo/issue/card.tmpl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/templates/repo/diff/box.tmpl b/templates/repo/diff/box.tmpl index 1224bbe84c..be7c7e80f2 100644 --- a/templates/repo/diff/box.tmpl +++ b/templates/repo/diff/box.tmpl @@ -203,7 +203,7 @@ {{if $showFileViewToggle}} {{/* for image or CSV, it can have a horizontal scroll bar, there won't be review comment context menu (position absolute) which would be clipped by "overflow" */}} <div id="diff-rendered-{{$file.NameHash}}" class="file-body file-code {{if $.IsSplitStyle}}code-diff-split{{else}}code-diff-unified{{end}} gt-overflow-x-scroll"> - <table class="chroma gt-w-100"> + <table class="chroma gt-w-full"> {{if $isImage}} {{template "repo/diff/image_diff" dict "file" . "root" $ "blobBase" $blobBase "blobHead" $blobHead "sniffedTypeBase" $sniffedTypeBase "sniffedTypeHead" $sniffedTypeHead}} {{else}} diff --git a/templates/repo/issue/card.tmpl b/templates/repo/issue/card.tmpl index 3cc853b351..1863ba39d7 100644 --- a/templates/repo/issue/card.tmpl +++ b/templates/repo/issue/card.tmpl @@ -6,7 +6,7 @@ {{end}} </div> {{end}} - <div class="content gt-p-0 gt-w-100"> + <div class="content gt-p-0 gt-w-full"> <div class="gt-df gt-items-start"> <div class="issue-card-icon"> {{template "shared/issueicon" .}} |