diff options
author | silverwind <me@silverwind.io> | 2020-12-03 18:05:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-03 18:05:35 +0100 |
commit | 0d35ef5b439623774d1adddf7071d744b1116809 (patch) | |
tree | 31252fb4ebe3d941680c0ef5b323a9704b8618db /templates | |
parent | 47e4d1a4e2fadf608d9056bf890ab3f2612a9d09 (diff) | |
download | gitea-0d35ef5b439623774d1adddf7071d744b1116809.tar.gz gitea-0d35ef5b439623774d1adddf7071d744b1116809.zip |
Fix various CSS issues (#13769)
- Fix black text being white on base theme
- Fix file/blame button group
- Fix label margin in dropdown (regression from graph pr)
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Co-authored-by: 6543 <6543@obermui.de>
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/repo/view_file.tmpl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/templates/repo/view_file.tmpl b/templates/repo/view_file.tmpl index 2ad31f8c37..86de599fb2 100644 --- a/templates/repo/view_file.tmpl +++ b/templates/repo/view_file.tmpl @@ -32,15 +32,15 @@ </div> {{if not .ReadmeInList}} <div class="file-header-right file-actions df ac"> - <div class="ui buttons"> - <a class="ui tiny button" href="{{EscapePound $.RawFileLink}}">{{.i18n.Tr "repo.file_raw"}}</a> + <div class="ui buttons mr-2"> + <a class="ui mini basic button" href="{{EscapePound $.RawFileLink}}">{{.i18n.Tr "repo.file_raw"}}</a> {{if not .IsViewCommit}} - <a class="ui tiny button" href="{{.RepoLink}}/src/commit/{{.CommitID}}/{{EscapePound .TreePath}}">{{.i18n.Tr "repo.file_permalink"}}</a> + <a class="ui mini basic button" href="{{.RepoLink}}/src/commit/{{.CommitID}}/{{EscapePound .TreePath}}">{{.i18n.Tr "repo.file_permalink"}}</a> {{end}} {{if .IsTextFile}} - <a class="ui tiny button" href="{{.RepoLink}}/blame/{{EscapePound .BranchNameSubURL}}/{{EscapePound .TreePath}}">{{.i18n.Tr "repo.blame"}}</a> + <a class="ui mini basic button" href="{{.RepoLink}}/blame/{{EscapePound .BranchNameSubURL}}/{{EscapePound .TreePath}}">{{.i18n.Tr "repo.blame"}}</a> {{end}} - <a class="ui tiny button" href="{{.RepoLink}}/commits/{{EscapePound .BranchNameSubURL}}/{{EscapePound .TreePath}}">{{.i18n.Tr "repo.file_history"}}</a> + <a class="ui mini basic button" href="{{.RepoLink}}/commits/{{EscapePound .BranchNameSubURL}}/{{EscapePound .TreePath}}">{{.i18n.Tr "repo.file_history"}}</a> </div> {{if .Repository.CanEnableEditor}} {{if .CanEditFile}} |