fix(segment): tap acivation working. Fixes #663

This commit is contained in:
Max Lynch
2015-12-04 11:38:58 -06:00
parent 2c13de9c7b
commit 86a687a5df
4 changed files with 11 additions and 9 deletions

View File

@ -36,14 +36,14 @@ ion-segment {
background: $segment-button-ios-bg-color;
color: $segment-button-ios-bg-color-activated;
&.activated {
&.segment-activated {
opacity: 1;
color: $segment-button-ios-text-color;
background-color: $segment-button-ios-bg-color-activated;
transition: $segment-button-ios-activated-transition;
}
&:hover:not(.activated) {
&:hover:not(.segment-activated) {
background-color: rgba($segment-button-ios-bg-color-activated, $segment-button-ios-hover-opacity);
}
}
@ -95,13 +95,13 @@ ion-segment {
background: $segment-button-ios-bg-color;
color: $button-color;
&.activated {
&.segment-activated {
opacity: 1;
color: $activated-text-color;
background-color: $button-color;
}
&:hover:not(.activated) {
&:hover:not(.segment-activated) {
background-color: rgba($button-color, $segment-button-ios-hover-opacity);
}
}

View File

@ -24,7 +24,7 @@ ion-segment {
min-height: $segment-button-md-min-height;
line-height: $segment-button-md-line-height;
&.activated {
&.activated, &.segment-activated {
color: $segment-button-md-text-color-activated;
background-color: transparent;
border-color: $segment-button-md-border-color-activated;
@ -41,7 +41,8 @@ ion-segment {
ion-segment {
margin: 0 auto;
ion-segment-button[button][outline].activated {
ion-segment-button[button][outline].activated,
ion-segment-button[button][outline].segment-activated {
background-color: transparent;
}
}
@ -57,7 +58,7 @@ ion-segment {
&[outline] {
color: $button-color;
&.activated {
&.activated, &.segment-activated {
background-color: transparent;
color: $button-color;
border-color: $button-color;

View File

@ -132,7 +132,7 @@ export class Segment extends Ion {
],
host: {
'(click)': 'click($event)',
'[class.activated]': 'isActive',
'[class.segment-activated]': 'isActive',
}
})
export class SegmentButton {

View File

@ -62,6 +62,7 @@ export class TapClick {
if (this.usePolyfill && this.startCoord && this.app.isEnabled()) {
let endCoord = pointerCoord(ev);
if (!hasPointerMoved(POINTER_TOLERANCE, this.startCoord, endCoord)) {
console.debug('create click from touch ' + Date.now());
@ -206,7 +207,7 @@ function removeListener(type, listener) {
}
const ACTIVATABLE_ELEMENTS = /^(A|BUTTON)$/;
const ACTIVATABLE_ATTRIBUTES = /tappable/;
const ACTIVATABLE_ATTRIBUTES = /tappable|button/i;
const POINTER_TOLERANCE = 4;
const POINTER_MOVE_UNTIL_CANCEL = 10;
const DISABLE_NATIVE_CLICK_AMOUNT = 2500;