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