From 5115ffa90c959086704b6e3437214a192de7b8a7 Mon Sep 17 00:00:00 2001 From: wxiaoguang <wxiaoguang@gmail.com> Date: Tue, 4 Apr 2023 08:47:23 +0800 Subject: Remove fomantic ".link" selector and styles (#23888) It's difficult to play with Fomantic's ".link" selector&styles, and it doesn't bring any real benefit. Instead, it sometimes introduces regressions (because of the `:not` selector, really difficult to fine-tune). Regression: <details>  </details> After this PR, there is no ".link" in code anymore. We do not need to play the overwriting and `:not()` game anymore.     --- templates/repo/forks.tmpl | 18 ++++++------------ templates/repo/sub_menu.tmpl | 4 ++-- 2 files changed, 8 insertions(+), 14 deletions(-) (limited to 'templates/repo') diff --git a/templates/repo/forks.tmpl b/templates/repo/forks.tmpl index b05ebcc638..13810b44da 100644 --- a/templates/repo/forks.tmpl +++ b/templates/repo/forks.tmpl @@ -5,18 +5,12 @@ <h2 class="ui dividing header"> {{.locale.Tr "repo.forks"}} </h2> - <div class="ui list"> - {{range .Forks}} - <div class="item"> - {{avatar $.Context .Owner}} - <div class="link"> - <a href="{{.Owner.HomeLink}}">{{.Owner.Name}}</a> - / - <a href="{{.Link}}">{{.Name}}</a> - </div> - </div> - {{end}} - </div> + {{range .Forks}} + <div class="gt-df gt-ac gt-py-3"> + <span class="gt-mr-2">{{avatar $.Context .Owner}}</span> + <a href="{{.Owner.HomeLink}}">{{.Owner.Name}}</a> / <a href="{{.Link}}">{{.Name}}</a> + </div> + {{end}} </div> {{template "base/paginate" .}} diff --git a/templates/repo/sub_menu.tmpl b/templates/repo/sub_menu.tmpl index fe4148d744..97fbabda41 100644 --- a/templates/repo/sub_menu.tmpl +++ b/templates/repo/sub_menu.tmpl @@ -1,7 +1,7 @@ {{if and (not .HideRepoInfo) (not .IsBlame)}} <div class="ui segments repository-summary{{if and (.Permission.CanRead $.UnitTypeCode) (not .IsEmptyRepo) .LanguageStats}} repository-summary-language-stats{{end}} gt-mt-2 gt-mb-0"> <div class="ui segment sub-menu repository-menu"> - <div class="ui two horizontal center link list"> + <div class="ui two horizontal center list"> {{if and (.Permission.CanRead $.UnitTypeCode) (not .IsEmptyRepo)}} <div class="item{{if .PageIsCommits}} active{{end}}"> <a href="{{.RepoLink}}/commits/{{.BranchNameSubURL}}">{{svg "octicon-history"}} <b>{{LocaleNumber .CommitsCount}}</b> {{.locale.TrN .CommitsCount "repo.commit" "repo.commits"}}</a> @@ -22,7 +22,7 @@ </div> {{if and (.Permission.CanRead $.UnitTypeCode) (not .IsEmptyRepo) .LanguageStats}} <div class="ui segment sub-menu language-stats-details gt-hidden"> - <div class="ui horizontal center link list"> + <div class="ui horizontal center list"> {{range .LanguageStats}} <div class="item gt-df gt-ac gt-jc"> <i class="color-icon gt-mr-3" style="background-color: {{.Color}}"></i> -- cgit v1.2.3