mirror of
https://github.com/moparisthebest/wallabag
synced 2024-11-30 04:42:19 -05:00
Externalize top link style
This commit is contained in:
parent
a4990dd294
commit
8e1ed353bb
@ -9,4 +9,4 @@
|
|||||||
<link rel="stylesheet" href="./tpl/css/print.css" media="print">
|
<link rel="stylesheet" href="./tpl/css/print.css" media="print">
|
||||||
<link href='//fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
|
<link href='//fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
|
||||||
<script src="./tpl/js/jquery-2.0.3.min.js"></script>
|
<script src="./tpl/js/jquery-2.0.3.min.js"></script>
|
||||||
<script type="text/javascript">$(document).ready(function(){$("body").prepend('<a href="#top" class="top_link" title="{% trans "back to top" %}"><img src="./tpl/img/{{ constant("THEME") }}/backtotop.png" alt={% trans "back to top" %}"/></a>');$(".top_link").css({position:"fixed",right:"15px",bottom:"15px",display:"none",padding:"20px",background:"#ccc","-moz-border-radius":"40px","-webkit-border-radius":"40px","border-radius":"40px",opacity:"0.9","z-index":"2000"});$(window).scroll(function(){posScroll=$(document).scrollTop();if(posScroll>=400)$(".top_link").fadeIn(600);else $(".top_link").fadeOut(600)})})</script>
|
<script type="text/javascript">$(document).ready(function(){$("body").prepend('<a href="#top" class="top_link" title="{% trans "back to top" %}"><img src="./tpl/img/{{ constant("THEME") }}/backtotop.png" alt={% trans "back to top" %}"/></a>');$(window).scroll(function(){posScroll=$(document).scrollTop();if(posScroll>=400)$(".top_link").fadeIn(600);else $(".top_link").fadeOut(600)})})</script>
|
@ -236,6 +236,20 @@ a, a:hover, a:visited {
|
|||||||
cursor: move;
|
cursor: move;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.top_link {
|
||||||
|
position: fixed;
|
||||||
|
right: 15px;
|
||||||
|
bottom: 15px;
|
||||||
|
display: none;
|
||||||
|
padding: 20px;
|
||||||
|
background: #ccc;
|
||||||
|
-moz-border-radius: 40px;
|
||||||
|
-webkit-border-radius: 40px;
|
||||||
|
border-radius: 40px;
|
||||||
|
opacity: 0.9;
|
||||||
|
z-index: 2000;
|
||||||
|
}
|
||||||
|
|
||||||
footer {
|
footer {
|
||||||
clear: both;
|
clear: both;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user