| OLD | NEW |
| 1 /* Copyright 2013 The Chromium Authors. All rights reserved. | 1 /* Copyright 2013 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 /* Derived from /ui/webui/resources/css/list.css. */ | 5 /* Derived from /ui/webui/resources/css/list.css. */ |
| 6 | 6 |
| 7 list, | 7 list, |
| 8 grid { | 8 grid { |
| 9 display: block; | 9 display: block; |
| 10 outline: none; | 10 outline: none; |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 list :-webkit-any( | 55 list :-webkit-any( |
| 56 input[type='input'], | 56 input[type='input'], |
| 57 input[type='password'], | 57 input[type='password'], |
| 58 input[type='search'], | 58 input[type='search'], |
| 59 input[type='text'], | 59 input[type='text'], |
| 60 input[type='url']), | 60 input[type='url']), |
| 61 list :-webkit-any( | 61 list :-webkit-any( |
| 62 button, | 62 button, |
| 63 input[type='button'], | 63 input[type='button'], |
| 64 input[type='submit'], | 64 input[type='submit'], |
| 65 select):not(.custom-appearance):not(.link-button) { | 65 select):not(.custom-appearance) { |
| 66 line-height: normal; | 66 line-height: normal; |
| 67 vertical-align: middle; | 67 vertical-align: middle; |
| 68 } | 68 } |
| 69 | 69 |
| 70 list > [hidden], | 70 list > [hidden], |
| 71 grid > [hidden] { | 71 grid > [hidden] { |
| 72 display: none; | 72 display: none; |
| 73 } | 73 } |
| OLD | NEW |