LukaszWatroba / v-accordion

Multi-level accordion component for AngularJS.
http://lukaszwatroba.github.io/v-accordion
MIT License
310 stars 100 forks source link

Accordion Title Remains Blue after Closing #46

Closed SomethingNew71 closed 8 years ago

SomethingNew71 commented 8 years ago

Steps to reproduce:

  1. Open accordion item
  2. Click on title to close accordion
  3. Note accordion title remains blue despite no longer being active.

Can be duplicated on demo page.

Example: http://i.imgur.com/oatZR8q.png

LukaszWatroba commented 8 years ago

It's there just to indicate which v-pane is currently focused (you can use arrow and spacebar keys to navigate). But you can always change that by overriding the css:

.vAccordion--default v-pane-header:focus {
  color: #212121;
}
SomethingNew71 commented 8 years ago

Thanks that did the trick!