signal-desktop/stylesheets/components/Stories.scss

187 lines
3.7 KiB
SCSS
Raw Normal View History

2022-03-04 21:14:52 +00:00
// Copyright 2022 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
.Stories {
background: $color-gray-95;
display: flex;
height: var(--window-height);
2023-04-20 17:03:43 +00:00
inset-inline-start: 0;
2022-03-04 21:14:52 +00:00
position: absolute;
2022-06-23 15:40:21 +00:00
top: 0;
2022-03-04 21:14:52 +00:00
user-select: none;
width: 100%;
2022-04-08 18:50:26 +00:00
z-index: $z-index-stories;
2022-03-04 21:14:52 +00:00
&__pane {
background: $color-gray-80;
2023-04-20 17:03:43 +00:00
border-inline-end: 1px solid $color-gray-65;
2022-03-04 21:14:52 +00:00
display: flex;
flex-direction: column;
height: 100%;
width: 380px;
2022-07-05 16:44:53 +00:00
padding-top: calc(14px + var(--title-bar-drag-area-height));
2022-03-04 21:14:52 +00:00
2022-08-04 19:23:24 +00:00
&__add-story__button {
@include color-svg('../images/icons/v2/plus-24.svg', $color-white);
height: 22px;
position: absolute;
2023-04-20 17:03:43 +00:00
inset-inline-end: 63px;
2022-08-04 19:23:24 +00:00
top: 0px;
width: 22px;
&:focus {
@include keyboard-mode {
background-color: $color-ultramarine;
}
}
2022-08-04 19:23:24 +00:00
}
2022-07-25 18:55:44 +00:00
&__settings__button {
@include dark-theme {
@include color-svg(
'../images/icons/v2/more-horiz-24.svg',
$color-white
);
}
height: 22px;
2023-04-20 17:03:43 +00:00
margin-inline-start: 24px;
opacity: 1;
2022-07-22 01:38:27 +00:00
position: absolute;
2023-04-20 17:03:43 +00:00
inset-inline-end: 16px;
top: 0px;
width: 22px;
&:focus {
@include keyboard-mode {
background-color: $color-ultramarine;
}
}
}
2022-03-04 21:14:52 +00:00
&__header {
align-items: center;
display: flex;
justify-content: space-between;
2023-04-20 17:03:43 +00:00
padding-block: 0;
padding-inline: 16px;
2022-07-22 01:38:27 +00:00
position: relative;
2022-03-04 21:14:52 +00:00
&--centered {
justify-content: flex-start;
}
&--title {
@include font-body-1-bold;
2022-03-09 19:33:43 +00:00
color: $color-gray-05;
2022-03-04 21:14:52 +00:00
display: flex;
flex: 1;
justify-content: center;
}
&--centered .Stories__pane__header--title {
text-align: center;
width: 100%;
}
&--back {
@include button-reset;
height: 24px;
2022-07-22 01:38:27 +00:00
position: absolute;
2022-03-04 21:14:52 +00:00
width: 24px;
2022-07-22 01:38:27 +00:00
@include color-svg(
'../images/icons/v2/chevron-left-24.svg',
$color-white
);
2022-03-04 21:14:52 +00:00
@include keyboard-mode {
&:hover {
@include color-svg(
'../images/icons/v2/chevron-left-24.svg',
$color-ultramarine-light
);
}
}
}
}
&__list {
@include scrollbar;
display: flex;
flex-direction: column;
2022-03-04 21:14:52 +00:00
flex: 1;
overflow-y: overlay;
2023-04-20 17:03:43 +00:00
padding-block: 0;
padding-inline: 14px;
2022-03-04 21:14:52 +00:00
&--empty {
@include font-body-1;
align-items: center;
color: $color-gray-45;
display: flex;
flex: 1;
2022-03-04 21:14:52 +00:00
flex-direction: column;
justify-content: center;
}
}
}
&__search__container {
2023-04-20 17:03:43 +00:00
margin-block: 14px 10px;
margin-inline: 16px;
2022-03-04 21:14:52 +00:00
}
&__placeholder {
align-items: center;
2022-05-06 16:18:02 +00:00
color: $color-gray-45;
2022-03-04 21:14:52 +00:00
display: flex;
flex-direction: column;
flex: 1;
justify-content: center;
&__stories {
height: 56px;
margin-bottom: 22px;
width: 56px;
@include color-svg(
'../images/icons/v2/stories-outline-56.svg',
2022-05-06 16:18:02 +00:00
$color-gray-45
2022-03-04 21:14:52 +00:00
);
}
}
2022-04-15 22:31:18 +00:00
&__hidden-stories {
@include button-reset;
@include font-body-1-bold;
align-items: center;
color: $color-gray-05;
display: flex;
justify-content: space-between;
2023-04-20 17:03:43 +00:00
padding-block: 12px;
padding-inline: 24px;
2022-04-15 22:31:18 +00:00
position: relative;
width: 100%;
&::after {
@include color-svg(
'../images/icons/v2/chevron-right-24.svg',
$color-gray-05
);
content: '';
height: 16px;
width: 16px;
}
&--expanded {
&::after {
@include color-svg(
'../images/icons/v2/chevron-down-24.svg',
$color-gray-05
);
}
}
}
2022-03-04 21:14:52 +00:00
}