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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/sources/sourcesPanel.css

Issue 2356423002: [DevTools] Turn WebInspector.Panel into a web component.
Patch Set: partial fixes Created 4 years, 2 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 display: flex; 83 display: flex;
84 align-items: center; 84 align-items: center;
85 position: relative; 85 position: relative;
86 margin-left: 10px; 86 margin-left: 10px;
87 } 87 }
88 88
89 .function-popover-title .function-name { 89 .function-popover-title .function-name {
90 font-weight: bold; 90 font-weight: bold;
91 } 91 }
92 92
93 .panel.sources .sidebar-pane-stack { 93 .panel .sidebar-pane-stack {
94 overflow: auto; 94 overflow: auto;
95 } 95 }
96 96
97 .cursor-pointer { 97 .cursor-pointer {
98 cursor: pointer; 98 cursor: pointer;
99 } 99 }
100 100
101 .cursor-auto { 101 .cursor-auto {
102 cursor: auto; 102 cursor: auto;
103 } 103 }
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 text-align: center; 265 text-align: center;
266 font-style: italic; 266 font-style: italic;
267 padding: 4px; 267 padding: 4px;
268 color: #888; 268 color: #888;
269 background-color: #FFFFC2; 269 background-color: #FFFFC2;
270 } 270 }
271 271
272 .event-listeners-sidebar-pane .toolbar { 272 .event-listeners-sidebar-pane .toolbar {
273 border-bottom: 1px solid #eee; 273 border-bottom: 1px solid #eee;
274 } 274 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698