Not planned Please add a bottom border to the editor toolbar

This suggestion has been closed. Votes are no longer accepted.
In order to improve the look of the quick editor, I suggest adding the following code to your extra.less template:

Code:
// quick editor

.fr-box.fr-basic {
    border: 1px solid @xf-borderColorLight;
}

.fr-box.fr-basic .fr-toolbar.fr-top {
	border-bottom: 1px solid @xf-borderColorLight;
}

.fr-toolbar .fr-btn-grp.rte-tab--inactive {
    border-bottom-width: 0px;
	border-left: 1px solid @xf-borderColorLight;
}
 
Top Bottom