mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
67 lines
1.0 KiB
SCSS
67 lines
1.0 KiB
SCSS
|
input,
|
||
|
select,
|
||
|
textarea {
|
||
|
@extend .clickable;
|
||
|
margin-bottom: 0.25rem;
|
||
|
border-bottom: 2px solid $primary_color;
|
||
|
padding: 0.5rem;
|
||
|
|
||
|
&:active,
|
||
|
&:focus,
|
||
|
&:hover {
|
||
|
color: $primary_color;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
select,
|
||
|
option {
|
||
|
-webkit-appearance: none;
|
||
|
-moz-appearance: none;
|
||
|
border-radius: 0;
|
||
|
background-color: transparent;
|
||
|
background-image: url('/assets/img/fleche_bas.svg');
|
||
|
padding-right: 2.5rem;
|
||
|
background-repeat: no-repeat;
|
||
|
background-size: 9px 8px;
|
||
|
background-position: right 1rem center;
|
||
|
background-clip: border-box;
|
||
|
min-width: 10rem;
|
||
|
}
|
||
|
|
||
|
select {
|
||
|
@extend .select, .input;
|
||
|
}
|
||
|
|
||
|
#multi_hours select {
|
||
|
min-width: 300px !important;
|
||
|
}
|
||
|
|
||
|
input {
|
||
|
@extend .input, .text-ellipsis;
|
||
|
}
|
||
|
|
||
|
label {
|
||
|
margin-top: 0.5rem;
|
||
|
}
|
||
|
|
||
|
textarea {
|
||
|
width: 100%;
|
||
|
max-width: 100%;
|
||
|
min-height: 213px;
|
||
|
padding: 0.5em 1em;
|
||
|
margin-bottom: 1em;
|
||
|
border-left: 3px solid $primary_color;
|
||
|
}
|
||
|
|
||
|
.comment {
|
||
|
border-left: 6px solid $primary_color;
|
||
|
margin-top: 25px;
|
||
|
margin-bottom: 25px;
|
||
|
flex-wrap: wrap;
|
||
|
padding-left: 17px;
|
||
|
}
|
||
|
|
||
|
.cname {
|
||
|
font-weight: bold;
|
||
|
}
|