Skip to content

Commit 19a1e1b

Browse files
authored
Remove polluted .ui.right (#26825)
Each change is tested manually line by line. There are too many changes so I can't share dozens of screenshots. In short: 1. `ui right` could be still used in `ui top attached header`, because there is a special case. 2. A lot of `ui right` are just no-op, so they can be removed safely. 3. Some of the `ui right` should be replaced by `gt-float-right` (to avoid breaking, leave them to the future). 4. A few of the `ui right` could be rewritten by flex.
1 parent 98f2bf2 commit 19a1e1b

25 files changed

+51
-72
lines changed

templates/admin/notice.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<tr>
3232
<th></th>
3333
<th colspan="5">
34-
<form class="ui right" method="post" action="{{AppSubUrl}}/admin/notices/empty">
34+
<form class="gt-float-right" method="post" action="{{AppSubUrl}}/admin/notices/empty">
3535
{{.CsrfTokenHtml}}
3636
<button type="submit" class="ui red small button">{{.locale.Tr "admin.notices.delete_all"}}</button>
3737
</form>

templates/org/settings/labels.tmpl

+3-7
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
11
{{template "org/settings/layout_head" (dict "ctxData" . "pageClass" "organization settings labels")}}
22
<div class="org-setting-content">
3-
<div class="ui grid">
4-
<div class="left floated twelve wide column">
3+
<div class="gt-df gt-ac">
4+
<div class="gt-f1">
55
{{$.locale.Tr "org.settings.labels_desc" | Str2html}}
66
</div>
7-
<div class="right floated three wide column">
8-
<div class="ui right">
9-
<button class="ui small green new-label button">{{.locale.Tr "repo.issues.new_label"}}</button>
10-
</div>
11-
</div>
7+
<button class="ui small green new-label button">{{.locale.Tr "repo.issues.new_label"}}</button>
128
</div>
139
<div class="divider"></div>
1410
{{template "repo/issue/labels/label_new" .}}

templates/org/team/repositories.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
{{if $canAddRemove}}
4242
<form method="post" action="{{$.OrgLink}}/teams/{{$.Team.LowerName | PathEscape}}/action/repo/remove">
4343
{{$.CsrfTokenHtml}}
44-
<button type="submit" class="ui red small button right" name="repoid" value="{{.ID}}">{{$.locale.Tr "remove"}}</button>
44+
<button type="submit" class="ui red small button" name="repoid" value="{{.ID}}">{{$.locale.Tr "remove"}}</button>
4545
</form>
4646
{{end}}
4747
</div>

templates/package/view.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
{{end}}
8888
<div class="divider"></div>
8989
<strong>{{.locale.Tr "packages.versions"}} ({{.TotalVersionCount}})</strong>
90-
<a class="ui right" href="{{$.PackageDescriptor.PackageWebLink}}/versions">{{.locale.Tr "packages.versions.view_all"}}</a>
90+
<a class="gt-float-right" href="{{$.PackageDescriptor.PackageWebLink}}/versions">{{.locale.Tr "packages.versions.view_all"}}</a>
9191
<div class="ui relaxed list">
9292
{{range .LatestVersions}}
9393
<div class="item gt-df">

templates/repo/commits_list_small.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
{{$commitLink:= printf "%s/commit/%s" $.comment.Issue.PullRequest.BaseRepo.Link (PathEscape .ID.String)}}
1515

16-
<span class="ui float right shabox gt-df gt-ac">
16+
<span class="shabox gt-df gt-ac gt-float-right">
1717
{{template "repo/commit_statuses" dict "Status" .Status "Statuses" .Statuses "root" $.root}}
1818
{{$class := "ui sha label"}}
1919
{{if .Signature}}

templates/repo/diff/comment_form.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
<div class="field footer gt-mx-3">
2424
<span class="markup-info">{{svg "octicon-markup"}} {{$.root.locale.Tr "repo.diff.comment.markdown_info"}}</span>
25-
<div class="ui right">
25+
<div class="gt-text-right">
2626
{{if $.reply}}
2727
<button class="ui submit green tiny button btn-reply" type="submit">{{$.root.locale.Tr "repo.diff.comment.reply"}}</button>
2828
<input type="hidden" name="reply" value="{{$.reply}}">

templates/repo/issue/labels.tmpl

+1-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@
55
<div class="navbar gt-mb-4">
66
{{template "repo/issue/navbar" .}}
77
{{if and (or .CanWriteIssues .CanWritePulls) (not .Repository.IsArchived)}}
8-
<div class="ui right">
9-
<button class="ui small green new-label button">{{.locale.Tr "repo.issues.new_label"}}</button>
10-
</div>
8+
<button class="ui small green new-label button">{{.locale.Tr "repo.issues.new_label"}}</button>
119
{{end}}
1210
</div>
1311
{{if and (or .CanWriteIssues .CanWritePulls) (not .Repository.IsArchived)}}

templates/repo/issue/milestones.tmpl

+1-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@
55
<div class="navbar gt-mb-4">
66
{{template "repo/issue/navbar" .}}
77
{{if and (or .CanWriteIssues .CanWritePulls) (not .Repository.IsArchived)}}
8-
<div class="ui right">
9-
<a class="ui small green button" href="{{$.Link}}/new">{{.locale.Tr "repo.milestones.new"}}</a>
10-
</div>
8+
<a class="ui small green button" href="{{$.Link}}/new">{{.locale.Tr "repo.milestones.new"}}</a>
119
{{end}}
1210
</div>
1311
{{template "base/alert" .}}

templates/repo/issue/view_content/attachments.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
</a>
2020
</div>
2121
<div class="gt-p-3 gt-df gt-ac">
22-
<span class="ui text grey right">{{.Size | FileSize}}</span>
22+
<span class="ui text grey">{{.Size | FileSize}}</span>
2323
</div>
2424
</div>
2525
{{end -}}

templates/repo/issue/view_content/comments.tmpl

+3-3
Original file line numberDiff line numberDiff line change
@@ -477,15 +477,15 @@
477477
</div>
478478
<div>
479479
{{if or $invalid $resolved}}
480-
<button id="show-outdated-{{(index $comms 0).ID}}" data-comment="{{(index $comms 0).ID}}" class="{{if not $resolved}}gt-hidden {{end}}ui compact right labeled button show-outdated gt-df gt-ac">
480+
<button id="show-outdated-{{(index $comms 0).ID}}" data-comment="{{(index $comms 0).ID}}" class="{{if not $resolved}}gt-hidden {{end}}ui compact labeled button show-outdated gt-df gt-ac">
481481
{{svg "octicon-unfold" 16 "gt-mr-3"}}
482482
{{if $resolved}}
483483
{{$.locale.Tr "repo.issues.review.show_resolved"}}
484484
{{else}}
485485
{{$.locale.Tr "repo.issues.review.show_outdated"}}
486486
{{end}}
487487
</button>
488-
<button id="hide-outdated-{{(index $comms 0).ID}}" data-comment="{{(index $comms 0).ID}}" class="{{if $resolved}}gt-hidden {{end}}ui compact right labeled button hide-outdated gt-df gt-ac">
488+
<button id="hide-outdated-{{(index $comms 0).ID}}" data-comment="{{(index $comms 0).ID}}" class="{{if $resolved}}gt-hidden {{end}}ui compact labeled button hide-outdated gt-df gt-ac">
489489
{{svg "octicon-fold" 16 "gt-mr-3"}}
490490
{{if $resolved}}
491491
{{$.locale.Tr "repo.issues.review.hide_resolved"}}
@@ -698,7 +698,7 @@
698698
{{end}}
699699
</span>
700700
{{if and .IsForcePush $.Issue.PullRequest.BaseRepo.Name}}
701-
<span class="ui float right comparebox">
701+
<span class="gt-float-right comparebox">
702702
<a href="{{$.Issue.PullRequest.BaseRepo.Link}}/compare/{{PathEscape .OldCommit}}..{{PathEscape .NewCommit}}" rel="nofollow" class="ui compare label">{{$.locale.Tr "repo.issues.force_push_compare"}}</a>
703703
</span>
704704
{{end}}

templates/repo/issue/view_content/comments_delete_time.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{{if .comment.Time}} {{/* compatibility with time comments made before v1.14 */}}
22
{{if (not .comment.Time.Deleted)}}
33
{{if (or .ctxData.IsAdmin (and .ctxData.IsSigned (eq .ctxData.SignedUserID .comment.PosterID)))}}
4-
<span class="ui float right">
4+
<span class="gt-float-right">
55
<div class="ui mini modal issue-delete-time-modal" data-id="{{.comment.Time.ID}}">
66
<form method="post" class="delete-time-form" action="{{.ctxData.RepoLink}}/issues/{{.ctxData.Issue.Index}}/times/{{.comment.TimeID}}/delete">
77
{{.ctxData.CsrfTokenHtml}}

templates/repo/projects/view.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<div class="ui container padded">
55
<div class="gt-df gt-sb gt-ac gt-mb-4">
66
{{template "repo/issue/navbar" .}}
7-
<a class="ui right small green button item" href="{{.RepoLink}}/issues/new/choose?project={{.Project.ID}}">{{ctx.Locale.Tr "repo.issues.new"}}</a>
7+
<a class="ui small green button" href="{{.RepoLink}}/issues/new/choose?project={{.Project.ID}}">{{ctx.Locale.Tr "repo.issues.new"}}</a>
88
</div>
99
{{template "projects/view" .}}
1010
</div>

templates/repo/release/list.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
{{if .Attachments}}
9494
{{range .Attachments}}
9595
<li>
96-
<span class="ui text middle aligned right">
96+
<span class="gt-float-right">
9797
<span class="ui text grey">{{.Size | FileSize}}</span>
9898
<span data-tooltip-content="{{$.locale.Tr "repo.release.download_count" ($.locale.PrettyNumber .DownloadCount)}}">
9999
{{svg "octicon-info"}}

templates/repo/release/new.tmpl

+7-9
Original file line numberDiff line numberDiff line change
@@ -61,20 +61,18 @@
6161
)}}
6262
</div>
6363
{{range .attachments}}
64-
<div class="field" id="attachment-{{.ID}}">
65-
<div class="ui right gt-df gt-ac wrap_remove">
66-
<a class="ui mini compact red button remove-rel-attach" data-id="{{.ID}}" data-uuid="{{.UUID}}">
67-
{{$.locale.Tr "remove"}}
68-
</a>
69-
</div>
70-
<div class="gt-df gt-ac">
71-
<input name="attachment-edit-{{.UUID}}" class="gt-mr-3 attachment_edit" required value="{{.Name}}">
64+
<div class="field flex-text-block" id="attachment-{{.ID}}">
65+
<div class="flex-text-inline gt-f1">
66+
<input name="attachment-edit-{{.UUID}}" class="attachment_edit" required value="{{.Name}}">
7267
<input name="attachment-del-{{.UUID}}" type="hidden" value="false">
73-
<span class="ui text grey gt-mr-3">{{.Size | FileSize}}</span>
68+
<span class="ui text grey gt-whitespace-nowrap">{{.Size | FileSize}}</span>
7469
<span data-tooltip-content="{{$.locale.Tr "repo.release.download_count" ($.locale.PrettyNumber .DownloadCount)}}">
7570
{{svg "octicon-info"}}
7671
</span>
7772
</div>
73+
<a class="ui mini compact red button remove-rel-attach" data-id="{{.ID}}" data-uuid="{{.UUID}}">
74+
{{$.locale.Tr "remove"}}
75+
</a>
7876
</div>
7977
{{end}}
8078
{{if .IsAttachmentEnabled}}

