Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * Copyright 2017 The Chromium Authors. All rights reserved. | 2 * Copyright 2017 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 header { | 7 header { |
| 8 padding: 0 0 6px; | 8 padding: 0 0 6px; |
| 9 border-bottom: 1px solid #EEEEEE; | 9 border-bottom: 1px solid #EEEEEE; |
| 10 } | 10 } |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 48 bottom: 0; | 48 bottom: 0; |
| 49 overflow: auto; | 49 overflow: auto; |
| 50 padding-top: 9px; | 50 padding-top: 9px; |
| 51 } | 51 } |
| 52 | 52 |
| 53 .settings-tab.help-content { | 53 .settings-tab.help-content { |
| 54 margin: 0; | 54 margin: 0; |
| 55 padding: 0; | 55 padding: 0; |
| 56 } | 56 } |
| 57 | 57 |
| 58 .settings-tab input:not([type]), | |
| 59 .settings-tab input[type="text"] { | |
| 60 border: 1px solid rgb(213, 213, 213); | |
| 61 border-radius: 2px; | |
| 62 color: #444444; | |
| 63 padding: 3px; | |
| 64 } | |
|
luoe
2017/05/26 23:41:04
A duplicate of these rules exists in settingsScree
| |
| 65 | |
| 66 .settings-tab p { | 58 .settings-tab p { |
| 67 margin: 12px 0; | 59 margin: 12px 0; |
| 68 } | 60 } |
| 69 | 61 |
| 70 p.folder-exclude-pattern { | 62 p.folder-exclude-pattern { |
| 71 display: flex; | 63 display: flex; |
| 72 align-items: center; | 64 align-items: center; |
| 73 } | 65 } |
| 74 | 66 |
| 75 p.folder-exclude-pattern > input { | 67 p.folder-exclude-pattern > input { |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 109 background-color: #eee; | 101 background-color: #eee; |
| 110 padding: 10px; | 102 padding: 10px; |
| 111 margin: 20px 0; | 103 margin: 20px 0; |
| 112 } | 104 } |
| 113 | 105 |
| 114 .settings-tab.help-content.help-container { | 106 .settings-tab.help-content.help-container { |
| 115 -webkit-column-width: initial; | 107 -webkit-column-width: initial; |
| 116 overflow: hidden; | 108 overflow: hidden; |
| 117 padding-right: 10px; | 109 padding-right: 10px; |
| 118 } | 110 } |
| OLD | NEW |