Active State

Framework7 uses so called "active state" to highlight links and buttons when you tap them. It is done to make Framework7 app behave like native app, not like a web app.

It works almost in the same way as CSS :active selector, it adds active-state class to links and buttons when you tap them. The only difference is that it adds this class after small time interval, this prevents false highlights during page scrolling.

So when you write your CSS styles you should write active states like:

/* Usual state */
.my-button {
    color: red;
}
/* Active/tapped state */
.my-button.active-state {
    color: blue;
}

You can control which elements will receive active-state class in touch.activeStateElements app parameters.

There are some situations when you may have nested active-state elements. You may prevent setting active state on parent element by adding prevent-active-state-propagation class to child active-state element:

<div class="card card-expandable">
  <div class="card-content">
    <!-- Tap on button will prevent setting active-state on parent card -->
    <a class="button prevent-active-state-propagation">...</a>
  </div>
</div>

To disable setting active-state class on element itself (and on its children) we need to add no-active-state class to such element:

<!-- link without active-state -->
<a href="..." class="link no-active-state">...</a>