Somehow fix paging ui.
This commit is contained in:
parent
3f0246f7a2
commit
19670291a2
|
@ -279,7 +279,9 @@
|
||||||
?>
|
?>
|
||||||
</section>
|
</section>
|
||||||
<footer>
|
<footer>
|
||||||
|
<div class="footright">
|
||||||
<a class="fancyabout" href="<?php if ($config['cops_use_fancyapps'] == 1) { echo "about.xml"; } else { echo $_SERVER["SCRIPT_NAME"] . str_replace ("&", "&", addURLParameter ("?page=16", DB, $database)); } ?>"><img src="<?php echo getUrlWithVersion("images/info.png") ?>" alt="<?php echo localize ("about.title") ?>" /></a>
|
<a class="fancyabout" href="<?php if ($config['cops_use_fancyapps'] == 1) { echo "about.xml"; } else { echo $_SERVER["SCRIPT_NAME"] . str_replace ("&", "&", addURLParameter ("?page=16", DB, $database)); } ?>"><img src="<?php echo getUrlWithVersion("images/info.png") ?>" alt="<?php echo localize ("about.title") ?>" /></a>
|
||||||
|
</div>
|
||||||
<?php
|
<?php
|
||||||
if ($currentPage->isPaginated ()) {
|
if ($currentPage->isPaginated ()) {
|
||||||
?>
|
?>
|
||||||
|
|
24
style.css
24
style.css
|
@ -189,14 +189,34 @@ max-width:800px;
|
||||||
footer
|
footer
|
||||||
{
|
{
|
||||||
clear:both;
|
clear:both;
|
||||||
|
color:white;
|
||||||
box-shadow:inset 0px 5px 8px #000000;
|
box-shadow:inset 0px 5px 8px #000000;
|
||||||
border-radius: 0px 0px 10px 10px;
|
border-radius: 0px 0px 10px 10px;
|
||||||
height:32px;
|
height:32px;
|
||||||
}
|
}
|
||||||
|
|
||||||
footer a{
|
.footright
|
||||||
float: right;
|
{
|
||||||
|
float:right;
|
||||||
|
height:32px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.footcenter
|
||||||
|
{
|
||||||
|
margin:auto;
|
||||||
|
text-align:center;
|
||||||
|
height:32px;
|
||||||
|
display:table;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footcenter p, .footcenter a
|
||||||
|
{
|
||||||
|
display: table-cell;
|
||||||
|
vertical-align: middle;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
/* =============================================================================
|
/* =============================================================================
|
||||||
Aside stuff goes here
|
Aside stuff goes here
|
||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
|
Loading…
Reference in a new issue