signal-desktop/stylesheets/_index.scss

81 lines
1.2 KiB
SCSS
Raw Normal View History

.conversation-stack,
2018-05-04 16:07:52 -04:00
.new-conversation,
.inbox,
.gutter {
height: 100%;
overflow: hidden;
position: relative;
}
.expired {
2018-05-04 16:07:52 -04:00
.conversation-stack,
.gutter {
height: calc(100% - 48px);
}
}
.scrollable {
height: 100%;
overflow: auto;
}
.gutter {
2019-10-04 11:06:17 -07:00
@include light-theme {
background-color: $color-gray-02;
2018-08-08 11:27:40 -07:00
2019-10-04 11:06:17 -07:00
::-webkit-scrollbar-track {
background: $color-gray-02;
}
::-webkit-scrollbar-thumb {
border: 2px solid $color-gray-02;
}
2018-08-08 11:27:40 -07:00
}
2019-10-04 11:06:17 -07:00
@include dark-theme {
background-color: $color-gray-80;
2018-08-08 11:27:40 -07:00
2019-10-04 11:06:17 -07:00
::-webkit-scrollbar-track {
background: $color-gray-80;
}
::-webkit-scrollbar-thumb {
border: 2px solid $color-gray-80;
}
2018-08-08 11:27:40 -07:00
}
float: left;
2019-10-04 11:06:17 -07:00
width: $left-pane-width;
user-select: none;
2019-01-10 12:26:28 -08:00
.content {
overflow-y: scroll;
max-height: calc(100% - 88px);
2015-08-26 17:48:18 -07:00
}
}
2019-01-10 12:26:28 -08:00
2019-01-14 13:49:58 -08:00
.left-pane-placeholder {
height: 100%;
}
.left-pane-wrapper {
height: 100%;
}
2015-11-27 15:43:45 -08:00
.conversation.placeholder {
text-align: center;
user-select: none;
.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-27 15:43:45 -08:00
}