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

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

Issue 152143009: Clarify settings UI in multi-profiles mode (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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: 620px; 6 min-width: 620px;
7 } 7 }
8 8
9 #content-settings-exceptions-area { 9 #content-settings-exceptions-area {
10 min-width: 540px; 10 min-width: 540px;
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 #group-indicator { 61 #group-indicator {
62 margin-left: 5px; 62 margin-left: 5px;
63 } 63 }
64 64
65 div[role='listitem'][controlled-by] { 65 div[role='listitem'][controlled-by] {
66 color: #666; 66 color: #666;
67 font-style: italic; 67 font-style: italic;
68 position: relative; 68 position: relative;
69 } 69 }
70 70
71 .section-header {
72 -webkit-margin-start: -18px;
73 margin-bottom: 0.8em;
74 }
75
76 .section-header > h3 {
77 display: inline;
78 }
79
80 .settings-list div[role='listitem'][controlled-by='policy'], 71 .settings-list div[role='listitem'][controlled-by='policy'],
81 .settings-list div[role='listitem'][controlled-by='extension'] { 72 .settings-list div[role='listitem'][controlled-by='extension'] {
82 background: rgb(250, 230, 146); 73 background: rgb(250, 230, 146);
83 border-bottom: 1px solid rgb(201, 189, 141); 74 border-bottom: 1px solid rgb(201, 189, 141);
84 border-top: 0; 75 border-top: 0;
85 } 76 }
86 77
87 .sublabel { 78 .sublabel {
88 -webkit-margin-start: 2em; 79 -webkit-margin-start: 2em;
89 } 80 }
(...skipping 25 matching lines...) Expand all
115 display: -webkit-box; 106 display: -webkit-box;
116 } 107 }
117 108
118 #media-audio-column { 109 #media-audio-column {
119 width: 6em; 110 width: 6em;
120 } 111 }
121 112
122 #media-video-column { 113 #media-video-column {
123 width: 8.5em; 114 width: 8.5em;
124 } 115 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698