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

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

Issue 6059006: [tabbed options] tidy up some bits of content settings (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 12 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 /* 1 /*
2 Copyright (c) 2010 The Chromium Authors. All rights reserved. 2 Copyright (c) 2010 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. 4 found in the LICENSE file.
5 */ 5 */
6 6
7 .exceptionPattern { 7 .exceptionPattern {
8 display: -webkit-box;
9 margin-right: 4px;
arv (Not doing code reviews) 2010/12/22 23:39:13 -webkit-margin-end
10 overflow: hidden;
8 -webkit-box-flex: 1; 11 -webkit-box-flex: 1;
James Hawkins 2010/12/22 23:37:53 -webkit-* should be at the top of the list.
9 display: -webkit-box;
10 overflow: hidden;
11 white-space: nowrap; 12 white-space: nowrap;
12 } 13 }
13 14
14 .exceptionSetting { 15 .exceptionSetting {
15 display: inline-block; 16 display: inline-block;
16 width: 100px; 17 width: 100px;
17 margin-right: 20px; 18 margin-right: 20px;
arv (Not doing code reviews) 2010/12/22 23:39:13 -webkit-margin-end
18 } 19 }
19 20
21 select.exceptionSetting {
22 vertical-align: middle;
23 }
24
25 /* Hacks to make the <select> align better with the <input>. */
26 html[toolkit=gtk] select.exceptionSetting {
27 height: 22px;
28 margin-top: 1px;
29 }
30
20 #exceptionColumnHeaders { 31 #exceptionColumnHeaders {
21 display: -webkit-box; 32 display: -webkit-box;
22 margin-bottom: 4px;
23 margin-top: 17px; 33 margin-top: 17px;
24 -webkit-margin-start: 3px; 34 -webkit-margin-start: 3px;
James Hawkins 2010/12/22 23:37:53 Same as above.
25 } 35 }
26 36
27 #exceptionColumnHeaders > div { 37 #exceptionColumnHeaders > div {
28 font-weight: bold; 38 font-weight: bold;
29 } 39 }
30 40
31 #exceptionPatternColumn { 41 #exceptionPatternColumn {
32 -webkit-box-flex: 1; 42 -webkit-box-flex: 1;
33 } 43 }
34 44
35 #exceptionBehaviorColumn { 45 #exceptionBehaviorColumn {
36 width: 140px; 46 width: 140px;
37 } 47 }
48
49 .otr_explanation {
arv (Not doing code reviews) 2010/12/22 23:39:13 .otrExplanation
50 font-style: italic;
51 }
52
53 #contentSettingsExceptionsArea list {
54 margin-bottom: 10px;
55 margin-top: 4px;
56 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698