signal-desktop/stylesheets/components/ProfileEditor.scss

163 lines
3.2 KiB
SCSS
Raw Normal View History

2023-01-03 19:55:46 +00:00
// Copyright 2021 Signal Messenger, LLC
2021-07-19 19:26:06 +00:00
// SPDX-License-Identifier: AGPL-3.0-only
.ProfileEditor {
&__icon {
&--container {
align-items: center;
display: flex;
font-size: 24px;
justify-content: center;
width: 32px;
2022-10-18 17:12:02 +00:00
height: 32px;
2021-07-19 19:26:06 +00:00
}
&::after {
-webkit-mask-size: 100%;
content: '';
display: block;
height: 24px;
width: 24px;
@include light-theme {
background-color: $color-gray-75;
}
@include dark-theme {
background-color: $color-gray-15;
}
}
&--name {
&::after {
2023-05-04 18:04:22 +00:00
@include light-theme {
@include color-svg(
'../images/icons/v3/person/person.svg',
$color-gray-75
);
}
@include dark-theme {
@include color-svg(
'../images/icons/v3/person/person.svg',
$color-gray-15
);
}
2021-07-19 19:26:06 +00:00
}
}
&--username {
&::after {
2023-05-04 18:04:22 +00:00
@include light-theme {
@include color-svg('../images/icons/v3/at/at.svg', $color-gray-75);
}
@include dark-theme {
@include color-svg('../images/icons/v3/at/at.svg', $color-gray-15);
}
}
}
2021-07-19 19:26:06 +00:00
&--bio {
&::after {
2023-05-04 18:04:22 +00:00
@include light-theme {
@include color-svg(
2023-05-05 16:23:43 +00:00
'../images/icons/v3/edit/edit.svg',
2023-05-04 18:04:22 +00:00
$color-gray-75
);
}
@include dark-theme {
@include color-svg(
2023-05-05 16:23:43 +00:00
'../images/icons/v3/edit/edit.svg',
2023-05-04 18:04:22 +00:00
$color-gray-15
);
}
2021-07-19 19:26:06 +00:00
}
}
}
&__row {
2023-04-20 17:03:43 +00:00
padding-inline: 0;
2021-07-19 19:26:06 +00:00
}
&__divider {
border-style: solid;
2021-08-06 21:35:25 +00:00
border-bottom: none;
@include light-theme {
border-color: $color-gray-15;
}
@include dark-theme {
border-color: $color-gray-75;
}
2021-07-19 19:26:06 +00:00
}
&__info {
@include font-body-2;
2023-04-20 17:03:43 +00:00
margin-block: 16px;
margin-inline: 0;
2021-08-06 21:35:25 +00:00
@include light-theme {
color: $color-gray-60;
}
@include dark-theme {
color: $color-gray-25;
}
a {
2021-11-20 15:41:32 +00:00
font-weight: 600;
2021-08-06 21:35:25 +00:00
text-decoration: none;
}
2022-10-18 17:12:02 +00:00
}
&__username-menu {
&__button {
width: 20px;
height: 20px;
margin: 4px;
@include dark-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/chevron/chevron-down.svg',
2022-10-18 17:12:02 +00:00
$color-white
);
}
@include light-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/chevron/chevron-down.svg',
2022-10-18 17:12:02 +00:00
$color-black
);
}
}
&__copy-icon {
@include dark-theme {
2023-05-04 18:04:22 +00:00
@include color-svg('../images/icons/v3/copy/copy.svg', $color-white);
2022-10-18 17:12:02 +00:00
}
@include light-theme {
2023-05-04 18:04:22 +00:00
@include color-svg('../images/icons/v3/copy/copy.svg', $color-black);
2022-10-18 17:12:02 +00:00
}
}
&__copy-link-icon {
@include dark-theme {
2023-05-04 18:04:22 +00:00
@include color-svg('../images/icons/v3/link/link.svg', $color-white);
2022-10-18 17:12:02 +00:00
}
@include light-theme {
2023-05-04 18:04:22 +00:00
@include color-svg('../images/icons/v3/link/link.svg', $color-black);
2022-10-18 17:12:02 +00:00
}
}
2021-11-12 01:17:29 +00:00
2022-10-18 17:12:02 +00:00
&__trash-icon {
@include dark-theme {
2023-05-04 18:04:22 +00:00
@include color-svg('../images/icons/v3/trash/trash.svg', $color-white);
2022-10-18 17:12:02 +00:00
}
@include light-theme {
2023-05-04 18:04:22 +00:00
@include color-svg('../images/icons/v3/trash/trash.svg', $color-black);
2022-10-18 17:12:02 +00:00
}
2021-11-12 01:17:29 +00:00
}
2021-07-19 19:26:06 +00:00
}
}