1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-25 17:41:25 +02:00

[ticket/17459] Add to top button to FAQ

PHPBB-17459
This commit is contained in:
Marc Alexander
2024-11-03 19:51:50 +01:00
parent 2d392791ad
commit 14d889f74f
4 changed files with 53 additions and 4 deletions

View File

@@ -83,6 +83,15 @@ th a:hover {
color: #9e9e9e;
}
.to-top-button {
background-color: #0f4d8a;
opacity: 0.7;
}
.to-top-button a {
color: #e6f7ff;
}
/* arrow links */
.arrow-left:hover,
.arrow-right:hover {

View File

@@ -153,7 +153,22 @@ a.lastsubject:hover {
.top {
font-size: 14px;
text-decoration: none;
margin-top: 10px;
margin-top: 12px;
}
.to-top-button {
position: fixed;
right: 24px;
bottom: 24px;
inline-size: 48px;
block-size: 48px;
border-radius: 50%;
display: none;
}
.to-top-button .o-icon {
font-size: 32px;
padding: 8px;
}
/* Back to top of page */