style change for new catalog tile checkmarks

merge-requests/208/head
fatchan 4 years ago
parent 83efa15a21
commit 277e2c190e
  1. 12
      gulp/res/css/style.css
  2. 2
      views/mixins/catalogtile.pug

@ -241,6 +241,7 @@ object {
box-sizing: border-box;
flex-grow: 1;
max-width: 300px;
position: relative;
}
.catalog-tile:hover {
@ -629,7 +630,14 @@ details.actions div {
.post-check {
position: relative;
top: 2px;
margin: -3px 1px !important;
margin: -3px 1px;
}
.catalog-tile .post-check {
position: absolute;
top: 5px;
left: 5px;
margin: 0;
}
.post-files {
@ -1263,7 +1271,7 @@ row.wrap.sb .col {
.post-check {
top: 1px;
margin-left: 2px!important;
margin-left: 2px;
}
.pages {

@ -2,7 +2,7 @@ mixin catalogtile(board, post, index)
.catalog-tile(data-board=post.board data-post-id=post.postId data-user-id=post.userId)
- const postURL = `/${board._id}/thread/${post.postId}.html#${post.postId}`
.post-info
input.left.post-check(type='checkbox', name='checkedposts' value=post.postId)
input.post-check(type='checkbox', name='checkedposts' value=post.postId)
if modview
a.left.ml-5.bold(href=`recent.html?postid=${post.postId}`) [+]
include ../includes/posticons.pug

Loading…
Cancel
Save