diff options
| author | Roy Klutman <[email protected]> | 2018-11-21 23:24:13 +0100 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2018-11-22 00:24:13 +0200 |
| commit | e7e43edf65306efaf46a16ffc9fe35ef623bffef (patch) | |
| tree | 39aadb18839e13b6a8b40e941492e7cc09e11157 /scss/_dropdown.scss | |
| parent | 31d6d03c47cc648a9fa32efc0baaf08ae4f6c241 (diff) | |
| download | bootstrap-e7e43edf65306efaf46a16ffc9fe35ef623bffef.tar.xz bootstrap-e7e43edf65306efaf46a16ffc9fe35ef623bffef.zip | |
Add border-radius to dropdown items (#27703)
Diffstat (limited to 'scss/_dropdown.scss')
| -rw-r--r-- | scss/_dropdown.scss | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/scss/_dropdown.scss b/scss/_dropdown.scss index eafce8d0b..93c1d78e9 100644 --- a/scss/_dropdown.scss +++ b/scss/_dropdown.scss @@ -136,6 +136,14 @@ background-color: transparent; // For `<button>`s border: 0; // For `<button>`s + &:first-child { + @include border-top-radius($dropdown-inner-border-radius); + } + + &:last-child { + @include border-bottom-radius($dropdown-inner-border-radius); + } + @include hover-focus { color: $dropdown-link-hover-color; text-decoration: none; |
