Skip to content

Commit 3ed8d12

Browse files
committed
Frontend
1 parent 1336ddd commit 3ed8d12

File tree

3 files changed

+47
-2
lines changed

3 files changed

+47
-2
lines changed

pom.xml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,10 +168,16 @@
168168
<artifactId>hibernate-search-engine</artifactId>
169169
<version>${hibernate-search.version}</version>
170170
</dependency>
171+
<dependency>
172+
<groupId>org.hibernate</groupId>
173+
<artifactId>hibernate-search-testing</artifactId>
174+
<version>${hibernate-search.version}</version>
175+
<scope>test</scope>
176+
</dependency>
171177
<dependency>
172178
<groupId>org.apache.lucene</groupId>
173179
<artifactId>lucene-core</artifactId>
174-
<version>5.5.5</version>
180+
<version>7.1.0</version>
175181
</dependency>
176182

177183
<dependency>
@@ -304,7 +310,7 @@
304310
<dependency>
305311
<groupId>org.springframework.security</groupId>
306312
<artifactId>spring-security-core</artifactId>
307-
<version>5.1.4.RELEASE</version>
313+
<version>5.1.5.RELEASE</version>
308314
</dependency>
309315
<dependency>
310316
<groupId>org.springframework.boot</groupId>

src/main/resources/static/css/main.css

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,22 @@ html {
77
body {
88
padding-top: 3.5rem;
99
padding-bottom: 3.5rem;
10+
font-family: "Roboto",sans-serif;
11+
line-height: 1.5;
1012
}
1113

14+
h1,h2,h3,h4,h5,h6 {
15+
margin:2em 0 0.5em;
16+
line-height:1.2;
17+
font-family:"Roboto",sans-serif;
18+
font-weight:bold
19+
}
20+
21+
tt,code,kbd,samp,pre{
22+
font-family:"Roboto Mono",monospace
23+
}
24+
25+
1226
.jumbotron {
1327
border-radius: 0 !important;
1428
}

src/main/resources/templates/layout/page.html

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,31 @@
1010
<meta http-equiv="Pragma" content="no-cache" />
1111
<meta http-equiv="content-type" content="text/html; charset=utf-8">
1212
<meta http-equiv="refresh" content="25" th:if="${refreshMessages}">
13+
<meta name="author" content="Thomas Woehlke">
14+
<meta name="description" content="Your Todo-List for Getting Things Done.">
15+
<link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.css" />
16+
<script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script>
17+
<script>
18+
window.addEventListener("load", function(){
19+
window.cookieconsent.initialise({
20+
"palette": {
21+
"popup": {
22+
"background": "#000000"
23+
},
24+
"button": {
25+
"background": "transparent",
26+
"border": "#ffffff",
27+
"text": "#ffffff"
28+
}
29+
},
30+
"content": {
31+
"link": "Read the Privacy Policy",
32+
"href": "/privacy"
33+
}
34+
})});
35+
</script>
36+
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono" rel="stylesheet">
37+
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
1338
<title th:replace="${headtitle}">SimpleWorklist</title>
1439
<link th:href="@{/webjars/bootstrap/4.3.1/css/bootstrap.min.css}" rel="stylesheet"/>
1540
<link th:href="@{/webjars/font-awesome/5.8.1/css/all.min.css}" rel="stylesheet"/>

0 commit comments

Comments
 (0)