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

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

Issue 1461783003: [DevTools] Get rid of floats in treeoutline. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebaseline Created 5 years 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 18 matching lines...) Expand all
29 29
30 .resources.panel .sidebar { 30 .resources.panel .sidebar {
31 padding-left: 0; 31 padding-left: 0;
32 z-index: 10; 32 z-index: 10;
33 display: block; 33 display: block;
34 } 34 }
35 35
36 .resources.panel .sidebar li { 36 .resources.panel .sidebar li {
37 height: 18px; 37 height: 18px;
38 white-space: nowrap; 38 white-space: nowrap;
39 padding-top: 1px;
39 } 40 }
40 41
41 .resources.panel .sidebar li.selected { 42 .resources.panel .sidebar li.selected {
42 color: white; 43 color: white;
43 text-shadow: rgba(0, 0, 0, 0.33) 1px 1px 0; 44 text-shadow: rgba(0, 0, 0, 0.33) 1px 1px 0;
44 } 45 }
45 46
46 .resources.panel .sidebar li.selected .selection { 47 .resources.panel .sidebar li.selected .selection {
47 background-image: linear-gradient(to bottom, rgb(162, 177, 207), rgb(120, 13 8, 177)); 48 background-image: linear-gradient(to bottom, rgb(162, 177, 207), rgb(120, 13 8, 177));
48 border-top: 1px solid #979797; 49 border-top: 1px solid #979797;
49 height: 18px; 50 height: 18px;
50 } 51 }
51 52
52 .resources.panel .sidebar :focus li.selected .selection { 53 .resources.panel .sidebar :focus li.selected .selection {
53 background-image: linear-gradient(to bottom, rgb(92, 147, 213), rgb(21, 83, 170)); 54 background-image: linear-gradient(to bottom, rgb(92, 147, 213), rgb(21, 83, 170));
54 border-top: 1px solid rgb(68, 128, 200); 55 border-top: 1px solid rgb(68, 128, 200);
55 } 56 }
56 57
57 body.inactive .resources.panel .sidebar li.selected .selection { 58 body.inactive .resources.panel .sidebar li.selected .selection {
58 background-image: linear-gradient(to bottom, rgb(180, 180, 180), rgb(138, 13 8, 138)); 59 background-image: linear-gradient(to bottom, rgb(180, 180, 180), rgb(138, 13 8, 138));
59 border-top: 1px solid rgb(151, 151, 151); 60 border-top: 1px solid rgb(151, 151, 151);
60 } 61 }
61 62
62 .resources.panel .sidebar .icon { 63 .resources.panel .sidebar .icon {
63 width: 16px; 64 width: 16px;
64 height: 16px; 65 height: 16px;
65 float: left; 66 position: relative;
67 top: 3px;
68 margin-top: -3px;
66 } 69 }
67 70
68 .resources.panel .base-storage-tree-element-title { 71 .resources.panel .base-storage-tree-element-title {
69 overflow: hidden; 72 overflow: hidden;
70 position: relative;
71 text-overflow: ellipsis; 73 text-overflow: ellipsis;
72 padding-left: 2px; 74 padding-left: 2px;
73 top: 1px; 75 display: inline;
74 } 76 }
75 77
76 .resources-toolbar { 78 .resources-toolbar {
77 border-top: 1px solid #ccc; 79 border-top: 1px solid #ccc;
78 background-color: #eee; 80 background-color: #eee;
79 } 81 }
80 82
81 li.selected .base-storage-tree-element-subtitle { 83 li.selected .base-storage-tree-element-subtitle {
82 color: white; 84 color: white;
83 } 85 }
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
340 content: url(Images/cookie.png); 342 content: url(Images/cookie.png);
341 } 343 }
342 344
343 .application-cache-storage-tree-item .icon { 345 .application-cache-storage-tree-item .icon {
344 content: url(Images/applicationCache.png); 346 content: url(Images/applicationCache.png);
345 } 347 }
346 348
347 .file-system-storage-tree-item .icon { 349 .file-system-storage-tree-item .icon {
348 content: url(Images/fileSystem.png); 350 content: url(Images/fileSystem.png);
349 } 351 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698