templates/repo/release_tag_header.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
{{end}}
1616
</div>
1717
{{if and (not .PageIsTagList) .CanCreateRelease}}
18-
<a class="ui right small green button" href="{{$.RepoLink}}/releases/new">
18+
<a class="ui small green button" href="{{$.RepoLink}}/releases/new">
1919
{{.locale.Tr "repo.release.new_release"}}
2020
</a>
2121
{{end}}

templates/repo/settings/githooks.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<div class="item truncated-item-container">
1313
<span class="text {{if .IsActive}}green{{else}}grey{{end}} gt-mr-3">{{svg "octicon-dot-fill" 22}}</span>
1414
<span class="text truncate gt-f1 gt-mr-3">{{.Name}}</span>
15-
<a class="muted ui right gt-p-3" href="{{$.RepoLink}}/settings/hooks/git/{{.Name|PathEscape}}">
15+
<a class="muted gt-float-right gt-p-3" href="{{$.RepoLink}}/settings/hooks/git/{{.Name|PathEscape}}">
1616
{{svg "octicon-pencil"}}
1717
</a>
1818
</div>

templates/repo/settings/webhook/history.tmpl

+11-11
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,18 @@
1111
<div class="ui list">
1212
{{range .History}}
1313
<div class="item">
14-
<div class="meta">
15-
{{if .IsSucceed}}
16-
<span class="text green">{{svg "octicon-check"}}</span>
17-
{{else}}
18-
<span class="text red">{{svg "octicon-alert"}}</span>
19-
{{end}}
20-
<a class="ui primary sha label toggle button show-panel" data-panel="#info-{{.ID}}">{{.UUID}}</a>
21-
<div class="ui right">
22-
<span class="text grey time">
23-
{{TimeSince .Delivered.AsTime $.locale}}
24-
</span>
14+
<div class="flex-text-block gt-sb">
15+
<div class="flex-text-inline">
16+
{{if .IsSucceed}}
17+
<span class="text green">{{svg "octicon-check"}}</span>
18+
{{else}}
19+
<span class="text red">{{svg "octicon-alert"}}</span>
20+
{{end}}
21+
<a class="ui primary sha label toggle button show-panel" data-panel="#info-{{.ID}}">{{.UUID}}</a>
2522
</div>
23+
<span class="text grey">
24+
{{TimeSince .Delivered.AsTime $.locale}}
25+
</span>
2626
</div>
2727
<div class="info gt-hidden" id="info-{{.ID}}">
2828
<div class="ui top attached tabular menu">

