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

Side by Side Diff: chrome/common/extensions/docs/examples/extensions/app_launcher/popup.css

Issue 8309001: Adding `content_security_policy` to a few sample extensions. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: License and whitespace. Created 9 years, 1 month 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
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 html { 5 html {
6 overflow-x: hidden; 6 overflow-x: hidden;
7 } 7 }
8 8
9 body { 9 body {
10 font-family: Helvetica, Arial, sans-serif; 10 font-family: Helvetica, Arial, sans-serif;
(...skipping 29 matching lines...) Expand all
40 40
41 .app:hover { 41 .app:hover {
42 background-color: rgb(250,250,250); 42 background-color: rgb(250,250,250);
43 cursor:pointer; 43 cursor:pointer;
44 outline: 1px dotted rgb(100,100,200); 44 outline: 1px dotted rgb(100,100,200);
45 } 45 }
46 46
47 .app_selected,.app_selected:hover { 47 .app_selected,.app_selected:hover {
48 background-color: rgb(230,230,230); 48 background-color: rgb(230,230,230);
49 } 49 }
50
51 #appstore_link {
52 display: none;
53 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698