2019-08-21 08:00:01 +00:00
|
|
|
@import "properties";
|
|
|
|
@import "mixin";
|
2019-02-17 15:08:10 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
$color_list_border: #161616;
|
|
|
|
$color_list_background: #28292b;
|
|
|
|
$color_list_hover: #2c2d2f;
|
|
|
|
$color_list_selected: #1a1a1b;
|
|
|
|
|
|
|
|
.modal-body.modal-settings {
|
|
|
|
padding: 0!important;
|
2019-02-17 15:08:10 +00:00
|
|
|
|
2018-10-28 17:25:43 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2019-08-21 08:00:01 +00:00
|
|
|
justify-content: stretch;
|
2019-02-17 15:08:10 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
@include user-select(none);
|
|
|
|
width: 10000em; /* allocate some space */
|
2019-01-27 12:11:40 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
.inner-container {
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 1;
|
2019-01-27 12:11:40 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
height: 50em;
|
|
|
|
max-height: calc(100vh - 10em);
|
2018-10-28 17:25:43 +00:00
|
|
|
|
|
|
|
display: flex;
|
2019-08-21 08:00:01 +00:00
|
|
|
flex-direction: row !important;
|
|
|
|
justify-content: stretch;
|
2019-02-17 15:08:10 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
> .left, > .right {
|
2018-10-28 17:25:43 +00:00
|
|
|
display: flex;
|
2019-08-21 08:00:01 +00:00
|
|
|
flex-direction: column;
|
2018-10-28 17:25:43 +00:00
|
|
|
justify-content: stretch;
|
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
padding: .5em;
|
2019-02-17 15:08:10 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
overflow: auto;
|
2018-10-28 17:25:43 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
@include chat-scrollbar-horizontal();
|
|
|
|
@include chat-scrollbar-vertical();
|
2018-10-28 17:25:43 +00:00
|
|
|
}
|
2019-04-29 16:49:01 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
.container-seperator {
|
|
|
|
height: unset !important;
|
|
|
|
background-color: #222224!important;
|
2019-04-29 16:49:01 +00:00
|
|
|
}
|
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
> .left {
|
|
|
|
width: 25%;
|
|
|
|
min-width: 10em;
|
2019-04-29 16:49:01 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
height: 100%;
|
2019-04-29 16:49:01 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
justify-content: flex-start;
|
|
|
|
|
|
|
|
background-color: #212125;
|
|
|
|
|
|
|
|
.entry {
|
2019-04-29 16:49:01 +00:00
|
|
|
flex-grow: 0;
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: stretch;
|
2019-04-29 16:49:01 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
padding: .5em;
|
2019-04-29 16:49:01 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
border-radius: $border_radius_middle;
|
2019-04-29 16:49:01 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
color: #e0e0e0;
|
2019-04-29 16:49:01 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
&.group {
|
|
|
|
font-size: 1.3em;
|
|
|
|
text-transform: uppercase;
|
2018-10-28 17:25:43 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
color: #565656;
|
|
|
|
}
|
2019-02-17 15:08:10 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
&:not(.group) {
|
|
|
|
cursor: pointer;
|
2019-02-17 15:08:10 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
&:hover {
|
|
|
|
background-color: #2c2d2f;
|
|
|
|
}
|
2019-02-17 15:08:10 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
&.selected {
|
|
|
|
background-color: #1a1a1b;
|
|
|
|
}
|
|
|
|
}
|
2019-02-17 15:08:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
> .right {
|
|
|
|
width: 75%;
|
|
|
|
min-width: 12em;
|
2019-02-17 15:08:10 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
position: relative;
|
2018-10-28 17:25:43 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
background-color: #2f2f35;
|
2018-10-28 17:25:43 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
> .container {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
left: 0;
|
2018-10-28 17:25:43 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: stretch;
|
2019-02-17 15:08:10 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
min-height: min-content;
|
|
|
|
min-width: 30em;
|
2018-10-28 17:25:43 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
@include chat-scrollbar-horizontal();
|
2018-10-28 17:25:43 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
&.general-chat, &.general-application, &.audio-sounds {
|
|
|
|
label {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: flex-start;
|
2019-02-17 15:08:10 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
> * {
|
|
|
|
align-self: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
margin-left: .5em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-02-17 15:08:10 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
&.general-application {
|
|
|
|
.container-font-size {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: stretch;
|
|
|
|
|
|
|
|
a {
|
|
|
|
align-self: center;
|
|
|
|
margin-right: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
select {
|
|
|
|
height: 1.7em;
|
|
|
|
width: 12em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-02-17 15:08:10 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
&.general-language {
|
2019-02-17 15:08:10 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2019-08-21 08:00:01 +00:00
|
|
|
justify-content: stretch;
|
|
|
|
|
|
|
|
.container-selected {
|
|
|
|
flex-grow: 0;
|
|
|
|
flex-shrink: 0;
|
2019-02-17 15:08:10 +00:00
|
|
|
|
|
|
|
display: flex;
|
2019-08-21 08:00:01 +00:00
|
|
|
flex-direction: row;
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
|
|
|
a, div {
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
align-self: center;
|
|
|
|
padding-right: .75em;
|
|
|
|
}
|
|
|
|
|
|
|
|
div {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
|
|
|
> .country {
|
|
|
|
align-self: center;
|
|
|
|
margin-right: .3em;
|
|
|
|
}
|
|
|
|
}
|
2019-02-17 15:08:10 +00:00
|
|
|
}
|
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
.container-list {
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 1;
|
2019-02-17 15:08:10 +00:00
|
|
|
|
|
|
|
display: flex;
|
2019-08-21 08:00:01 +00:00
|
|
|
flex-direction: column;
|
|
|
|
justify-content: stretch;
|
|
|
|
|
|
|
|
min-height: 6em;
|
|
|
|
|
|
|
|
background-color: $color_list_background;
|
|
|
|
border: 1px $color_list_border solid;
|
|
|
|
|
|
|
|
border-radius: $border_radius_large;
|
|
|
|
|
|
|
|
.entries {
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 1;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
|
|
|
overflow-x: hidden;
|
|
|
|
overflow-y: auto;
|
|
|
|
|
|
|
|
padding-top: .5em;
|
|
|
|
padding-bottom: .5em;
|
2019-02-17 15:08:10 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
@include chat-scrollbar-vertical();
|
2019-02-17 15:08:10 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
.entry {
|
|
|
|
flex-grow: 0;
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: stretch;
|
|
|
|
|
|
|
|
height: 1.5em;
|
|
|
|
|
|
|
|
padding-left: .5em;
|
|
|
|
padding-right: .5em;
|
|
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&.translation {
|
|
|
|
padding-left: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.country {
|
|
|
|
flex-grow: 0;
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
|
|
align-self: center;
|
|
|
|
margin-right: .25em;
|
|
|
|
margin-bottom: .1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.name {
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 1;
|
|
|
|
|
|
|
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-around;
|
|
|
|
|
|
|
|
width: 1.2em;
|
|
|
|
height: 1.2em;
|
|
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
align-self: center;
|
|
|
|
|
|
|
|
border-radius: $border_radius_middle;
|
|
|
|
|
|
|
|
> div {
|
|
|
|
align-self: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: #3c3d40;
|
|
|
|
}
|
|
|
|
|
|
|
|
> *:not(.spacer) {
|
|
|
|
flex-grow: 0;
|
|
|
|
flex-shrink: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.spacer {
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 1;
|
|
|
|
|
|
|
|
width: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include transition(background-color $button_hover_animation_time);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: $color_list_hover;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.selected {
|
|
|
|
background-color: $color_list_selected;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.buttons {
|
|
|
|
flex-grow: 0;
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
background-color: #242527;
|
|
|
|
|
|
|
|
padding: .5em;
|
|
|
|
|
|
|
|
border: none;
|
|
|
|
border-top: 1px solid #161616;
|
2019-02-17 15:08:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
&.audio-microphone, &.audio-speaker, &.audio-sounds, &.identity-forum {
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: stretch;
|
2019-02-17 15:08:10 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
.left, .right, .fill {
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 1;
|
2019-02-17 15:08:10 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
width: calc(50% - .5em); /* the .5em for the padding/margin */
|
|
|
|
&.fill {
|
|
|
|
width: calc(100% - 1em);
|
|
|
|
}
|
2019-01-27 12:11:40 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: stretch;
|
2019-01-27 12:11:40 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
.header {
|
|
|
|
height: 3em;
|
2019-01-27 12:11:40 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: stretch;
|
2019-02-17 15:08:10 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
padding-bottom: .5em;
|
2019-02-17 15:08:10 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
a {
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 1;
|
2019-02-17 15:08:10 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
align-self: flex-end;
|
2019-01-27 12:11:40 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
font-weight: bold;
|
|
|
|
color: #e0e0e0;
|
2019-01-27 12:11:40 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2019-01-27 12:11:40 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
.btn {
|
|
|
|
flex-shrink: 0;
|
|
|
|
flex-grow: 0;
|
|
|
|
|
|
|
|
margin-left: 1em;
|
|
|
|
min-width: 8em;
|
|
|
|
}
|
|
|
|
}
|
2019-01-27 12:11:40 +00:00
|
|
|
}
|
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
.container-activity-bar {
|
|
|
|
$bar_height: 1em;
|
2019-01-27 12:11:40 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
$thumb_width: .6em;
|
|
|
|
$thumb_height: 2em;
|
2019-01-27 12:11:40 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
position: relative;
|
|
|
|
align-self: center;
|
2019-01-27 12:11:40 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
overflow: hidden;
|
2019-01-27 12:11:40 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-around;
|
2019-01-27 12:11:40 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
height: $bar_height;
|
|
|
|
border-radius: $border_radius_large;
|
2019-01-27 12:11:40 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
cursor: pointer;
|
2019-01-27 12:11:40 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
.bar-hider {
|
|
|
|
position: absolute;
|
2019-01-27 12:11:40 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
2019-02-17 15:08:10 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
background-color: #242527;
|
2019-02-17 15:08:10 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
-webkit-box-shadow: inset 0px 0px 2px 0px rgba(0,0,0,0.75);
|
|
|
|
-moz-box-shadow: inset 0px 0px 2px 0px rgba(0,0,0,0.75);
|
|
|
|
box-shadow: inset 0px 0px 2px 0px rgba(0,0,0,0.75);
|
2019-02-17 15:08:10 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
border-bottom-right-radius: $border_radius_large;
|
|
|
|
border-top-right-radius: $border_radius_large;
|
|
|
|
}
|
2019-01-27 12:11:40 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
&[value] {
|
|
|
|
overflow: visible; /* for the thumb */
|
2019-01-27 12:11:40 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
border-bottom-left-radius: $border_radius_large;
|
|
|
|
border-top-left-radius: $border_radius_large;
|
|
|
|
}
|
2019-01-27 12:11:40 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
.bar-error {
|
|
|
|
z-index: 2;
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
2019-01-27 12:11:40 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
line-height: 1em;
|
|
|
|
font-size: .8em;
|
|
|
|
color: #a10000;
|
2019-01-27 12:11:40 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
padding-left: .2em;
|
|
|
|
padding-right: .2em;
|
2019-02-17 15:08:10 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
2019-02-17 15:08:10 +00:00
|
|
|
}
|
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
.thumb {
|
|
|
|
position: absolute;
|
|
|
|
|
2019-02-17 15:08:10 +00:00
|
|
|
top: 0;
|
2019-08-21 08:00:01 +00:00
|
|
|
right: 0;
|
|
|
|
|
|
|
|
height: $thumb_height;
|
|
|
|
width: $thumb_width;
|
|
|
|
|
|
|
|
margin-left: -($thumb_width / 2);
|
|
|
|
margin-right: -($thumb_width / 2);
|
|
|
|
|
|
|
|
margin-top: -($thumb_height - $bar_height) / 2;
|
|
|
|
margin-bottom: -($thumb_height - $bar_height) / 2;
|
|
|
|
|
|
|
|
background-color: #808080;
|
|
|
|
|
|
|
|
.tooltip {
|
|
|
|
display: none;
|
|
|
|
}
|
2019-02-17 15:08:10 +00:00
|
|
|
}
|
2019-08-21 08:00:01 +00:00
|
|
|
|
|
|
|
-webkit-box-shadow: inset 0px 0px 2px 0px rgba(0,0,0,0.25);
|
|
|
|
-moz-box-shadow: inset 0px 0px 2px 0px rgba(0,0,0,0.25);
|
|
|
|
box-shadow: inset 0px 0px 2px 0px rgba(0,0,0,0.25);
|
|
|
|
|
|
|
|
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#70407e+0,45407e+100 */
|
|
|
|
background: rgb(112,64,126); /* Old browsers */
|
|
|
|
background: -moz-linear-gradient(left, rgba(112,64,126,1) 0%, rgba(69,64,126,1) 100%); /* FF3.6-15 */
|
|
|
|
background: -webkit-linear-gradient(left, rgba(112,64,126,1) 0%,rgba(69,64,126,1) 100%); /* Chrome10-25,Safari5.1-6 */
|
|
|
|
background: linear-gradient(to right, rgba(112,64,126,1) 0%,rgba(69,64,126,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
|
|
|
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#70407e', endColorstr='#45407e',GradientType=1 ); /* IE6-9 */
|
2019-01-27 12:11:40 +00:00
|
|
|
}
|
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
.left {
|
|
|
|
margin-right: 1em;
|
2019-01-27 12:11:40 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
.body {
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 1;
|
2019-01-27 12:11:40 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: stretch;
|
2019-01-27 12:11:40 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
border: 1px $color_list_border solid;
|
|
|
|
border-radius: $border_radius_large;
|
2019-01-27 12:11:40 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
background-color: $color_list_background;
|
2019-01-27 12:11:40 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
&.container-devices, .container-devices {
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 1;
|
2019-01-27 12:11:40 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
min-height: 3em;
|
2019-01-27 12:11:40 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: flex-start;
|
2019-01-27 12:11:40 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
overflow-x: hidden;
|
|
|
|
overflow-y: auto;
|
2019-01-27 12:11:40 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
@include chat-scrollbar-vertical();
|
|
|
|
|
|
|
|
.device {
|
|
|
|
flex-shrink: 0;
|
|
|
|
flex-grow: 0;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: stretch;
|
|
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
height: 3em;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
.container-selected {
|
|
|
|
/* the selected border */
|
|
|
|
margin-top: 1px;
|
|
|
|
margin-bottom: 1px;
|
|
|
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
flex-grow: 0;
|
|
|
|
|
|
|
|
padding: .5em;
|
|
|
|
|
|
|
|
border: none;
|
|
|
|
border-right: 1px solid #242527;
|
|
|
|
|
|
|
|
> .icon_em {
|
|
|
|
font-size: 2em;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.container-name {
|
|
|
|
/* the selected border */
|
|
|
|
margin-top: 1px;
|
|
|
|
margin-bottom: 1px;
|
|
|
|
|
|
|
|
flex-shrink: 1;
|
|
|
|
flex-grow: 1;
|
|
|
|
|
|
|
|
min-width: 4em;
|
|
|
|
|
|
|
|
padding: .5em;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-around;
|
|
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
|
|
.device-driver {
|
|
|
|
font-size: .8em;
|
|
|
|
line-height: 1em;
|
2019-01-27 12:11:40 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
color: #6a6a6a;
|
|
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.device-name {
|
|
|
|
line-height: 1em;
|
|
|
|
|
|
|
|
color: #999999;
|
|
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.container-activity {
|
|
|
|
/* the selected border */
|
|
|
|
margin-top: 1px;
|
|
|
|
margin-bottom: 1px;
|
|
|
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
flex-grow: 0;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-around;
|
|
|
|
|
|
|
|
padding: .5em;
|
|
|
|
|
|
|
|
width: 10em;
|
|
|
|
|
|
|
|
border: none;
|
|
|
|
border-left: 1px solid #242527;
|
|
|
|
|
|
|
|
.container-activity-bar {
|
|
|
|
flex-grow: 0;
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
|
|
width: 8em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: $color_list_hover;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.selected {
|
|
|
|
.container-selected {
|
|
|
|
> .icon_em {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
|
|
|
border-bottom: 1px solid #242527;
|
|
|
|
border-top: 1px solid #242527;
|
|
|
|
}
|
|
|
|
.container-name, .container-activity {
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
|
|
|
border-bottom: 1px solid #242527;
|
|
|
|
border-top: 1px solid #242527;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.buttons {
|
|
|
|
flex-grow: 0;
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
|
|
height: 3.5em;
|
|
|
|
padding: .5em;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: stretch;
|
|
|
|
|
|
|
|
border: none;
|
|
|
|
border-top: 1px $color_list_border solid;
|
|
|
|
|
|
|
|
.spacer {
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
:not(.spacer) {
|
|
|
|
flex-grow: 0;
|
|
|
|
flex-shrink: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.container-error {
|
|
|
|
color: #a10000;
|
|
|
|
align-self: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
min-width: 8em;
|
|
|
|
height: 2.5em;
|
|
|
|
}
|
|
|
|
}
|
2019-01-27 12:11:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
.right, .fill {
|
|
|
|
padding-right: .5em; /* for the sliders etc*/
|
|
|
|
justify-content: flex-start;
|
2019-01-27 12:11:40 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
.body {
|
|
|
|
flex-grow: 0;
|
|
|
|
flex-shrink: 1;
|
2019-01-27 12:11:40 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: flex-start;
|
2019-01-27 12:11:40 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
/* microphone */
|
|
|
|
.container-volume {
|
|
|
|
flex-grow: 0;
|
|
|
|
flex-shrink: 0;
|
2018-12-15 13:04:29 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: flex-start;
|
2019-03-28 16:29:25 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
height: 3em;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2019-03-28 16:29:25 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
/* microphone */
|
|
|
|
.container-select-vad {
|
|
|
|
width: 100%;
|
2019-02-17 15:08:10 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
.fieldset {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
2018-12-15 13:04:29 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
flex-shrink: 1;
|
|
|
|
flex-grow: 1;
|
2018-12-15 13:04:29 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: stretch;
|
2018-12-15 13:04:29 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
> .container {
|
|
|
|
padding: 0;
|
2018-12-15 13:04:29 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
2018-12-15 13:04:29 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
> label {
|
|
|
|
flex-shrink: 0;
|
|
|
|
min-width: 5em;
|
2018-12-15 13:04:29 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
cursor: pointer;
|
2018-12-15 13:04:29 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: flex-start;
|
2018-12-15 13:04:29 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
height: 1.7em;
|
2018-12-15 13:04:29 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
.ratio-button {
|
|
|
|
align-self: center;
|
|
|
|
margin-right: .5em;
|
|
|
|
}
|
2018-12-15 13:04:29 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
a {
|
|
|
|
align-self: center;
|
|
|
|
line-height: 1.2em;
|
|
|
|
}
|
|
|
|
}
|
2018-12-15 13:04:29 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
button {
|
|
|
|
width: 100%;
|
2018-12-15 13:04:29 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
height: 2em;
|
|
|
|
font-size: .75em;
|
2018-12-15 13:04:29 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
align-self: center;
|
2018-12-15 13:04:29 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
2018-12-15 13:04:29 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
.container-button {
|
|
|
|
flex-shrink: 1;
|
|
|
|
margin-left: .5em;
|
|
|
|
|
|
|
|
min-width: 3em;
|
|
|
|
width: 15em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* microphone */
|
|
|
|
.container-sensitivity {
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: stretch;
|
|
|
|
|
|
|
|
.container-activity-bar {
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.container-activity-bar .thumb {
|
|
|
|
@include transition(background-color $button_hover_animation_time ease-in-out);
|
|
|
|
}
|
|
|
|
|
|
|
|
&.disabled {
|
|
|
|
pointer-events: none;
|
|
|
|
|
|
|
|
.container-activity-bar {
|
|
|
|
.bar-hider {
|
|
|
|
width: 100%!important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.thumb {
|
|
|
|
background-color: #4d4d4d!important;
|
|
|
|
.tooltip {
|
|
|
|
opacity: 0!important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* microphone */
|
|
|
|
.container-advanced {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
|
|
|
.container-ppt-delay {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
label {
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
|
|
|
margin-right: .5em;
|
|
|
|
|
|
|
|
.checkbox {
|
|
|
|
margin-right: .5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
line-height: 1.2em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.container-input {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: stretch;
|
|
|
|
|
|
|
|
cursor: text;
|
|
|
|
|
|
|
|
border-radius: $border_radius_middle;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
width: 5em;
|
|
|
|
|
|
|
|
height: 1.8em;
|
|
|
|
font-size: 0.75em;
|
|
|
|
|
|
|
|
|
|
|
|
align-self: center;
|
|
|
|
|
|
|
|
color: #464646;
|
|
|
|
background-color: #17171a;
|
|
|
|
|
|
|
|
input {
|
|
|
|
flex-shrink: 1;
|
|
|
|
flex-grow: 1;
|
|
|
|
|
|
|
|
min-width: 2em;
|
|
|
|
text-align: right;
|
|
|
|
|
|
|
|
position: relative;
|
|
|
|
outline: none;
|
|
|
|
border: none;
|
|
|
|
|
|
|
|
color: #464646;
|
|
|
|
padding: 0 .3em 0 .5em;
|
|
|
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
|
|
|
-webkit-box-shadow: inset 0 0 2px 0 rgba(0,0,0,0.25);
|
|
|
|
-moz-box-shadow: inset 0 0 2px 0 rgba(0,0,0,0.25);
|
|
|
|
box-shadow: inset 0 0 2px 0 rgba(0,0,0,0.25);
|
|
|
|
|
|
|
|
&::-webkit-inner-spin-button,
|
|
|
|
&::-webkit-outer-spin-button {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
label {
|
|
|
|
flex-shrink: 0;
|
|
|
|
flex-grow: 0;
|
|
|
|
|
|
|
|
align-self: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.disabled {
|
|
|
|
cursor: unset;
|
|
|
|
pointer-events: none;
|
|
|
|
|
|
|
|
background-color: #222227;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* speaker */
|
|
|
|
.container-volume-master {
|
|
|
|
.filler {
|
|
|
|
background-color: #2b8541;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.container-volume-soundpack {
|
|
|
|
padding-top: .75em;
|
|
|
|
}
|
|
|
|
}
|
2018-12-15 13:04:29 +00:00
|
|
|
}
|
2019-03-28 16:29:25 +00:00
|
|
|
|
|
|
|
}
|
2018-12-15 13:04:29 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
&.identity-profiles {
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: stretch;
|
2018-12-15 13:04:29 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
.left, .right {
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 1;
|
2018-12-15 13:04:29 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
width: 50%;
|
|
|
|
min-width: 25em;
|
|
|
|
min-height: min-content;
|
2018-12-15 13:04:29 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: stretch;
|
2018-12-15 13:04:29 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
.header {
|
|
|
|
height: 3em;
|
2018-12-15 13:04:29 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: stretch;
|
2018-12-15 13:04:29 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
padding-bottom: .5em;
|
2018-12-15 13:04:29 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
a {
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 1;
|
2018-12-15 13:04:29 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
align-self: flex-end;
|
2018-12-15 13:04:29 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
font-weight: bold;
|
|
|
|
color: #e0e0e0;
|
2018-12-15 13:04:29 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2018-12-15 13:04:29 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
.btn {
|
|
|
|
flex-shrink: 0;
|
|
|
|
flex-grow: 0;
|
2018-12-15 13:04:29 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
margin-left: 1em;
|
|
|
|
min-width: 8em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-12-15 13:04:29 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
.left {
|
|
|
|
margin-right: 1em;
|
2018-12-15 13:04:29 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
.body {
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 1;
|
2018-12-15 13:04:29 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: stretch;
|
2018-12-15 13:04:29 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
border: 1px $color_list_border solid;
|
|
|
|
border-radius: $border_radius_large;
|
2018-12-15 13:04:29 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
background-color: $color_list_background;
|
2019-02-17 15:08:10 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
.container-profiles {
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 1;
|
2018-12-28 14:39:23 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
min-height: 3em;
|
2019-01-28 19:36:11 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: flex-start;
|
2019-01-28 19:36:11 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
overflow-x: hidden;
|
|
|
|
overflow-y: auto;
|
2019-01-28 19:36:11 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
@include chat-scrollbar-vertical();
|
2019-01-28 19:36:11 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
.profile {
|
|
|
|
flex-shrink: 0;
|
|
|
|
flex-grow: 0;
|
2019-01-28 19:36:11 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: stretch;
|
2019-01-28 19:36:11 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
cursor: pointer;
|
2019-01-28 19:36:11 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
height: 3em;
|
|
|
|
width: 100%;
|
2019-01-28 19:36:11 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
.container-avatar {
|
|
|
|
flex-shrink: 0;
|
|
|
|
flex-grow: 0;
|
2019-01-28 19:36:11 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
height: 3em;
|
|
|
|
width: 3em;
|
|
|
|
}
|
2019-01-28 19:36:11 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
.container-info {
|
|
|
|
flex-shrink: 1;
|
|
|
|
flex-grow: 1;
|
2019-01-28 19:36:11 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
margin-left: .5em;
|
|
|
|
min-width: 4em;
|
2019-01-28 19:36:11 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
2019-01-28 19:36:11 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
.container-type {
|
|
|
|
width: 100%;
|
2019-01-28 19:36:11 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: flex-start;
|
2019-01-28 19:36:11 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
text-transform: uppercase;
|
|
|
|
font-weight: bold;
|
2019-01-28 19:36:11 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
font-size: 0.8em;
|
2019-02-17 15:08:10 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
line-height: 1em;
|
2018-12-28 14:39:23 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
color: #6a6a6a;
|
2018-12-28 14:39:23 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
2018-12-28 14:39:23 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
> *:not(:first-of-type) {
|
|
|
|
margin-left: .25em;
|
|
|
|
}
|
|
|
|
.icon-status {
|
|
|
|
margin-bottom: .2em; /* push it a bit higher than the center */
|
|
|
|
}
|
2019-01-19 12:42:18 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
div {
|
|
|
|
align-self: center;
|
|
|
|
}
|
|
|
|
}
|
2018-12-28 14:39:23 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
.profile-name {
|
|
|
|
line-height: 1.2em;
|
2018-12-28 14:39:23 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
color: #999999;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
}
|
2018-12-28 14:39:23 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
&:hover {
|
|
|
|
background-color: $color_list_hover;
|
|
|
|
}
|
2018-12-28 14:39:23 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
&.selected {
|
|
|
|
background-color: $color_list_selected;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-12-28 14:39:23 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
.buttons {
|
|
|
|
flex-grow: 0;
|
|
|
|
flex-shrink: 0;
|
2018-12-28 14:39:23 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
height: 3.5em;
|
|
|
|
padding: .5em;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: stretch;
|
|
|
|
|
|
|
|
border: none;
|
|
|
|
border-top: 1px $color_list_border solid;
|
|
|
|
|
|
|
|
.spacer {
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
:not(.spacer) {
|
|
|
|
flex-grow: 0;
|
|
|
|
flex-shrink: 0;
|
|
|
|
}
|
2018-12-28 14:39:23 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
.container-error {
|
|
|
|
color: #a10000;
|
|
|
|
align-self: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
min-width: 8em;
|
|
|
|
height: 2.5em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-12-28 14:39:23 +00:00
|
|
|
}
|
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
.right {
|
|
|
|
padding-right: .5em; /* for the sliders etc*/
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
|
|
|
.body {
|
|
|
|
flex-grow: 0;
|
|
|
|
flex-shrink: 1;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
|
|
|
.container-teamspeak {
|
|
|
|
.container-invalid {
|
|
|
|
padding: 1em;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.container-valid {
|
|
|
|
.container-level {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: stretch;
|
|
|
|
|
|
|
|
.form-group {
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 1;
|
|
|
|
min-width: 4em;
|
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
height: 2em;
|
|
|
|
|
|
|
|
align-self: center;
|
|
|
|
margin-left: 1em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.buttons {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
> div {
|
|
|
|
text-align: right;
|
|
|
|
|
|
|
|
width: max-content;
|
|
|
|
margin-left: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
|
|
text-align: end;
|
|
|
|
|
|
|
|
margin-top: 1em;
|
|
|
|
height: 2.5em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.container-teaforo {
|
|
|
|
.container-valid, .container-invalid {
|
|
|
|
padding: 1em;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
button {
|
|
|
|
margin-top: .5em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-12-28 14:39:23 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
&.identity-forum {
|
|
|
|
.container-login {
|
|
|
|
flex-grow: 0;
|
|
|
|
flex-shrink: 0;
|
2018-12-28 14:39:23 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
max-width: 25em;
|
2018-12-28 14:39:23 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
.container-button {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
|
|
|
button {
|
|
|
|
min-width: 8em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.container-error {
|
|
|
|
display: block;
|
|
|
|
margin-bottom: -1em;
|
|
|
|
color: red;
|
|
|
|
opacity: 0;
|
|
|
|
|
|
|
|
&.shown {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include transform(opacity $button_hover_animation_time ease-in-out);
|
|
|
|
}
|
2018-12-28 14:39:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
&.audio-sounds {
|
|
|
|
flex-direction: row;
|
2018-12-28 14:39:23 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
min-height: 6em;
|
|
|
|
width: 100%;
|
2018-12-28 14:39:23 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
.left {
|
|
|
|
flex-shrink: 1;
|
|
|
|
flex-grow: 1;
|
2018-12-28 14:39:23 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
width: 75%;
|
|
|
|
margin-right: 1em;
|
2018-12-28 14:39:23 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
.header {
|
|
|
|
flex-shrink: 0;
|
|
|
|
flex-grow: 0;
|
2018-12-28 14:39:23 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
height: 3em;
|
2018-12-28 14:39:23 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: stretch;
|
2018-12-28 14:39:23 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
padding-bottom: .5em;
|
2018-12-28 14:39:23 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
a {
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 1;
|
2018-12-28 14:39:23 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
align-self: flex-end;
|
2018-12-28 14:39:23 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
font-weight: bold;
|
|
|
|
color: #e0e0e0;
|
2018-12-28 14:39:23 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2018-12-28 14:39:23 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
.btn {
|
|
|
|
flex-shrink: 0;
|
|
|
|
flex-grow: 0;
|
2019-01-28 19:36:11 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
margin-left: 1em;
|
|
|
|
min-width: 8em;
|
|
|
|
}
|
|
|
|
}
|
2019-02-17 15:08:10 +00:00
|
|
|
|
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
.body {
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 1;
|
2019-02-17 15:08:10 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
min-height: 6em;
|
2019-02-17 15:08:10 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: stretch;
|
2019-02-17 15:08:10 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
border: 1px $color_list_border solid;
|
|
|
|
border-radius: $border_radius_large;
|
2019-01-28 19:36:11 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
background-color: $color_list_background;
|
2019-01-28 19:36:11 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
.container-sounds {
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 1;
|
2019-01-28 19:36:11 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
min-height: 3em;
|
2019-01-28 19:36:11 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: flex-start;
|
2019-01-28 19:36:11 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
overflow-x: hidden;
|
|
|
|
overflow-y: auto;
|
2019-01-28 19:36:11 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
@include chat-scrollbar-vertical();
|
2019-01-28 19:36:11 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
.sound {
|
|
|
|
flex-shrink: 0;
|
|
|
|
flex-grow: 0;
|
2019-01-28 19:36:11 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: stretch;
|
2019-01-28 19:36:11 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
cursor: pointer;
|
2019-01-28 19:36:11 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
width: 100%;
|
2019-01-28 19:36:11 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
padding-left: .5em;
|
|
|
|
padding-right: 1em;
|
2019-01-28 19:36:11 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
font-size: .9em;
|
2019-01-28 19:36:11 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
.container-button-play_pause {
|
|
|
|
/* the selected border */
|
|
|
|
margin-top: 1px;
|
|
|
|
margin-bottom: 1px;
|
2019-01-28 19:36:11 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
flex-shrink: 0;
|
|
|
|
flex-grow: 0;
|
2019-01-28 19:36:11 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-around;
|
2019-01-28 19:36:11 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
align-self: center;
|
|
|
|
margin-right: .25em;
|
2019-01-28 19:36:11 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
padding: .25em;
|
2019-01-28 19:36:11 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
border: none;
|
2019-01-28 19:36:11 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
/* copy checkmark */
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
width: 1.3em;
|
|
|
|
height: 1.3em;
|
|
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
pointer-events: all;
|
|
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
background-color: #272626;
|
|
|
|
border-radius: $border_radius_middle;
|
|
|
|
|
|
|
|
-webkit-box-shadow: inset 0 0 4px 0 rgba(0, 0, 0, 0.5);
|
|
|
|
-moz-box-shadow: inset 0 0 4px 0 rgba(0, 0, 0, 0.5);
|
|
|
|
box-shadow: inset 0 0 4px 0 rgba(0, 0, 0, 0.5);
|
|
|
|
|
|
|
|
img {
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
align-self: center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.container-name {
|
|
|
|
/* the selected border */
|
|
|
|
margin-top: 1px;
|
|
|
|
margin-bottom: 1px;
|
|
|
|
|
|
|
|
flex-shrink: 1;
|
|
|
|
flex-grow: 1;
|
|
|
|
|
|
|
|
min-width: 4em;
|
|
|
|
|
|
|
|
padding: .25em;
|
|
|
|
line-height: 1.2em;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: flex-start;
|
2019-01-28 19:36:11 +00:00
|
|
|
|
2019-08-21 08:00:01 +00:00
|
|
|
border: none;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.container-button-toggle {
|
|
|
|
font-size: .8em;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: $color_list_hover;
|
|
|
|
}
|
|
|
|
|
|
|
|
label {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-around;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.container-filter {
|
|
|
|
border: none;
|
|
|
|
border-top: 1px $color_list_border solid;
|
|
|
|
|
|
|
|
padding-right: 1em;
|
|
|
|
padding-left: 1em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.right {
|
|
|
|
flex-grow: 0;
|
|
|
|
flex-shrink: 1;
|
|
|
|
|
|
|
|
width: 25%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-12-28 14:39:23 +00:00
|
|
|
}
|
2018-10-28 17:25:43 +00:00
|
|
|
}
|