templates/repo/wiki/new.tmpl

+2-4
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,10 @@
33
{{template "repo/header" .}}
44
<div class="ui container">
55
{{template "base/alert" .}}
6-
<div class="ui header">
6+
<div class="ui header flex-text-block gt-sb">
77
{{.locale.Tr "repo.wiki.new_page"}}
88
{{if .PageIsWikiEdit}}
9-
<div class="ui right gt-mb-3">
10-
<a class="ui green tiny button" href="{{.RepoLink}}/wiki?action=_new">{{.locale.Tr "repo.wiki.new_page_button"}}</a>
11-
</div>
9+
<a class="ui green tiny button" href="{{.RepoLink}}/wiki?action=_new">{{.locale.Tr "repo.wiki.new_page_button"}}</a>
1210
{{end}}
1311
</div>
1412
<form class="ui form" action="{{.Link}}?action={{if .PageIsWikiEdit}}_edit{{else}}_new{{end}}" method="post">

templates/repo/wiki/view.tmpl

+2-2
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
{{if .sidebarPresent}}
8080
<div class="markup wiki-content-sidebar">
8181
{{if and .CanWriteWiki (not .Repository.IsMirror)}}
82-
<a class="ui right floated muted" href="{{.RepoLink}}/wiki/_Sidebar?action=_edit" aria-label="{{.locale.Tr "repo.wiki.edit_page_button"}}">{{svg "octicon-pencil"}}</a>
82+
<a class="gt-float-right muted" href="{{.RepoLink}}/wiki/_Sidebar?action=_edit" aria-label="{{.locale.Tr "repo.wiki.edit_page_button"}}">{{svg "octicon-pencil"}}</a>
8383
{{end}}
8484
{{template "repo/unicode_escape_prompt" dict "EscapeStatus" .sidebarEscapeStatus "root" $}}
8585
{{.sidebarContent | Safe}}
@@ -91,7 +91,7 @@
9191
{{if .footerPresent}}
9292
<div class="markup wiki-content-footer">
9393
{{if and .CanWriteWiki (not .Repository.IsMirror)}}
94-
<a class="ui right floated muted" href="{{.RepoLink}}/wiki/_Footer?action=_edit" aria-label="{{.locale.Tr "repo.wiki.edit_page_button"}}">{{svg "octicon-pencil"}}</a>
94+
<a class="gt-float-right muted" href="{{.RepoLink}}/wiki/_Footer?action=_edit" aria-label="{{.locale.Tr "repo.wiki.edit_page_button"}}">{{svg "octicon-pencil"}}</a>
9595
{{end}}
9696
{{template "repo/unicode_escape_prompt" dict "footerEscapeStatus" .sidebarEscapeStatus "root" $}}
9797
{{.footerContent | Safe}}

