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

Side by Side Diff: chrome/browser/resources/extensions/extension_info.css

Issue 10544195: Show an extension info bubble when a script badge is clicked. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rename resources 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 | Annotate | Revision Log
OLDNEW
(Empty)
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
3 * found in the LICENSE file. */
4
5 body {
6 font-family: 'DejaVu Sans', Arial, sans-serif;
7 max-width: 480px;
8 min-width: 360px;
9 }
10
11 #extension-item {
12 background-repeat: no-repeat;
13 display: -webkit-box;
14 min-height: 48px;
15 }
16
17 #extension-title-running {
18 -webkit-padding-after: 5px;
19 -webkit-padding-end: 5px;
20 font-size: 14px;
21 font-weight: 500;
22 }
23
24 #extension-last-updated,
25 #extension-update-time {
26 -webkit-padding-end: 7px;
27 color: rgb(78, 83, 86);
28 font-size: 13px;
29 font-weight: 400;
30 }
31
32 #extension-description {
33 -webkit-padding-end: 5px;
34 color: rgb(121, 126, 130);
35 font-size: 13px;
36 margin: 5px 0;
37 white-space: normal;
38 }
39
40 #extension-details {
41 -webkit-box-flex: 1;
42 -webkit-padding-start: 57px;
43 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698