130 lines
2.4 KiB
SCSS
130 lines
2.4 KiB
SCSS
// Copyright 2021 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
.ContextMenu {
|
|
&__container {
|
|
align-items: center;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
&__popper {
|
|
@extend %module-composition-popper;
|
|
margin: 0;
|
|
padding-block: 6px;
|
|
padding-inline: 0px;
|
|
width: auto;
|
|
|
|
&--single-item {
|
|
padding: 0;
|
|
}
|
|
}
|
|
|
|
&__title {
|
|
@include font-body-1-bold;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
&__button {
|
|
@include button-reset();
|
|
}
|
|
|
|
&__option {
|
|
@include button-reset();
|
|
@include font-body-2;
|
|
@include dark-theme {
|
|
color: $color-gray-05;
|
|
}
|
|
|
|
align-items: center;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
min-width: 150px;
|
|
width: 100%;
|
|
|
|
&--container {
|
|
display: flex;
|
|
align-items: center;
|
|
padding-block: 7px;
|
|
padding-inline: 12px;
|
|
&--with-selection {
|
|
padding-inline-start: 8px;
|
|
padding-inline-end: 24px;
|
|
&::before {
|
|
content: '';
|
|
width: 16px;
|
|
height: 16px;
|
|
margin-inline-end: 8px;
|
|
}
|
|
}
|
|
&--selected::before {
|
|
@include light-theme {
|
|
@include color-svg(
|
|
'../images/icons/v3/check/check.svg',
|
|
$color-black
|
|
);
|
|
}
|
|
@include dark-theme {
|
|
@include color-svg(
|
|
'../images/icons/v3/check/check.svg',
|
|
$color-white
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
&--icon {
|
|
height: 16px;
|
|
margin-inline-end: 8px;
|
|
width: 16px;
|
|
}
|
|
|
|
&--container--with-selection &--icon {
|
|
margin-inline-end: 12px;
|
|
}
|
|
|
|
&--title {
|
|
@include font-body-2;
|
|
}
|
|
|
|
&--description {
|
|
@include font-subtitle;
|
|
}
|
|
|
|
&:hover {
|
|
@include light-theme() {
|
|
background-color: $color-gray-05;
|
|
}
|
|
|
|
@include dark-theme() {
|
|
background-color: $color-gray-65;
|
|
}
|
|
}
|
|
|
|
&--focused,
|
|
&:focus,
|
|
&:active {
|
|
@include keyboard-mode {
|
|
box-shadow: 0 0 1px 1px $color-ultramarine;
|
|
outline: none;
|
|
}
|
|
}
|
|
}
|
|
&__popper--single-item &__option--container {
|
|
padding-block: 12px;
|
|
}
|
|
&__popper--single-item &__divider {
|
|
border-style: solid;
|
|
border-width: 0 0 1px 0;
|
|
margin-top: 2px;
|
|
margin-bottom: 2px;
|
|
|
|
@include light-theme {
|
|
border-color: $color-gray-15;
|
|
}
|
|
|
|
@include dark-theme {
|
|
border-color: $color-gray-65;
|
|
}
|
|
}
|
|
}
|