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

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

Issue 2389883003: DevTools: hoist debugger paused reason to top (Closed)
Patch Set: re-add stray line 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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }
104 104
105 .callstack-info {
106 text-align: center;
107 font-style: italic;
108 padding: 6px;
109 color: #888;
110 pointer-events: none;
111 display: flex;
112 align-items: center;
113 justify-content: center;
114 }
115
116 .callstack-info.status {
117 border-top: 1px solid rgb(189, 189, 189);
118 background-color: rgb(255, 255, 194);
119 }
120
121 .-theme-with-dark-background .callstack-info.status {
122 background-color: hsl(46, 98%, 22%);
123 color: #ccc;
124 }
125
126 .watch-expression-delete-button { 105 .watch-expression-delete-button {
127 width: 10px; 106 width: 10px;
128 height: 10px; 107 height: 10px;
129 background-image: url(Images/deleteIcon.png); 108 background-image: url(Images/deleteIcon.png);
130 background-position: 0 0; 109 background-position: 0 0;
131 background-color: transparent; 110 background-color: transparent;
132 background-repeat: no-repeat; 111 background-repeat: no-repeat;
133 border: 0 none transparent; 112 border: 0 none transparent;
134 position: absolute; 113 position: absolute;
135 top: 4px; 114 top: 4px;
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 text-align: center; 244 text-align: center;
266 font-style: italic; 245 font-style: italic;
267 padding: 4px; 246 padding: 4px;
268 color: #888; 247 color: #888;
269 background-color: #FFFFC2; 248 background-color: #FFFFC2;
270 } 249 }
271 250
272 .event-listeners-sidebar-pane .toolbar { 251 .event-listeners-sidebar-pane .toolbar {
273 border-bottom: 1px solid #eee; 252 border-bottom: 1px solid #eee;
274 } 253 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698