2018-08-11 13:02:11 +00:00
|
|
|
.channel_perm_tbl .value {
|
|
|
|
width: 60px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.group_box {
|
2018-12-28 14:39:23 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: stretch;
|
2018-08-11 13:02:11 +00:00
|
|
|
|
|
|
|
.header {
|
2018-12-28 14:39:23 +00:00
|
|
|
flex-grow: 0;
|
|
|
|
flex-shrink: 0;
|
2018-08-11 13:02:11 +00:00
|
|
|
float: left;
|
|
|
|
margin-bottom: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
2018-12-28 14:39:23 +00:00
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 1;
|
|
|
|
|
2018-08-11 13:02:11 +00:00
|
|
|
background: rgba(0, 0, 0, .035);
|
|
|
|
border: lightgray solid 1px;
|
|
|
|
border-radius: 0 2px;
|
|
|
|
padding: 6px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-13 15:50:55 +00:00
|
|
|
/* Channel edit/create modal */
|
|
|
|
.settings_audio {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 40% 60%;
|
|
|
|
grid-gap: 10px;
|
|
|
|
|
|
|
|
.custom {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: min-content auto;
|
|
|
|
grid-template-rows: repeat(auto-fill, min-content);
|
|
|
|
grid-column-gap: 5px;
|
|
|
|
|
|
|
|
select {
|
|
|
|
height: fit-content;
|
|
|
|
}
|
|
|
|
|
|
|
|
.quality {
|
|
|
|
display: inline-grid;
|
|
|
|
grid-template-columns: auto min-content;
|
|
|
|
grid-column-gap: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.settings_advanced {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(auto-fill, max-content);
|
|
|
|
grid-template-rows: repeat(auto-fill, max-content);
|
|
|
|
grid-gap: 5px;
|
|
|
|
|
|
|
|
> div:first-of-type {
|
|
|
|
grid-column: auto / span 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
.max_limited {
|
|
|
|
width: 100%;
|
|
|
|
display: inline-flex;
|
|
|
|
input[type="number"] {
|
|
|
|
width: 75px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.group_box {
|
|
|
|
fieldset, fieldset > div {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
2018-09-30 19:50:59 +00:00
|
|
|
}
|
|
|
|
|
2018-10-14 11:27:48 +00:00
|
|
|
.horizontal-stretch {
|
|
|
|
display: flex;
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
2018-10-20 17:58:06 +00:00
|
|
|
.container-ban-type {
|
|
|
|
margin: 5px;
|
|
|
|
}
|
|
|
|
|
2018-09-30 19:50:59 +00:00
|
|
|
.arrow {
|
|
|
|
display: inline-block;
|
|
|
|
border: solid black;
|
2019-08-21 08:00:01 +00:00
|
|
|
//border-width: 0 3px 3px 0;
|
|
|
|
//padding: 3px;
|
|
|
|
//height: 10px;
|
|
|
|
|
|
|
|
border-width: 0 .2em .2em 0;
|
|
|
|
padding: .21em;
|
|
|
|
height: .5em;
|
2018-09-30 19:50:59 +00:00
|
|
|
|
|
|
|
&.right {
|
|
|
|
transform: rotate(-45deg);
|
|
|
|
-webkit-transform: rotate(-45deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
&.left {
|
|
|
|
transform: rotate(135deg);
|
|
|
|
-webkit-transform: rotate(135deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
&.up {
|
|
|
|
transform: rotate(-135deg);
|
|
|
|
-webkit-transform: rotate(-135deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
&.down {
|
|
|
|
transform: rotate(45deg);
|
|
|
|
-webkit-transform: rotate(45deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.layout-group-server, .layout-group-channel, .layout-channel, .layout-client, .layout-client-channel {
|
|
|
|
width: 100%;
|
2018-10-14 11:27:48 +00:00
|
|
|
height: 100%;
|
2018-09-30 19:50:59 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2018-10-14 11:27:48 +00:00
|
|
|
justify-content: stretch;
|
2018-09-30 19:50:59 +00:00
|
|
|
|
|
|
|
& > div {
|
|
|
|
margin: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.list-group-server, .list-group-channel, .list-group-server-clients, .list-channel {
|
2018-10-14 11:27:48 +00:00
|
|
|
border: grey solid 1px;
|
2018-09-30 19:50:59 +00:00
|
|
|
position: relative;
|
2018-10-14 11:27:48 +00:00
|
|
|
width: 175px;
|
|
|
|
flex-grow: 0;
|
2019-02-17 15:08:10 +00:00
|
|
|
min-width: 125px;
|
2018-10-14 11:27:48 +00:00
|
|
|
|
2018-09-30 19:50:59 +00:00
|
|
|
.entries {
|
|
|
|
display: table;
|
|
|
|
position: absolute;
|
|
|
|
top: 0; bottom: 0;
|
|
|
|
left: 0; right: 0;
|
|
|
|
min-width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.list-group-server, .list-group-channel {
|
|
|
|
border: grey solid 1px;
|
|
|
|
user-select: none;
|
|
|
|
overflow: auto;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.group {
|
|
|
|
display: block;
|
|
|
|
white-space: nowrap;
|
|
|
|
cursor: pointer;
|
|
|
|
|
2019-05-25 09:22:29 +00:00
|
|
|
.icon, .icon_empty, .icon-container {
|
2018-09-30 19:50:59 +00:00
|
|
|
margin-right: 3px;
|
2019-05-25 09:22:29 +00:00
|
|
|
margin-left: 3px;
|
2018-09-30 19:50:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.name.savedb {
|
|
|
|
color: blue;
|
|
|
|
}
|
|
|
|
.name.default {
|
|
|
|
color: black;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.selected {
|
|
|
|
background-color: blue;
|
|
|
|
|
|
|
|
.name.savedb {
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.layout-channel, .layout-client-channel {
|
|
|
|
.list-channel {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
2018-10-14 11:27:48 +00:00
|
|
|
overflow: auto;
|
2018-09-30 19:50:59 +00:00
|
|
|
|
|
|
|
.channel {
|
|
|
|
cursor: pointer;
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
height: max-content;
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
|
|
.icon, .icon_empty {
|
|
|
|
margin-right: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.selected {
|
|
|
|
background-color: blue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-08-11 13:02:11 +00:00
|
|
|
}
|