1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-23 23:20:57 +01:00

attention bar: cleanup stylesheets

This commit is contained in:
Marcin Łabanowski 2012-12-24 03:39:47 +01:00
parent 260415fb5f
commit dc40c2c845
2 changed files with 24 additions and 7 deletions

View File

@ -432,3 +432,24 @@ table.mod.config-editor input[type="text"] {
text-indent: 0px; text-indent: 0px;
background: inherit; background: inherit;
} }
#attention_bar {
height: 1.5em;
width: 100%;
text-align: center;
}
#attention_bar_form {
display: none;
padding: 0;
margin: 0;
}
#attention_bar_input {
width: 100%;
padding: 0;
margin: 0;
text-align: center;
}
#attention_bar:hover {
background-color: #fff;
opacity: 0.8;
}

View File

@ -1,10 +1,6 @@
{% if config.attention_bar %} {% if config.attention_bar %}
<div id="attention_bar" style="height: 1.5em; width: 100%; padding: 0; margin: 0; text-align: center; display: block;></div> <div id="attention_bar"></div>
<form method="post" action="/attentionbar.php" id="attention_bar_form" style="display: none; padding: 0; margin: 0;"> <form method="post" action="{{ config.root }}attentionbar.php" id="attention_bar_form">
<input id="attention_bar_input" name="text" style="width: 100%; padding: 0; margin: 0; text-align: center;" value="" type="text"> <input id="attention_bar_input" name="text" value="" type="text">
</form> </form>
<style>
#attention_bar:hover { background-color: #fff; opacity: 0.8; }
</style>
<script type="text/javascript" src="/js/attention-bar.js"></script>
{% endif %} {% endif %}