Width fix for password inputs

This commit is contained in:
2022-01-10 01:25:18 +01:00
parent 5e330861ca
commit 5104df0af0

View File

@@ -1,10 +1,23 @@
<template>
<div class="group" :class="{ completed: value }">
<svg class="group__input-icon"><use v-bind="{'xlink:href':'#icon' + icon}"></use></svg>
<input class="group__input" :type="tempType || type" @input="handleInput" v-model="inputValue"
:placeholder="placeholder" @keyup.enter="submit" />
<i v-if="value && type === 'password'" @click="toggleShowPassword" class="group__input-show noselect">show</i>
<svg class="group__input-icon">
<use v-bind="{ 'xlink:href': '#icon' + icon }"></use>
</svg>
<input
class="group__input"
:type="tempType || type"
@input="handleInput"
v-model="inputValue"
:placeholder="placeholder"
@keyup.enter="submit"
/>
<i
v-if="value && type === 'password'"
@click="toggleShowPassword"
class="group__input-show noselect"
>{{ tempType == "password" ? "show" : "hide" }}</i
>
</div>
</template>
@@ -13,52 +26,55 @@ export default {
props: {
placeholder: { type: String },
icon: { type: String },
type: { type: String, default: 'text' },
type: { type: String, default: "text" },
value: { type: String, default: undefined }
},
data() {
return {
inputValue: this.value || undefined,
tempType: undefined
}
};
},
methods: {
submit(event) {
this.$emit('enter')
this.$emit("enter");
},
handleInput(event) {
if (this.value !== undefined) {
this.$emit('update:value', this.inputValue)
this.$emit("update:value", this.inputValue);
} else {
this.$emit('change', this.inputValue, event)
this.$emit("change", this.inputValue, event);
}
},
toggleShowPassword() {
if (this.tempType === 'text') {
this.tempType = 'password'
if (this.tempType === "text") {
this.tempType = "password";
} else {
this.tempType = 'text'
this.tempType = "text";
}
}
}
}
};
</script>
<style lang="scss" scoped>
@import "./src/scss/variables";
@import "./src/scss/media-queries";
.group{
.group {
display: flex;
margin-bottom: 1rem;
width: 100%;
position: relative;
max-width: 35rem;
&:hover, &:focus {
&:hover,
&:focus {
.group__input {
border-color: $text-color;
&-icon {
fill: $text-color;
}
}
}
}
@@ -68,13 +84,12 @@ export default {
&-icon {
fill: $text-color;
}
}
}
}
&__input {
width: 100%;
max-width: 35rem;
padding: 10px 10px 10px 45px;
outline: none;
background-color: $background-color-secondary;
@@ -85,20 +100,24 @@ export default {
margin: 0;
margin-left: -2.2rem !important;
z-index: 3;
transition: color .5s ease, background-color .5s ease, border .5s ease;
transition: color 0.5s ease, background-color 0.5s ease, border 0.5s ease;
border-radius: 0;
-webkit-appearance: none;
&-show {
position: relative;
left: -50px;
position: absolute;
display: grid;
place-items: center;
right: 20px;
z-index: 11;
margin: auto 0;
height: 100%;
font-size: 0.9rem;
cursor: pointer;
color: $text-color-50;
-webkit-user-select: none;
user-select: none;
}
}
@@ -113,4 +132,4 @@ export default {
z-index: 8;
}
}
</style>
</style>