Archived
1
0

Merge pull request #33 from 4cdn/patch-1

graph bleed-through, add spacing
This commit is contained in:
Jeff 2015-11-22 16:10:27 -05:00
commit ab69a2e9a4
3 changed files with 39 additions and 28 deletions

View File

@ -36,16 +36,30 @@ textarea {
} }
pre { pre {
white-space: pre-wrap; white-space: pre-wrap;
background: #3f3f3f; background: #3f3f3f;
color: #d17600; color: #d17600;
display: inline-block; display: inline-block;
overflow-wrap: break-word; overflow-wrap: break-word;
word-wrap: break-word; word-wrap: break-word;
} }
td { td {
background-color: dimgrey; background-color: dimgrey;
}
.board_td {
position: relative; left: 2px;
}
.posts_td {
position: relative; left: -2px;
}
#overview_graph {
position: relative;
top: 2px;
background: dimgrey;
} }
.reply, .ukko_thread_header { .reply, .ukko_thread_header {
@ -56,10 +70,6 @@ legend {
/* background-color: #525252; */ /* background-color: #525252; */
} }
tr {
background: #202123;
}
hr { hr {
height: 0px; height: 0px;
border-width: 1px medium medium; border-width: 1px medium medium;
@ -89,7 +99,6 @@ a:visited {
box-shadow: 0px 1px 20px rgba(0, 0, 0, 0.15); box-shadow: 0px 1px 20px rgba(0, 0, 0, 0.15);
background: #202331; background: #202331;
color: #616383; color: #616383;
} }
.navbar-sep { .navbar-sep {

View File

@ -32,10 +32,10 @@
<table> <table>
<tbody> <tbody>
<tr> <tr>
<td> <td class="posts_td">
{{{postsgraph.Render}}} {{{postsgraph.Render}}}
</td> </td>
<td> <td class="board_td">
{{! todo: move boardgraph into its own file like postsgraph }} {{! todo: move boardgraph into its own file like postsgraph }}
<table id="board_graph"> <table id="board_graph">
<tbody> <tbody>

View File

@ -12,23 +12,25 @@ template parameters:
<title> Post History</title> <title> Post History</title>
</head> </head>
<body> <body>
<table id="history_graph"> <td>
<thead> <table id="history_graph">
<tr> <thead>
<th>Month</th>
<th>Posts</th>
<th></th>
</tr>
</thead>
<tbody>
{{#history.Scale}}
<tr> <tr>
<td>{{Date}}</td> <th>Month</th>
<td class="history_num">{{Num}}</td> <th>Posts</th>
<td>{{OvercockGraph}}</td> <th></th>
</tr> </tr>
{{/history.Scale}} </thead>
</tbody> <tbody>
</table> {{#history.Scale}}
<tr>
<td>{{Date}}</td>
<td class="history_num">{{Num}}</td>
<td>{{OvercockGraph}}</td>
</tr>
{{/history.Scale}}
</tbody>
</table>
</td>
</body> </body>
</html> </html>