lostplaces-frontend/components/01_Atoms/input/_input.scss

93 lines
2.1 KiB
SCSS
Raw Normal View History

2020-07-31 16:54:35 +02:00
.LP-Input{
$-margin-bottom: 30px;
display: flex;
flex-direction: column;
margin-bottom: -$-margin-bottom;
padding: 10px 0;
2020-07-31 16:54:35 +02:00
.LP-Input__Field{
border: none;
2020-08-01 10:27:23 +02:00
border-bottom: 1px solid $-grey;
2020-08-21 12:08:51 +02:00
padding: 8px 0;
2020-08-25 15:55:02 +02:00
margin-bottom: $-margin-bottom;
2020-08-25 16:26:18 +02:00
width: 100%;
2020-07-31 16:54:35 +02:00
2020-08-03 17:26:23 +02:00
&:focus, &:active, &:invalid{
2020-07-31 16:54:35 +02:00
margin-bottom: $-margin-bottom - 1px;
2020-08-01 10:27:23 +02:00
border-bottom: 2px solid $-wine-red;
background-color: $-almost-white;
border-radius: 3px 3px 0 0;
box-shadow: none;
}
&[type=submit]{
background-color: $-light-brown;
color: $-grey;
border: none;
padding: 8px 14px;
border-radius: 2px;
font-weight: bold;
cursor: pointer;
2020-08-12 18:28:47 +02:00
&:active{
background-color: $-wine-red;
color:$-almost-white;
}
2020-08-12 18:28:47 +02:00
}
2020-07-31 16:54:35 +02:00
}
2020-07-31 19:52:57 +02:00
2020-07-31 16:54:35 +02:00
.LP-Input__Label{
font-family: $-primary-sans-serif-font;
2020-08-25 15:55:02 +02:00
font-size: 16px;
white-space: wrap;
overflow: hidden;
2020-07-31 16:54:35 +02:00
}
2020-07-31 19:52:57 +02:00
2020-07-31 16:54:35 +02:00
.LP-Input__Message{
font-family: $-primary-sans-serif-font;
font-style: italic;
font-size: 13px;
padding: 3px;
position: relative;
2020-08-25 15:55:02 +02:00
top: -$-margin-bottom;
overflow: hidden;
2020-07-31 16:54:35 +02:00
}
&--error{
.LP-Input__Field{
margin-bottom: 25px;
2020-08-01 10:27:23 +02:00
border-bottom: 2px solid $-wine-red;
2020-07-31 16:54:35 +02:00
margin-bottom: $-margin-bottom - 1px;
}
.LP-Input__Message{
2020-08-01 10:27:23 +02:00
color: $-wine-red;
2020-07-31 16:54:35 +02:00
}
}
&--disabled{
.LP-Input__Field, .LP-Input__Field:disabled{
background-color: transparent;
border-bottom: 1px dashed $-grey;
cursor: not-allowed;
label + &{
color: red;
}
2020-07-31 16:54:35 +02:00
&:focus, &:active{
margin-bottom: $-margin-bottom;
border-radius: 0;
}
2020-07-31 16:54:35 +02:00
~.LP-Input__Message{
visibility: hidden;
}
}
2020-07-31 23:12:06 +02:00
.LP-Input__Label{
color: $-grey;
}
}
2020-07-31 16:54:35 +02:00
}