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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/resources/resourcesPanel.css

Issue 1403373013: DevTools: move ui messages from SourceFrame to UISourceCodeFrame (step2) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments addressed Created 5 years, 1 month 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
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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 } 89 }
90 90
91 .resources.panel .status { 91 .resources.panel .status {
92 float: right; 92 float: right;
93 height: 16px; 93 height: 16px;
94 margin-top: 1px; 94 margin-top: 1px;
95 margin-left: 4px; 95 margin-left: 4px;
96 line-height: 1em; 96 line-height: 1em;
97 } 97 }
98 98
99 .resources.panel li .status .bubble-repeat-count {
100 height: 13px;
101 margin-top: 1px;
102 padding-top: 0;
103 }
104
105 .storage-view { 99 .storage-view {
106 display: flex; 100 display: flex;
107 overflow: hidden; 101 overflow: hidden;
108 } 102 }
109 103
110 .storage-view { 104 .storage-view {
111 overflow: hidden; 105 overflow: hidden;
112 } 106 }
113 107
114 .storage-view .data-grid:not(.inline) { 108 .storage-view .data-grid:not(.inline) {
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
346 content: url(Images/cookie.png); 340 content: url(Images/cookie.png);
347 } 341 }
348 342
349 .application-cache-storage-tree-item .icon { 343 .application-cache-storage-tree-item .icon {
350 content: url(Images/applicationCache.png); 344 content: url(Images/applicationCache.png);
351 } 345 }
352 346
353 .file-system-storage-tree-item .icon { 347 .file-system-storage-tree-item .icon {
354 content: url(Images/fileSystem.png); 348 content: url(Images/fileSystem.png);
355 } 349 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698