| OLD | NEW |
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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 box-sizing: border-box; | 6 box-sizing: border-box; |
| 7 } | 7 } |
| 8 | 8 |
| 9 body { | 9 body { |
| 10 color: rgb(48, 57, 66); | 10 color: rgb(48, 57, 66); |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 line-height: 17px; | 72 line-height: 17px; |
| 73 margin: 6px 0; | 73 margin: 6px 0; |
| 74 padding: 0 2px; | 74 padding: 0 2px; |
| 75 } | 75 } |
| 76 | 76 |
| 77 .tab-header:not(.selected) > button { | 77 .tab-header:not(.selected) > button { |
| 78 color: #999; | 78 color: #999; |
| 79 } | 79 } |
| 80 | 80 |
| 81 #content > div { | 81 #content > div { |
| 82 padding: 54px 20px 65px 0; | 82 padding: 0 20px 65px 0; |
| 83 } | 83 } |
| 84 #content > div:not(.selected) { | 84 #content > div:not(.selected) { |
| 85 display: none; | 85 display: none; |
| 86 } | 86 } |
| 87 | 87 |
| 88 .content-header { | 88 .content-header { |
| 89 background: linear-gradient(white, white 40%, rgba(255, 255, 255, 0.92)); | 89 background: linear-gradient(white, white 40%, rgba(255, 255, 255, 0.92)); |
| 90 border-bottom: 1px solid #eee; | 90 border-bottom: 1px solid #eee; |
| 91 font-size: 150%; | 91 font-size: 150%; |
| 92 left: 150px; | |
| 93 padding: 20px 0 10px 0; | 92 padding: 20px 0 10px 0; |
| 94 position: fixed; | |
| 95 right: 20px; | |
| 96 top: 0; | |
| 97 z-index: 1; | 93 z-index: 1; |
| 98 } | 94 } |
| 99 | 95 |
| 100 #devices-help { | 96 #devices-help { |
| 101 margin-top: 10px; | 97 margin-top: 10px; |
| 102 } | 98 } |
| 103 | 99 |
| 104 .device-header { | 100 .device-header { |
| 105 -webkit-box-align: baseline; | 101 -webkit-box-align: baseline; |
| 106 -webkit-box-orient: horizontal; | 102 -webkit-box-orient: horizontal; |
| (...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 407 } | 403 } |
| 408 | 404 |
| 409 #port-forwarding-config-buttons { | 405 #port-forwarding-config-buttons { |
| 410 align-items: center; | 406 align-items: center; |
| 411 display: flex; | 407 display: flex; |
| 412 } | 408 } |
| 413 | 409 |
| 414 #port-forwarding-config-buttons > label { | 410 #port-forwarding-config-buttons > label { |
| 415 flex-grow: 1 | 411 flex-grow: 1 |
| 416 } | 412 } |
| OLD | NEW |