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

Unified Diff: third_party/WebKit/Source/devtools/front_end/elements/elementsTreeOutline.css

Issue 1499993004: DevTools: popover, selection and other minor theme tweaks. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 | « no previous file | third_party/WebKit/Source/devtools/front_end/popover.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/devtools/front_end/elements/elementsTreeOutline.css
diff --git a/third_party/WebKit/Source/devtools/front_end/elements/elementsTreeOutline.css b/third_party/WebKit/Source/devtools/front_end/elements/elementsTreeOutline.css
index beb5cfd358b0cc4d94684f4ee930effe487fc992..f7f1d7d312bd3f804687408831f2d5d3723783a6 100644
--- a/third_party/WebKit/Source/devtools/front_end/elements/elementsTreeOutline.css
+++ b/third_party/WebKit/Source/devtools/front_end/elements/elementsTreeOutline.css
@@ -257,11 +257,29 @@ button, input, select {
}
}
+@-webkit-keyframes dom-update-highlight-animation-dark {
+ from {
+ background-color: rgb(158, 54, 153);
+ color: white;
+ }
+ 80% {
+ background-color: #333;
+ color: inherit;
+ }
+ to {
+ background-color: inherit;
+ }
+}
+
.dom-update-highlight {
-webkit-animation: dom-update-highlight-animation 1.4s 1 cubic-bezier(0, 0, 0.2, 1);
border-radius: 2px;
}
+:host-context(.-theme-with-dark-background) .dom-update-highlight {
+ -webkit-animation: dom-update-highlight-animation-dark 1.4s 1 cubic-bezier(0, 0, 0.2, 1);
+}
+
.elements-disclosure.single-node li {
padding-left: 2px;
}
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/popover.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698