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

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

Issue 7782012: Fixing css conflict with displaytable. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 Copyright (c) 2011 The Chromium Authors. All rights reserved. 2 Copyright (c) 2011 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 .details-view { 7 .details-view {
8 padding-right: 10px; 8 padding-right: 10px;
9 } 9 }
10 10
11 .extension-list-item { 11 .extension-list-item {
12 padding-bottom: 7px; 12 padding-bottom: 7px;
13 padding-top: 7px; 13 padding-top: 7px;
14 width: 100%; 14 width: 100%;
15 -webkit-user-select: auto; 15 -webkit-user-select: auto;
16 } 16 }
17 17
18 /* Get rid of display: table, which causes width issues. */ 18 /* Get rid of display: table, which causes width issues. */
19 .displaytable { 19 #extension-settings .displaytable {
20 display: block; 20 display: block;
21 } 21 }
22 /* Get rid of display: table row, which causes width issues. */ 22 /* Get rid of display: table row, which causes width issues. */
23 .displaytable > section { 23 #extension-settings .displaytable > section {
24 display: block; 24 display: block;
25 } 25 }
26 /* Get rid of display: table cell, which causes width issues. */ 26 /* Get rid of display: table cell, which causes width issues. */
27 .displaytable > section > * { 27 #extension-settings .displaytable > section > * {
28 display: block; 28 display: block;
29 } 29 }
30 30
31 .extension-settings-content { 31 .extension-settings-content {
32 border-bottom : 0px solid #eee; 32 border-bottom : 0px solid #eee;
33 margin-top: 3px; 33 margin-top: 3px;
34 } 34 }
35 35
36 #extension-settings-list { 36 #extension-settings-list {
37 min-height: 0; 37 min-height: 0;
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 240
241 #get-more-extensions-container { 241 #get-more-extensions-container {
242 display: -webkit-box; 242 display: -webkit-box;
243 } 243 }
244 244
245 #get-more-extensions { 245 #get-more-extensions {
246 padding-left: 10px; 246 padding-left: 10px;
247 padding-top: 5px; 247 padding-top: 5px;
248 font-size: 15px; 248 font-size: 15px;
249 } 249 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698