mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
hide elements around textarea if added by browsers extensions. (#5)
This commit is contained in:
parent
b8d3c1c7ee
commit
cd15007e3c
@ -2,7 +2,7 @@
|
|||||||
<canvas ref="overlay" class="neko-cursors" tabindex="0" />
|
<canvas ref="overlay" class="neko-cursors" tabindex="0" />
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss">
|
||||||
.neko-cursors {
|
.neko-cursors {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
|
@ -43,7 +43,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss">
|
||||||
.neko-component {
|
.neko-component {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div class="neko-overlay-wrap">
|
||||||
<canvas ref="overlay" class="neko-overlay" tabindex="0" />
|
<canvas ref="overlay" class="neko-overlay" tabindex="0" />
|
||||||
<textarea
|
<textarea
|
||||||
ref="textarea"
|
ref="textarea"
|
||||||
@ -22,7 +22,12 @@
|
|||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss">
|
||||||
|
/* hide elements around textarea if added by browsers extensions */
|
||||||
|
.neko-overlay-wrap *:not(.neko-overlay) {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
.neko-overlay {
|
.neko-overlay {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user