Skip to content

Commit

Permalink
added some styling
Browse files Browse the repository at this point in the history
  • Loading branch information
vwheezy committed Apr 9, 2018
1 parent 174d901 commit cb4bcd8
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 70 deletions.
38 changes: 19 additions & 19 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"file-loader": "^1.1.4",
"vue-loader": "^13.0.5",
"vue-template-compiler": "^2.4.4",
"webpack": "^3.6.0",
"webpack": "^3.11.0",
"webpack-cli": "^2.0.14",
"webpack-dev-server": "^2.9.1"
}
Expand Down
45 changes: 0 additions & 45 deletions routes/update/reply.js

This file was deleted.

8 changes: 6 additions & 2 deletions src/components/Catalog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
</div>
<hr class="abovePostLink">
<div id="postLink">
[<a href="post">Start a New Thread</a>]
[<a href="post" id="postLinkText">Start a New Thread</a>]
</div>
<hr>
<div id="threads">
Expand Down Expand Up @@ -118,6 +118,10 @@
text-align: center;
}
#postLinkText:hover {
color: #d00;
}
.teaser {
padding: 0 15px;
display: block;
Expand Down Expand Up @@ -249,4 +253,4 @@
}
}
}
</script>
</script>
8 changes: 7 additions & 1 deletion src/components/Index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,12 @@
color: #800;
text-decoration: none;
}
#boards a.boardlink:hover {
color: #d00;
text-decoration: underline;
}
#boards .column {
width: 12em;
}
Expand Down Expand Up @@ -147,4 +153,4 @@
ul {
padding-left: 0;
}
</style>
</style>
8 changes: 6 additions & 2 deletions src/components/Thread.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<div class="boardTitle">/{{ $route.params.board }}/ {{ board.name }}</div>
</div>
<hr class="abovePostLink">
<div id="postLink"> [<a href="#" v-on:click="toggleReplyBox">Post a Reply</a>]</div>
<div id="postLink"> [<a href="#" v-on:click="toggleReplyBox" id="postLinkText">Post a Reply</a>]</div>
<hr>
<div class="board">
<div class="thread">
Expand Down Expand Up @@ -237,6 +237,10 @@
text-align: center;
}
#postLinkText:hover {
color: #d00;
}
.replyBox {
background-color: #EEF2FF;
}
Expand Down Expand Up @@ -376,4 +380,4 @@
}
}
}
</script>
</script>

0 comments on commit cb4bcd8

Please sign in to comment.