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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/console/consoleView.css

Issue 2691103007: DevTools: more console setting checkboxes in toolbar (Closed)
Patch Set: Created 3 years, 10 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 | « third_party/WebKit/Source/devtools/front_end/console/ConsoleView.js ('k') | no next file » | 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 27 matching lines...) Expand all
38 38
39 .console-view-wrapper { 39 .console-view-wrapper {
40 background-color: #eee; 40 background-color: #eee;
41 } 41 }
42 42
43 .console-view-fix-select-all { 43 .console-view-fix-select-all {
44 height: 0; 44 height: 0;
45 overflow: hidden; 45 overflow: hidden;
46 } 46 }
47 47
48 .console-settings-pane {
49 flex: none;
50 border-bottom: 1px solid #dadada;
51 }
52
53 .console-settings-pane .toolbar {
54 flex: 1 1;
55 }
56
48 #console-messages { 57 #console-messages {
49 flex: 1 1; 58 flex: 1 1;
50 padding: 2px 0; 59 padding: 2px 0;
51 overflow-y: auto; 60 overflow-y: auto;
52 word-wrap: break-word; 61 word-wrap: break-word;
53 -webkit-user-select: text; 62 -webkit-user-select: text;
54 transform: translateZ(0); 63 transform: translateZ(0);
55 } 64 }
56 65
57 #console-prompt { 66 #console-prompt {
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after
359 .console-message-stack-trace-wrapper { 368 .console-message-stack-trace-wrapper {
360 flex: 1 1 auto; 369 flex: 1 1 auto;
361 display: flex; 370 display: flex;
362 flex-direction: column; 371 flex-direction: column;
363 align-items: stretch; 372 align-items: stretch;
364 } 373 }
365 374
366 .console-message-stack-trace-wrapper > * { 375 .console-message-stack-trace-wrapper > * {
367 flex: none; 376 flex: none;
368 } 377 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/console/ConsoleView.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698