Skip to content
Snippets Groups Projects
Commit 3b8e8ff6 authored by Angie Byron's avatar Angie Byron
Browse files

#875132 follow-up by seutje, sun, Jacine: Better method of preventing...

#875132 follow-up by seutje, sun, Jacine: Better method of preventing contextual links from cutting off in footer.
parent d35abf8f
Branches
Tags
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
......@@ -9,7 +9,6 @@
}
.contextual-links-region-active {
outline: #999 dashed 1px;
overflow: visible !important;
}
/**
......
......@@ -755,11 +755,13 @@ ul.links {
padding: 0;
border: none;
}
#footer .block,
#footer .block .content {
overflow: hidden;
#footer .block {
margin: .5em 0;
}
#footer .block .content {
padding: .5em 0;
margin-top: 0;
}
#footer .block h2 {
margin: 0;
}
......
......@@ -108,3 +108,10 @@ function bartik_preprocess_block(&$variables) {
$variables['title_attributes_array']['class'][] = 'element-invisible';
}
}
/**
* Implements theme_menu_tree().
*/
function bartik_menu_tree($variables) {
return '<ul class="menu clearfix">' . $variables['tree'] . '</ul>';
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment