OLD | NEW |
1 /* Copyright 2013 The Chromium Authors. All rights reserved. | 1 /* Copyright 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 html, | 5 html, |
6 body, | 6 body, |
7 #container { | 7 #container { |
8 margin: 0; | 8 margin: 0; |
9 padding: 0; | 9 padding: 0; |
10 width: 100%; | 10 width: 100%; |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 padding: 0px; | 80 padding: 0px; |
81 list-style-type: none; | 81 list-style-type: none; |
82 } | 82 } |
83 #list-wrapper button { | 83 #list-wrapper button { |
84 padding: 0px; | 84 padding: 0px; |
85 } | 85 } |
86 | 86 |
87 #property-wrapper, | 87 #property-wrapper, |
88 #log-wrapper { | 88 #log-wrapper { |
89 display:block; | 89 display:block; |
| 90 flex-grow: 0.25; |
| 91 align-self: stretch; |
| 92 overflow: auto; |
| 93 } |
| 94 |
| 95 #video-capture-capabilities-wrapper { |
90 flex-grow: 0.5; | 96 flex-grow: 0.5; |
91 align-self: stretch; | 97 align-self: stretch; |
92 overflow: auto; | 98 overflow: auto; |
93 } | 99 } |
94 | 100 |
95 #log-wrapper > thead { | 101 #log-wrapper > thead { |
96 position: fixed; | 102 position: fixed; |
97 } | 103 } |
98 | 104 |
99 #graphs li { | 105 #graphs li { |
(...skipping 10 matching lines...) Expand all Loading... |
110 } | 116 } |
111 | 117 |
112 .hiddenClipboard { | 118 .hiddenClipboard { |
113 display: none; | 119 display: none; |
114 } | 120 } |
115 | 121 |
116 .timestamp { | 122 .timestamp { |
117 min-width: 115px; | 123 min-width: 115px; |
118 } | 124 } |
119 | 125 |
| 126 #video-capture-capabilities-table { |
| 127 margin-bottom:30px; |
| 128 } |
| 129 |
| 130 #video-capture-capabilities-table th, |
| 131 #video-capture-capabilities-table td { |
| 132 min-width:120px; |
| 133 } |
| 134 |
| 135 #video-capture-capabilities-table td { |
| 136 padding:5px; |
| 137 } |
| 138 |
120 #video-capture-capabilities-table tr td { | 139 #video-capture-capabilities-table tr td { |
121 font-size:13px; | 140 font-size:13px; |
| 141 text-align:center; |
122 } | 142 } |
| 143 |
| 144 #video-capture-capabilities-table .video-capture-formats-table th, |
| 145 #video-capture-capabilities-table .video-capture-formats-table td { |
| 146 text-align:right; |
| 147 min-width:80px; |
| 148 } |
| 149 |
| 150 #video-capture-capabilities-table .video-capture-formats-table th { |
| 151 background:none; |
| 152 color:#666; |
| 153 font-size:13px; |
| 154 font-weight:bold; |
| 155 } |
| 156 |
| 157 #video-capture-capabilities-table .video-capture-formats-table td { |
| 158 padding:2px; |
| 159 } |
OLD | NEW |