templates/user/dashboard/issues.tmpl

+6-6
Original file line numberDiff line numberDiff line change
@@ -7,29 +7,29 @@
77
<div class="ui secondary vertical filter menu gt-bg-transparent">
88
<a class="{{if eq .ViewType "your_repositories"}}active{{end}} item" href="{{.Link}}?type=your_repositories&repos=[{{range $.RepoIDs}}{{.}}%2C{{end}}]&sort={{$.SortType}}&state={{.State}}&q={{$.Keyword}}">
99
{{.locale.Tr "home.issues.in_your_repos"}}
10-
<strong class="ui right">{{CountFmt .IssueStats.YourRepositoriesCount}}</strong>
10+
<strong>{{CountFmt .IssueStats.YourRepositoriesCount}}</strong>
1111
</a>
1212
<a class="{{if eq .ViewType "assigned"}}active{{end}} item" href="{{.Link}}?type=assigned&repos=[{{range $.RepoIDs}}{{.}}%2C{{end}}]&sort={{$.SortType}}&state={{.State}}&q={{$.Keyword}}">
1313
{{.locale.Tr "repo.issues.filter_type.assigned_to_you"}}
14-
<strong class="ui right">{{CountFmt .IssueStats.AssignCount}}</strong>
14+
<strong>{{CountFmt .IssueStats.AssignCount}}</strong>
1515
</a>
1616
<a class="{{if eq .ViewType "created_by"}}active{{end}} item" href="{{.Link}}?type=created_by&repos=[{{range $.RepoIDs}}{{.}}%2C{{end}}]&sort={{$.SortType}}&state={{.State}}&q={{$.Keyword}}">
1717
{{.locale.Tr "repo.issues.filter_type.created_by_you"}}
18-
<strong class="ui right">{{CountFmt .IssueStats.CreateCount}}</strong>
18+
<strong>{{CountFmt .IssueStats.CreateCount}}</strong>
1919
</a>
2020
{{if .PageIsPulls}}
2121
<a class="{{if eq .ViewType "review_requested"}}active{{end}} item" href="{{.Link}}?type=review_requested&repos=[{{range $.RepoIDs}}{{.}}%2C{{end}}]&sort={{$.SortType}}&state={{.State}}&q={{$.Keyword}}">
2222
{{.locale.Tr "repo.issues.filter_type.review_requested"}}
23-
<strong class="ui right">{{CountFmt .IssueStats.ReviewRequestedCount}}</strong>
23+
<strong>{{CountFmt .IssueStats.ReviewRequestedCount}}</strong>
2424
</a>
2525
<a class="{{if eq .ViewType "reviewed_by"}}active{{end}} item" href="{{.Link}}?type=reviewed_by&repos=[{{range $.RepoIDs}}{{.}}%2C{{end}}]&sort={{$.SortType}}&state={{.State}}&q={{$.Keyword}}">
2626
{{.locale.Tr "repo.issues.filter_type.reviewed_by_you"}}
27-
<strong class="ui right">{{CountFmt .IssueStats.ReviewedCount}}</strong>
27+
<strong>{{CountFmt .IssueStats.ReviewedCount}}</strong>
2828
</a>
2929
{{end}}
3030
<a class="{{if eq .ViewType "mentioned"}}active{{end}} item" href="{{.Link}}?type=mentioned&repos=[{{range $.RepoIDs}}{{.}}%2C{{end}}]&sort={{$.SortType}}&state={{.State}}&q={{$.Keyword}}">
3131
{{.locale.Tr "repo.issues.filter_type.mentioning_you"}}
32-
<strong class="ui right">{{CountFmt .IssueStats.MentionCount}}</strong>
32+
<strong>{{CountFmt .IssueStats.MentionCount}}</strong>
3333
</a>
3434
<div class="divider"></div>
3535
<a class="{{if not $.RepoIDs}}active{{end}} repo name item" href="{{$.Link}}?type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&q={{$.Keyword}}">

