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

Issue #1661814 follow-up by mcjim: Fixed Regression: Seven's responsive...

Issue #1661814 follow-up by mcjim: Fixed Regression: Seven's responsive maintenance mode template makes installer look crappy, lost step display.
parent cd3289c3
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
...@@ -32,9 +32,14 @@ ...@@ -32,9 +32,14 @@
<div id="page"> <div id="page">
<div id="sidebar-first" class="sidebar">
<?php if ($logo): ?> <?php if ($logo): ?>
<img id="logo" src="<?php print $logo ?>" alt="<?php print $site_name ?>" /> <img id="logo" src="<?php print $logo ?>" alt="<?php print $site_name ?>" />
<?php endif; ?> <?php endif; ?>
<?php if ($sidebar_first): ?>
<?php print $sidebar_first ?>
<?php endif; ?>
</div>
<div id="content" class="clearfix"> <div id="content" class="clearfix">
<?php if ($messages): ?> <?php if ($messages): ?>
......
...@@ -169,11 +169,11 @@ div.admin-options div.form-item { ...@@ -169,11 +169,11 @@ div.admin-options div.form-item {
} }
/* Maintenance theming */ /* Maintenance theming */
body.in-maintenance #logo { body.in-maintenance #sidebar-first {
float: right; float: right;
padding: 0 0 0 20px;
} }
body.in-maintenance #content { body.in-maintenance #content {
float: left;
padding-left: 20px; padding-left: 20px;
padding-right: 0; padding-right: 0;
} }
......
...@@ -786,24 +786,29 @@ div.admin-options div.form-item { ...@@ -786,24 +786,29 @@ div.admin-options div.form-item {
} }
/* Maintenance theming */ /* Maintenance theming */
body.in-maintenance #logo { body.in-maintenance #sidebar-first {
float: left; float: left; /* LTR */
padding: 0 20px 0 0; max-width: 200px;
width: 25%;
} }
body.in-maintenance #content { body.in-maintenance #content {
padding-right: 20px; /* LTR */ float: right; /* LTR */
max-width: 550px;
clear: none; clear: none;
width: 72%;
} }
body.in-maintenance #page { body.in-maintenance #page {
overflow: auto; overflow: auto;
max-width: 730px; max-width: 770px;
margin: 0 auto; margin: 0 auto;
padding: 2em 20px 40px; padding-top: 2em;
width: 90%;
} }
body.in-maintenance #branding h1 { body.in-maintenance #branding h1 {
max-width: 730px; max-width: 770px;
margin: 0 auto; margin: 0 auto;
float: none; float: none;
width: 90%;
} }
body.in-maintenance .form-radios .form-type-radio { body.in-maintenance .form-radios .form-type-radio {
padding: 2px 0; padding: 2px 0;
...@@ -820,6 +825,14 @@ body.in-maintenance #logo { ...@@ -820,6 +825,14 @@ body.in-maintenance #logo {
margin-bottom: 1.5em; margin-bottom: 1.5em;
max-width: 180px; max-width: 180px;
} }
@media all and (max-width: 768px) {
body.in-maintenance #sidebar-first,
body.in-maintenance #content {
float: left;
max-width: none;
width: auto;
}
}
ol.task-list { ol.task-list {
margin-left: 0; /* LTR */ margin-left: 0; /* LTR */
list-style-type: none; list-style-type: none;
...@@ -838,6 +851,11 @@ ol.task-list li.done { ...@@ -838,6 +851,11 @@ ol.task-list li.done {
background: transparent url(images/task-check.png) no-repeat 0 50%; background: transparent url(images/task-check.png) no-repeat 0 50%;
color: green; color: green;
} }
@media all and (max-width: 768px) {
ol.task-list li {
float: left;
}
}
/* Overlay theming */ /* Overlay theming */
.overlay #branding { .overlay #branding {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment