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

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

Issue 2715663005: [DevTools] Add header for OOPIF's elements trees. (Closed)
Patch Set: 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 502 matching lines...) Expand 10 before | Expand all | Expand 10 after
513 position: absolute; 513 position: absolute;
514 right: 0; 514 right: 0;
515 bottom: 0; 515 bottom: 0;
516 visibility: hidden; 516 visibility: hidden;
517 background-color: rgba(255, 255, 255, 0.9); 517 background-color: rgba(255, 255, 255, 0.9);
518 } 518 }
519 519
520 .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 {
521 visibility: visible; 521 visibility: visible;
522 } 522 }
523
524 .elements-tree-header {
525 height: 24px;
526 border-top: 1px solid #eee;
527 border-bottom: 1px solid #eee;
528 display: flex;
529 flex-direction: row;
530 align-items: center;
531 }
532
533 .elements-tree-header-frame {
534 margin-left: 6px;
535 margin-right: 6px;
536 flex: none;
537 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698