diff options
author | André Jaenisch <Ryuno-Ki@users.noreply.github.com> | 2022-06-07 18:25:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-07 12:25:40 -0400 |
commit | 81cf006863cb854609b09fd9f43189e2cab26b81 (patch) | |
tree | 3c999d3dc2d1c4d4aef33e33cbb1a3834fd552f2 /templates/user | |
parent | 5ab2dcb61362987df890666422b90ddcacfa38cb (diff) | |
download | gitea-81cf006863cb854609b09fd9f43189e2cab26b81.tar.gz gitea-81cf006863cb854609b09fd9f43189e2cab26b81.zip |
Improve UX on modal for deleting an access token (#19894)
* Improve UX on modal for deleting an access token
Before, both action buttons where coloured on hover. Otherwise they
appeared as ghost buttons. UX tells us, that call to action must not
be displayed as ghost button.
Using red is perceived as warning colour in Western cultures. It was
used for the non-destructive action before. This PR swaps the colour
and turns the cancel button into a filled one, so it is saver to do
nothing then to accidentally delete an access button. We want the
person to do this consciously.
In another iteration the wording here could be improved. See the
associated issue for further details.
Signed-off-by: André Jaenisch <andre.jaenisch@posteo.de>
* Use tabs instead of spaces.
Linter does not complain anymore. I was expecting the formatter to pick
this up but it didn't.
Signed-off-by: André Jaenisch <andre.jaenisch@posteo.de>
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Diffstat (limited to 'templates/user')
-rw-r--r-- | templates/user/settings/applications.tmpl | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/templates/user/settings/applications.tmpl b/templates/user/settings/applications.tmpl index 811ce5d643..6386eb3391 100644 --- a/templates/user/settings/applications.tmpl +++ b/templates/user/settings/applications.tmpl @@ -23,7 +23,7 @@ <div class="content"> <strong>{{.Name}}</strong> <div class="activity meta"> - <i>{{$.i18n.Tr "settings.add_on"}} <span>{{.CreatedUnix.FormatShort}}</span> — {{svg "octicon-info"}} {{if .HasUsed}}{{$.i18n.Tr "settings.last_used"}} <span {{if .HasRecentActivity}}class="green"{{end}}>{{.UpdatedUnix.FormatShort}}</span>{{else}}{{$.i18n.Tr "settings.no_activity"}}{{end}}</i> + <i>{{$.i18n.Tr "settings.add_on"}} <span>{{.CreatedUnix.FormatShort}}</span> — {{svg "octicon-info"}} {{if .HasUsed}}{{$.i18n.Tr "settings.last_used"}} <span {{if .HasRecentActivity}}class="green"{{end}}>{{.UpdatedUnix.FormatShort}}</span>{{else}}{{$.i18n.Tr "settings.no_activity"}}{{end}}</i> </div> </div> </div> @@ -55,6 +55,12 @@ </div> <div class="ui small basic delete modal" id="delete-token"> + {{/* + The wording here is a bit confusing. + The action asks for deleting an access token. + Confirming is therefore the destructive option and + should be deemphasized because it cannot be undone. + */}} <div class="ui icon header"> {{svg "octicon-trash"}} {{.i18n.Tr "settings.access_token_deletion"}} @@ -63,11 +69,11 @@ <p>{{.i18n.Tr "settings.access_token_deletion_desc"}}</p> </div> <div class="actions"> - <div class="ui red basic inverted cancel button"> + <div class="ui cancel button"> <i class="remove icon"></i> {{.i18n.Tr "modal.no"}} </div> - <div class="ui green basic inverted ok button"> + <div class="ui red basic inverted ok button"> <i class="checkmark icon"></i> {{.i18n.Tr "modal.yes"}} </div> |