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 721 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
732 .swatch-inner { | 732 .swatch-inner { |
733 width: 100%; | 733 width: 100%; |
734 height: 100%; | 734 height: 100%; |
735 display: inline-block; | 735 display: inline-block; |
736 border: 1px solid rgba(128, 128, 128, 0.6); | 736 border: 1px solid rgba(128, 128, 128, 0.6); |
737 } | 737 } |
738 | 738 |
739 .swatch-inner:hover { | 739 .swatch-inner:hover { |
740 border: 1px solid rgba(64, 64, 64, 0.8); | 740 border: 1px solid rgba(64, 64, 64, 0.8); |
741 } | 741 } |
| 742 |
| 743 .animationsSettings { |
| 744 padding: 4px; |
| 745 } |
| 746 |
| 747 .animationSectionBody { |
| 748 display: none; |
| 749 } |
| 750 |
| 751 .animationSectionBody.expanded { |
| 752 display: block; |
| 753 } |
| 754 |
| 755 .animationSectionBody .section { |
| 756 border-bottom: 1px solid rgb(191, 191, 191); |
| 757 } |
OLD | NEW |