mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-16 16:00:17 +02:00
Fixed index page for firefox
This commit is contained in:
parent
d078690015
commit
392c752eb8
@ -19,7 +19,7 @@ class ForumManager:
|
|||||||
|
|
||||||
SQL_GET_GROUP_ID = r"SELECT group_id from phpbb_groups WHERE group_name = %s"
|
SQL_GET_GROUP_ID = r"SELECT group_id from phpbb_groups WHERE group_name = %s"
|
||||||
|
|
||||||
SQL_ADD_GROUP = r"INSERT INTO phpbb_groups (group_name,group_desc) VALUES (%s,%s)"
|
SQL_ADD_GROUP = r"INSERT INTO phpbb_groups (group_name,group_desc,group_legend) VALUES (%s,%s,0)"
|
||||||
|
|
||||||
SQL_UPDATE_USER_PASSWORD = r"UPDATE phpbb_users SET user_password = %s WHERE username = %s"
|
SQL_UPDATE_USER_PASSWORD = r"UPDATE phpbb_users SET user_password = %s WHERE username = %s"
|
||||||
|
|
||||||
|
@ -1,21 +1,23 @@
|
|||||||
{% load staticfiles %}
|
{% load staticfiles %}
|
||||||
<style>
|
<style>
|
||||||
body {
|
html {
|
||||||
background: url('{% static 'img/index_images/index_bg.jpg' %}') no-repeat scroll;
|
background: url("{% static 'img/index_images/index_bg.jpg' %}") no-repeat center center fixed;
|
||||||
background-size: 100% 100%;
|
-webkit-background-size: cover;
|
||||||
|
-moz-background-size: cover;
|
||||||
|
-o-background-size: cover;
|
||||||
|
background-size: cover;
|
||||||
}
|
}
|
||||||
|
|
||||||
div {
|
div {
|
||||||
height: 200px;
|
height: 200px;
|
||||||
width: 400px;
|
width: 400px;
|
||||||
|
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 60%;
|
top: 60%;
|
||||||
left: 50%;
|
left: 50%;
|
||||||
margin-top: -100px;
|
margin-top: -100px;
|
||||||
margin-left: -200px;
|
margin-left: -200px;
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<html>
|
<html>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user