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

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: fix height of exceptions 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 { 105 .paused-status {
106 text-align: center;
107 font-style: italic;
108 padding: 6px; 106 padding: 6px;
109 color: #888;
110 pointer-events: none; 107 pointer-events: none;
111 display: flex; 108 border-bottom: 1px solid transparent;
112 align-items: center; 109 border-top: 1px solid rgb(189, 189, 189);
113 justify-content: center; 110 background-color: hsl(50, 100%, 95%);
111 color: rgb(107, 97, 48);
112 flex: none;
114 } 113 }
115 114
116 .callstack-info.status { 115 .-theme-with-dark-background .paused-status {
117 border-top: 1px solid rgb(189, 189, 189); 116 background-color: hsl(46, 98%, 22%);
118 background-color: rgb(255, 255, 194); 117 color: #ccc;
119 } 118 }
120 119
121 .-theme-with-dark-background .callstack-info.status { 120 .paused-status.error-reason {
122 background-color: hsl(46, 98%, 22%); 121 background-color: hsl(0, 100%, 97%);
123 color: #ccc; 122 color: #6b3b3b;
123 }
124
125 .status-main {
126 font-weight: bold;
127 padding-left: 15px;
128 position: relative;
129 }
130
131 .status-sub:not(:empty) {
132 padding-left: 15px;
133 padding-top: 5px;
134 font-size: 11px;
135 font-family: dejavu sans mono, monospace;
136 overflow: hidden;
137 text-overflow: ellipsis;
138 }
139
140 .paused-status.error-reason .status-sub {
141 color: red;
142 line-height: 11px;
143 max-height: 27px;
144 }
145
146 .status-main::before {
147 background-position: -80px 0;
148 background-image: url(Images/smallIcons.png);
149 background-size: 190px 30px;
150 width: 10px;
151 height: 10px;
152 content: "";
153 -webkit-filter: hue-rotate(190deg);
154 position: absolute;
155 left: 0;
156 top: 1px;
157 }
158
159 .paused-status.error-reason .status-main::before {
160 background-position: -20px 0;
161 -webkit-filter: none;
124 } 162 }
125 163
126 .watch-expression-delete-button { 164 .watch-expression-delete-button {
127 width: 10px; 165 width: 10px;
128 height: 10px; 166 height: 10px;
129 background-image: url(Images/deleteIcon.png); 167 background-image: url(Images/deleteIcon.png);
130 background-position: 0 0; 168 background-position: 0 0;
131 background-color: transparent; 169 background-color: transparent;
132 background-repeat: no-repeat; 170 background-repeat: no-repeat;
133 border: 0 none transparent; 171 border: 0 none transparent;
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 text-align: center; 303 text-align: center;
266 font-style: italic; 304 font-style: italic;
267 padding: 4px; 305 padding: 4px;
268 color: #888; 306 color: #888;
269 background-color: #FFFFC2; 307 background-color: #FFFFC2;
270 } 308 }
271 309
272 .event-listeners-sidebar-pane .toolbar { 310 .event-listeners-sidebar-pane .toolbar {
273 border-bottom: 1px solid #eee; 311 border-bottom: 1px solid #eee;
274 } 312 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698