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 16 matching lines...) Expand all Loading... |
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
28 */ | 28 */ |
29 | 29 |
30 #elements-content { | 30 #elements-content { |
31 flex: 1 1; | 31 flex: 1 1; |
32 overflow: auto; | 32 overflow: auto; |
33 padding: 2px 0 0 0; | 33 padding: 2px 0 0 0; |
34 transform: translateZ(0); | 34 transform: translateZ(0); |
35 } | 35 } |
36 | 36 |
37 #elements-content:not(.elements-wrap) > div { | |
38 display: inline-block; | |
39 } | |
40 | |
41 #elements-content.elements-wrap { | 37 #elements-content.elements-wrap { |
42 overflow-x: hidden; | 38 overflow-x: hidden; |
43 } | 39 } |
44 | 40 |
45 #elements-crumbs { | 41 #elements-crumbs { |
46 flex: 0 0 19px; | 42 flex: 0 0 19px; |
47 background-color: white; | 43 background-color: white; |
48 border-top: 1px solid #ccc; | 44 border-top: 1px solid #ccc; |
49 overflow: hidden; | 45 overflow: hidden; |
50 height: 19px; | 46 height: 19px; |
(...skipping 637 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
688 .swatch-inner { | 684 .swatch-inner { |
689 width: 100%; | 685 width: 100%; |
690 height: 100%; | 686 height: 100%; |
691 display: inline-block; | 687 display: inline-block; |
692 border: 1px solid rgba(128, 128, 128, 0.6); | 688 border: 1px solid rgba(128, 128, 128, 0.6); |
693 } | 689 } |
694 | 690 |
695 .swatch-inner:hover { | 691 .swatch-inner:hover { |
696 border: 1px solid rgba(64, 64, 64, 0.8); | 692 border: 1px solid rgba(64, 64, 64, 0.8); |
697 } | 693 } |
OLD | NEW |