Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(439)

Side by Side Diff: Source/devtools/front_end/timelinePanel.css

Issue 670503002: Timeline: add layer details view (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/devtools/front_end/timeline/module.json ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/timeline/module.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698