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>
49 lines
1,012 B
SCSS
49 lines
1,012 B
SCSS
/*
|
|
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
.dropdown-menu {
|
|
color: $dropdown-color;
|
|
background-color: $dropdown-bg;
|
|
border-color: $dropdown-border-color;
|
|
|
|
@include box-shadow($dropdown-box-shadow);
|
|
}
|
|
|
|
// Dividers (basically an `<hr>`) within the dropdown
|
|
.dropdown-divider {
|
|
@include nav-divider($dropdown-divider-bg, $dropdown-divider-margin-y, true);
|
|
}
|
|
|
|
.dropdown-item {
|
|
color: $dropdown-link-color;
|
|
|
|
@include hover-focus() {
|
|
color: $dropdown-link-hover-color;
|
|
@include gradient-bg($dropdown-link-hover-bg);
|
|
}
|
|
|
|
&.active,
|
|
&:active {
|
|
color: $dropdown-link-active-color;
|
|
@include gradient-bg($dropdown-link-active-bg);
|
|
}
|
|
|
|
&.disabled,
|
|
&:disabled {
|
|
color: $dropdown-link-disabled-color;
|
|
background-color: transparent;
|
|
}
|
|
}
|
|
|
|
// Dropdown section headers
|
|
.dropdown-header {
|
|
color: $dropdown-header-color;
|
|
}
|
|
|
|
// Dropdown text
|
|
.dropdown-item-text {
|
|
color: $dropdown-link-color;
|
|
}
|