diff options
author | Cirno the Strongest <1447794+CirnoT@users.noreply.github.com> | 2020-12-16 19:22:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-16 19:22:21 +0100 |
commit | 5f55bab70ef40eb6a9b4b45685a9e94605826c03 (patch) | |
tree | 3d78e01a78c1d5d092f76df573a2720b36c248cd /web_src/less/_admin.less | |
parent | 53308de0bf6880798666a98cbc2df6c7be527f50 (diff) | |
download | gitea-5f55bab70ef40eb6a9b4b45685a9e94605826c03.tar.gz gitea-5f55bab70ef40eb6a9b4b45685a9e94605826c03.zip |
Fix webhook list styling (#14001)
* Fix webhook list styling
* As per @silverwind
Diffstat (limited to 'web_src/less/_admin.less')
-rw-r--r-- | web_src/less/_admin.less | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/web_src/less/_admin.less b/web_src/less/_admin.less index 80b7649fbe..97c8e0d5c8 100644 --- a/web_src/less/_admin.less +++ b/web_src/less/_admin.less @@ -1,4 +1,14 @@ .admin { + &.hooks .list { + > .item { + &:not(:first-child) { + border-top: 1px solid var(--color-secondary); + padding: 1rem; + margin: 15px -1rem -1rem; + } + } + } + .table.segment { padding: 0; font-size: 13px; |