You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gitea/templates/user/settings
wxiaoguang 389e83f7eb
Improve `<SvgIcon>` to make it output `svg` node and optimize performance (#23570)
Before, the Vue `<SvgIcon>` always outputs DOM nodes like: 

```html
<span class="outer-class">
    <svg class="class-name-defined" ...></svg>
</span>
```

The `span` is redundant and I guess such layout and the inconsistent
`class/class-name` attributes would cause bugs sooner or later.

This PR makes the `<SvgIcon>` clear, and it's faster than before,
because it doesn't need to parse the whole SVG string.

Before: 

<details>

![image](https://user-images.githubusercontent.com/2114189/226156474-ce2c57cd-b869-486a-b75b-1eebdac8cdf7.png)

</details>

After:

![image](https://user-images.githubusercontent.com/2114189/226155774-108f49ed-7512-40c3-94a2-a6e8da18063d.png)

---------

Co-authored-by: silverwind <me@silverwind.io>
2 years ago
..
security Convert `<div class="button">` to `<button class="button">` (#23337) 2 years ago
account.tmpl Convert `<div class="button">` to `<button class="button">` (#23337) 2 years ago
appearance.tmpl Add main landmark to templates and adjust titles (#22670) 2 years ago
applications.tmpl Convert `<div class="button">` to `<button class="button">` (#23337) 2 years ago
applications_oauth2.tmpl Allow creation of OAuth2 applications for orgs (#18084) 2 years ago
applications_oauth2_edit.tmpl Add main landmark to templates and adjust titles (#22670) 2 years ago
applications_oauth2_edit_form.tmpl Record OAuth client type at registration (#21316) 2 years ago
applications_oauth2_list.tmpl Move helpers to be prefixed with `gt-` (#22879) 2 years ago
grants_oauth2.tmpl Move helpers to be prefixed with `gt-` (#22879) 2 years ago
hook_new.tmpl Add user webhooks (#21563) 2 years ago
hooks.tmpl Add user webhooks (#21563) 2 years ago
keys.tmpl Add main landmark to templates and adjust titles (#22670) 2 years ago
keys_gpg.tmpl Improve `<SvgIcon>` to make it output `svg` node and optimize performance (#23570) 2 years ago
keys_principal.tmpl Convert `<div class="button">` to `<button class="button">` (#23337) 2 years ago
keys_ssh.tmpl Improve `<SvgIcon>` to make it output `svg` node and optimize performance (#23570) 2 years ago
navbar.tmpl Add user webhooks (#21563) 2 years ago
organization.tmpl Add context cache as a request level cache (#22294) 2 years ago
packages.tmpl Add Chef package registry (#22554) 2 years ago
packages_cleanup_rules_edit.tmpl Add main landmark to templates and adjust titles (#22670) 2 years ago
packages_cleanup_rules_preview.tmpl Add main landmark to templates and adjust titles (#22670) 2 years ago
profile.tmpl Refactor hiding-methods, remove jQuery show/hide, remove `.hide` class, remove inline style=display:none (#22950) 2 years ago
repos.tmpl Fix `.locale.Tr` function not found in delete modal (#23468) 2 years ago
secrets.tmpl Add user secrets (#22191) 2 years ago