mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
fix(core): remove unnecessary role=contentinfo from page footer on login
`<footer>` has this role initially then it is a page footer, not inside `section`/`article`, and etc. Signed-off-by: Grigorii K. Shartsev <me@shgk.me>
This commit is contained in:
parent
0e8abfd24c
commit
befec8cb3c
2 changed files with 2 additions and 2 deletions
|
|
@ -741,7 +741,7 @@ footer {
|
|||
font-weight: bold;
|
||||
}
|
||||
|
||||
&[role="contentinfo"] {
|
||||
&.guest-box {
|
||||
padding: 6px 24px;
|
||||
margin-bottom: 1rem;
|
||||
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@ p($theme->getTitle());
|
|||
</main>
|
||||
</div>
|
||||
</div>
|
||||
<footer role="contentinfo" class="guest-box">
|
||||
<footer class="guest-box">
|
||||
<p class="info">
|
||||
<?php print_unescaped($theme->getLongFooter()); ?>
|
||||
</p>
|
||||
|
|
|
|||
Loading…
Reference in a new issue