mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-05-08 08:58:38 +01:00
Lets users send stories to groups
This commit is contained in:
@@ -11,7 +11,7 @@
|
||||
&__popper {
|
||||
@extend %module-composition-popper;
|
||||
margin: 0;
|
||||
padding: 6px 0;
|
||||
padding: 6px 2px;
|
||||
width: auto;
|
||||
|
||||
&--single-item {
|
||||
@@ -40,8 +40,8 @@
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
padding: 6px;
|
||||
margin: 0 2px;
|
||||
min-width: 150px;
|
||||
width: 100%;
|
||||
|
||||
&--container {
|
||||
display: flex;
|
||||
|
||||
@@ -132,6 +132,7 @@
|
||||
}
|
||||
|
||||
&__body {
|
||||
@include scrollbar;
|
||||
@include font-body-1;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
@@ -2,6 +2,52 @@
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
.SendStoryModal {
|
||||
&__top-bar {
|
||||
align-items: center;
|
||||
display: flex;
|
||||
min-height: 40px;
|
||||
justify-content: space-between;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
&__new-story {
|
||||
&__container {
|
||||
&::before {
|
||||
@include color-svg('../images/icons/v2/plus-20.svg', $color-white);
|
||||
content: '';
|
||||
height: 16px;
|
||||
margin-right: 8px;
|
||||
width: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
&__option--description {
|
||||
color: $color-gray-25;
|
||||
}
|
||||
}
|
||||
|
||||
&__icon {
|
||||
&--lock {
|
||||
@include color-svg(
|
||||
'../images/icons/v2/lock-outline-24.svg',
|
||||
$color-white
|
||||
);
|
||||
height: 14px;
|
||||
margin-top: 4px;
|
||||
width: 11px;
|
||||
}
|
||||
|
||||
&--group {
|
||||
@include color-svg(
|
||||
'../images/icons/v2/group-outline-24.svg',
|
||||
$color-white
|
||||
);
|
||||
height: 14px;
|
||||
margin-top: 2px;
|
||||
width: 14px;
|
||||
}
|
||||
}
|
||||
|
||||
&__distribution-list {
|
||||
&__container {
|
||||
justify-content: space-between;
|
||||
@@ -29,29 +75,98 @@
|
||||
@include font-body-2;
|
||||
color: $color-gray-60;
|
||||
}
|
||||
}
|
||||
|
||||
&__button-footer {
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
&__checkbox {
|
||||
margin-right: 0;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
&__checkbox input[type='checkbox'] {
|
||||
cursor: pointer;
|
||||
height: 0;
|
||||
position: absolute;
|
||||
width: 0;
|
||||
|
||||
@include keyboard-mode {
|
||||
&:focus {
|
||||
&::before {
|
||||
border-color: $color-ultramarine;
|
||||
}
|
||||
outline: none;
|
||||
}
|
||||
}
|
||||
|
||||
&::before {
|
||||
@include rounded-corners;
|
||||
background: inherit;
|
||||
border: 1.5px solid $color-gray-60;
|
||||
content: '';
|
||||
display: block;
|
||||
height: 20px;
|
||||
position: absolute;
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
&:checked {
|
||||
&::before {
|
||||
background: $color-ultramarine;
|
||||
border: 1.5px solid $color-ultramarine;
|
||||
}
|
||||
|
||||
&::after {
|
||||
border: solid $color-white;
|
||||
border-width: 0 2px 2px 0;
|
||||
content: '';
|
||||
display: block;
|
||||
height: 11px;
|
||||
left: 7px;
|
||||
position: absolute;
|
||||
top: 3px;
|
||||
transform: rotate(45deg);
|
||||
width: 6px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&__selected-lists {
|
||||
@include font-body-2;
|
||||
color: $color-gray-60;
|
||||
color: $color-gray-15;
|
||||
max-width: 280px;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
&__ok {
|
||||
@include button-reset;
|
||||
@include rounded-corners;
|
||||
align-items: center;
|
||||
background: $color-ultramarine;
|
||||
display: flex;
|
||||
height: 32px;
|
||||
justify-content: center;
|
||||
width: 32px;
|
||||
|
||||
&::disabled {
|
||||
background: $color-gray-60;
|
||||
}
|
||||
|
||||
&::after {
|
||||
@include color-svg('../images/icons/v2/check-24.svg', $color-white);
|
||||
content: '';
|
||||
height: 18px;
|
||||
width: 18px;
|
||||
}
|
||||
}
|
||||
|
||||
&__send {
|
||||
@include button-reset;
|
||||
@include rounded-corners;
|
||||
align-items: center;
|
||||
background: $color-ultramarine;
|
||||
display: flex;
|
||||
height: 40px;
|
||||
height: 32px;
|
||||
justify-content: center;
|
||||
width: 40px;
|
||||
width: 32px;
|
||||
|
||||
&::disabled {
|
||||
background: $color-gray-60;
|
||||
@@ -60,8 +175,16 @@
|
||||
&::after {
|
||||
@include color-svg('../images/icons/v2/send-24.svg', $color-white);
|
||||
content: '';
|
||||
height: 24px;
|
||||
width: 24px;
|
||||
height: 18px;
|
||||
width: 18px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.module-Modal--sticky-buttons .SendStoryModal__button-footer {
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding-top: 0;
|
||||
padding-left: 16px;
|
||||
padding-right: 16px;
|
||||
}
|
||||
|
||||
@@ -2,13 +2,71 @@
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
.StoriesSettingsModal {
|
||||
&__modal {
|
||||
.module-conversation-list {
|
||||
padding: 0;
|
||||
&__conversation-list {
|
||||
.module-conversation-list,
|
||||
.module-conversation-list__item--contact-or-conversation {
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
.module-conversation-list__item--contact-or-conversation {
|
||||
padding: 0;
|
||||
.module-conversation-list__item--contact-or-conversation__checkbox--container {
|
||||
height: 20px;
|
||||
margin-right: 8px;
|
||||
position: relative;
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
input[type='checkbox'] {
|
||||
background: transparent;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
display: block;
|
||||
height: 0;
|
||||
margin: 0;
|
||||
min-width: 0;
|
||||
position: absolute;
|
||||
width: 0;
|
||||
|
||||
@include keyboard-mode {
|
||||
&:focus {
|
||||
&::before {
|
||||
border-color: $color-ultramarine;
|
||||
}
|
||||
outline: none;
|
||||
}
|
||||
}
|
||||
|
||||
&::before {
|
||||
@include rounded-corners;
|
||||
background: inherit;
|
||||
border: 1.5px solid $color-gray-60;
|
||||
content: '';
|
||||
display: block;
|
||||
height: 20px;
|
||||
position: absolute;
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
&:checked {
|
||||
&::before {
|
||||
-webkit-mask: none;
|
||||
background: $color-ultramarine;
|
||||
border: 1.5px solid $color-ultramarine;
|
||||
}
|
||||
|
||||
&::after {
|
||||
border: solid $color-white;
|
||||
border-width: 0 2px 2px 0;
|
||||
content: '';
|
||||
display: block;
|
||||
height: 11px;
|
||||
left: 7px;
|
||||
position: absolute;
|
||||
top: 3px;
|
||||
transform: rotate(45deg);
|
||||
width: 6px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -57,11 +115,21 @@
|
||||
}
|
||||
|
||||
&--private {
|
||||
@include avatar('../images/icons/v2/group-solid-24.svg');
|
||||
@include avatar('../images/icons/v2/lock-outline-24.svg');
|
||||
|
||||
&::after {
|
||||
height: 16px;
|
||||
width: 12px;
|
||||
}
|
||||
|
||||
&--large {
|
||||
height: 64px;
|
||||
width: 64px;
|
||||
|
||||
&::after {
|
||||
height: 24px;
|
||||
width: 18px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user