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

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

Issue 1164763004: DevTools: render category filters in a way that they don't clash. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: for landing Created 5 years, 6 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
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 24 matching lines...) Expand all
35 .console-view-wrapper { 35 .console-view-wrapper {
36 background-color: #eee; 36 background-color: #eee;
37 } 37 }
38 38
39 .console-view-fix-select-all { 39 .console-view-fix-select-all {
40 height: 0; 40 height: 0;
41 overflow: hidden; 41 overflow: hidden;
42 } 42 }
43 43
44 .console-filters-header { 44 .console-filters-header {
45 flex: 0 0 23px;
46 overflow: hidden; 45 overflow: hidden;
46 flex: none;
47 } 47 }
48 48
49 #console-messages { 49 #console-messages {
50 flex: 1 1; 50 flex: 1 1;
51 padding: 2px 0; 51 padding: 2px 0;
52 overflow-y: auto; 52 overflow-y: auto;
53 word-wrap: break-word; 53 word-wrap: break-word;
54 -webkit-user-select: text; 54 -webkit-user-select: text;
55 border-top: 1px solid rgb(230, 230, 230); 55 border-top: 1px solid rgb(230, 230, 230);
56 transform: translateZ(0); 56 transform: translateZ(0);
(...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after
444 font-size: 9px; 444 font-size: 9px;
445 } 445 }
446 446
447 .object-info-state-note::before { 447 .object-info-state-note::before {
448 content: "i"; 448 content: "i";
449 } 449 }
450 450
451 .console-view-object-properties-section:not(.expanded) .object-info-state-note { 451 .console-view-object-properties-section:not(.expanded) .object-info-state-note {
452 display: none; 452 display: none;
453 } 453 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/console/ConsoleView.js ('k') | Source/devtools/front_end/elements/StylesSidebarPane.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698