mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-14 15:14:56 -04:00

* Rename one-click-embedding to click shield * Removes the static fallback image from the vimeo frame. The set URL is broken. * Adds the ability to define background colors for the click shield background Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
20 lines
373 B
SCSS
20 lines
373 B
SCSS
/*
|
|
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
.gist-resizer-row {
|
|
display: flex;
|
|
justify-content: center;
|
|
|
|
.gist-resizer {
|
|
display: flex;
|
|
width: 48px;
|
|
height: 5px;
|
|
background: white;
|
|
border-radius: 90px;
|
|
cursor: row-resize;
|
|
box-shadow: black 0 0 3px;
|
|
}
|
|
}
|