OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. |
3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> | 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * | 8 * |
9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 693 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
704 display: none; | 704 display: none; |
705 } | 705 } |
706 | 706 |
707 .animationSectionBody.expanded { | 707 .animationSectionBody.expanded { |
708 display: block; | 708 display: block; |
709 } | 709 } |
710 | 710 |
711 .animationSectionBody .section { | 711 .animationSectionBody .section { |
712 border-bottom: 1px solid rgb(191, 191, 191); | 712 border-bottom: 1px solid rgb(191, 191, 191); |
713 } | 713 } |
| 714 |
| 715 .animationsHeader { |
| 716 padding-top: 25px; |
| 717 } |
| 718 |
| 719 .global-animations-toolbar { |
| 720 position: absolute; |
| 721 top: 0; |
| 722 width: 100%; |
| 723 background-color: #eee; |
| 724 border-bottom: 1px solid rgb(163, 163, 163); |
| 725 } |
| 726 |
| 727 .playback-rate-button.toggled-on > .status-bar-button-text { |
| 728 color: rgb(66, 129, 235); |
| 729 } |
OLD | NEW |