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

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

Issue 1963203002: [Chrome Settings UI] Show overruled User Exceptions as strike-through. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Sync. Created 4 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
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;
11 } 11 }
12 12
13 .exception-pattern { 13 .exception-pattern {
14 -webkit-box-flex: 1; 14 -webkit-box-flex: 1;
15 -webkit-margin-end: 10px; 15 -webkit-margin-end: 10px;
16 -webkit-margin-start: 14px; 16 -webkit-margin-start: 14px;
17 } 17 }
18 18
19 .exception-setting { 19 .exception-setting {
20 display: inline-block; 20 display: inline-block;
21 width: 120px; 21 width: 120px;
22 } 22 }
23 23
24 .settings-list div[role='listitem'][controlled-by='policy'] .exception-setting,
25 .settings-list div[role='listitem'][controlled-by='extension']
26 .exception-setting {
27 width: calc(120px - 8px);
28 }
29
24 select.exception-setting { 30 select.exception-setting {
25 vertical-align: middle; 31 vertical-align: middle;
26 } 32 }
27 33
34 .overruled .exception-setting {
35 width: calc(120px - 24px);
36 }
37
38 .overruled .overruleable {
39 text-decoration: line-through;
40 }
41
28 #exception-column-headers { 42 #exception-column-headers {
29 -webkit-margin-start: 17px; 43 -webkit-margin-start: 17px;
30 display: -webkit-box; 44 display: -webkit-box;
31 margin-top: 17px; 45 margin-top: 17px;
32 } 46 }
33 47
34 #exception-column-headers > div { 48 #exception-column-headers > div {
35 font-weight: bold; 49 font-weight: bold;
36 } 50 }
37 51
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 display: -webkit-box; 114 display: -webkit-box;
101 } 115 }
102 116
103 #media-audio-column { 117 #media-audio-column {
104 width: 6em; 118 width: 6em;
105 } 119 }
106 120
107 #media-video-column { 121 #media-video-column {
108 width: 8.5em; 122 width: 8.5em;
109 } 123 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698