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

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

Issue 720223002: DevTools: only allow status bar items in status bars. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebaselined Created 6 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 | 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 } 66 }
67 67
68 .resources.panel .base-storage-tree-element-title { 68 .resources.panel .base-storage-tree-element-title {
69 overflow: hidden; 69 overflow: hidden;
70 position: relative; 70 position: relative;
71 text-overflow: ellipsis; 71 text-overflow: ellipsis;
72 padding-left: 2px; 72 padding-left: 2px;
73 top: 1px; 73 top: 1px;
74 } 74 }
75 75
76 .resources-main {
77 position: absolute;
78 top: 0;
79 bottom: 23px;
80 left: 0;
81 right: 0;
82 display: flex;
83 }
84
85 .resources-status-bar { 76 .resources-status-bar {
86 position: absolute; 77 border-top: 1px solid #ccc;
87 bottom: 0;
88 left: 0;
89 right: 0;
90 height: 23px;
91 background-color: #eee; 78 background-color: #eee;
92 } 79 }
93 80
94 li.selected .base-storage-tree-element-subtitle { 81 li.selected .base-storage-tree-element-subtitle {
95 color: white; 82 color: white;
96 } 83 }
97 84
98 .base-storage-tree-element-subtitle { 85 .base-storage-tree-element-subtitle {
99 padding-left: 2px; 86 padding-left: 2px;
100 color: rgb(80, 80, 80); 87 color: rgb(80, 80, 80);
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
348 content: url(Images/cookie.png); 335 content: url(Images/cookie.png);
349 } 336 }
350 337
351 .application-cache-storage-tree-item .icon { 338 .application-cache-storage-tree-item .icon {
352 content: url(Images/applicationCache.png); 339 content: url(Images/applicationCache.png);
353 } 340 }
354 341
355 .file-system-storage-tree-item .icon { 342 .file-system-storage-tree-item .icon {
356 content: url(Images/fileSystem.png); 343 content: url(Images/fileSystem.png);
357 } 344 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/resources/indexedDBViews.css ('k') | Source/devtools/front_end/timeline/Layers3DView.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698