diff options
author | Tom Smeding <tom@tomsmeding.com> | 2022-09-05 21:13:44 +0200 |
---|---|---|
committer | Tom Smeding <tom@tomsmeding.com> | 2022-09-05 21:13:44 +0200 |
commit | 79a83de5d28750095cf3af5e933af28872e7e3eb (patch) | |
tree | aa2c6db5c3d627acb22f134bcbfd2b37cec05bd5 /static/index.css | |
parent | 946f5e893c599948ce4353fcf72f188154ce0592 (diff) |
Redesign of vote buttons
Diffstat (limited to 'static/index.css')
-rw-r--r-- | static/index.css | 39 |
1 files changed, 17 insertions, 22 deletions
diff --git a/static/index.css b/static/index.css index 4f4981e..4fd7371 100644 --- a/static/index.css +++ b/static/index.css @@ -31,11 +31,17 @@ body.okauth #login { } .item .item-buttons { - display: none; + visibility: hidden; user-select: none; } .item:hover .item-buttons { - display: inline; + visibility: visible; +} + +.item-vote-table { + display: inline-block; + border-collapse: collapse; + margin-right: 5px; } .item-bullet { @@ -50,29 +56,18 @@ body.okauth #login { .item-votes { display: inline-block; font-size: 18px; - color: #444; - vertical-align: 3px; - margin-left: 15px; + color: #ccc; + vertical-align: 6px; } - -.item-upvote { - border: 1px #888 solid; - border-radius: 4px; - background-color: #eee; - color: green; - font-weight: bold; - cursor: pointer; - margin-left: 15px; - padding-left: 8px; - padding-right: 8px; +.item:hover .item-votes { + color: #444; } -.item-downvote { - font-size: 23px; - color: blue; - cursor: pointer; - margin-left: 15px; - vertical-align: 2px; +.item-upvote, .item-downvote { + background: #eee; + font-size: 10px; + width: 20px; + text-align: center; } .item-delete { |