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 673 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
684 .swatch-inner { | 684 .swatch-inner { |
685 width: 100%; | 685 width: 100%; |
686 height: 100%; | 686 height: 100%; |
687 display: inline-block; | 687 display: inline-block; |
688 border: 1px solid rgba(128, 128, 128, 0.6); | 688 border: 1px solid rgba(128, 128, 128, 0.6); |
689 } | 689 } |
690 | 690 |
691 .swatch-inner:hover { | 691 .swatch-inner:hover { |
692 border: 1px solid rgba(64, 64, 64, 0.8); | 692 border: 1px solid rgba(64, 64, 64, 0.8); |
693 } | 693 } |
| 694 |
| 695 .animationsSettings { |
| 696 padding: 4px; |
| 697 } |
| 698 |
| 699 .animationSectionBody { |
| 700 display: none; |
| 701 } |
| 702 |
| 703 .animationSectionBody.expanded { |
| 704 display: block; |
| 705 } |
| 706 |
| 707 .animationSectionBody .section { |
| 708 border-bottom: 1px solid rgb(191, 191, 191); |
| 709 } |
OLD | NEW |