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 728 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
739 background-color: rgba(255, 255, 255, 0.8); | 739 background-color: rgba(255, 255, 255, 0.8); |
740 font-size: 30px; | 740 font-size: 30px; |
741 z-index: 500; | 741 z-index: 500; |
742 display: flex; | 742 display: flex; |
743 justify-content: center; | 743 justify-content: center; |
744 align-items: center; | 744 align-items: center; |
745 } | 745 } |
746 | 746 |
747 .layers-3d-view { | 747 .layers-3d-view { |
748 overflow: hidden; | 748 overflow: hidden; |
| 749 -webkit-user-select: none; |
749 } | 750 } |
750 | 751 |
751 .layers-3d-view canvas { | 752 .layers-3d-view canvas { |
752 flex: 1 1; | 753 flex: 1 1; |
753 } | 754 } |
754 | 755 |
755 .transform-control-panel .status-bar-item > .glyph { | 756 .transform-control-panel .status-bar-item > .glyph { |
756 -webkit-mask-image: url(Images/transformControls.png); | 757 -webkit-mask-image: url(Images/transformControls.png); |
757 -webkit-mask-size: 96px 24px; | 758 -webkit-mask-size: 96px 24px; |
758 opacity: 0.8; | 759 opacity: 0.8; |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
855 } | 856 } |
856 | 857 |
857 .paint-profiler-image-view { | 858 .paint-profiler-image-view { |
858 overflow: hidden; | 859 overflow: hidden; |
859 } | 860 } |
860 | 861 |
861 .paint-profiler-image-view img { | 862 .paint-profiler-image-view img { |
862 border: solid 1px black; | 863 border: solid 1px black; |
863 -webkit-transform-origin: 0px 0px; | 864 -webkit-transform-origin: 0px 0px; |
864 } | 865 } |
OLD | NEW |