@jac said in NodeBB customisation:
@phenomlab
Hi Mark,
Is there any way to put a borer on these boxes or style them to match the other widgets? So for example like the quote link and hover colour?
Many thanks
@JAC
Yeah it’s possible
example here for border color, background, or shadow, transparency, border radius :
.recent-cards .recent-card-container .recent-card {
height: 200px;
width: 100%;
padding: 10px;
position: relative;
border: 1px solid #YOURCOLOR; /*border color*/
box-shadow: 0px 0px 8px #YOURCOLOR; /*add a border shadow color*/
background-color: #YOURCOLOR; /*background color*/
border-radius: 5px; /*Radius*/
margin-bottom: 10px;
color: #YOURCOLOR; /* Text color*/
opacity: 0.8; /*Opacity, trnasparency*/
}
Other example for categories and time :
.recent-cards .recent-card-container .recent-card .footer .category-item a,
.recent-cards .recent-card-container .recent-card .footer .sort-info {
color: #YOURCOLOR;
white-space: nowrap;
text-overflow: ellipsis;
display: block;
overflow: hidden;
}
@jac said in NodeBB customisation:
@jac also do you know if the “user reading discussion” plugin will enable to view who’s reading the thread on mobile?
EDIT:
Hmm if you talk about nodebb-plugin-browsing-users, the don’t work on mobile (we don’t see who read or talk at real time like on desktop).
But when a user is on a topic or write a comment, you see him on desktop.
I think this is normal because there is not enough free space in the header topic on mobile to display the avatars like on desktop