| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 body { | 7 body { |
| 8 color: rgb(48, 57, 66); | 8 color: rgb(48, 57, 66); |
| 9 font-family: Arial, sans-serif; | 9 font-family: Arial, sans-serif; |
| 10 font-size: 13px; | 10 font-size: 13px; |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 display: flex; | 174 display: flex; |
| 175 flex-flow: row wrap; | 175 flex-flow: row wrap; |
| 176 } | 176 } |
| 177 | 177 |
| 178 .subrow > div { | 178 .subrow > div { |
| 179 margin-right: 0.5em; | 179 margin-right: 0.5em; |
| 180 } | 180 } |
| 181 | 181 |
| 182 .webview-thumbnail { | 182 .webview-thumbnail { |
| 183 display: inline-block; | 183 display: inline-block; |
| 184 flex-shrink: 0; |
| 184 margin-right: 5px; | 185 margin-right: 5px; |
| 185 overflow: hidden; | 186 overflow: hidden; |
| 186 position: relative; | 187 position: relative; |
| 187 vertical-align: top; | 188 vertical-align: top; |
| 188 } | 189 } |
| 189 | 190 |
| 190 .screen-rect { | 191 .screen-rect { |
| 191 background-color: #eee; | 192 background-color: #eee; |
| 192 position: absolute; | 193 position: absolute; |
| 193 } | 194 } |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 395 } | 396 } |
| 396 | 397 |
| 397 #port-forwarding-config-buttons { | 398 #port-forwarding-config-buttons { |
| 398 align-items: center; | 399 align-items: center; |
| 399 display: flex; | 400 display: flex; |
| 400 } | 401 } |
| 401 | 402 |
| 402 #port-forwarding-config-buttons > label { | 403 #port-forwarding-config-buttons > label { |
| 403 flex-grow: 1 | 404 flex-grow: 1 |
| 404 } | 405 } |
| OLD | NEW |