set -webkit-touch-callout (#9447)
This commit is contained in:
parent
9f0dfb5517
commit
7e5f3dbf11
|
@ -14,7 +14,7 @@
|
||||||
<span v-if="pathname != ''" :class="$style.pathname">{{ self ? pathname.substring(1) : pathname }}</span>
|
<span v-if="pathname != ''" :class="$style.pathname">{{ self ? pathname.substring(1) : pathname }}</span>
|
||||||
<span :class="$style.query">{{ query }}</span>
|
<span :class="$style.query">{{ query }}</span>
|
||||||
<span :class="$style.hash">{{ hash }}</span>
|
<span :class="$style.hash">{{ hash }}</span>
|
||||||
<i v-if="target === '_blank'" class="ti ti-external-link icon"></i>
|
<i v-if="target === '_blank'" :class="$style.icon" class="ti ti-external-link"></i>
|
||||||
</component>
|
</component>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
@ -98,10 +98,15 @@ a {
|
||||||
color: inherit;
|
color: inherit;
|
||||||
tap-highlight-color: transparent;
|
tap-highlight-color: transparent;
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
|
-webkit-touch-callout: none;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&[target="_blank"] {
|
||||||
|
-webkit-touch-callout: default;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
textarea, input {
|
textarea, input {
|
||||||
|
|
Loading…
Reference in New Issue