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

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

Issue 2703143002: [DevTools] Prepare to move Popover to shadow DOM. (Closed)
Patch Set: fix Created 3 years, 9 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 .scripts-debug-toolbar-drawer.expanded { 48 .scripts-debug-toolbar-drawer.expanded {
49 margin-top: 0; 49 margin-top: 0;
50 } 50 }
51 51
52 .scripts-debug-toolbar-drawer > label { 52 .scripts-debug-toolbar-drawer > label {
53 display: flex; 53 display: flex;
54 padding-left: 3px; 54 padding-left: 3px;
55 height: 28px; 55 height: 28px;
56 } 56 }
57 57
58 .function-location-link {
59 float: right;
60 margin-left: 10px;
61 }
62
63 .function-location-step-into {
64 position: relative;
65 height: 14px;
66 transform: rotate(-90deg);
67 }
68
69 .object-popover-container {
70 display: inline-block;
71 }
72
73 .function-popover-title {
74 border-bottom: 1px solid #AAA;
75 margin-bottom: 3px;
76 padding-bottom: 2px;
77 display: flex;
78 justify-content: space-between;
79 align-items: center;
80 }
81
82 .function-title-link-container {
83 display: flex;
84 align-items: center;
85 position: relative;
86 margin-left: 10px;
87 }
88
89 .function-popover-title .function-name {
90 font-weight: bold;
91 }
92
93 .panel.sources .sidebar-pane-stack { 58 .panel.sources .sidebar-pane-stack {
94 overflow: auto; 59 overflow: auto;
95 } 60 }
96 61
97 .cursor-pointer { 62 .cursor-pointer {
98 cursor: pointer; 63 cursor: pointer;
99 } 64 }
100 65
101 .cursor-auto { 66 .cursor-auto {
102 cursor: auto; 67 cursor: auto;
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
236 } 201 }
237 202
238 .scope-chain-sidebar-pane-section { 203 .scope-chain-sidebar-pane-section {
239 padding: 2px 4px 2px 4px; 204 padding: 2px 4px 2px 4px;
240 flex: none; 205 flex: none;
241 } 206 }
242 207
243 .event-listeners-sidebar-pane .toolbar { 208 .event-listeners-sidebar-pane .toolbar {
244 border-bottom: 1px solid #eee; 209 border-bottom: 1px solid #eee;
245 } 210 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698