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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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; | 77 color: #444444; |
78 padding: 3px; | 78 padding: 3px; |
79 } | 79 } |
80 | 80 |
81 .devices-edit-fields input.device-edit-small { | 81 .devices-edit-fields .device-edit-fixed { |
82 flex: 0 0 80px; | 82 flex: 0 0 140px; |
83 } | 83 } |
| 84 |
| 85 .devices-edit-fields select { |
| 86 margin: 8px 5px 0 5px; |
| 87 } |
OLD | NEW |