diff options
author | qwerty287 <80460567+qwerty287@users.noreply.github.com> | 2022-10-09 14:07:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-09 20:07:41 +0800 |
commit | a813c9d8f3862fec934ff657fb4e490530167183 (patch) | |
tree | 877ca996565a94fa0f22d53e9e737dfd47ba8077 /web_src | |
parent | 97f3f1988b2b544350f58aa8b49cb958bb4da5b5 (diff) | |
download | gitea-a813c9d8f3862fec934ff657fb4e490530167183.tar.gz gitea-a813c9d8f3862fec934ff657fb4e490530167183.zip |
Allow creation of OAuth2 applications for orgs (#18084)
Adds the settings pages to create OAuth2 apps also to the org settings
and allows to create apps for orgs.
Refactoring: the oauth2 related templates are shared for
instance-wide/org/user, and the backend code uses `OAuth2CommonHandlers`
to share code for instance-wide/org/user.
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
Diffstat (limited to 'web_src')
-rw-r--r-- | web_src/less/_base.less | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/web_src/less/_base.less b/web_src/less/_base.less index 41b145ac7d..fdc235164e 100644 --- a/web_src/less/_base.less +++ b/web_src/less/_base.less @@ -1804,7 +1804,9 @@ a.ui.label:hover { border: 1px solid var(--color-light-border); color: var(--color-text); } - +.ui.tertiary.button { + border: none; +} .page-content .ui.button { box-shadow: none !important; } |