diff options
author | JakobDev <jakobdev@gmx.de> | 2023-07-25 10:26:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-25 08:26:27 +0000 |
commit | 6598d0291cf7dfeb00cb5e5d18faf2bf46fad596 (patch) | |
tree | 00fda6f81294ac7c203836581ca25b3a41df819d /web_src | |
parent | af1ffbcd63569df8646b20c524378f25710f129e (diff) | |
download | gitea-6598d0291cf7dfeb00cb5e5d18faf2bf46fad596.tar.gz gitea-6598d0291cf7dfeb00cb5e5d18faf2bf46fad596.zip |
Allow Organisations to have a E-Mail (#25082)
Resolves #25057
This adds a E-Mail field to Organisations. The E-Mail is just shown on
the Profile when it is visited by a logged in User. The E-mail is not
used for something else.
**Screenshots:**
![grafik](https://github.com/go-gitea/gitea/assets/15185051/a8d622b3-7278-4c08-984b-9c5ebfdb5471)
![grafik](https://github.com/go-gitea/gitea/assets/15185051/6dcb1dd7-d04b-49eb-bc96-6582cfe9757b)
---------
Co-authored-by: Denys Konovalov <kontakt@denyskon.de>
Co-authored-by: Denys Konovalov <privat@denyskon.de>
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
Co-authored-by: Giteabot <teabot@gitea.io>
Diffstat (limited to 'web_src')
-rw-r--r-- | web_src/css/org.css | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/web_src/css/org.css b/web_src/css/org.css index d579443ce1..9e1fa38941 100644 --- a/web_src/css/org.css +++ b/web_src/css/org.css @@ -118,13 +118,11 @@ margin-bottom: 10px; } -.organization.profile #org-info .meta .item { - display: inline-block; - margin-right: 10px; -} - -.organization.profile #org-info .meta .item .icon { - margin-right: 5px; +.organization.profile #org-info .meta { + display: flex; + align-items: center; + flex-wrap: wrap; + gap: 8px; } .organization.profile .ui.top.header .ui.right { |