different SFW icon for board list

merge-requests/208/head
fatchan 5 years ago
parent c86a890fa0
commit 12acb9ac4e
  1. 6
      gulp/res/css/style.css
  2. 6
      views/pages/boardlist.pug
  3. 3
      views/pages/home.pug

@ -211,7 +211,7 @@ p {
color: black;
}
.spoiler:hover {
.spoiler:hover, .spoiler:hover a {
color: white;
}
@ -398,6 +398,10 @@ td, th {
cursor: pointer;
}
.sfw {
background-color: gray;
}
.help {
cursor: help;
}

@ -13,7 +13,8 @@ block content
tr
td
if board.settings.sfw
span.help(title='Safe for work') 💼
span.user-id.sfw SFW
|
a(href=`/${board._id}/index.html`) /#{board._id}/ - #{board.settings.name}
td #{board.settings.description}
td #{board.pph}
@ -26,7 +27,8 @@ block content
tr
td
if !board.nsfw
span.help(title='Safe for work') 💼
span.user-id.sfw SFW
|
a(href=board.path) #{board.siteName} /#{board.uri}/ - #{board.title}
td #{board.subtitle || '-'}
td #{board.postsPerHour || '-'}

@ -27,7 +27,8 @@ block content
tr
td
if board.settings.sfw
span.help(title='Safe for work') 💼
span.user-id.sfw SFW
|
a(href=`/${board._id}/index.html`) /#{board._id}/ - #{board.settings.name}
td #{board.settings.description}
td #{board.pph}

Loading…
Cancel
Save