@charset "utf-8";
@import "../../base/fn";

.ysui-cell_label {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  &:not(.ysui-cell_disabled):active {
    background-color: $ysui-c8;
  }
}

/**
 * 解决
 * 在使用 [fastclick](https://github.com/ftlabs/fastclick) 时
 * 点击label内元素不会触发label的click的问题
 * 参考：　https://developer.mozilla.org/zh-CN/docs/Web/CSS/pointer-events
 */
label.ysui-cell.ysui-cell_label > * {
  pointer-events: none;
}
