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
diff options
context:
space:
mode:
authorMark Otto <markdotto@gmail.com>2020-11-02 22:36:51 +0300
committerXhmikosR <xhmikosr@gmail.com>2020-11-06 15:49:41 +0300
commit6a3761254050222d80eda2926ad6b6946a8787aa (patch)
treefc913f312cb14b9a048a4928ecc9aaa8e0b8b593 /scss/_card.scss
parentf20335b6c1427e35aecf9a28b29629d83ec3f364 (diff)
Add dedicated accordion component based on Collapse JS
Diffstat (limited to 'scss/_card.scss')
-rw-r--r--scss/_card.scss27
1 files changed, 0 insertions, 27 deletions
diff --git a/scss/_card.scss b/scss/_card.scss
index a526ec143c..9b0f4969a6 100644
--- a/scss/_card.scss
+++ b/scss/_card.scss
@@ -213,30 +213,3 @@
}
}
}
-
-
-//
-// Accordion
-//
-
-.accordion {
- overflow-anchor: none;
-
- > .card {
- overflow: hidden;
-
- &:not(:last-of-type) {
- border-bottom: 0;
- @include border-bottom-radius(0);
- }
-
- &:not(:first-of-type) {
- @include border-top-radius(0);
- }
-
- > .card-header {
- @include border-radius(0);
- margin-bottom: -$card-border-width;
- }
- }
-}