signal-desktop/stylesheets/components/MediaEditor.scss

323 lines
6.8 KiB
SCSS
Raw Normal View History

2021-12-01 02:14:25 +00:00
// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
.MediaEditor {
$tools-height: 44px;
2021-12-01 02:14:25 +00:00
background: $color-gray-95;
display: flex;
flex-direction: column;
2022-07-05 16:44:53 +00:00
width: var(--window-width);
height: var(--window-height);
2023-04-20 17:03:43 +00:00
inset-inline-start: 0;
top: var(--titlebar-height);
2022-07-05 16:44:53 +00:00
position: absolute;
2021-12-01 02:14:25 +00:00
user-select: none;
-webkit-app-region: no-drag;
2021-12-01 23:13:09 +00:00
z-index: $z-index-popup-overlay;
2021-12-01 02:14:25 +00:00
&__container {
display: flex;
flex: 1;
2023-04-20 17:03:43 +00:00
padding-block: 22px;
padding-inline: 60px;
2021-12-01 02:14:25 +00:00
padding-bottom: 0;
overflow: hidden;
}
&__media {
align-items: center;
display: flex;
height: 100%;
justify-content: center;
position: relative;
width: 100%;
&--canvas {
border-radius: 12px;
transition: border-radius 200ms ease-out;
&--cropping {
border-radius: 0;
}
}
}
&__control {
@include button-reset;
align-items: center;
border-radius: 32px;
display: inline-flex;
height: 32px;
justify-content: center;
2023-04-20 17:03:43 +00:00
margin-block: 0;
2023-05-04 18:04:22 +00:00
margin-inline: 18px;
2021-12-01 02:14:25 +00:00
opacity: 1;
width: 32px;
&::after {
content: ' ';
2023-05-04 18:04:22 +00:00
height: 20px;
width: 20px;
2021-12-01 02:14:25 +00:00
}
&--crop::after {
2023-05-04 18:04:22 +00:00
@include color-svg(
'../images/icons/v3/crop/crop-rotate.svg',
$color-white
);
2021-12-01 02:14:25 +00:00
}
&--pen::after {
@include color-svg('../images/icons/v2/draw-24.svg', $color-white);
}
&--redo {
&::after {
2023-05-04 18:04:22 +00:00
@include color-svg('../images/icons/v3/redo/redo.svg', $color-white);
2021-12-01 02:14:25 +00:00
}
&:disabled::after {
2023-05-04 18:04:22 +00:00
@include color-svg('../images/icons/v3/redo/redo.svg', $color-gray-45);
2021-12-01 02:14:25 +00:00
}
}
&--sticker.module-sticker-button__button::after {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/sticker/sticker-smiley.svg',
2021-12-01 02:14:25 +00:00
$color-white
);
}
&--text::after {
@include color-svg('../images/icons/v2/text-24.svg', $color-white);
}
&--undo {
&::after {
2023-05-04 18:04:22 +00:00
@include color-svg('../images/icons/v3/undo/undo.svg', $color-white);
2021-12-01 02:14:25 +00:00
}
&:disabled::after {
2023-05-04 18:04:22 +00:00
@include color-svg('../images/icons/v3/undo/undo.svg', $color-gray-45);
2021-12-01 02:14:25 +00:00
}
}
&--selected {
background-color: $color-white;
&::after {
background-color: $color-black;
}
}
&:hover {
background-color: $color-gray-80;
&::after {
background-color: $color-white;
}
}
}
&__toolbar {
align-items: center;
display: flex;
flex-direction: column;
justify-content: center;
padding: 22px;
width: 100%;
&--buttons {
align-items: center;
display: flex;
justify-content: center;
width: 100%;
}
&--space {
height: $tools-height;
2021-12-01 02:14:25 +00:00
margin-bottom: 22px;
}
2022-10-04 23:17:15 +00:00
&__caption {
height: $tools-height;
margin-bottom: 22px;
&__add-caption-button {
@include button-reset;
border-radius: 9999px;
background: $color-gray-90;
color: $color-gray-15;
2023-04-20 17:03:43 +00:00
padding-block: 8px;
padding-inline: 15px;
2022-10-04 23:17:15 +00:00
border: none;
& > span {
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 1;
overflow: hidden;
}
}
}
2021-12-01 02:14:25 +00:00
}
&__controls {
display: flex;
flex-grow: 1;
flex-wrap: wrap;
justify-content: center;
max-width: 596px;
}
&__tools {
align-items: center;
background-color: $color-gray-90;
border-radius: 10px;
color: $color-white;
display: flex;
height: $tools-height;
justify-content: center;
margin-bottom: 22px;
2023-04-20 17:03:43 +00:00
padding-block: 14px;
padding-inline: 12px;
2021-12-01 02:14:25 +00:00
2022-07-25 18:55:44 +00:00
&__tool,
&__tool__button {
2023-04-20 17:03:43 +00:00
margin-inline-end: 14px;
2021-12-01 02:14:25 +00:00
}
&__button {
@mixin icon($icon) {
2023-05-23 21:14:47 +00:00
@include color-svg('../images/icons/#{$icon}', $color-white);
opacity: 1;
height: 20px;
width: 20px;
border-radius: 0;
2021-12-01 02:14:25 +00:00
&::after {
display: none;
}
}
2021-12-01 02:14:25 +00:00
@include button-reset;
2022-07-25 18:55:44 +00:00
display: flex;
2023-04-20 17:03:43 +00:00
margin-block: 0;
margin-inline: 8px;
padding: 8px;
2021-12-01 02:14:25 +00:00
&--words {
height: auto;
width: auto;
2023-04-20 17:03:43 +00:00
padding-block: 0;
padding-inline: 6px;
}
2021-12-01 02:14:25 +00:00
2022-07-25 18:55:44 +00:00
&--draw-pen__button {
2023-05-23 21:14:47 +00:00
@include icon('v3/brush/brush-pen-compact.svg');
}
2022-07-25 18:55:44 +00:00
&--draw-highlighter__button {
2023-05-23 21:14:47 +00:00
@include icon('v3/brush/brush-highlighter-compact.svg');
}
2022-07-25 18:55:44 +00:00
&--width-thin__button {
2023-05-23 21:14:47 +00:00
@include icon('v3/brush_size/brush_size-thin-compact.svg');
}
2022-07-25 18:55:44 +00:00
&--width-regular__button {
2023-05-23 21:14:47 +00:00
@include icon('v3/brush_size/brush_size-regular-compact.svg');
}
2022-07-25 18:55:44 +00:00
&--width-medium__button {
2023-05-23 21:14:47 +00:00
@include icon('v3/brush_size/brush_size-medium-compact.svg');
}
2022-07-25 18:55:44 +00:00
&--width-heavy__button {
2023-05-23 21:14:47 +00:00
@include icon('v3/brush_size/brush_size-heavy-compact.svg');
}
2022-07-25 18:55:44 +00:00
&--text-regular__button {
2023-05-23 21:14:47 +00:00
@include icon('v3/text/text-square-compact.svg');
}
2022-07-25 18:55:44 +00:00
&--text-highlight__button {
2023-05-23 21:14:47 +00:00
@include icon('v3/text/text-square-fill-compact.svg');
}
2022-07-25 18:55:44 +00:00
&--text-outline__button {
2023-05-23 21:14:47 +00:00
@include icon('v3/text/text-outline-compact.svg');
}
&--rotate {
2023-05-23 21:14:47 +00:00
@include icon('v2/rotate-outline-24.svg');
}
&--flip {
2023-05-23 21:14:47 +00:00
@include icon('v2/flip-outline-24.svg');
}
&--crop-locked {
2023-05-23 21:14:47 +00:00
@include icon('v3/crop/crop-lock.svg');
}
&--crop-unlocked {
2023-05-23 21:14:47 +00:00
@include icon('v3/crop/crop-unlock.svg');
}
2021-12-01 02:14:25 +00:00
}
}
&__icon {
&--draw-pen {
2023-05-23 21:14:47 +00:00
@include color-svg(
'../images/icons/v3/brush/brush-pen-compact.svg',
$color-white
);
2021-12-01 02:14:25 +00:00
}
&--draw-highlighter {
@include color-svg(
2023-05-23 21:14:47 +00:00
'../images/icons/v3/brush/brush-highlighter-compact.svg',
2021-12-01 02:14:25 +00:00
$color-white
);
}
&--text-regular {
@include color-svg(
2023-05-23 21:14:47 +00:00
'../images/icons/v3/text/text-square-compact.svg',
2021-12-01 02:14:25 +00:00
$color-white
);
}
&--text-highlight {
@include color-svg(
2023-05-23 21:14:47 +00:00
'../images/icons/v3/text/text-square-fill-compact.svg',
2021-12-01 02:14:25 +00:00
$color-white
);
}
&--text-outline {
@include color-svg(
2023-05-23 21:14:47 +00:00
'../images/icons/v3/text/text-outline-compact.svg',
2021-12-01 02:14:25 +00:00
$color-white
);
}
&--width-thin {
2023-05-23 21:14:47 +00:00
@include color-svg(
'../images/icons/v3/brush_size/brush_size-thin-compact.svg',
$color-white
);
2021-12-01 02:14:25 +00:00
}
&--width-regular {
2023-05-23 21:14:47 +00:00
@include color-svg(
'../images/icons/v3/brush_size/brush_size-regular-compact.svg',
$color-white
);
2021-12-01 02:14:25 +00:00
}
&--width-medium {
2023-05-23 21:14:47 +00:00
@include color-svg(
'../images/icons/v3/brush_size/brush_size-medium-compact.svg',
$color-white
);
2021-12-01 02:14:25 +00:00
}
&--width-heavy {
2023-05-23 21:14:47 +00:00
@include color-svg(
'../images/icons/v3/brush_size/brush_size-heavy-compact.svg',
$color-white
);
2021-12-01 02:14:25 +00:00
}
}
}