| 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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 .action { | 210 .action { |
| 211 color: rgb(17, 85, 204); | 211 color: rgb(17, 85, 204); |
| 212 cursor: pointer; | 212 cursor: pointer; |
| 213 margin-right: 15px; | 213 margin-right: 15px; |
| 214 } | 214 } |
| 215 | 215 |
| 216 .action:hover { | 216 .action:hover { |
| 217 text-decoration: underline; | 217 text-decoration: underline; |
| 218 } | 218 } |
| 219 | 219 |
| 220 .browser-header .action { |
| 221 margin-left: 10px; |
| 222 } |
| 223 |
| 220 .list:not(.pages) .subrow { | 224 .list:not(.pages) .subrow { |
| 221 min-height: 19px; | 225 min-height: 19px; |
| 222 } | 226 } |
| 223 | 227 |
| 224 .action.disabled { | 228 .action.disabled { |
| 225 opacity: 0.5; | 229 opacity: 0.5; |
| 226 pointer-events: none; | 230 pointer-events: none; |
| 227 } | 231 } |
| 228 | 232 |
| 229 .open > input { | 233 .open > input { |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 379 } | 383 } |
| 380 | 384 |
| 381 #port-forwarding-config-buttons { | 385 #port-forwarding-config-buttons { |
| 382 align-items: center; | 386 align-items: center; |
| 383 display: flex; | 387 display: flex; |
| 384 } | 388 } |
| 385 | 389 |
| 386 #port-forwarding-config-buttons > label { | 390 #port-forwarding-config-buttons > label { |
| 387 flex-grow: 1 | 391 flex-grow: 1 |
| 388 } | 392 } |
| OLD | NEW |