@phenomlab
@phenomlab said in [NODEBB] Help for my custom CSS:
@downpw This will fix the reply button on hover
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
margin-right: 2px;
}
No need, margin-right: 0px; is good for me
This will fix the search alignment, as the CSS is inherited
a#save-preferences {
margin-left: -3px;
margin-right: 2px;
}
No working, just add border-radius to 0
a#save-preferences {
border-radius: 0px;
}
This should fix the message buttons
.message-body, .btn-xs.btn-link {
margin-left: -2px !important;
margin-right: 1px !important;
}
Not working, i was try button .btn .btn-xs .btn-link too. Border is always here. maybe more specific about this button but I don’t see the class.
And this will fix the composer submit button
.composer-submit {
margin-left: -3px !important;
}
No need it seems to me