Browse Source

improved css for mobile devices

drop_old_mail
Stephan Richter 3 years ago
parent
commit
20a81a7f60
  1. 2
      pom.xml
  2. 7
      static/templates/add_list.st
  3. 7
      static/templates/admin.st
  4. 7
      static/templates/archive.st
  5. 21
      static/templates/css.st
  6. 7
      static/templates/edit_list.st
  7. 1
      static/templates/frontpage.st
  8. 7
      static/templates/head.st
  9. 7
      static/templates/index.st
  10. 7
      static/templates/inspect.st
  11. 7
      static/templates/login.st
  12. 2
      static/templates/navigation.st
  13. 7
      static/templates/post.st
  14. 7
      static/templates/register.st
  15. 7
      static/templates/subscribe.st
  16. 7
      static/templates/unsubscribe.st
  17. 6
      static/templates/userinfo.st

2
pom.xml

@ -6,7 +6,7 @@ @@ -6,7 +6,7 @@
<groupId>org.example</groupId>
<artifactId>Widerhall</artifactId>
<version>0.2.49</version>
<version>0.2.50</version>
<build>
<plugins>
<plugin>

7
static/templates/add_list.st

@ -1,11 +1,6 @@ @@ -1,11 +1,6 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<script src="jquery"></script>
<script src="js"></script>
<link rel="stylesheet" href="css" />
</head>
«head()»
<body id="add_list">
«navigation()»
«userinfo()»

7
static/templates/admin.st

@ -1,11 +1,6 @@ @@ -1,11 +1,6 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<script src="jquery"></script>
<script src="js"></script>
<link rel="stylesheet" href="css" />
</head>
«head()»
<body>
«navigation()»
«userinfo()»

7
static/templates/archive.st

@ -1,11 +1,6 @@ @@ -1,11 +1,6 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<script src="jquery"></script>
<script src="js"></script>
<link rel="stylesheet" href="css" />
</head>
«head()»
<body>
«navigation()»
«userinfo()»

21
static/templates/css.st

@ -10,6 +10,7 @@ @@ -10,6 +10,7 @@
body {
font-family: osans;
margin-bottom: 50px;
}
label {
display: block;
@ -73,17 +74,21 @@ fieldset fieldset>legend { @@ -73,17 +74,21 @@ fieldset fieldset>legend {
text-align: right
}
.user{
background: lime;
color: #626262;
text-decoration: underline;
float: right;
padding: 0 5px;
}
.footer{
position: absolute;
position: fixed;
bottom: 0;
left: 0;
right: 0;
text-align: right;
margin: 5px;
margin: 0;
height: 30px;
background: #83f9ff;
}
tr:nth-child(2n),
@ -141,3 +146,13 @@ pre { @@ -141,3 +146,13 @@ pre {
border: none;
text-decoration: underline;
}
.logout{
position: absolute;
top: -5px;
right: 0;
}
nav {
margin: 10px 0;
}

7
static/templates/edit_list.st

@ -1,11 +1,6 @@ @@ -1,11 +1,6 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<script src="jquery"></script>
<script src="js"></script>
<link rel="stylesheet" href="css" />
</head>
«head()»
<body>
«navigation()»
«userinfo()»

1
static/templates/frontpage.st

@ -2,6 +2,7 @@ @@ -2,6 +2,7 @@
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="web/css" />
</head>
<body>

7
static/templates/head.st

@ -0,0 +1,7 @@ @@ -0,0 +1,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="jquery"></script>
<script src="js"></script>
<link rel="stylesheet" href="css" />
</head>

7
static/templates/index.st

@ -1,11 +1,6 @@ @@ -1,11 +1,6 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<script src="jquery"></script>
<script src="js"></script>
<link rel="stylesheet" href="css" />
</head>
«head()»
<body>
«navigation()»
«userinfo()»

7
static/templates/inspect.st

@ -1,11 +1,6 @@ @@ -1,11 +1,6 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<script src="jquery"></script>
<script src="js"></script>
<link rel="stylesheet" href="css" />
</head>
«head()»
<body>
«navigation()»
«userinfo()»

7
static/templates/login.st

@ -1,11 +1,6 @@ @@ -1,11 +1,6 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<script src="jquery"></script>
<script src="js"></script>
<link rel="stylesheet" href="css" />
</head>
«head()»
<body id="login">
«navigation()»
«messages()»

2
static/templates/navigation.st

@ -1,6 +1,8 @@ @@ -1,6 +1,8 @@
<nav>
«if(data.user)»<a class="button logout" href="logout" />Logout</a>«endif»
<a href="index">Home</a>
<a href="admin">Administration</a>
<script type="text/javascript">
if ('«data.user.permissions»'.includes('admin')){
$('<a/>',{class:'button',href:'reload'}).text('Reload templates').appendTo($('nav'));

7
static/templates/post.st

@ -1,11 +1,6 @@ @@ -1,11 +1,6 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<script src="jquery"></script>
<script src="js"></script>
<link rel="stylesheet" href="css" />
</head>
«head()»
<body>
«navigation()»
«userinfo()»

7
static/templates/register.st

@ -1,11 +1,6 @@ @@ -1,11 +1,6 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<script src="jquery"></script>
<script src="js"></script>
<link rel="stylesheet" href="css" />
</head>
«head()»
<body id="register">
«navigation()»
«userinfo()»

7
static/templates/subscribe.st

@ -1,11 +1,6 @@ @@ -1,11 +1,6 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<script src="jquery"></script>
<script src="js"></script>
<link rel="stylesheet" href="css" />
</head>
«head()»
<body id="subscribe">
«navigation()»
«userinfo()»

7
static/templates/unsubscribe.st

@ -1,11 +1,6 @@ @@ -1,11 +1,6 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<script src="jquery"></script>
<script src="js"></script>
<link rel="stylesheet" href="css" />
</head>
«head()»
<body id="subscribe">
«navigation()»
«userinfo()»

6
static/templates/userinfo.st

@ -1,7 +1,3 @@ @@ -1,7 +1,3 @@
«if(data.user)»
<div class="user">
Logged in as <em>«data.user.name»</em>
<a class="button" href="logout" />Logout</a>
</div>
<div class="user">Logged in as <em>«data.user.name»</em></div>
«endif»
Loading…
Cancel
Save