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

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

Issue 10809005: Options: Rename chrome/browser/resources/options2 -> chrome/browser/resources/options. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix. Created 8 years, 4 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 #content-settings-page {
6 min-width: 600px;
7 }
8
9 #content-settings-exceptions-area {
10 min-width: 540px;
11 }
12
13 .exception-pattern {
14 -webkit-box-flex: 1;
15 -webkit-margin-end: 10px;
16 -webkit-margin-start: 14px;
17 }
18
19 .exception-setting {
20 display: inline-block;
21 width: 120px;
22 }
23
24 select.exception-setting {
25 vertical-align: middle;
26 }
27
28 #exception-column-headers {
29 -webkit-margin-start: 17px;
30 display: -webkit-box;
31 margin-top: 17px;
32 }
33
34 #exception-column-headers > div {
35 font-weight: bold;
36 }
37
38 #exception-pattern-column {
39 -webkit-box-flex: 1;
40 }
41
42 #exception-behavior-column {
43 width: 145px;
44 }
45
46 .otr-explanation {
47 font-style: italic;
48 }
49
50 #content-settings-exceptions-area list {
51 margin-bottom: 10px;
52 margin-top: 4px;
53 }
54
55 #disable-plugins-container {
56 /* Same as .checkbox and .radio padding. Using padding instead of margin
57 * to ensure minimum height for tap target. */
58 padding: 7px 0;
59 }
60
61 div[role='listitem'][managedby] {
62 color: #666;
63 font-style: italic;
64 position: relative;
65 }
66
67 .settings-list div[role='listitem'][managedby='policy'],
68 .settings-list div[role='listitem'][managedby='extension'] {
69 background: -webkit-linear-gradient(rgb(250, 230, 146), rgb(250, 230, 146));
70 border-bottom: 1px solid rgb(201, 189, 141);
71 border-top: 0;
72 }
73
74 list div[role='listitem'][managedby='policy'] .close-button {
75 background-image: url('chrome://theme/IDR_MANAGED');
76 background-size: 16px;
77 opacity: 1;
78 }
79
80 list div[role='listitem'][managedby='extension'] .close-button {
81 background-image: url('chrome://theme/IDR_EXTENSIONS_SECTION_SMALL');
82 background-size: 16px;
83 opacity: 1;
84 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698