| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2015 The Chromium Authors. All rights reserved. | 2 * Copyright 2015 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 .devices-settings-tab .settings-tab.help-content { | 7 .devices-settings-tab .settings-tab.help-content { |
| 8 display: flex; | 8 display: flex; |
| 9 flex-direction: column; | 9 flex-direction: column; |
| 10 align-items: flex-start; | 10 align-items: flex-start; |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 align-items: stretch; | 67 align-items: stretch; |
| 68 margin-bottom: 5px; | 68 margin-bottom: 5px; |
| 69 } | 69 } |
| 70 | 70 |
| 71 .devices-edit-fields input { | 71 .devices-edit-fields input { |
| 72 flex: auto; | 72 flex: auto; |
| 73 margin: 8px 5px 0 5px; | 73 margin: 8px 5px 0 5px; |
| 74 height: 22px; | 74 height: 22px; |
| 75 border: 1px solid rgb(213, 213, 213); | 75 border: 1px solid rgb(213, 213, 213); |
| 76 border-radius: 2px; | 76 border-radius: 2px; |
| 77 color: #444444; | |
| 78 padding: 3px; | 77 padding: 3px; |
| 79 } | 78 } |
| 80 | 79 |
| 81 .devices-edit-fields .device-edit-fixed { | 80 .devices-edit-fields .device-edit-fixed { |
| 82 flex: 0 0 140px; | 81 flex: 0 0 140px; |
| 83 } | 82 } |
| 84 | 83 |
| 85 .devices-edit-fields select { | 84 .devices-edit-fields select { |
| 86 margin: 8px 5px 0 5px; | 85 margin: 8px 5px 0 5px; |
| 87 } | 86 } |
| OLD | NEW |