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

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

Issue 1994453002: DevTools: fix "edit breakpoint" message box in Sources panel (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/sources/sourcesView.css » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 } 90 }
91 91
92 .function-popover-title .function-name { 92 .function-popover-title .function-name {
93 font-weight: bold; 93 font-weight: bold;
94 } 94 }
95 95
96 .panel.sources .sidebar-pane-stack { 96 .panel.sources .sidebar-pane-stack {
97 overflow: auto; 97 overflow: auto;
98 } 98 }
99 99
100 .source-frame-breakpoint-condition {
101 z-index: 30;
102 padding: 4px;
103 background-color: rgb(203, 226, 255);
104 border-radius: 7px;
105 border: 2px solid rgb(169, 172, 203);
106 width: 90%;
107 pointer-events: auto;
108 }
109
110 .source-frame-breakpoint-message {
111 background-color: transparent;
112 font-weight: normal;
113 font-size: 11px;
114 text-align: left;
115 text-shadow: none;
116 color: rgb(85, 85, 85);
117 cursor: default;
118 margin: 0 0 2px 0;
119 }
120
121 #source-frame-breakpoint-condition {
122 margin: 0;
123 border: 1px inset rgb(190, 190, 190) !important;
124 width: 100%;
125 box-shadow: none !important;
126 outline: none !important;
127 -webkit-user-modify: read-write;
128 }
129
130 .cursor-pointer { 100 .cursor-pointer {
131 cursor: pointer; 101 cursor: pointer;
132 } 102 }
133 103
134 .cursor-auto { 104 .cursor-auto {
135 cursor: auto; 105 cursor: auto;
136 } 106 }
137 107
138 .callstack-info { 108 .callstack-info {
139 text-align: center; 109 text-align: center;
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
278 .scope-chain-sidebar-pane-section-title { 248 .scope-chain-sidebar-pane-section-title {
279 font-weight: normal; 249 font-weight: normal;
280 word-wrap: break-word; 250 word-wrap: break-word;
281 white-space: normal; 251 white-space: normal;
282 } 252 }
283 253
284 .scope-chain-sidebar-pane-section { 254 .scope-chain-sidebar-pane-section {
285 padding: 2px 4px 2px 4px; 255 padding: 2px 4px 2px 4px;
286 overflow: hidden; 256 overflow: hidden;
287 } 257 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/sources/sourcesView.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698