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

Side by Side Diff: Source/devtools/front_end/inspector.css

Issue 80383004: DevTools: Show asynchronous call stacks on frontend. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: addressed Created 7 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 | Annotate | Revision Log
« no previous file with comments | « Source/devtools/front_end/SourcesPanel.js ('k') | Source/devtools/front_end/sidebarPane.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) 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 1387 matching lines...) Expand 10 before | Expand all | Expand 10 after
1398 .outline-disclosure ol.children { 1398 .outline-disclosure ol.children {
1399 display: none; 1399 display: none;
1400 } 1400 }
1401 1401
1402 .outline-disclosure ol.children.expanded { 1402 .outline-disclosure ol.children.expanded {
1403 display: block; 1403 display: block;
1404 } 1404 }
1405 1405
1406 .placard { 1406 .placard {
1407 position: relative; 1407 position: relative;
1408 border-top: 1px solid transparent;
1408 padding: 3px 8px 4px 18px; 1409 padding: 3px 8px 4px 18px;
1409 min-height: 18px; 1410 min-height: 18px;
1410 white-space: nowrap; 1411 white-space: nowrap;
1411 } 1412 }
1412 1413
1414 .placard.grouped {
1415 padding-left: 36px;
1416 }
1417
1413 .placard:nth-of-type(2n) { 1418 .placard:nth-of-type(2n) {
1414 background-color: rgb(234, 243, 255); 1419 background-color: rgb(234, 243, 255);
1415 } 1420 }
1416 1421
1417 .placard.selected { 1422 .placard.selected {
1418 border-top: 1px solid rgb(172, 172, 172); 1423 border-top: 1px solid rgb(172, 172, 172);
1419 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1 82, 182, 182)), to(rgb(162, 162, 162))); 1424 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1 82, 182, 182)), to(rgb(162, 162, 162)));
1420 background-origin: padding-box; 1425 background-origin: padding-box;
1421 background-clip: padding-box; 1426 background-clip: padding-box;
1422 } 1427 }
(...skipping 1393 matching lines...) Expand 10 before | Expand all | Expand 10 after
2816 display: inline-block; 2821 display: inline-block;
2817 float: right; 2822 float: right;
2818 padding-right: 4px; 2823 padding-right: 4px;
2819 padding-top: 4px; 2824 padding-top: 4px;
2820 padding-left: 2px; 2825 padding-left: 2px;
2821 } 2826 }
2822 2827
2823 body.undocked .toolbar-close-button-item { 2828 body.undocked .toolbar-close-button-item {
2824 display: none; 2829 display: none;
2825 } 2830 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/SourcesPanel.js ('k') | Source/devtools/front_end/sidebarPane.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698