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

Side by Side Diff: chrome/browser/resources/memory_internals/list.css

Issue 1722493002: Project Eraser: Kill chrome://memory. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix chrome_browser_ui.gypi. Created 4 years, 9 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
OLDNEW
(Empty)
1 /* Copyright 2013 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */
4
5 table.list {
6 border-spacing: 2px;
7 width: 100%;
8 }
9
10 table.list tr:nth-child(odd) td {
11 background: rgb(239, 243, 255);
12 }
13
14 table.list td {
15 padding: 0.35em 0.5em 0;
16 vertical-align: top;
17 }
18
19 table.list .header th {
20 padding: 0.35em 0.5em 0;
21 vertical-align: bottom;
22 }
23
24 table.list .bottom th,
25 table.list th.bottom {
26 border-bottom: 1px solid rgb(181, 198, 222);
27 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698