diff options
author | silverwind <me@silverwind.io> | 2023-05-18 09:27:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-18 09:27:29 +0200 |
commit | 6a3a54cf484bf5137e2af5bc93294b783feb23a4 (patch) | |
tree | b4a5b792f385bfd072bb2b115549a63bf559a770 /templates/user | |
parent | 040970c32092fb0bc1280a124163b19a70f2b320 (diff) | |
download | gitea-6a3a54cf484bf5137e2af5bc93294b783feb23a4.tar.gz gitea-6a3a54cf484bf5137e2af5bc93294b783feb23a4.zip |
Remove background on user dashboard filter bar (#24779)
Was only an issue on arc-green:
### Before
<img width="313" alt="Screenshot 2023-05-17 at 23 33 15"
src="https://github.com/go-gitea/gitea/assets/115237/0f6916c6-c6c3-43c8-84cc-24b0a9800a43">
### After
<img width="310" alt="Screenshot 2023-05-17 at 23 32 52"
src="https://github.com/go-gitea/gitea/assets/115237/207d3d7f-ce6f-4170-b426-e743be760185">
Co-authored-by: Giteabot <teabot@gitea.io>
Diffstat (limited to 'templates/user')
-rw-r--r-- | templates/user/dashboard/issues.tmpl | 2 | ||||
-rw-r--r-- | templates/user/dashboard/milestones.tmpl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/templates/user/dashboard/issues.tmpl b/templates/user/dashboard/issues.tmpl index a0b02887b0..3e225bc9ab 100644 --- a/templates/user/dashboard/issues.tmpl +++ b/templates/user/dashboard/issues.tmpl @@ -4,7 +4,7 @@ <div class="ui container"> <div class="ui stackable grid"> <div class="four wide column"> - <div class="ui secondary vertical filter menu"> + <div class="ui secondary vertical filter menu gt-bg-transparent"> <a class="{{if eq .ViewType "your_repositories"}}ui basic primary button{{end}} item" href="{{.Link}}?type=your_repositories&repos=[{{range $.RepoIDs}}{{.}}%2C{{end}}]&sort={{$.SortType}}&state={{.State}}"> {{.locale.Tr "home.issues.in_your_repos"}} <strong class="ui right">{{CountFmt .IssueStats.YourRepositoriesCount}}</strong> diff --git a/templates/user/dashboard/milestones.tmpl b/templates/user/dashboard/milestones.tmpl index 207b2d7035..51ccd773c7 100644 --- a/templates/user/dashboard/milestones.tmpl +++ b/templates/user/dashboard/milestones.tmpl @@ -4,7 +4,7 @@ <div class="ui container"> <div class="ui stackable grid"> <div class="four wide column"> - <div class="ui secondary vertical filter menu"> + <div class="ui secondary vertical filter menu gt-bg-transparent"> <a class="item" href="{{.Link}}?type=your_repositories&sort={{$.SortType}}&state={{.State}}&q={{$.Keyword}}"> {{.locale.Tr "home.issues.in_your_repos"}} <strong class="ui right">{{.Total}}</strong> |