| 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 /* TODO(estade): handle overflow better? I tried overflow-x: hidden and | 5 /* TODO(estade): handle overflow better? I tried overflow-x: hidden and |
| 6 overflow-y: visible (for the new dot animation), but this makes a scroll | 6 * overflow-y: visible (for the new dot animation), but this makes a scroll |
| 7 bar appear */ | 7 * bar appear */ |
| 8 #dot-list { | 8 #dot-list { |
| 9 /* Expand to take up all available horizontal space. */ | 9 /* Expand to take up all available horizontal space. */ |
| 10 -webkit-box-flex: 1; | 10 -webkit-box-flex: 1; |
| 11 /* Center child dots. */ | 11 /* Center child dots. */ |
| 12 -webkit-box-pack: center; | 12 -webkit-box-pack: center; |
| 13 display: -webkit-flex; | 13 display: -webkit-flex; |
| 14 height: 100%; | 14 height: 100%; |
| 15 list-style-type: none; | 15 list-style-type: none; |
| 16 margin: 0; | 16 margin: 0; |
| 17 padding: 0; | 17 padding: 0; |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 margin-top: 2px; | 65 margin-top: 2px; |
| 66 padding: 1px 0; | 66 padding: 1px 0; |
| 67 width: 90%; | 67 width: 90%; |
| 68 } | 68 } |
| 69 | 69 |
| 70 .dot input:focus { | 70 .dot input:focus { |
| 71 cursor: auto; | 71 cursor: auto; |
| 72 } | 72 } |
| 73 | 73 |
| 74 /* Everything below here should be themed but we don't have appropriate colors | 74 /* Everything below here should be themed but we don't have appropriate colors |
| 75 * yet. | 75 * yet. */ |
| 76 */ | |
| 77 .dot input { | 76 .dot input { |
| 78 color: #b2b2b2; | 77 color: #b2b2b2; |
| 79 } | 78 } |
| 80 | 79 |
| 81 .dot:focus input, | 80 .dot:focus input, |
| 82 .dot:hover input, | 81 .dot:hover input, |
| 83 .dot.selected input { | 82 .dot.selected input { |
| 84 color: #7f7f7f; | 83 color: #7f7f7f; |
| 85 } | 84 } |
| 86 | 85 |
| 87 .dot:focus .selection-bar, | 86 .dot:focus .selection-bar, |
| 88 .dot:hover .selection-bar, | 87 .dot:hover .selection-bar, |
| 89 .dot.drag-target .selection-bar { | 88 .dot.drag-target .selection-bar { |
| 90 border-color: #b2b2b2; | 89 border-color: #b2b2b2; |
| 91 } | 90 } |
| 92 | 91 |
| 93 .dot.selected .selection-bar { | 92 .dot.selected .selection-bar { |
| 94 border-color: #7f7f7f; | 93 border-color: #7f7f7f; |
| 95 } | 94 } |
| OLD | NEW |