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

Side by Side Diff: Source/devtools/front_end/sidebarPane.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/inspector.css ('k') | no next file » | 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 background-clip: padding; 81 background-clip: padding;
82 margin-top: -1px; 82 margin-top: -1px;
83 } 83 }
84 84
85 .sidebar-pane-title:active { 85 .sidebar-pane-title:active {
86 background-color: rgb(204, 204, 204); 86 background-color: rgb(204, 204, 204);
87 border-top: 1px solid rgb(178, 178, 178); 87 border-top: 1px solid rgb(178, 178, 178);
88 border-bottom: 1px solid rgb(178, 178, 178); 88 border-bottom: 1px solid rgb(178, 178, 178);
89 } 89 }
90 90
91 .placard-group::before,
91 .sidebar-pane-title::before { 92 .sidebar-pane-title::before {
92 background-image: url(Images/statusbarButtonGlyphs.png); 93 background-image: url(Images/statusbarButtonGlyphs.png);
93 background-size: 320px 120px; 94 background-size: 320px 120px;
94 opacity: 0.5; 95 opacity: 0.5;
95 float: left; 96 float: left;
96 width: 11px; 97 width: 11px;
97 height: 11px; 98 height: 11px;
98 margin-right: 2px; 99 margin-right: 2px;
99 content: "a"; 100 content: "a";
100 color: transparent; 101 color: transparent;
101 position: relative; 102 position: relative;
102 top: 3px; 103 top: 3px;
103 } 104 }
104 105
105 @media (-webkit-min-device-pixel-ratio: 1.5) { 106 @media (-webkit-min-device-pixel-ratio: 1.5) {
107 .placard-group::before,
106 .sidebar-pane-title::before { 108 .sidebar-pane-title::before {
107 background-image: url(Images/statusbarButtonGlyphs2x.png); 109 background-image: url(Images/statusbarButtonGlyphs2x.png);
108 } 110 }
109 } /* media */ 111 } /* media */
110 112
113 .placard-group::before,
111 .sidebar-pane-title::before { 114 .sidebar-pane-title::before {
112 background-position: -4px -96px; 115 background-position: -4px -96px;
113 } 116 }
114 117
118 .placard-group.expanded::before,
115 .sidebar-pane-title.expanded::before { 119 .sidebar-pane-title.expanded::before {
116 background-position: -20px -96px; 120 background-position: -20px -96px;
117 } 121 }
118 122
119 .sidebar-pane-toolbar { 123 .sidebar-pane-toolbar {
120 line-height: 18px; 124 line-height: 18px;
121 left: 0; 125 left: 0;
122 right: 4px; 126 right: 4px;
123 top: 0; 127 top: 0;
124 height: 20px; 128 height: 20px;
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 180
177 .sidebar-pane-subtitle input, 181 .sidebar-pane-subtitle input,
178 .section > .header input[type=checkbox] { 182 .section > .header input[type=checkbox] {
179 height: 1em; 183 height: 1em;
180 width: 1em; 184 width: 1em;
181 margin-left: 0; 185 margin-left: 0;
182 margin-top: 0; 186 margin-top: 0;
183 margin-bottom: 0.25em; 187 margin-bottom: 0.25em;
184 vertical-align: bottom; 188 vertical-align: bottom;
185 } 189 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/inspector.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698