signal-desktop/stylesheets/components/Stories.scss

187 lines
3.8 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 {
2023-05-04 18:04:22 +00:00
@include color-svg('../images/icons/v3/plus/plus.svg', $color-white);
height: 20px;
2022-08-04 19:23:24 +00:00
position: absolute;
2023-05-04 18:04:22 +00:00
inset-inline-end: 64px;
2022-08-04 19:23:24 +00:00
top: 0px;
2023-05-04 18:04:22 +00:00
width: 20px;
&: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 {
2023-05-04 18:04:22 +00:00
@include color-svg('../images/icons/v3/more/more.svg', $color-white);
}
2023-05-04 18:04:22 +00:00
height: 20px;
margin-inline-start: 20px;
opacity: 1;
2022-07-22 01:38:27 +00:00
position: absolute;
2023-05-04 18:04:22 +00:00
inset-inline-end: 24px;
top: 0px;
2023-05-04 18:04:22 +00:00
width: 20px;
&: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;
-webkit-app-region: no-drag;
2023-05-04 18:04:22 +00:00
height: 20px;
2022-07-22 01:38:27 +00:00
position: absolute;
2023-05-04 18:04:22 +00:00
width: 20px;
2022-03-04 21:14:52 +00:00
2022-07-22 01:38:27 +00:00
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/chevron/chevron-left.svg',
2022-07-22 01:38:27 +00:00
$color-white
);
2022-03-04 21:14:52 +00:00
@include keyboard-mode {
&:hover {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/chevron/chevron-left.svg',
2022-03-04 21:14:52 +00:00
$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(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/stories/stories-display.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(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/chevron/chevron-right.svg',
2022-04-15 22:31:18 +00:00
$color-gray-05
);
content: '';
height: 16px;
width: 16px;
}
&--expanded {
2023-05-04 18:04:22 +00:00
// Override color-svg
:dir(ltr) &::after,
:dir(rtl) &::after {
2022-04-15 22:31:18 +00:00
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/chevron/chevron-down.svg',
2022-04-15 22:31:18 +00:00
$color-gray-05
);
}
}
}
2022-03-04 21:14:52 +00:00
}