mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-23 02:06:29 -05:00
77a60c6c48
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
30 lines
480 B
SCSS
30 lines
480 B
SCSS
/*
|
|
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
.carousel-control-prev,
|
|
.carousel-control-next {
|
|
color: $carousel-control-color;
|
|
|
|
// Hover/focus state
|
|
@include hover-focus() {
|
|
color: $carousel-control-color;
|
|
}
|
|
}
|
|
|
|
.carousel-indicators {
|
|
li {
|
|
background-color: $carousel-indicator-active-bg;
|
|
}
|
|
}
|
|
|
|
|
|
// Optional captions
|
|
//
|
|
//
|
|
|
|
.carousel-caption {
|
|
color: $carousel-caption-color;
|
|
}
|