| OLD | NEW |
| 1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2011 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 | 5 |
| 6 /* TODO(estade): handle overflow better? I tried overflow-x: hidden and | 6 /* TODO(estade): handle overflow better? I tried overflow-x: hidden and |
| 7 overflow-y: visible (for the new dot animation), but this makes a scroll | 7 overflow-y: visible (for the new dot animation), but this makes a scroll |
| 8 bar appear */ | 8 bar appear */ |
| 9 #dot-list { | 9 #dot-list { |
| 10 display: -webkit-box; | 10 display: -webkit-box; |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 * yet. | 66 * yet. |
| 67 */ | 67 */ |
| 68 .dot input { | 68 .dot input { |
| 69 color: #b2b2b2; | 69 color: #b2b2b2; |
| 70 } | 70 } |
| 71 | 71 |
| 72 .dot:focus input, .dot:hover input, .dot.selected input { | 72 .dot:focus input, .dot:hover input, .dot.selected input { |
| 73 color: #7f7f7f; | 73 color: #7f7f7f; |
| 74 } | 74 } |
| 75 | 75 |
| 76 .dot:focus .selection-bar, .dot:hover .selection-bar { | 76 .dot:focus .selection-bar, |
| 77 .dot:hover .selection-bar, |
| 78 .dot.drag-target .selection-bar { |
| 77 border-color: #b2b2b2; | 79 border-color: #b2b2b2; |
| 78 } | 80 } |
| 79 | 81 |
| 80 .dot.selected .selection-bar { | 82 .dot.selected .selection-bar { |
| 81 border-color: #7f7f7f; | 83 border-color: #7f7f7f; |
| 82 } | 84 } |
| OLD | NEW |