| OLD | NEW |
| 1 /* Copyright 2016 The Chromium Authors. All rights reserved. | 1 /* Copyright 2016 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 body { | 5 body { |
| 6 border: 0; | 6 border: 0; |
| 7 height: 35px; | 7 height: 35px; |
| 8 margin: 0; | 8 margin: 0; |
| 9 overflow: hidden; | 9 overflow: hidden; |
| 10 padding: 0; | 10 padding: 0; |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 .menu-item:hover, | 226 .menu-item:hover, |
| 227 .menu-item.hover, | 227 .menu-item.hover, |
| 228 .menu-item:focus { | 228 .menu-item:focus { |
| 229 background-color: rgb(246, 145, 57); | 229 background-color: rgb(246, 145, 57); |
| 230 color: #fff; | 230 color: #fff; |
| 231 } | 231 } |
| 232 | 232 |
| 233 .menu-item-title { | 233 .menu-item-title { |
| 234 border: 0; | 234 border: 0; |
| 235 margin: 0; | 235 margin: 0; |
| 236 max-width: 500px; |
| 237 overflow: hidden; |
| 236 padding: 0 18px; | 238 padding: 0 18px; |
| 239 text-overflow: ellipsis; |
| 240 white-space: nowrap; |
| 237 } | 241 } |
| 238 | 242 |
| 239 .menu-item-shortcut { | 243 .menu-item-shortcut { |
| 240 border: 0; | 244 border: 0; |
| 241 margin: 0; | 245 margin: 0; |
| 242 padding: 0 18px 0 24px; | 246 padding: 0 18px 0 24px; |
| 243 text-align: right; | 247 text-align: right; |
| 244 } | 248 } |
| 245 | 249 |
| 246 #tutorial { | 250 #tutorial { |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 333 border: 1px solid black; | 337 border: 1px solid black; |
| 334 } | 338 } |
| 335 | 339 |
| 336 /* | 340 /* |
| 337 * The html hidden attribute doesn't make elements not focusable by default. | 341 * The html hidden attribute doesn't make elements not focusable by default. |
| 338 * This rule ensures that elements that are hidden truly don't show up. | 342 * This rule ensures that elements that are hidden truly don't show up. |
| 339 */ | 343 */ |
| 340 *[hidden] { | 344 *[hidden] { |
| 341 display: none !important; | 345 display: none !important; |
| 342 } | 346 } |
| OLD | NEW |