fix #3202: add cursor to .accordion-toggle

This commit is contained in:
Mark Otto 2012-04-24 01:23:24 -07:00
parent f805a6080c
commit 7f6f3ff462
2 changed files with 9 additions and 0 deletions

View File

@ -4777,6 +4777,10 @@ a.badge:hover {
padding: 8px 15px; padding: 8px 15px;
} }
.accordion-toggle {
cursor: pointer;
}
.accordion-inner { .accordion-inner {
padding: 9px 15px; padding: 9px 15px;
border-top: 1px solid #e5e5e5; border-top: 1px solid #e5e5e5;

View File

@ -21,6 +21,11 @@
padding: 8px 15px; padding: 8px 15px;
} }
// General toggle styles
.accordion-toggle {
cursor: pointer;
}
// Inner needs the styles because you can't animate properly with any styles on the element // Inner needs the styles because you can't animate properly with any styles on the element
.accordion-inner { .accordion-inner {
padding: 9px 15px; padding: 9px 15px;