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 html[dir=rtl] body.uber-frame > .page { | 5 html[dir=rtl] body.uber-frame > .page { |
6 -webkit-margin-end: 0; | 6 -webkit-margin-end: 0; |
7 } | 7 } |
8 | 8 |
9 #top-container { | 9 #top-container { |
10 margin-top: 16px; | 10 margin-top: 16px; |
(...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
434 .entry .title > a:hover { | 434 .entry .title > a:hover { |
435 text-decoration: underline; | 435 text-decoration: underline; |
436 } | 436 } |
437 | 437 |
438 .fade-out { | 438 .fade-out { |
439 -webkit-transition: opacity 200ms; | 439 -webkit-transition: opacity 200ms; |
440 opacity: 0; | 440 opacity: 0; |
441 } | 441 } |
442 | 442 |
443 button.menu-button.drop-down { | 443 button.menu-button.drop-down { |
444 /* Workaround for bug in flex box: http://crbug.com/223542 */ | |
445 min-width: 12px; | 444 min-width: 12px; |
446 top: 0; | 445 top: 0; |
447 } | 446 } |
448 | 447 |
449 #action-menu > :not(hr) { | 448 #action-menu > :not(hr) { |
450 line-height: 29px; | 449 line-height: 29px; |
451 outline: none; | 450 outline: none; |
452 } | 451 } |
453 | 452 |
454 body:not(.has-results) #results-pagination { | 453 body:not(.has-results) #results-pagination { |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
487 } | 486 } |
488 | 487 |
489 /* Clear the float to ensure that #results-pagination encloses its children. */ | 488 /* Clear the float to ensure that #results-pagination encloses its children. */ |
490 #results-pagination::after { | 489 #results-pagination::after { |
491 clear: both; | 490 clear: both; |
492 content: ''; | 491 content: ''; |
493 display: block; | 492 display: block; |
494 height: 0; | 493 height: 0; |
495 visibility: hidden; | 494 visibility: hidden; |
496 } | 495 } |
OLD | NEW |