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 |
37 #elements-content.elements-wrap { | 41 #elements-content.elements-wrap { |
38 overflow-x: hidden; | 42 overflow-x: hidden; |
39 } | 43 } |
40 | 44 |
41 #elements-crumbs { | 45 #elements-crumbs { |
42 flex: 0 0 19px; | 46 flex: 0 0 19px; |
43 background-color: white; | 47 background-color: white; |
44 border-top: 1px solid #ccc; | 48 border-top: 1px solid #ccc; |
45 overflow: hidden; | 49 overflow: hidden; |
46 height: 19px; | 50 height: 19px; |
(...skipping 637 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
684 .swatch-inner { | 688 .swatch-inner { |
685 width: 100%; | 689 width: 100%; |
686 height: 100%; | 690 height: 100%; |
687 display: inline-block; | 691 display: inline-block; |
688 border: 1px solid rgba(128, 128, 128, 0.6); | 692 border: 1px solid rgba(128, 128, 128, 0.6); |
689 } | 693 } |
690 | 694 |
691 .swatch-inner:hover { | 695 .swatch-inner:hover { |
692 border: 1px solid rgba(64, 64, 64, 0.8); | 696 border: 1px solid rgba(64, 64, 64, 0.8); |
693 } | 697 } |
OLD | NEW |