mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-20 18:25:21 -04:00

Doing this BEFORE the merge prevents a lot of merge conflicts. Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
21 lines
404 B
SCSS
21 lines
404 B
SCSS
/*!
|
|
* SPDX-FileCopyrightText: 2022 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
.image-drop {
|
|
border: 3px dashed var(--bs-dark);
|
|
|
|
border-radius: 3px;
|
|
transition: background-color 50ms, color 50ms;
|
|
|
|
.altText {
|
|
text-overflow: ellipsis;
|
|
flex: 1 1;
|
|
overflow: hidden;
|
|
width: 100%;
|
|
white-space: nowrap;
|
|
text-align: center;
|
|
}
|
|
}
|