| 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 .list { | 7 .list { |
| 8 flex: auto 0 1; | 8 flex: auto 0 1; |
| 9 overflow-y: auto; | 9 overflow-y: auto; |
| 10 border: 1px solid rgb(231, 231, 231); | 10 border: 1px solid rgb(231, 231, 231); |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 | 76 |
| 77 .editor-buttons { | 77 .editor-buttons { |
| 78 flex: none; | 78 flex: none; |
| 79 display: flex; | 79 display: flex; |
| 80 flex-direction: row; | 80 flex-direction: row; |
| 81 align-items: center; | 81 align-items: center; |
| 82 justify-content: flex-start; | 82 justify-content: flex-start; |
| 83 padding: 5px; | 83 padding: 5px; |
| 84 } | 84 } |
| 85 | 85 |
| 86 .material .editor-buttons { | |
| 87 padding: 5px 9px 9px 9px; | |
| 88 } | |
| 89 | |
| 90 .editor-buttons > button { | 86 .editor-buttons > button { |
| 91 flex: none; | 87 flex: none; |
| 92 margin-right: 10px; | 88 margin-right: 10px; |
| 93 } | 89 } |
| 94 | 90 |
| 95 .editor-content input { | 91 .editor-content input { |
| 96 margin-right: 10px; | 92 margin-right: 10px; |
| 97 } | 93 } |
| 98 | 94 |
| 99 .editor-content input.error-input { | 95 .editor-content input.error-input { |
| 100 background-color: white; | 96 background-color: white; |
| 101 } | 97 } |
| OLD | NEW |