diff --git a/core/includes/menu.inc b/core/includes/menu.inc index 2cbd459..2e2c50d 100644 --- a/core/includes/menu.inc +++ b/core/includes/menu.inc @@ -2188,28 +2188,6 @@ function menu_local_tabs() { } /** - * Returns a renderable element for the primary tabs. - */ -function menu_local_primary_tabs() { - $build = array( - '#theme' => 'menu_local_tasks', - '#primary' => menu_primary_local_tasks(), - ); - return !empty($build['#primary']) || !empty($build['#secondary']) ? $build : array(); -} - -/** - * Returns a renderable element for the secondary tabs. - */ -function menu_local_secondary_tabs() { - $build = array( - '#theme' => 'menu_local_tasks', - '#secondary' => menu_secondary_local_tasks(), - ); - return !empty($build['#primary']) || !empty($build['#secondary']) ? $build : array(); -} - -/** * Returns HTML for primary and secondary local tasks. * * @param $variables diff --git a/core/themes/seven/install-page.css b/core/themes/seven/install-page.css index 42d3ea2..91cb251 100644 --- a/core/themes/seven/install-page.css +++ b/core/themes/seven/install-page.css @@ -46,6 +46,7 @@ body.install-page { width: 75%; border-radius: 5px; box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); + padding: 20px 0 40px 0; } body.install-page #content { -webkit-box-sizing: border-box; diff --git a/core/themes/seven/style.css b/core/themes/seven/style.css index 66b1494..4a63c1e 100644 --- a/core/themes/seven/style.css +++ b/core/themes/seven/style.css @@ -468,7 +468,12 @@ li.tabs__tab a { [dir="rtl"] .is-horizontal .tabs.primary .tabs__tab:last-child { border-radius: 4px 0 0 0; } -.is-horizontal .tabs__tab.active { + +/* Override the states above */ +.is-horizontal .tabs__tab.active, +.is-horizontal .tabs.primary .tabs__tab.active, +[dir="rtl"] .is-horizontal .tabs.primary .tabs__tab.active { + border-radius: 4px 4px 0 0; position: relative; width: auto; top: 0;