message_edit: Improve the style for dropdown toggle button.

Earlier, the `stream_header_colorblock` wasn't properly styled
with the dropdown toggle button from a UI perspective. This was so
because they had a few space between them due to inconsistencies
in their border radius.

This commit adds an border-radius property to the message_edit
dropdown toggle button to eliminate the above issue and
improve it's overall look.
This commit is contained in:
aryanshridhar 2021-07-16 18:14:08 +00:00 committed by Tim Abbott
parent 1a2782f95d
commit f4e44228a7

View File

@ -2532,6 +2532,12 @@ div.topic_edit_spinner .loading_indicator_spinner {
}
}
/* Override the default border-radius to properly align
the button corners with `stream_header_colorblock`. */
.dropdown-toggle {
border-radius: 1px 4px 4px 1px !important;
}
.stream_header_colorblock {
margin-bottom: 20px;
}