templates/user/dashboard/milestones.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<div class="ui secondary vertical filter menu gt-bg-transparent">
88
<div class="item">
99
{{.locale.Tr "home.issues.in_your_repos"}}
10-
<strong class="ui right">{{.Total}}</strong>
10+
<strong>{{.Total}}</strong>
1111
</div>
1212
<div class="divider"></div>
1313
{{range .Repos}}

templates/user/settings/repos.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
{{else}}
3333
<span class="icon gt-dib gt-pt-3">{{svg "octicon-file-directory-fill"}}</span>
3434
<span class="name gt-dib gt-pt-3">{{$.ContextUser.Name}}/{{$dir}}</span>
35-
<div class="ui right">
35+
<div class="gt-float-right">
3636
{{if $.allowAdopt}}
3737
<button class="ui button green show-modal gt-p-3" data-modal="#adopt-unadopted-modal-{{$dirI}}"><span class="icon">{{svg "octicon-plus"}}</span><span class="label">{{$.locale.Tr "repo.adopt_preexisting_label"}}</span></button>
3838
<div class="ui g-modal-confirm modal" id="adopt-unadopted-modal-{{$dirI}}">

web_src/css/base.css

-5
Original file line numberDiff line numberDiff line change
@@ -1179,11 +1179,6 @@ img.ui.avatar,
11791179
font-size: 0.75em;
11801180
}
11811181

