diff options
author | Spencer Taylor <smtaylorslc@gmail.com> | 2020-10-06 01:25:43 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-06 02:25:43 -0400 |
commit | 6eea301829eaddba8f64a821374996b2b41317fc (patch) | |
tree | 492858c49a365a0f41b9a7a49fb9f9b0d1a42c0a /web_src | |
parent | df4bbcd235cec8708cd0cbdd9bcbdd00f5db4fd5 (diff) | |
download | gitea-6eea301829eaddba8f64a821374996b2b41317fc.tar.gz gitea-6eea301829eaddba8f64a821374996b2b41317fc.zip |
Adding visual cue for "Limited" & "Private" organizations. (#13040)
* Adding visual cue for "Limited" & "Private" organizations.
* Moving org visibility CSS styles to .less files.
Co-authored-by: Gitea <gitea@fake.local>
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Diffstat (limited to 'web_src')
-rw-r--r-- | web_src/less/_dashboard.less | 3 | ||||
-rw-r--r-- | web_src/less/_organization.less | 9 |
2 files changed, 11 insertions, 1 deletions
diff --git a/web_src/less/_dashboard.less b/web_src/less/_dashboard.less index 318e9934a3..3ccbff5c9b 100644 --- a/web_src/less/_dashboard.less +++ b/web_src/less/_dashboard.less @@ -74,6 +74,9 @@ .dashboard-navbar { width: 100vw; padding: 0 .5rem; + .org-visibility .label { + margin-left: 5px; + } } } diff --git a/web_src/less/_organization.less b/web_src/less/_organization.less index 1010b7a911..11b53a4cf1 100644 --- a/web_src/less/_organization.less +++ b/web_src/less/_organization.less @@ -8,7 +8,10 @@ font-size: 1.6rem; margin-left: 15px; } - + .org-visibility .label { + margin-left: 5px; + margin-top: 5px; + } .ui.right { margin-top: 5px; } @@ -43,6 +46,10 @@ .ui.header { font-size: 36px; margin-bottom: 0; + .org-visibility .label { + margin-left: 5px; + margin-top: 2px; + } } .desc { |