2023-03-20 22:23:53 +00:00
|
|
|
// Copyright 2023 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
.SelectModeActions {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
width: 100%;
|
2023-05-04 18:04:22 +00:00
|
|
|
padding-inline: 4px;
|
2023-03-20 22:23:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.SelectModeActions__selectedMessages {
|
|
|
|
flex: 1;
|
2023-04-20 17:03:43 +00:00
|
|
|
padding-block: 17px;
|
|
|
|
padding-inline: 10px;
|
2023-03-20 22:23:53 +00:00
|
|
|
@include font-body-1;
|
|
|
|
@include light-theme() {
|
|
|
|
color: $color-gray-60;
|
|
|
|
}
|
|
|
|
@include dark-theme() {
|
|
|
|
color: $color-gray-25;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.SelectModeActions__button {
|
|
|
|
appearance: none;
|
2023-05-04 18:04:22 +00:00
|
|
|
padding: 12px;
|
2023-03-20 22:23:53 +00:00
|
|
|
border: none;
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.SelectModeActions__icon {
|
|
|
|
display: block;
|
2023-05-04 18:04:22 +00:00
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
2023-03-20 22:23:53 +00:00
|
|
|
@include light-theme {
|
|
|
|
color: $color-gray-75;
|
|
|
|
}
|
|
|
|
@include dark-theme {
|
|
|
|
color: $color-gray-15;
|
|
|
|
}
|
|
|
|
|
|
|
|
.SelectModeActions__button--disabled & {
|
|
|
|
@include light-theme {
|
|
|
|
color: $color-gray-25;
|
|
|
|
}
|
|
|
|
@include dark-theme {
|
|
|
|
color: $color-gray-60;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.SelectModeActions__icon--exitSelectMode {
|
2023-05-04 18:04:22 +00:00
|
|
|
@include color-svg('../images/icons/v3/x/x.svg', currentColor);
|
2023-03-20 22:23:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.SelectModeActions__icon--forwardSelectedMessages {
|
2023-05-04 18:04:22 +00:00
|
|
|
@include color-svg('../images/icons/v3/forward/forward.svg', currentColor);
|
2023-03-20 22:23:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.SelectModeActions__icon--deleteSelectedMessages {
|
2023-05-04 18:04:22 +00:00
|
|
|
@include color-svg('../images/icons/v3/trash/trash.svg', currentColor);
|
2023-03-20 22:23:53 +00:00
|
|
|
}
|