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

Side by Side Diff: chrome/browser/resources/options2/content_settings.css

Issue 10444060: Use chrome_html structure for shared_resources and options2 page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use chrome_html for all shared_resources and options page, specify background image sizes. 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
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 #content-settings-page { 5 #content-settings-page {
6 min-width: 600px; 6 min-width: 600px;
7 } 7 }
8 8
9 #content-settings-exceptions-area { 9 #content-settings-exceptions-area {
10 min-width: 540px; 10 min-width: 540px;
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 64
65 .settings-list div[role='listitem'][managedby='policy'], 65 .settings-list div[role='listitem'][managedby='policy'],
66 .settings-list div[role='listitem'][managedby='extension'] { 66 .settings-list div[role='listitem'][managedby='extension'] {
67 background: -webkit-linear-gradient(rgb(250, 230, 146), rgb(250, 230, 146)); 67 background: -webkit-linear-gradient(rgb(250, 230, 146), rgb(250, 230, 146));
68 border-bottom: 1px solid rgb(201, 189, 141); 68 border-bottom: 1px solid rgb(201, 189, 141);
69 border-top: 0; 69 border-top: 0;
70 } 70 }
71 71
72 list div[role='listitem'][managedby='policy'] .close-button { 72 list div[role='listitem'][managedby='policy'] .close-button {
73 background-image: url('chrome://theme/IDR_MANAGED'); 73 background-image: url('chrome://theme/IDR_MANAGED');
74 background-size: 16px;
74 opacity: 1; 75 opacity: 1;
75 } 76 }
76 77
77 list div[role='listitem'][managedby='extension'] .close-button { 78 list div[role='listitem'][managedby='extension'] .close-button {
78 background-image: url('chrome://theme/IDR_EXTENSIONS_SECTION_SMALL'); 79 background-image: url('chrome://theme/IDR_EXTENSIONS_SECTION_SMALL');
80 background-size: 16px;
79 opacity: 1; 81 opacity: 1;
80 } 82 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698