diff options
Diffstat (limited to 'views/pages/keywords.ejs')
| -rw-r--r-- | views/pages/keywords.ejs | 27 |
1 files changed, 22 insertions, 5 deletions
diff --git a/views/pages/keywords.ejs b/views/pages/keywords.ejs index d844e39..89f44a2 100644 --- a/views/pages/keywords.ejs +++ b/views/pages/keywords.ejs @@ -16,6 +16,9 @@ <div class="views {{views_class}}"> {{views}} </div> + <div class="threadcount {{threadcount_class}}"> + {{threadcount}} + </div> <div class="{{color}} title"> <a href="/details/{{id}}">{{title}}</a> </div> @@ -24,6 +27,17 @@ </div> </div> +<div id="sidebar"> + <div class="bluebox" id="new_keyword"> + <form> + <input type="text" name="keyword" placeholder="Create a new keyword"> + <select name="color"></select> + <input type="submit" value="Create"> + <div class="errors"></div> + </form> + </div> +</div> + <% include ../partials/footer %> <style> @@ -55,14 +69,17 @@ margin-left: 3px; } .keyword_row .views { - min-width: 30px; - text-align: center; + min-width: 40px; + justify-content: center; +} +.keyword_row .threadcount { + min-width: 40px; + justify-content: flex-end; + margin-right: 10px; } .keyword_row .title a { display: block; padding: 5px; margin-top: -4px; - } - -</style>
\ No newline at end of file +</style> |
