Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion server/index_handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ var index = `<!DOCTYPE html><html>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<title>GGG Tracker</title>
<link rel="shortcut icon" href="static/favicon.ico" />
<link rel="stylesheet" type="text/css" href="static/style.css?v2" />
<link rel="stylesheet" type="text/css" href="static/style.css?v3" />
<link rel="alternate" type="application/rss+xml" title="GGG Tracker Forum Feed" href="rss" />

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
Expand Down
5 changes: 5 additions & 0 deletions server/static/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,11 @@ td.icon img {
transform: translate(-50%, -50%);
}

td.title {
max-width: 450px;
overflow: hidden;
}

td.body {
background-color: #262626;
padding: 10px;
Expand Down