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

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

Issue 2389883003: DevTools: hoist debugger paused reason to top (Closed)
Patch Set: update test for windows compat Created 4 years, 1 month 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
(Empty)
1 /*
2 * Copyright 2016 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 */
6
7 .paused-container {
8 flex: none;
9 }
10
11 .paused-status {
12 padding: 6px;
13 pointer-events: none;
14 border-bottom: 1px solid transparent;
15 border-top: 1px solid rgb(189, 189, 189);
16 background-color: hsl(50, 100%, 95%);
17 color: rgb(107, 97, 48);
18 }
19
20 .-theme-with-dark-background .paused-status {
21 background-color: hsl(46, 98%, 22%);
22 color: #ccc;
23 }
24
25 .paused-status.error-reason {
26 background-color: hsl(0, 100%, 97%);
27 color: #6b3b3b;
28 }
29
30 .status-main {
31 font-weight: bold;
32 padding-left: 15px;
33 position: relative;
34 }
35
36 .status-sub:not(:empty) {
37 padding-left: 15px;
38 padding-top: 5px;
39 overflow: hidden;
40 text-overflow: ellipsis;
41 }
42
43 .paused-status.error-reason .status-sub {
44 color: red;
45 line-height: 11px;
46 max-height: 27px;
47 }
48
49 .status-main::before {
50 background-position: -80px 0;
51 background-image: url(Images/smallIcons.png);
52 background-size: 190px 30px;
53 width: 10px;
54 height: 10px;
55 content: "";
56 -webkit-filter: hue-rotate(190deg);
57 position: absolute;
58 left: 0;
59 top: 1px;
60 }
61
62 .paused-status.error-reason .status-main::before {
63 background-position: -20px 0;
64 -webkit-filter: none;
65 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698