diff options
author | silverwind <me@silverwind.io> | 2021-04-22 23:43:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-22 23:43:44 +0200 |
commit | 834fc74873e8047552e9181e130bd53d8e890eb0 (patch) | |
tree | 2bd50b3d68b81c90ac795f0df9a94afb717c77f8 /templates | |
parent | 8ea1d32bea88b6968774b14e5bbe90f2280fe997 (diff) | |
download | gitea-834fc74873e8047552e9181e130bd53d8e890eb0.tar.gz gitea-834fc74873e8047552e9181e130bd53d8e890eb0.zip |
Raw file view tweaks (#15520)
- Limit SVG images to 600px width
- Adjust size of view toggle buttons to match other buttons
- Make Edit/Delete buttons easier to click
Had to create a separate CSS file because the less parser can not parse
CSS4 case-insensitive attribute selectors which are widely supported by
browsers.
Fixes: https://github.com/go-gitea/gitea/issues/15515
Diffstat (limited to 'templates')
-rw-r--r-- | templates/repo/view_file.tmpl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/repo/view_file.tmpl b/templates/repo/view_file.tmpl index 889cb5a691..d9c1e93eaf 100644 --- a/templates/repo/view_file.tmpl +++ b/templates/repo/view_file.tmpl @@ -33,9 +33,9 @@ {{if not .ReadmeInList}} <div class="file-header-right file-actions df ac"> {{if .HasSourceRenderedToggle}} - <div class="ui compact icon buttons"> - <a href="{{$.Link}}?display=source" class="ui tiny basic button poping up {{if .IsDisplayingSource}}active{{end}}" data-content="{{.i18n.Tr "repo.file_view_source"}}" data-position="bottom center" data-variation="tiny inverted">{{svg "octicon-code"}}</a> - <a href="{{$.Link}}" class="ui tiny basic button poping up {{if .IsDisplayingRendered}}active{{end}}" data-content="{{.i18n.Tr "repo.file_view_rendered"}}" data-position="bottom center" data-variation="tiny inverted">{{svg "octicon-file"}}</a> + <div class="ui compact icon buttons two-toggle-buttons"> + <a href="{{$.Link}}?display=source" class="ui mini basic button poping up {{if .IsDisplayingSource}}active{{end}}" data-content="{{.i18n.Tr "repo.file_view_source"}}" data-position="bottom center" data-variation="tiny inverted">{{svg "octicon-code" 15}}</a> + <a href="{{$.Link}}" class="ui mini basic button poping up {{if .IsDisplayingRendered}}active{{end}}" data-content="{{.i18n.Tr "repo.file_view_rendered"}}" data-position="bottom center" data-variation="tiny inverted">{{svg "octicon-file" 15}}</a> </div> {{end}} <div class="ui buttons mr-2"> @@ -50,7 +50,7 @@ </div> {{if .Repository.CanEnableEditor}} {{if .CanEditFile}} - <a href="{{.RepoLink}}/_edit/{{EscapePound .BranchName}}/{{EscapePound .TreePath}}"><span class="btn-octicon poping up" data-content="{{.EditFileTooltip}}" data-position="bottom center" data-variation="tiny inverted">{{svg "octicon-pencil"}}</span></a> + <a href="{{.RepoLink}}/_edit/{{EscapePound .BranchName}}/{{EscapePound .TreePath}}"><span class="btn-octicon poping up" data-content="{{.EditFileTooltip}}" data-position="bottom center" data-variation="tiny inverted">{{svg "octicon-pencil"}}</span></a> {{else}} <span class="btn-octicon poping up disabled" data-content="{{.EditFileTooltip}}" data-position="bottom center" data-variation="tiny inverted">{{svg "octicon-pencil"}}</span> {{end}} |