33 lines
780 B
Sass
33 lines
780 B
Sass
// SPDX-FileCopyrightText: 2022 Gregor Kleen <gregor.kleen@ifi.lmu.de>
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
// SPDX-License-Identifier: LicenseRef-Fraport-Corporate-Design
|
|
|
|
@use "../../app" as *
|
|
|
|
.massinput-list__wrapper, .massinput-list__cell
|
|
display: grid
|
|
grid: auto / auto 50px
|
|
max-width: 600px
|
|
grid-gap: 7px
|
|
|
|
.massinput-list__field
|
|
grid-column: 1
|
|
|
|
.massinput-list__add, .massinput-list__delete
|
|
grid-column: 2
|
|
|
|
.massinput-list__cell
|
|
grid-column: 1 / 3
|
|
|
|
/* .massinput--safety-submitted
|
|
/* animation: massinput--safety-submitted linear 1s
|
|
|
|
/* @keyframes massinput--safety-submitted
|
|
/* 0%
|
|
/* background-color: rgba(252, 153, 0, 0)
|
|
/* 50%
|
|
/* background-color: rgba(252, 153, 0, 0.8)
|
|
/* 100%
|
|
/* background-color: rgba(252, 153, 0, 0)
|