Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/scss
diff options
context:
space:
mode:
authorAmirHossein <farajiamirhossein1374@gmail.com>2022-09-01 22:55:45 +0300
committerGitHub <noreply@github.com>2022-09-01 22:55:45 +0300
commit8c380b2676eb5eb76716b94763ef21e98c86b9b7 (patch)
tree63ecca36ed0138ec651ce8b5e337e6546032ae3a /scss
parent279363783759323c988d227145d5f6bc6c683efd (diff)
flush variant of accordion border radius (#36593)
* flush variant of accordion border radius Fixed issues regarding to last accordion-item has rounded edges at the bottom left and right corners when focused and are in closed state * Update _accordion.scss Co-authored-by: Mark Otto <otto@github.com>
Diffstat (limited to 'scss')
-rw-r--r--scss/_accordion.scss5
1 files changed, 4 insertions, 1 deletions
diff --git a/scss/_accordion.scss b/scss/_accordion.scss
index a7fe074226..07e082f967 100644
--- a/scss/_accordion.scss
+++ b/scss/_accordion.scss
@@ -140,7 +140,10 @@
&:last-child { border-bottom: 0; }
.accordion-button {
- @include border-radius(0);
+ &,
+ &.collapsed {
+ @include border-radius(0);
+ }
}
}
}