session-desktop/stylesheets/_session_left_pane.scss

570 lines
11 KiB
SCSS
Raw Normal View History

$session-compose-margin: 20px;
.gutter {
width: 380px !important;
padding-right: 5px !important;
transition: $session-transition-duration;
@include themify($themes) {
background: themed('cellBackground');
}
}
2020-01-16 05:04:44 +01:00
.module-conversation {
&-list-item {
transition: $session-transition-duration;
&:hover {
@include themify($themes) {
background: themed('clickableHovered');
2020-01-16 05:04:44 +01:00
}
}
&--is-selected {
@include themify($themes) {
background: themed('conversationItemSelected');
2020-01-16 05:04:44 +01:00
}
.module-conversation__user__profile-number,
.module-conversation__user__profile-name,
.module-conversation-list-item__message__text {
@include themify($themes) {
color: themed('textColor');
}
2020-01-16 05:04:44 +01:00
}
}
&--has-unread {
border-left: $session-element-border-green !important;
@include themify($themes) {
background: themed('conversationItemHasUnread');
}
}
&__unread-count {
@include themify($themes) {
color: themed('textColor');
background-color: themed('clickableHovered');
}
2020-01-14 03:28:31 +01:00
position: static !important;
font-weight: 700 !important;
box-shadow: none !important;
margin: 0 !important;
}
&__header__date,
&__header__date--has-unread {
flex-grow: 1 !important;
text-align: end !important;
}
&__message__text {
color: $session-shade-17;
&--has-unread {
@include themify($themes) {
color: themed('textColor');
}
}
}
&__header__name {
flex-grow: 0 !important;
padding-right: 5px !important;
@at-root .light-theme #{&} {
color: $session-color-black;
}
@at-root .dark-theme #{&} {
color: $session-shade-17;
}
}
&__header__name--with-unread .module-conversation__user__profile-number,
&__header__name--with-unread .module-conversation__user__profile-name {
@include themify($themes) {
color: themed('textColor');
}
}
}
&__user__profile {
&-number,
&-name {
2020-04-23 09:41:07 +02:00
@include fontAccentBold();
font-size: 15px;
@include themify($themes) {
color: themed('textColorSubtle');
}
}
}
}
.module-left-pane {
width: $session-left-pane-width;
position: relative;
height: -webkit-fill-available;
&-session {
display: flex;
Integration tests (#975) * add first integration test Session Checking window title Checking window count Can restore from seed * FIXME torevert once found why this crash on app close * [test] add join valid open group test * [test] validate cannot join two times the same open group * [test] move common things to common.js * [test] move tests to separate files * [test] clean * [test] add send message to open group test * [test] lint * [test] rename hooks -> common * [test] add 15s delay before considering test as slow * upgrade electron 8.0.3 and spectron 10.0.0 * [test] signin from seed: validate pubkey * Replace spellchecker in favor of typo-js * [test] refactor common calls to common.js * [test] add two different pubkey, mnemonic and displayname * [test] FIXME unsafe eval needed for now * [test] add: add friends test * [test] working multi instance tests * [test] FIXME disable snodeproxy * [test] update yarn.lock * [test] make tests more robust with restart from scratch each test * [test] add link of two devices test and hard rm of apps before start (rm -r) * remove unused file * [test] lint * [test] add registration from generated pubkey test * [test] add beginning of network stub * [test] stub "token" endpoint * [test] add test of one message on pub group pull * [test] add starting port randomize. looks to help for some bad start with multi instance * [test] add stub for one to one chats (sessions) * [test] clean code * [test] finish add friend test and stub snode server * [test] stub calls during link device test * [test] add a flag to show some logs on stubbed snode * [test] finish link of two device test. check both pubkey matches * [test] add and use function to wrap erase+start+login+stub app * [test] add method to login as friend and closed group test&messages * Revert "[test] FIXME unsafe eval needed for now" This reverts commit de5322fdae6cdab8e3b9bd9a52b7d172c9bc2d26. * [test] apply review * [test] fix lint * [test] fix existing test with new spectron version * [test] fix lint * [test] refactor page objects * [test] add delete account test * [test] add unlink of two device test * [test] make tiny waitForExists -> isExisting * [test] add checks of link new device buttons * upgrade fs-extra@9.0.0 * address pr review * [test] fix spell_check test Co-authored-by: Josh Perez <60019601+josh-signal@users.noreply.github.com>
2020-03-25 01:42:53 +01:00
height: 100vh;
}
&__sections-container {
height: -webkit-fill-available;
width: $session-left-pane-sections-container-width;
display: inline-flex;
flex-direction: column;
@include themify($themes) {
border-right: themed('borderActionPanel');
}
.module-avatar,
.session-icon-button {
cursor: pointer;
padding: 30px;
&:last-child {
margin: auto auto 0px auto;
/* Hide theme icon until light theme is ready */
}
&:first-child {
padding: 0;
margin: 30px auto;
}
}
}
&__header {
display: flex;
flex-direction: row;
2020-02-12 05:50:23 +01:00
justify-content: space-between;
align-items: center;
2020-02-14 01:55:15 +01:00
height: $main-view-header-height;
padding-right: 7px;
2020-08-24 06:10:40 +02:00
transition: $session-transition-duration;
.session-button {
margin-left: auto;
2020-04-23 09:41:07 +02:00
@include fontAccentBold();
}
&-buttons {
margin-bottom: $session-margin-sm;
display: inline-flex;
width: 100%;
.session-button {
flex: 1;
}
}
}
&__title {
cursor: pointer;
padding-right: $session-margin-sm;
padding-left: $session-margin-sm;
transition: $session-transition-duration;
}
&__list {
height: -webkit-fill-available;
2020-02-12 05:03:20 +01:00
&-popup {
width: -webkit-fill-available;
height: -webkit-fill-available;
position: absolute;
}
}
&-compose {
@at-root .light-theme #{&} {
background: $session-color-white;
}
@at-root .dark-theme #{&} {
@include session-dark-background-lighter;
}
}
&-overlay {
2020-08-24 06:10:40 +02:00
@include themify($themes) {
background: themed('leftpaneOverlayBackground');
}
display: flex;
flex-direction: column;
2020-07-14 05:12:07 +02:00
flex-grow: 1;
align-items: center;
2020-05-26 05:30:40 +02:00
overflow-y: auto;
overflow-x: hidden;
2020-07-14 05:12:07 +02:00
.session-icon .exit {
padding: 13px;
}
2020-02-12 07:27:14 +01:00
h2 {
margin-top: 0px;
}
h3,
h2 {
text-align: center;
}
h3 {
padding-top: 22px;
position: relative;
.green-border {
position: absolute;
2020-08-24 06:10:40 +02:00
@include themify($themes) {
color: themed('accent');
background-color: themed('accent');
}
height: 5px;
left: -10px;
right: -10px;
margin-top: 7px;
border: none;
z-index: 1;
}
}
.white-border {
width: $session-left-pane-width;
position: relative;
height: 1px;
opacity: 0.3;
margin-top: 2px;
margin-bottom: 40px;
}
.exit {
margin-top: 10px;
margin-left: 13px;
align-self: flex-start;
}
.session-search-input {
margin: 10px $session-compose-margin 0 $session-compose-margin;
width: -webkit-fill-available;
}
.module-search-results {
width: -webkit-fill-available;
}
.session-description-long {
font-size: $session-font-sm;
2020-02-04 01:55:01 +01:00
line-height: $session-font-h3;
margin: 0px 20px;
2020-04-07 03:35:56 +02:00
font-family: $session-font-default;
}
.session-id-editable {
2020-07-14 05:12:07 +02:00
width: 90%;
textarea::-webkit-inner-spin-button {
margin: 0px 20px;
width: -webkit-fill-available;
flex-shrink: 0;
}
}
.session-id-editable-disabled {
border: none;
}
.session-button {
width: fit-content;
2020-01-31 03:47:29 +01:00
margin-top: 1rem;
margin-bottom: 3rem;
flex-shrink: 0;
}
}
}
.module-search-results {
flex-grow: 1;
}
.module-conversations-list-content {
overflow-x: hidden;
display: flex;
flex-direction: column;
flex-grow: 1;
transition: $session-transition-duration;
@include themify($themes) {
background: themed('conversationList');
}
.left-pane-contact-bottom-buttons .session-button {
vertical-align: middle;
white-space: normal;
text-align: center;
}
}
.session-left-pane-section-content {
display: flex;
flex-direction: column;
2020-05-26 05:30:40 +02:00
flex: 1;
overflow: hidden;
}
.user-search-dropdown {
width: 100%;
flex-grow: 1;
overflow-y: auto;
}
.session-search-input {
height: $session-search-input-height;
width: 100%;
margin-right: 1px;
margin-bottom: 10px;
display: inline-flex;
flex-shrink: 0;
.session-icon-button {
margin: auto 10px;
}
input {
width: inherit;
height: inherit;
border: none;
flex-grow: 1;
2020-01-31 05:28:47 +01:00
font-size: $session-font-sm;
2020-04-07 03:35:56 +02:00
font-family: $session-font-default;
text-overflow: ellipsis;
background: none;
@include themify($themes) {
color: themed('textColor');
}
&:focus {
outline: none !important;
}
}
}
.session-full-logo {
width: 250px;
height: 250px;
}
.app-loading-screen {
@include session-dark-background;
}
@mixin bottom-buttons() {
display: flex;
flex-direction: row;
width: 100%;
background: none;
.session-button.square-outline.square.green,
.session-button.square-outline.square.white,
.session-button.square-outline.square.danger {
flex-grow: 1;
height: 50px;
// line-height: 50px;
@at-root .light-theme #{&} {
border: 1px solid $session-shade-15;
}
@at-root .dark-theme #{&} {
2020-01-31 03:31:25 +01:00
border: 1px solid $session-shade-6;
}
}
}
.contacts-dropdown {
width: -webkit-fill-available;
&-row {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
padding: 8px 20px;
margin: 0px $session-compose-margin;
@at-root .light-theme #{&} {
background: $session-shade-15;
color: $session-color-black;
}
@at-root .dark-theme #{&} {
background: $session-shade-4;
color: $session-color-light-grey;
}
&-selected,
&:hover {
font-weight: bold;
@at-root .light-theme #{&} {
color: $session-color-black;
background: $session-color-white;
}
@at-root .dark-theme #{&} {
color: $session-color-white;
background: $session-shade-8;
}
}
}
}
.left-pane-contact {
&-section,
&-content {
display: flex;
flex-direction: column;
2020-05-26 05:30:40 +02:00
overflow: hidden;
2020-05-28 01:38:45 +02:00
flex: 1;
.module-conversation-list-item {
2020-02-12 07:27:14 +01:00
&__header__date,
&__message {
2020-02-12 05:03:20 +01:00
display: none;
}
&__buttons {
display: flex;
.session-button {
font-size: 11px;
padding: 6px;
height: auto;
margin: 0px;
line-height: 14px;
}
}
}
}
&-bottom-buttons {
@include bottom-buttons();
2020-02-14 04:25:36 +01:00
2020-02-14 04:12:03 +01:00
.session-button {
height: 57px;
}
}
}
.left-pane-setting {
&-bottom-buttons {
@include bottom-buttons();
}
&-content,
&-section {
display: flex;
flex-direction: column;
2020-06-04 03:14:19 +02:00
flex: 1;
}
&-category-list-item {
background: none;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
height: 74px;
line-height: 1.4;
padding: 0px 12px;
flex-shrink: 0;
cursor: pointer;
transition: $session-transition-duration !important;
& > div {
display: block;
}
&.active {
@include themify($themes) {
background: themed('conversationItemSelected');
}
}
&:hover {
@include themify($themes) {
background: themed('clickableHovered');
}
}
&__buttons {
display: flex;
.session-button {
font-size: 11px;
padding: 6px;
height: auto;
margin: 0px;
line-height: 14px;
}
}
}
&-input-group {
display: inline-flex;
}
&-input-button .session-button.square {
display: flex;
justify-content: center;
align-items: center;
height: $session-search-input-height;
width: $session-search-input-height;
padding: 0px;
margin: 0px;
svg {
transition: $session-transition-duration;
}
&:hover {
svg {
fill: $session-color-green;
}
}
.session-button.square-outline.square.green,
.session-button.square-outline.square.white {
flex-grow: 1;
border: 1px solid $session-shade-8;
height: 50px;
// line-height: 50px;
}
}
}
.panel-text-divider {
width: 100%;
text-align: center;
display: flex;
margin: 50px 0 50px;
.panel-text-divider-line {
2020-08-24 06:41:37 +02:00
@include themify($themes) {
border-bottom: 1px solid themed('pillDividerColor');
}
line-height: 0.1em;
flex-grow: 1;
height: 1px;
align-self: center;
}
span {
padding: 5px 10px;
border-radius: 50px;
2020-08-24 06:41:37 +02:00
@include themify($themes) {
color: themed('pillDividerTextColor');
border: 1px solid themed('pillDividerColor');
}
2020-04-07 03:35:56 +02:00
font-family: $session-font-default;
font-size: $session-font-sm;
}
}