1182-
/* FIXME: this is a serious pollution, do not use this for "float: right" anymore */
1183-
.ui.right:not(.action) {
1184-
float: right;
1185-
}
1186-
11871182
.ui.form .ui.button {
11881183
font-weight: var(--font-weight-normal);
11891184
}

web_src/css/repo/release-tag.css

+1-5
Original file line numberDiff line numberDiff line change
@@ -126,12 +126,8 @@
126126
}
127127
}
128128

129-
.repository.new.release .field .wrap_remove {
130-
height: 38px;
131-
}
132-
133129
.repository.new.release .field .attachment_edit {
134-
width: 450px !important;
130+
max-width: 48em;
135131
}
136132

137133
.repository.new.release .markup {

web_src/js/components/RepoBranchTagSelector.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<div class="ui label" v-if="item.name===defaultBranch && mode === 'branches'">
3434
{{ textDefaultBranchLabel }}
3535
</div>
36-
<a v-show="enableFeed && mode === 'branches'" role="button" class="rss-icon ui compact right" :href="rssURLPrefix + item.url" target="_blank" @click.stop>
36+
<a v-show="enableFeed && mode === 'branches'" role="button" class="rss-icon gt-float-right" :href="rssURLPrefix + item.url" target="_blank" @click.stop>
3737
<!-- creating a lot of Vue component is pretty slow, so we use a static SVG here -->
3838
<svg width="14" height="14" class="svg octicon-rss"><use href="#svg-symbol-octicon-rss"/></svg>
3939
</a>

0 commit comments

Comments
 (0)