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

Unified Diff: chrome_linux/resources/inspector/canvasProfiler.css

Issue 42163002: Roll Linux reference build to official build 31.0.1650.34 (trunk r224845, branch r230433) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/reference_builds/
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome_linux/resources/inspector/TimelinePanel.js ('k') | chrome_linux/resources/inspector/cmdevtools.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_linux/resources/inspector/canvasProfiler.css
===================================================================
--- chrome_linux/resources/inspector/canvasProfiler.css (revision 230844)
+++ chrome_linux/resources/inspector/canvasProfiler.css (working copy)
@@ -78,6 +78,19 @@
bottom: 0;
}
+button.status-bar-item.canvas-sidebar-show-hide-button {
+ right: 15px;
+ z-index: 13;
+}
+
+button.status-bar-item.canvas-sidebar-show-hide-button.toggled-left {
+ right: 0;
+}
+
+.canvas-replay-button {
+ min-width: 32px;
+}
+
.canvas-replay-first-step .glyph {
-webkit-mask-position: 0 -72px;
-webkit-transform: rotate(180deg);
@@ -100,6 +113,16 @@
.canvas-replay-next-draw .glyph {
-webkit-mask-position: -128px -72px;
}
+.canvas-replay-state-prev .glyph {
+ -webkit-mask-position: -64px -48px;
+ -webkit-transform: scaleX(-1);
+}
+.canvas-replay-state-next .glyph {
+ -webkit-mask-position: -64px -48px;
+}
+.canvas-replay-state-refresh .glyph {
+ -webkit-mask-position: 0 0;
+}
.canvas-popover-anchor {
position: absolute;
@@ -115,7 +138,14 @@
}
.canvas-formatted-resource {
+ color: rgb(33%, 33%, 33%);
}
+.canvas-formatted-resource.canvas-popover-anchor,
+.canvas-formatted-resource:hover {
+ color: rgb(38, 38, 38);
+ text-decoration: underline;
+ cursor: pointer;
+}
/* Keep in sync with "console-formatted-*" CSS styles. */
.canvas-formatted-object,
@@ -138,3 +168,27 @@
.data-grid:focus tr.selected .canvas-formatted-string {
color: inherit !important;
}
+
+.canvas-replay-state-view .data-grid {
+ top: 23px;
+}
+
+.canvas-replay-state-view .data-grid .data-container tr:nth-child(odd).canvas-grid-node-highlighted {
+ -webkit-animation: "fadeout-odd" 2s 0s;
+ background-color: rgb(255, 255, 175);
+}
+
+.canvas-replay-state-view .data-grid .data-container tr:nth-child(even).canvas-grid-node-highlighted {
+ -webkit-animation: "fadeout-even" 2s 0s;
+ background-color: rgb(235, 235, 120);
+}
+
+@-webkit-keyframes fadeout-odd {
+ from { background-color: rgb(255, 255, 25); }
+ to { background-color: rgb(255, 255, 175); }
+}
+
+@-webkit-keyframes fadeout-even {
+ from { background-color: rgb(255, 255, 25); }
+ to { background-color: rgb(235, 235, 120); }
+}
« no previous file with comments | « chrome_linux/resources/inspector/TimelinePanel.js ('k') | chrome_linux/resources/inspector/cmdevtools.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698