forked from FoundKeyGang/FoundKey
Fix overlap of birthday label on datepicker (#3697)
This commit is contained in:
parent
1d3e6a7197
commit
e0b107a3a0
2 changed files with 16 additions and 1 deletions
|
@ -24,7 +24,7 @@
|
|||
</ui-input>
|
||||
|
||||
<ui-input v-model="birthday" type="date">
|
||||
<span>{{ $t('birthday') }}</span>
|
||||
<span slot="title">{{ $t('birthday') }}</span>
|
||||
<span slot="prefix"><fa icon="birthday-cake"/></span>
|
||||
</ui-input>
|
||||
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
<div class="value" ref="passwordMetar"></div>
|
||||
</div>
|
||||
<span class="label" ref="label"><slot></slot></span>
|
||||
<span class="title" ref="title"><slot name="title"></slot></span>
|
||||
<div class="prefix" ref="prefix"><slot name="prefix"></slot></div>
|
||||
<template v-if="type != 'file'">
|
||||
<input ref="input"
|
||||
|
@ -281,6 +282,20 @@ root(fill)
|
|||
transform-origin top left
|
||||
transform scale(1)
|
||||
|
||||
> .title
|
||||
position absolute
|
||||
z-index 1
|
||||
top fill ? -24px : -17px
|
||||
left 0 !important
|
||||
pointer-events none
|
||||
font-size 16px
|
||||
line-height 32px
|
||||
color var(--inputLabel)
|
||||
pointer-events none
|
||||
//will-change transform
|
||||
transform-origin top left
|
||||
transform scale(.75)
|
||||
|
||||
> input
|
||||
display block
|
||||
width 100%
|
||||
|
|
Loading…
Reference in a new issue