session-desktop/stylesheets/_index.scss

373 lines
6.2 KiB
SCSS
Raw Normal View History

.conversation-stack,
2018-05-04 22:07:52 +02:00
.new-conversation,
.inbox,
.gutter {
height: 100%;
overflow: hidden;
}
.expired {
2018-05-04 22:07:52 +02:00
.conversation-stack,
.gutter {
height: calc(100% - 48px);
}
}
.scrollable {
height: 100%;
overflow: auto;
}
.gutter {
2018-11-28 05:38:10 +01:00
background-color: $color-dark-85;
2018-08-08 20:27:40 +02:00
::-webkit-scrollbar-track {
2018-11-28 05:38:10 +01:00
background: $color-dark-85;
2018-08-08 20:27:40 +02:00
}
::-webkit-scrollbar-thumb {
2018-11-28 05:38:10 +01:00
border: 2px solid $color-dark-85;
2018-08-08 20:27:40 +02:00
}
display: flex;
flex-direction: column;
float: left;
2015-08-27 02:48:18 +02:00
width: 300px;
2018-12-03 01:19:45 +01:00
position: relative;
.tool-bar {
margin-top: 8px;
2018-11-28 05:38:10 +01:00
color: $color-dark-05;
.search-icon {
background-color: $color-light-35;
}
input.search {
border: 1px solid $color-light-60;
color: $color-dark-05;
background-color: $color-gray-95;
&:focus {
outline: solid 1px $blue;
}
}
}
2018-12-03 01:19:45 +01:00
.toast {
bottom: 78px;
}
.content {
2018-11-29 02:41:06 +01:00
overflow-y: auto;
max-height: calc(100% - 88px);
min-height: 0px;
flex: 1 1 auto;
2018-11-29 02:00:41 +01:00
color: $color-gray-05;
}
.loki {
display: flex;
justify-content: center;
align-items: center;
height: 70px;
2018-11-28 05:38:10 +01:00
background: $color-loki-extra-dark-gray;
img {
max-width: 60%;
max-height: 60%;
}
2015-08-27 02:48:18 +02:00
}
}
2018-11-28 05:38:10 +01:00
2018-11-29 02:00:41 +01:00
.section-toggle {
position: relative;
display: block;
padding: 0 0 0 1em;
background: $color-dark-75;
font-weight: bold;
line-height: 3;
cursor: pointer;
margin-top: 1px;
margin-bottom: 1px;
overflow: hidden;
2018-11-29 02:41:06 +01:00
user-select: none;
2018-11-29 02:00:41 +01:00
}
.section-toggle::after {
position: absolute;
right: 0;
top: 0;
display: block;
width: 3em;
height: 3em;
line-height: 3;
text-align: center;
-webkit-transition: all .35s;
-o-transition: all .35s;
transition: all .35s;
content: "+";
}
.section-toggle-visible::after {
transform: rotate(315deg);
}
.network-status-container {
.network-status {
2017-03-08 01:54:46 +01:00
background: url('../images/error_red.svg') no-repeat left 10px center;
background-size: 25px 25px;
background-color: #fcd156;
padding: 10px;
padding-left: 2 * $button-height;
display: none;
2018-05-04 22:07:52 +02:00
.network-status-message {
h3 {
padding: 0px;
margin: 0px;
margin-bottom: 2px;
font-size: 14px;
}
span {
display: inline-block;
font-size: 12px;
padding: 0.5em 0;
}
}
.action {
button {
border-radius: $border-radius;
border: solid 1px #ccc;
cursor: pointer;
font-family: inherit;
color: white;
background: $blue;
}
}
}
}
.underneathIdentityWrapper {
position: absolute;
2018-12-02 23:30:31 +01:00
top: 0;
bottom: 0;
left: 300px;
right: 0;
}
.conversation-stack {
.conversation {
display: none;
}
.conversation:first-child {
display: block;
}
}
.tool-bar {
color: $color-light-90;
padding: 8px;
padding-top: 0px;
margin-top: -1px;
position: relative;
.search-icon {
content: '';
display: inline-block;
float: left;
width: 24px;
height: 33px;
2017-03-08 01:54:46 +01:00
-webkit-mask: url('../images/search.svg') no-repeat left center;
-webkit-mask-size: 100%;
background-color: $color-light-35;
position: absolute;
left: 20px;
top: 0;
}
}
$search-x-size: 16px;
$search-padding-right: 12px;
$search-padding-left: 30px;
input.search {
border: 1px solid $color-black-02;
padding: 0 $search-padding-right 0 $search-padding-left;
margin-left: 8px;
margin-right: 8px;
2015-02-06 07:42:16 +01:00
outline: 0;
height: 32px;
width: calc(100% - 16px);
2016-03-28 00:30:10 +02:00
outline-offset: -2px;
font-size: 14px;
line-height: 18px;
font-weight: normal;
position: relative;
border-radius: 4px;
2016-03-28 00:30:10 +02:00
&:focus {
2016-03-28 00:30:10 +02:00
outline: solid 1px $blue;
}
&.active {
2017-03-08 01:54:46 +01:00
background-image: url('../images/x.svg');
background-repeat: no-repeat;
background-size: $search-x-size;
&.ltr {
2018-05-04 22:07:52 +02:00
background-position: right $search-padding-right center;
}
&.rtl {
2018-05-04 22:07:52 +02:00
background-position: left $search-padding-left center;
}
2016-03-28 00:30:10 +02:00
}
2015-12-07 05:40:29 +01:00
&::-webkit-search-cancel-button {
-webkit-appearance: none;
display: block;
width: $search-x-size;
height: $search-x-size;
2015-12-07 05:40:29 +01:00
}
2016-03-28 00:30:10 +02:00
&::-webkit-search-cancel-button:hover {
cursor: pointer;
}
2015-01-26 08:44:53 +01:00
}
.last-timestamp {
font-size: smaller;
float: right;
margin: 0 10px;
2016-03-18 21:09:45 +01:00
color: $grey;
}
2015-02-06 07:42:16 +01:00
.new-contact {
display: none;
cursor: pointer;
opacity: 0.7;
.contact-details .number {
2015-02-06 07:42:16 +01:00
display: block;
font-style: italic;
padding-right: 8px;
}
&.valid {
2018-05-04 22:07:52 +02:00
opacity: 1;
}
2015-01-25 19:38:35 +01:00
}
2015-01-25 19:36:41 +01:00
.index {
.gutter .new-group-update-form {
display: none;
padding: 0.5em;
2015-01-25 19:36:41 +01:00
}
.last-message {
margin: 6px 0 0;
font-size: $font-size-small;
2015-01-25 19:36:41 +01:00
}
.gutter .timestamp {
2015-01-25 19:36:41 +01:00
position: absolute;
top: 14px;
right: 12px;
2016-03-18 21:09:45 +01:00
color: $grey;
2015-01-25 19:36:41 +01:00
}
}
.conversations .unread .contact-details {
2018-05-04 22:07:52 +02:00
.name,
.last-message,
.last-timestamp {
font-weight: bold;
}
}
.hint {
margin: 10px;
padding: 1em;
2016-04-01 23:24:13 +02:00
border-radius: $border-radius;
color: white;
border: 2px dashed white;
h3 {
margin-top: 5px;
}
&.firstRun {
position: absolute;
top: 0;
left: 302px;
width: 225px;
2018-05-04 22:07:52 +02:00
&:before,
&:after {
content: ' ';
display: block;
position: absolute;
top: 8px;
left: -35px;
width: 0;
height: 0;
border: solid 10px white;
border-color: transparent white transparent transparent;
transform: scaleX(2.5) scaleY(0.75);
}
&:after {
border-color: transparent #2eace0 transparent transparent;
left: -30px;
}
}
}
2015-11-28 00:43:45 +01:00
.conversation.placeholder {
text-align: center;
.container {
position: absolute;
height: 100%;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.content {
display: inline-block;
}
h3 {
font-size: large;
}
2015-11-28 00:43:45 +01:00
}
.contact.placeholder {
position: absolute;
top: 50px;
left: 0;
background: transparent;
color: white;
border: 2px dashed white;
overflow: visible;
2018-05-04 22:07:52 +02:00
p {
color: white;
}
&:before,
&:after {
content: ' ';
display: block;
position: absolute;
top: -35px;
left: 15px;
width: 0;
height: 0;
border: solid 10px white;
border-color: transparent transparent white transparent;
transform: scaleY(2.5) scaleX(0.75);
}
&:after {
border-color: transparent transparent #2eace0 transparent;
top: -30px;
}
}