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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/elements/elementsPanel.css

Issue 2703143002: [DevTools] Prepare to move Popover to shadow DOM. (Closed)
Patch Set: fix Created 3 years, 10 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
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 361 matching lines...) Expand 10 before | Expand all | Expand 10 after
372 } 372 }
373 373
374 .animations-controls > .playback-label { 374 .animations-controls > .playback-label {
375 width: 35px; 375 width: 35px;
376 } 376 }
377 377
378 .styles-selector { 378 .styles-selector {
379 cursor: text; 379 cursor: text;
380 } 380 }
381 381
382 .image-preview-container {
383 background: transparent;
384 text-align: center;
385 }
386
387 .image-preview-container img {
388 margin: 2px auto;
389 max-width: 100px;
390 max-height: 100px;
391 background-image: url(Images/checker.png);
392 -webkit-user-select: text;
393 -webkit-user-drag: auto;
394 }
395
396 .metrics { 382 .metrics {
397 border-bottom: 1px solid #ccc; 383 border-bottom: 1px solid #ccc;
398 } 384 }
399 385
400 .-theme-with-dark-background .metrics { 386 .-theme-with-dark-background .metrics {
401 color: #222; 387 color: #222;
402 } 388 }
403 389
404 .-theme-with-dark-background .metrics > div:hover { 390 .-theme-with-dark-background .metrics > div:hover {
405 color: #ccc; 391 color: #ccc;
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
527 position: absolute; 513 position: absolute;
528 right: 0; 514 right: 0;
529 bottom: 0; 515 bottom: 0;
530 visibility: hidden; 516 visibility: hidden;
531 background-color: rgba(255, 255, 255, 0.9); 517 background-color: rgba(255, 255, 255, 0.9);
532 } 518 }
533 519
534 .styles-pane:not(.is-editing-style) .styles-section.matched-styles:not(.read-onl y):hover .sidebar-pane-section-toolbar { 520 .styles-pane:not(.is-editing-style) .styles-section.matched-styles:not(.read-onl y):hover .sidebar-pane-section-toolbar {
535 visibility: visible; 521 visibility: visible;
536 } 522 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698