2023-04-26 02:37:29 +00:00
|
|
|
.InlineForm {
|
|
|
|
position: relative;
|
2023-05-04 04:43:52 +00:00
|
|
|
width: 100%;
|
2023-04-26 02:37:29 +00:00
|
|
|
|
|
|
|
.form {
|
|
|
|
display: flex;
|
2023-05-04 04:43:52 +00:00
|
|
|
flex-direction: row;
|
|
|
|
flex-wrap: nowrap;
|
2023-04-26 02:37:29 +00:00
|
|
|
padding: 6px 11px;
|
2023-05-04 04:43:52 +00:00
|
|
|
width: 100%;
|
2023-04-26 02:37:29 +00:00
|
|
|
|
|
|
|
input {
|
|
|
|
margin: 0 12px 0 0;
|
|
|
|
padding: 0;
|
|
|
|
flex: 1;
|
|
|
|
border: none;
|
|
|
|
min-width: 200px;
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
&::placeholder {
|
|
|
|
color: rgba(#000, 0.3);
|
|
|
|
}
|
2023-05-01 18:32:32 +00:00
|
|
|
|
2023-04-26 02:37:29 +00:00
|
|
|
&:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.linkError {
|
|
|
|
padding: 6px 11px;
|
|
|
|
color: red;
|
|
|
|
font-size: 0.7em;
|
|
|
|
position: absolute;
|
|
|
|
bottom: -3rem;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
height: 0;
|
|
|
|
background: #fff;
|
2023-05-04 04:43:52 +00:00
|
|
|
border: 1px solid #e9e9ee;
|
|
|
|
border-radius: 2px;
|
2023-04-26 02:37:29 +00:00
|
|
|
opacity: 0;
|
|
|
|
transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out;
|
|
|
|
|
|
|
|
&.visible {
|
|
|
|
height: 32px;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|