ds4/scss/components/actor/_actor_properties.scss

37 lines
638 B
SCSS
Raw Normal View History

2021-07-11 05:04:05 +02:00
/*
* SPDX-FileCopyrightText: 2021 Johannes Loher
* SPDX-FileCopyrightText: 2021 Oliver Rümpelein
* SPDX-FileCopyrightText: 2021 Gesina Schwalbe
*
* SPDX-License-Identifier: MIT
*/
2022-01-21 03:22:17 +01:00
@use "../../utils/mixins";
@use "../../utils/variables";
2021-07-11 05:04:05 +02:00
2021-07-12 00:12:59 +02:00
.ds4-actor-properties {
2023-07-10 22:23:13 +02:00
@include mixins.mark-invalid-or-disabled-input;
display: flex;
gap: 0.25em;
2021-07-11 05:04:05 +02:00
2023-07-10 22:23:13 +02:00
&__property {
flex: 1;
}
2021-07-11 05:04:05 +02:00
2023-07-10 22:23:13 +02:00
&__property-label {
font-size: 0.9em;
font-weight: bold;
white-space: nowrap;
}
2021-07-11 05:04:05 +02:00
2023-07-10 22:23:13 +02:00
&__property-select {
width: 100%;
height: var(--form-field-height);
}
2021-07-12 00:12:59 +02:00
2023-07-10 22:23:13 +02:00
&__property-multi-input {
display: flex;
gap: 0.125em;
}
2021-07-11 05:04:05 +02:00
}