aboutsummaryrefslogtreecommitdiffstats
path: root/templates/user/notification/notification_div.tmpl
diff options
context:
space:
mode:
authorwxiaoguang <wxiaoguang@gmail.com>2023-05-12 22:58:44 +0800
committerGitHub <noreply@github.com>2023-05-12 14:58:44 +0000
commitec8ea58dbe31e3d483b358ca725ca243851bdf29 (patch)
treec3567a6df9bcb5378c641a5e6bed5979b1ab85e6 /templates/user/notification/notification_div.tmpl
parentbfa0fc2c989b662cea2f171ae345b0d4e358fdf1 (diff)
downloadgitea-ec8ea58dbe31e3d483b358ca725ca243851bdf29.tar.gz
gitea-ec8ea58dbe31e3d483b358ca725ca243851bdf29.zip
Rename ".button-link" to ".button-ghost" (#24670)
Mainstream frameworks: * https://getbootstrap.com/docs/5.0/components/buttons/ * https://primer.style/css/components/buttons#link-button * https://nextui.org/docs/components/button#light * https://coreui.io/react/docs/components/button/ * https://design-system.hpe.design/components/button * https://chakra-ui.com/docs/components/button/usage#button-variants * https://mui.com/material-ui/react-button/ All (at least most?) of them make "link" button have "underline" when hovering. So, a "link" is a "link", when it's hovered, it should have the underline by default. To be strict, Gitea's "button-link" is not link-style, so it needs a better name. Actually, for the "plain" button, there are some different approaches: * Some frameworks just make "default" button as no style (not feasible in Gitea/Fomantic UI) * Primer uses "btn-invisible", which is not a proper word * NextUI uses "light", which is not a proper word, either ... * CoreUI / ChakraUI uses "ghost", I think this name is acceptable. Welcome to suggest better name for such button. Or, we just call it ".button-plain" or ".button-simple", in fact I prefer such simple and clear name.
Diffstat (limited to 'templates/user/notification/notification_div.tmpl')
-rw-r--r--templates/user/notification/notification_div.tmpl6
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/user/notification/notification_div.tmpl b/templates/user/notification/notification_div.tmpl
index 6047f34580..6693b2e57d 100644
--- a/templates/user/notification/notification_div.tmpl
+++ b/templates/user/notification/notification_div.tmpl
@@ -82,7 +82,7 @@
{{$.CsrfTokenHtml}}
<input type="hidden" name="notification_id" value="{{.ID}}">
<input type="hidden" name="status" value="pinned">
- <button class="ui mini button button-link" title='{{$.locale.Tr "notification.pin"}}'
+ <button class="ui mini button button-ghost" title='{{$.locale.Tr "notification.pin"}}'
data-url="{{AppSubUrl}}/notifications/status"
data-status="pinned"
data-page="{{$.Page.Paginater.Current}}"
@@ -100,7 +100,7 @@
<input type="hidden" name="notification_id" value="{{.ID}}">
<input type="hidden" name="status" value="read">
<input type="hidden" name="page" value="{{$.Page.Paginater.Current}}">
- <button class="ui mini button button-link" title='{{$.locale.Tr "notification.mark_as_read"}}'
+ <button class="ui mini button button-ghost" title='{{$.locale.Tr "notification.mark_as_read"}}'
data-url="{{AppSubUrl}}/notifications/status"
data-status="read"
data-page="{{$.Page.Paginater.Current}}"
@@ -115,7 +115,7 @@
<input type="hidden" name="notification_id" value="{{.ID}}">
<input type="hidden" name="status" value="unread">
<input type="hidden" name="page" value="{{$.Page.Paginater.Current}}">
- <button class="ui mini button button-link" title='{{$.locale.Tr "notification.mark_as_unread"}}'
+ <button class="ui mini button button-ghost" title='{{$.locale.Tr "notification.mark_as_unread"}}'
data-url="{{AppSubUrl}}/notifications/status"
data-status="unread"
data-page="{{$.Page.Paginater.Current}}"