Skip to content
Snippets Groups Projects
Commit 17461de7 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2346791 by rpayanm, Palashvijay4 | thamas: Remove id selectors from...

Issue #2346791 by rpayanm, Palashvijay4 | thamas: Remove id selectors from page template of Seven  .
parent 49eea514
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
/**
* Help.
*/
#help {
.help {
font-size: 0.923em;
}
#help p {
.help p {
margin: 0 0 10px;
}
#help div.more-help-link {
.help div.more-help-link {
text-align: right; /* LTR */
}
[dir="rtl"] #help div.more-help-link {
[dir="rtl"] .help div.more-help-link {
text-align: left;
}
......@@ -39,6 +39,6 @@
/**
* Add spacing to bottom of pages
*/
#content {
.page-content {
margin-bottom: 80px;
}
......@@ -80,11 +80,11 @@
{{ breadcrumb }}
<main id="content" class="clearfix" role="main">
<main class="page-content clearfix" role="main">
<div class="visually-hidden"><a id="main-content" tabindex="-1"></a></div>
{{ messages }}
{% if page.help %}
<div id="help">
<div class="help">
{{ page.help }}
</div>
{% endif %}
......@@ -96,7 +96,7 @@
{{ page.content }}
</main>
{% if feed_icons %}
<footer id="footer" role="contentinfo" class="layout-column">
<footer role="contentinfo" class="footer layout-column">
{{ feed_icons }}
</footer>
{% endif %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment