我遇到的问题是,当我在按钮上添加离子2 gesture(按下)时,它会自动为该按钮添加内联样式。
有没有办法推翻它添加的风格?
按钮
<button ion-button (press)="toggleFavourite(sound)" (click)="share(sound.file)"></button>
由于(按)手势而添加的CSS。
style="
touch-action: none;
user-select: none;
-webkit-user-drag: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);"
答案 0 :(得分:1)
您可以按照page.scss
文件中的说明进行操作。
注意:请勿使用!import
hack.Which非常糟糕。
<强> page.scss 强>
.ios,
.md,
.wp {
page-my {
.my-gesture {
touch-action: none;
user-select: none;
-webkit-user-drag: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
}
<强> page.html中强>
<button ion-button class="my-gesture" (press)="toggleFavourite(sound)"
(click)="share(sound.file)"></button>