@DownPW said in chat list navbar:
Can you help me with that ?
Looks like you want to get rid of the border in the highlighted area on the right image, and show the border on the left image ?
@DownPW said in chat list navbar:
I search css class and css class hover for new button “Mark all as read” and “All Chats” on chat navbar:
For “Mark all as read” you should be able to target
btn btn-secondary mark-all-read
and btn btn-secondary mark-all-read:hover
respectively
Targeting “All chats” is much harder, as it shares the btn btn-secondary
class which is used in multiple places. For it to work how I wanted it, I needed to be more specific in the target, so had to use
.btn-group>.btn:last-child:not(:first-child), .btn-group>.dropdown-toggle:not(:first-child) {
/* your CSS here */
}