| 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 /* begin: show/hide selected ntp section */ | 5 /* begin: show/hide selected ntp section */ |
| 6 body[device='tablet'] .main-section { | 6 body[device='tablet'] .main-section { |
| 7 display: none; | 7 display: none; |
| 8 } | 8 } |
| 9 | 9 |
| 10 body[device='tablet'] .main-section.selected { | 10 body[device='tablet'] .main-section.selected { |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 margin: 2px; | 162 margin: 2px; |
| 163 position: relative; | 163 position: relative; |
| 164 top: -1px; | 164 top: -1px; |
| 165 width: 16px; | 165 width: 16px; |
| 166 } | 166 } |
| 167 | 167 |
| 168 html[dir='rtl'] body[device='tablet'] #recently_closed_list .icon { | 168 html[dir='rtl'] body[device='tablet'] #recently_closed_list .icon { |
| 169 float: right; | 169 float: right; |
| 170 } | 170 } |
| 171 | 171 |
| OLD | NEW |