[fix] css display with baggy theme

This commit is contained in:
Nicolas Lœuillet 2014-02-19 15:20:13 +01:00
parent aad8fbab09
commit f37891fdb6
2 changed files with 6 additions and 6 deletions

View file

@ -172,7 +172,7 @@ else if ($_POST['install']) {
<li><a href="http://www.wallabag.org/">wallabag.org</a></li> <li><a href="http://www.wallabag.org/">wallabag.org</a></li>
</ul> </ul>
<?php if (!empty($errors)) : ?> <?php if (!empty($errors)) : ?>
<div class='messages error'> <div class='install messages error'>
<p>Errors during installation:</p> <p>Errors during installation:</p>
<p> <p>
<ul> <ul>
@ -185,7 +185,7 @@ else if ($_POST['install']) {
</div> </div>
<?php endif; ?> <?php endif; ?>
<?php if (!empty($successes)) : ?> <?php if (!empty($successes)) : ?>
<div class='messages success'> <div class='install messages success'>
<p> <p>
<ul> <ul>
<?php foreach($successes as $success) :?> <?php foreach($successes as $success) :?>
@ -201,7 +201,7 @@ else if ($_POST['install']) {
<fieldset> <fieldset>
<legend><strong>Technical settings</strong></legend> <legend><strong>Technical settings</strong></legend>
<?php if (!is_dir('vendor')) : ?> <?php if (!is_dir('vendor')) : ?>
<div class='messages notice'>wallabag needs twig, a template engine (<a href="http://twig.sensiolabs.org/">?</a>). Two ways to install it: <div class='install messages notice'>wallabag needs twig, a template engine (<a href="http://twig.sensiolabs.org/">?</a>). Two ways to install it:
<ul> <ul>
<li>automatically download and extract vendor.zip into your wallabag folder. <li>automatically download and extract vendor.zip into your wallabag folder.
<p><input type="submit" name="download" value="Download vendor.zip" /></p> <p><input type="submit" name="download" value="Download vendor.zip" /></p>

View file

@ -1,18 +1,18 @@
.messages.error { .install .messages.error {
border: 1px solid #c42608; border: 1px solid #c42608;
color: #c00 !important; color: #c00 !important;
background: #fff0ef; background: #fff0ef;
text-align: left; text-align: left;
} }
.messages.notice { .install .messages.notice {
border: 1px solid #ebcd41; border: 1px solid #ebcd41;
color: #000; color: #000;
background: #fffcd3; background: #fffcd3;
text-align: left; text-align: left;
} }
.messages.success { .install .messages.success {
border: 1px solid #6dc70c; border: 1px solid #6dc70c;
background: #e0fbcc; background: #e0fbcc;
text-align: left; text-align: left;