2022-02-18 09:15:48 +01:00
|
|
|
.field {
|
|
|
|
padding-top: .6rem;
|
2022-02-18 16:53:54 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2022-02-18 11:05:10 +01:00
|
|
|
|
2022-03-04 16:33:45 +01:00
|
|
|
&.inline {
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
2022-02-18 11:05:10 +01:00
|
|
|
&.has-addons {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-start;
|
2022-02-18 16:53:54 +01:00
|
|
|
flex-direction: row;
|
2022-02-18 11:05:10 +01:00
|
|
|
|
|
|
|
.button {
|
|
|
|
margin-bottom: 0;
|
2022-02-18 16:53:54 +01:00
|
|
|
border-top-left-radius: 0;
|
|
|
|
border-bottom-left-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
input {
|
|
|
|
border-top-right-radius: 0;
|
|
|
|
border-bottom-right-radius: 0;
|
2022-02-18 11:05:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-18 16:53:54 +01:00
|
|
|
input,
|
2022-02-22 14:50:07 +01:00
|
|
|
textarea,
|
2022-02-18 16:53:54 +01:00
|
|
|
select {
|
2022-03-01 16:09:46 +01:00
|
|
|
border-radius: 4px;
|
2022-02-18 09:15:48 +01:00
|
|
|
max-width: 100%;
|
|
|
|
width: 100%;
|
2022-03-01 16:09:46 +01:00
|
|
|
background-color: var(--input-color);
|
2023-09-22 21:52:03 +02:00
|
|
|
border: 1px solid var(--input-active-color) !important;
|
2022-03-01 16:09:46 +01:00
|
|
|
color: var(--input-font-color);
|
|
|
|
@include transition() {}
|
2022-02-18 16:53:54 +01:00
|
|
|
|
|
|
|
&:focus-visible {
|
|
|
|
outline: unset;
|
|
|
|
}
|
2022-02-18 09:15:48 +01:00
|
|
|
}
|
2022-02-19 09:25:51 +01:00
|
|
|
|
2022-03-04 16:33:45 +01:00
|
|
|
input[type="radio"] {
|
|
|
|
border-radius: 50%;
|
|
|
|
appearance: none;
|
|
|
|
width: 1.2rem;
|
|
|
|
height: 1.2rem;
|
|
|
|
vertical-align: text-bottom;
|
|
|
|
outline: 0;
|
|
|
|
box-shadow: inset 0 0 0 1px var(--input-active-color);
|
|
|
|
background-color: #fff;
|
|
|
|
transition: background-size .15s;
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&:checked {
|
|
|
|
box-shadow: inset 0 0 0 4px var(--input-active-color);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type="radio"] + label,
|
|
|
|
label + input[type="radio"] {
|
|
|
|
margin-left: 12px;
|
|
|
|
}
|
|
|
|
|
2022-02-19 09:25:51 +01:00
|
|
|
select {
|
|
|
|
appearance: none;
|
|
|
|
background-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20standalone%3D%22no%22%3F%3E%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20style%3D%22isolation%3Aisolate%22%20viewBox%3D%220%200%2020%2020%22%20width%3D%2220%22%20height%3D%2220%22%3E%3Cpath%20d%3D%22%20M%209.96%2011.966%20L%203.523%205.589%20C%202.464%204.627%200.495%206.842%201.505%207.771%20L%201.505%207.771%20L%208.494%2014.763%20C%209.138%2015.35%2010.655%2015.369%2011.29%2014.763%20L%2011.29%2014.763%20L%2018.49%207.771%20C%2019.557%206.752%2017.364%204.68%2016.262%205.725%20L%2016.262%205.725%20L%209.96%2011.966%20Z%20%22%20fill%3D%22inherit%22/%3E%3C/svg%3E");
|
|
|
|
background-position: right 0.8rem center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: 1.2rem;
|
|
|
|
padding-right: 2.4rem;
|
|
|
|
}
|
2024-01-31 14:12:35 +01:00
|
|
|
}
|