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 <otto@github.com>2013-08-13 10:36:25 +0400
committerMark Otto <otto@github.com>2013-08-13 10:36:25 +0400
commit237640c70697ffa0605770dee625d9e3c6abf479 (patch)
tree960e8ca54eda555a97d2424a2c2cdae453e34b1e /less/accordion.less
parent54a3e4b780b711660e650d909e0e11875d7ff505 (diff)
Drop the accordion for the panel
* Deletes the accordion.less file * Extends the panel to be collapsible with our JS plugin * Supports panel color variations
Diffstat (limited to 'less/accordion.less')
-rw-r--r--less/accordion.less31
1 files changed, 0 insertions, 31 deletions
diff --git a/less/accordion.less b/less/accordion.less
deleted file mode 100644
index c3023ac49e..0000000000
--- a/less/accordion.less
+++ /dev/null
@@ -1,31 +0,0 @@
-//
-// Accordion
-// --------------------------------------------------
-
-
-// Parent container
-.accordion {
- margin-bottom: @line-height-computed;
-}
-
-// Group == heading + body
-.accordion-group {
- margin-bottom: 2px;
- border: 1px solid @accordion-border-color;
- border-radius: @border-radius-base;
-}
-.accordion-heading {
- border-bottom: 0;
-
- .accordion-toggle {
- display: block;
- padding: 8px 15px;
- cursor: pointer;
- }
-}
-
-// Inner needs the styles because you can't animate properly with any styles on the element
-.accordion-inner {
- padding: 9px 15px;
- border-top: 1px solid @accordion-border-color;
-}