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 767 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
778 | 778 |
779 .layers-3d-view { | 779 .layers-3d-view { |
780 overflow: hidden; | 780 overflow: hidden; |
781 -webkit-user-select: none; | 781 -webkit-user-select: none; |
782 } | 782 } |
783 | 783 |
784 .layers-3d-view canvas { | 784 .layers-3d-view canvas { |
785 flex: 1 1; | 785 flex: 1 1; |
786 } | 786 } |
787 | 787 |
| 788 .transform-control-panel { |
| 789 white-space: nowrap; |
| 790 flex: none; |
| 791 } |
| 792 |
788 .transform-control-panel .status-bar-item > .glyph { | 793 .transform-control-panel .status-bar-item > .glyph { |
789 -webkit-mask-image: url(Images/transformControls.png); | 794 -webkit-mask-image: url(Images/transformControls.png); |
790 -webkit-mask-size: 96px 24px; | 795 -webkit-mask-size: 96px 24px; |
791 opacity: 0.8; | 796 opacity: 0.8; |
792 } | 797 } |
793 | 798 |
794 @media (-webkit-min-device-pixel-ratio: 1.5) { | 799 @media (-webkit-min-device-pixel-ratio: 1.5) { |
795 .transform-control-panel .status-bar-item > .glyph { | 800 .transform-control-panel .status-bar-item > .glyph { |
796 -webkit-mask-image: url(Images/transformControls_2x.png); | 801 -webkit-mask-image: url(Images/transformControls_2x.png); |
797 } | 802 } |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
875 } | 880 } |
876 | 881 |
877 .paint-profiler-image-view { | 882 .paint-profiler-image-view { |
878 overflow: hidden; | 883 overflow: hidden; |
879 } | 884 } |
880 | 885 |
881 .paint-profiler-image-view img { | 886 .paint-profiler-image-view img { |
882 border: solid 1px black; | 887 border: solid 1px black; |
883 -webkit-transform-origin: 0px 0px; | 888 -webkit-transform-origin: 0px 0px; |
884 } | 889 } |
| 890 |
| 891 .layer-details-view ul { |
| 892 list-style: none; |
| 893 -webkit-padding-start: 0; |
| 894 -webkit-margin-before: 0; |
| 895 -webkit-margin-after: 0; |
| 896 } |
OLD | NEW |