Commit 990d7ece authored by Annabel Dunstone Gray's avatar Annabel Dunstone Gray

Merge branch 'mfluharty-modal-style-border-radius-correction' into 'master'

Apply modal border-radius only to direct children

See merge request gitlab-org/gitlab-ce!30645
parents d50125a0 d9c88044
......@@ -93,12 +93,12 @@ body.modal-open {
.modal-content {
border-radius: $modal-border-radius;
*:first-child {
> :first-child {
border-top-left-radius: $modal-border-radius;
border-top-right-radius: $modal-border-radius;
}
*:last-child {
> :last-child {
border-bottom-left-radius: $modal-border-radius;
border-bottom-right-radius: $modal-border-radius;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment