Merge pull request #3605 from matrix-org/jryans/rounded-style-bar

Fix rounded corners for the formatting toolbar
pull/21833/head
J. Ryan Stinnett 2019-11-08 20:01:31 +02:00 committed by GitHub
commit 719709250b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 0 deletions

View File

@ -41,6 +41,18 @@ limitations under the License.
&:hover {
border-color: $message-action-bar-hover-border-color;
}
&:first-child {
border-radius: 3px 0 0 3px;
}
&:last-child {
border-radius: 0 3px 3px 0;
}
&:only-child {
border-radius: 3px;
}
}
.mx_MessageComposerFormatBar_button {