Skip to content

Commit 41fc714

Browse files
committed
fix: Textarea autogrow & InputFrame click area
1 parent e41b58a commit 41fc714

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

dev/components/components/button.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
</p>
3737

3838
<p class="group">
39-
<q-btn loader @click="simulateProgress">
39+
<q-btn loader @click="simulateProgress">
4040
Button
4141
<q-spinner-oval slot="loading" />
4242
</q-btn>

src/components/input-frame/QInputFrame.vue

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
class="q-if row no-wrap items-center relative-position"
44
:class="classes"
55
:tabindex="focusable && !disable ? 0 : null"
6+
@click="__onClick"
67
>
78
<template v-if="before">
89
<q-icon
@@ -15,10 +16,7 @@
1516
></q-icon>
1617
</template>
1718

18-
<div
19-
class="q-if-inner col row no-wrap items-center relative-position"
20-
@click="__onClick"
21-
>
19+
<div class="q-if-inner col row no-wrap items-center relative-position">
2220
<div
2321
v-if="label"
2422
class="q-if-label ellipsis full-width absolute self-start"

src/components/input/input.ios.styl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
color black
1414
background transparent
1515
min-width 70px
16-
min-height 18px !important
16+
min-height 18px
1717
font-size inherit
1818
line-height 1
1919
overflow hidden

src/components/input/input.mat.styl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
color black
1414
background transparent
1515
min-width 70px
16-
min-height 18px !important
16+
min-height 18px
1717
font-size inherit
1818
line-height 1
1919
overflow hidden

0 commit comments

Comments
 (0)