OLD | NEW |
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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 line-height: 1em; | 96 line-height: 1em; |
97 } | 97 } |
98 | 98 |
99 .resources.panel li .status .bubble-repeat-count { | 99 .resources.panel li .status .bubble-repeat-count { |
100 height: 13px; | 100 height: 13px; |
101 margin-top: 1px; | 101 margin-top: 1px; |
102 padding-top: 0; | 102 padding-top: 0; |
103 } | 103 } |
104 | 104 |
105 .storage-view { | 105 .storage-view { |
106 display: none; | 106 display: flex; |
107 overflow: hidden; | 107 overflow: hidden; |
108 } | 108 } |
109 | 109 |
110 .storage-view.visible { | |
111 display: flex; | |
112 } | |
113 | |
114 .storage-view { | 110 .storage-view { |
115 overflow: hidden; | 111 overflow: hidden; |
116 } | 112 } |
117 | 113 |
118 .storage-view .data-grid:not(.inline) { | 114 .storage-view .data-grid:not(.inline) { |
119 border: none; | 115 border: none; |
120 flex: auto; | 116 flex: auto; |
121 } | 117 } |
122 | 118 |
123 .storage-view .storage-table-error { | 119 .storage-view .storage-table-error { |
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
350 content: url(Images/cookie.png); | 346 content: url(Images/cookie.png); |
351 } | 347 } |
352 | 348 |
353 .application-cache-storage-tree-item .icon { | 349 .application-cache-storage-tree-item .icon { |
354 content: url(Images/applicationCache.png); | 350 content: url(Images/applicationCache.png); |
355 } | 351 } |
356 | 352 |
357 .file-system-storage-tree-item .icon { | 353 .file-system-storage-tree-item .icon { |
358 content: url(Images/fileSystem.png); | 354 content: url(Images/fileSystem.png); |
359 } | 355 } |
OLD | NEW |