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

Side by Side Diff: Source/devtools/front_end/cmdevtools.css

Issue 478963002: DevTools: [CodeMirror] handle new-lines in error popovers (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/devtools/front_end/source_frame/SourceFrame.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 .CodeMirror { 1 .CodeMirror {
2 line-height: 1.2em !important; 2 line-height: 1.2em !important;
3 background-color: transparent !important; 3 background-color: transparent !important;
4 } 4 }
5 5
6 .CodeMirror-linewidget { 6 .CodeMirror-linewidget {
7 overflow: visible !important; 7 overflow: visible !important;
8 } 8 }
9 9
10 .CodeMirror .source-frame-eval-expression { 10 .CodeMirror .source-frame-eval-expression {
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
236 } 236 }
237 237
238 .text-editor-row-message:first-child { 238 .text-editor-row-message:first-child {
239 border-top-width: 0px; 239 border-top-width: 0px;
240 } 240 }
241 241
242 .text-editor-row-message { 242 .text-editor-row-message {
243 border-top: 1px solid rgb(215, 215, 215); 243 border-top: 1px solid rgb(215, 215, 215);
244 line-height: 1.2; 244 line-height: 1.2;
245 white-space: nowrap; 245 white-space: nowrap;
246 display: flex;
246 } 247 }
247 248
248 .text-editor-row-message .bubble-repeat-count { 249 .text-editor-row-message .bubble-repeat-count {
249 margin-right: 1ex; 250 margin-right: 1ex;
250 margin-top: -1px; 251 margin-top: -1px;
251 } 252 }
252 253
253 .text-editor-row-message-icon { 254 .text-editor-row-message-icon {
254 margin-right: 1ex; 255 margin-right: 1ex;
256 margin-top: 2px;
255 } 257 }
256 258
257 .CodeMirror .text-editor-line-decoration-icon { 259 .CodeMirror .text-editor-line-decoration-icon {
258 position: absolute; 260 position: absolute;
259 cursor: pointer; 261 cursor: pointer;
260 right: -16px; 262 right: -16px;
261 top: -9px; 263 top: -9px;
262 } 264 }
263 265
264 .CodeMirror .text-editor-line-with-warning:not(.cm-execution-line) { 266 .CodeMirror .text-editor-line-with-warning:not(.cm-execution-line) {
(...skipping 12 matching lines...) Expand all
277 @media (-webkit-min-device-pixel-ratio: 1.5) { 279 @media (-webkit-min-device-pixel-ratio: 1.5) {
278 .CodeMirror .text-editor-line-decoration-wave { 280 .CodeMirror .text-editor-line-decoration-wave {
279 background-image: url(Images/errorWave_2x.png); 281 background-image: url(Images/errorWave_2x.png);
280 } 282 }
281 } /* media */ 283 } /* media */
282 284
283 /** @see crbug.com/358161 */ 285 /** @see crbug.com/358161 */
284 .CodeMirror .CodeMirror-vscrollbar, .CodeMirror .CodeMirror-hscrollbar { 286 .CodeMirror .CodeMirror-vscrollbar, .CodeMirror .CodeMirror-hscrollbar {
285 -webkit-transform: translateZ(0); 287 -webkit-transform: translateZ(0);
286 } 288 }
OLDNEW
« no previous file with comments | « no previous file | Source/devtools/front_end/source_frame/SourceFrame.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698