Files
element-call-Github/src/inspectors/MediaInspector.module.css
Enrico Schwendig 1548a5673f Extend developer view with media debug information (#909)
* interceptor: add MediaStream feed debug interceptor

- interceptor displays nick name for default and nick name + user id if user gast
- interceptor displays track id  + media stream ids
2023-02-15 16:04:05 +01:00

54 lines
1.1 KiB
CSS

/*
Copyright 2023 New Vector Ltd
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
element {
--table-header: #1976d2;
--table-header-border: #1565c0;
--table-border: #d9d9d9;
--row-bg: #ffffff;
}
.scrollContainer {
height: 100%;
overflow-y: auto;
}
.voIPInspectorViewer {
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
}
.voIPInspectorViewer :global(.messageText) {
font-size: var(--font-size-caption);
fill: var(--primary-content) !important;
stroke: var(--primary-content) !important;
}
.section {
display: table;
width: 100%;
}
.section > * {
display: table-row;
}
.section .col {
display: table-cell;
}