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

Side by Side Diff: chrome/browser/resources/suggestions_internals/suggestions_internals.css

Issue 10666009: Added already_open column to chrome://suggestions-internals. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Cleanup Created 8 years, 6 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
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 .suggestions-debug-table { 5 .suggestions-debug-table {
6 border: 1px solid grey; 6 border: 1px solid grey;
7 margin-bottom: 1.5em; 7 margin-bottom: 1.5em;
8 } 8 }
9 9
10 .suggestions-debug-table th { 10 .suggestions-debug-table th {
11 border: 1px solid grey; 11 border: 1px solid grey;
12 } 12 }
13 13
14 .suggestions-debug-table td { 14 .suggestions-debug-table td {
15 border: 1px solid grey; 15 border: 1px solid grey;
16 } 16 }
17 17
18 p { 18 p {
19 margin: 0; 19 margin: 0;
20 } 20 }
21 21
22 .input-section { 22 .input-section {
23 margin-bottom: 1em; 23 margin-bottom: 1em;
24 } 24 }
25 25
26 .has-screenshot { 26 .boolean-property-true {
27 background-color: rgb(146, 205, 0); 27 background-color: rgb(146, 205, 0);
28 text-align: center;
macourteau 2012/06/26 19:21:49 Nit: you might want to extract the text-align to a
Rune Fevang 2012/06/27 00:28:59 Thanks, I didn't realize that was possible.
28 } 29 }
30
31 .boolean-property-false {
32 background-color: rgb(205, 74, 0);
33 text-align: center;
34 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698