diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2022-10-22 11:44:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-22 11:44:41 +0200 |
commit | 7c152acb2cc545a87610de349a94e14f45fbed5d (patch) | |
tree | 1f698c5ffb954b000cb0779de5a2bf25884779c0 /app/views/layouts | |
parent | abf6c87ee8b57e09dca5f5b1fe1839a314e1aa46 (diff) |
Change settings area to be separated into categories in admin UI (#19407)
And update all descriptions
Diffstat (limited to 'app/views/layouts')
-rw-r--r-- | app/views/layouts/admin.html.haml | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/app/views/layouts/admin.html.haml b/app/views/layouts/admin.html.haml index e577b9803..59021ad88 100644 --- a/app/views/layouts/admin.html.haml +++ b/app/views/layouts/admin.html.haml @@ -22,15 +22,16 @@ .content-wrapper .content - .content-heading + .content__heading - if content_for?(:heading) = yield :heading - else - %h2= yield :page_title + .content__heading__row + %h2= yield :page_title - - if :heading_actions - .content-heading-actions - = yield :heading_actions + - if content_for?(:heading_actions) + .content__heading__actions + = yield :heading_actions = render 'application/flashes' |