OLD | NEW |
1 /* Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
4 | 4 |
5 | 5 |
6 .peer-connection-dump-root { | 6 .peer-connection-dump-root { |
7 font-size: 0.8em; | 7 font-size: 0.8em; |
8 padding-bottom: 3px; | 8 padding-bottom: 3px; |
9 } | 9 } |
10 | 10 |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 font-size: 0.8em; | 81 font-size: 0.8em; |
82 padding: 0 0 0.5em 0; | 82 padding: 0 0 0.5em 0; |
83 } | 83 } |
84 | 84 |
85 .tab-head { | 85 .tab-head { |
86 background-color: rgb(220, 220, 220); | 86 background-color: rgb(220, 220, 220); |
87 margin: 10px 2px 0 2px; | 87 margin: 10px 2px 0 2px; |
88 text-decoration: underline; | 88 text-decoration: underline; |
89 cursor: pointer; | 89 cursor: pointer; |
90 display: inline-block; | 90 display: inline-block; |
91 word-break: break-all; | 91 overflow: hidden; |
92 width: 20em; | 92 width: 20em; |
| 93 height: 3em; |
93 } | 94 } |
94 | 95 |
95 .active-tab-head { | 96 .active-tab-head { |
96 background-color: turquoise; | 97 background-color: turquoise; |
97 font-weight: bold; | 98 font-weight: bold; |
98 } | 99 } |
99 | 100 |
100 .tab-body { | 101 .tab-body { |
101 border: 1px solid turquoise; | 102 border: 1px solid turquoise; |
102 border-top-width: 3px; | 103 border-top-width: 3px; |
103 padding: 0 10px 500px 10px; | 104 padding: 0 10px 500px 10px; |
104 display: none; | 105 display: none; |
105 } | 106 } |
106 | 107 |
107 .active-tab-body { | 108 .active-tab-body { |
108 display: block; | 109 display: block; |
109 } | 110 } |
| 111 |
| 112 .user-media-request-div-class { |
| 113 background-color: lightgray; |
| 114 margin: 10px 0 10px 0; |
| 115 } |
| 116 |
| 117 .user-media-request-div-class > div { |
| 118 margin: 5px 0 5px 0; |
| 119 } |
OLD | NEW |