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: Source/devtools/front_end/audits/auditsPanel.css

Issue 1172643002: DevTools: migrate sidebar pane's titleElement to use Toolbar. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: only using latin1 in css 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) 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2009 Google Inc. All rights reserved. 3 * Copyright (C) 2009 Google Inc. All rights reserved.
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 are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 } 97 }
98 98
99 .audit-launcher-view input[type="checkbox"] { 99 .audit-launcher-view input[type="checkbox"] {
100 margin-left: 0; 100 margin-left: 0;
101 height: 14px; 101 height: 14px;
102 width: 14px; 102 width: 14px;
103 } 103 }
104 104
105 .audit-result-view { 105 .audit-result-view {
106 overflow: auto; 106 overflow: auto;
107 display: none;
108 }
109
110 .audit-result-view.visible {
111 display: block; 107 display: block;
112 flex: auto; 108 flex: auto;
113 } 109 }
114 110
115 .audit-result-tree { 111 .audit-result-tree {
116 margin: 0 0 3px; 112 margin: 0 0 3px;
117 } 113 }
118 114
119 .audit-launcher-view .progress-indicator { 115 .audit-launcher-view .progress-indicator {
120 display: inline-block; 116 display: inline-block;
121 } 117 }
122 118
123 .resource-url { 119 .resource-url {
124 float: right; 120 float: right;
125 text-align: right; 121 text-align: right;
126 max-width: 100%; 122 max-width: 100%;
127 margin-left: 4px; 123 margin-left: 4px;
128 } 124 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698