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

Side by Side Diff: resources/inspector/audits.css

Issue 2824040: Updating the Chrome reference build to revision 51178. This revision will cur... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/reference_builds/chrome/
Patch Set: Created 10 years, 5 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 28 matching lines...) Expand all
39 39
40 #audit-views { 40 #audit-views {
41 position: absolute; 41 position: absolute;
42 top: 0; 42 top: 0;
43 right: 0; 43 right: 0;
44 left: 200px; 44 left: 200px;
45 bottom: 0; 45 bottom: 0;
46 overflow: auto; 46 overflow: auto;
47 } 47 }
48 48
49 button.clear-audit-results-status-bar-item .glyph {
50 -webkit-mask-image: url(Images/clearConsoleButtonGlyph.png);
51 }
52
53 .audit-launcher-view { 49 .audit-launcher-view {
54 z-index: 1000; 50 z-index: 1000;
55 position: absolute; 51 position: absolute;
56 top: 0; 52 top: 0;
57 left: 0; 53 left: 0;
58 right: 0; 54 right: 0;
59 bottom: 0; 55 bottom: 0;
60 background-color: white; 56 background-color: white;
61 font-size: 13px; 57 font-size: 13px;
62 overflow-x: hidden; 58 overflow-x: hidden;
63 overflow-y: overlay; 59 overflow-y: overlay;
64 display: none; 60 display: none;
65 } 61 }
66 62
67 .audit-launcher-view.visible { 63 .audit-launcher-view.visible {
68 display: block; 64 display: block;
69 } 65 }
70 66
71 .audit-launcher-view .audit-launcher-view-content { 67 .audit-launcher-view .audit-launcher-view-content {
72 position: absolute; 68 position: absolute;
73 top: 0; 69 top: 0;
74 left: 0; 70 left: 0;
75 right: 0; 71 right: 0;
76 bottom: 0; 72 bottom: 0;
77 padding: 0 0 0 16px; 73 padding: 0 0 0 16px;
78 white-space: nowrap; 74 white-space: nowrap;
75 display: -webkit-box;
76 -webkit-box-orient: vertical;
79 } 77 }
80 78
81 .audit-launcher-view h1 { 79 .audit-launcher-view h1 {
82 color: rgb(110, 116, 128); 80 color: rgb(110, 116, 128);
83 font-size: 16px; 81 font-size: 16px;
84 line-height: 20px; 82 line-height: 20px;
85 font-weight: normal; 83 font-weight: normal;
86 padding-top: 15px; 84 padding-top: 15px;
87 } 85 }
88 86
89 .audit-launcher-view h1.no-audits { 87 .audit-launcher-view h1.no-audits {
90 text-align: center; 88 text-align: center;
91 font-style: italic; 89 font-style: italic;
92 position: relative; 90 position: relative;
93 left: -8px; 91 left: -8px;
94 } 92 }
95 93
96 .audit-launcher-view div.button-container { 94 .audit-launcher-view div.button-container {
97 position: absolute; 95 display: -webkit-box;
96 -webkit-box-orient: vertical;
98 width: 100%; 97 width: 100%;
99 bottom: 16px; 98 padding: 16px 0;
100 padding-top: 16px; 99 }
100 .audit-launcher-view .flexible-space {
101 -webkit-box-flex: 1;
101 } 102 }
102 103
103 .audit-launcher-view div.audit-categories-container { 104 .audit-launcher-view div.audit-categories-container {
104 position: relative; 105 position: relative;
105 top: 11px; 106 top: 11px;
106 left: 0; 107 left: 0;
107 width: 100%; 108 width: 100%;
108 overflow-y: auto; 109 overflow-y: auto;
109 } 110 }
110 111
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 167
167 .audit-launcher-view input[type="radio"]:active:not(:disabled) { 168 .audit-launcher-view input[type="radio"]:active:not(:disabled) {
168 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1 94, 194, 194)), to(rgb(239, 239, 239))); 169 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1 94, 194, 194)), to(rgb(239, 239, 239)));
169 } 170 }
170 171
171 .audit-launcher-view input[type="radio"]:checked:not(:disabled), .audit-launcher -view input[type="radio"]:checked:disabled { 172 .audit-launcher-view input[type="radio"]:checked:not(:disabled), .audit-launcher -view input[type="radio"]:checked:disabled {
172 background: url(Images/radioDot.png) center no-repeat, 173 background: url(Images/radioDot.png) center no-repeat,
173 -webkit-gradient(linear, left top, left bottom, from(rgb(252, 25 2, 252)), to(rgb(223, 223, 223))); 174 -webkit-gradient(linear, left top, left bottom, from(rgb(252, 25 2, 252)), to(rgb(223, 223, 223)));
174 } 175 }
175 176
177 .audit-launcher-view .resource-progress > img {
178 content: url(Images/spinner.gif);
179 vertical-align: text-top;
180 margin: 0 4px 0 8px;
181 }
182
176 .audit-result-view { 183 .audit-result-view {
177 overflow: auto; 184 overflow: auto;
178 position: absolute; 185 position: absolute;
179 top: 0; 186 top: 0;
180 left: 0; 187 left: 0;
181 right: 0; 188 right: 0;
182 bottom: 0; 189 bottom: 0;
183 display: none; 190 display: none;
184 } 191 }
185 192
(...skipping 18 matching lines...) Expand all
204 float: left; 211 float: left;
205 width: 8px; 212 width: 8px;
206 height: 8px; 213 height: 8px;
207 margin-top: 1px; 214 margin-top: 1px;
208 padding-right: 2px; 215 padding-right: 2px;
209 } 216 }
210 217
211 .audit-result-tree { 218 .audit-result-tree {
212 font-size: 11px; 219 font-size: 11px;
213 line-height: 14px; 220 line-height: 14px;
221 -webkit-user-select: text;
214 } 222 }
215 223
216 .audit-result-tree > ol { 224 .audit-result-tree > ol {
217 position: relative; 225 position: relative;
218 padding: 2px 6px !important; 226 padding: 2px 6px !important;
219 margin: 0; 227 margin: 0;
220 color: rgb(84, 84, 84); 228 color: rgb(84, 84, 84);
221 cursor: default; 229 cursor: default;
222 min-width: 100%; 230 min-width: 100%;
223 } 231 }
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 .audit-result { 272 .audit-result {
265 font-weight: bold; 273 font-weight: bold;
266 color: black; 274 color: black;
267 } 275 }
268 276
269 .audit-result img { 277 .audit-result img {
270 float: left; 278 float: left;
271 margin-left: -40px; 279 margin-left: -40px;
272 margin-top: -1px; 280 margin-top: -1px;
273 } 281 }
OLDNEW
« no previous file with comments | « resources/inspector/Images/statusbarMenuButtonChromium.png ('k') | resources/inspector/devtools.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698