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 tree { | 5 tree { |
6 display: block; | 6 display: block; |
7 outline: none; | 7 outline: none; |
8 overflow: auto; | 8 overflow: auto; |
9 } | 9 } |
10 | 10 |
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 color: black; | 162 color: black; |
163 outline: 1px solid black; | 163 outline: 1px solid black; |
164 } | 164 } |
165 | 165 |
166 .tree-item[editing] input { | 166 .tree-item[editing] input { |
167 /* Do not inherit the line-height */ | 167 /* Do not inherit the line-height */ |
168 font-family: inherit; | 168 font-family: inherit; |
169 font-size: inherit; | 169 font-size: inherit; |
170 font-weight: inherit; | 170 font-weight: inherit; |
171 margin: -2px -8px -2px -3px; | 171 margin: -2px -8px -2px -3px; |
172 <if expr="not is_macosx"> | 172 <if expr="not is_macosx and not is_ios"> |
173 outline: none; | 173 outline: none; |
174 </if> | 174 </if> |
175 padding: 1px 7px 1px 1px; | 175 padding: 1px 7px 1px 1px; |
176 } | 176 } |
177 | 177 |
178 html[dir=rtl] .tree-item[editing] input { | 178 html[dir=rtl] .tree-item[editing] input { |
179 margin: -2px -3px -2px -8px; | 179 margin: -2px -3px -2px -8px; |
180 padding: 1px 1px 1px 7px; | 180 padding: 1px 1px 1px 7px; |
181 } | 181 } |
OLD | NEW |