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

Side by Side 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2014 The Chromium Authors. All rights reserved. 2 * Copyright (c) 2014 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 .elements-disclosure { 7 .elements-disclosure {
8 width: 100%; 8 width: 100%;
9 display: inline-block; 9 display: inline-block;
10 line-height: normal; 10 line-height: normal;
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 } 250 }
251 80% { 251 80% {
252 background-color: rgb(245, 219, 244); 252 background-color: rgb(245, 219, 244);
253 color: inherit; 253 color: inherit;
254 } 254 }
255 to { 255 to {
256 background-color: inherit; 256 background-color: inherit;
257 } 257 }
258 } 258 }
259 259
260 @-webkit-keyframes dom-update-highlight-animation-dark {
261 from {
262 background-color: rgb(158, 54, 153);
263 color: white;
264 }
265 80% {
266 background-color: #333;
267 color: inherit;
268 }
269 to {
270 background-color: inherit;
271 }
272 }
273
260 .dom-update-highlight { 274 .dom-update-highlight {
261 -webkit-animation: dom-update-highlight-animation 1.4s 1 cubic-bezier(0, 0, 0.2, 1); 275 -webkit-animation: dom-update-highlight-animation 1.4s 1 cubic-bezier(0, 0, 0.2, 1);
262 border-radius: 2px; 276 border-radius: 2px;
263 } 277 }
264 278
279 :host-context(.-theme-with-dark-background) .dom-update-highlight {
280 -webkit-animation: dom-update-highlight-animation-dark 1.4s 1 cubic-bezier(0 , 0, 0.2, 1);
281 }
282
265 .elements-disclosure.single-node li { 283 .elements-disclosure.single-node li {
266 padding-left: 2px; 284 padding-left: 2px;
267 } 285 }
268 286
269 .elements-tree-shortcut-title { 287 .elements-tree-shortcut-title {
270 color: rgb(87, 87, 87); 288 color: rgb(87, 87, 87);
271 } 289 }
272 290
273 ol:hover > li > .elements-tree-shortcut-link { 291 ol:hover > li > .elements-tree-shortcut-link {
274 display: initial; 292 display: initial;
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
311 -webkit-mask-size: 352px 168px; 329 -webkit-mask-size: 352px 168px;
312 background-color: white; 330 background-color: white;
313 cursor: pointer; 331 cursor: pointer;
314 } 332 }
315 333
316 @media (-webkit-min-device-pixel-ratio: 1.5) { 334 @media (-webkit-min-device-pixel-ratio: 1.5) {
317 .elements-disclosure li.selected .gutter-container:not(.has-decorations) { 335 .elements-disclosure li.selected .gutter-container:not(.has-decorations) {
318 -webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png); 336 -webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png);
319 } 337 }
320 } /* media */ 338 } /* media */
OLDNEW
« 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