main
css 32 lines 502 Bytes
Raw
1 .DialEvents {
2 margin: 5px 0;
3 }
4
5 .DialEvent {
6 margin: 0;
7 padding: 5px 10px;
8 white-space: nowrap;
9 overflow: hidden;
10 text-overflow: ellipsis;
11 }
12
13 .DialEvent.dial-queue ol {
14 margin: 6px;
15 }
16
17 .DialEvent.dial-queue .calculated-address {
18 text-overflow: ellipsis;
19 overflow: hidden;
20 }
21
22 .DialEvent.webrtc .ice-candidate {
23 padding: 5px;
24 }
25
26 .DialEvents .Success {
27 background-color: var(--success-background-color);
28 }
29
30 .DialEvents .Error {
31 background-color: var(--warning-background-color);
32 }