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

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

Issue 9706031: Settings: Fix a few overlays that set min-width on the list directly. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 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 /* Styles for the cookies list page. */ 5 /* Styles for the cookies list page. */
6 #cookiesViewPage { 6 #cookiesViewPage {
7 margin-left: -15px; 7 margin-left: -15px;
8 min-width: 700px; 8 min-width: 700px;
9 } 9 }
10 10
(...skipping 29 matching lines...) Expand all
40 40
41 #cookies-data-column { 41 #cookies-data-column {
42 -webkit-padding-start: 7px; 42 -webkit-padding-start: 7px;
43 display: inline-block; 43 display: inline-block;
44 font-weight: bold; 44 font-weight: bold;
45 } 45 }
46 46
47 #cookies-list { 47 #cookies-list {
48 border: 1px solid #D9D9D9; 48 border: 1px solid #D9D9D9;
49 margin: 0; 49 margin: 0;
50 max-height: 400px;
51 overflow-y: auto;
52 } 50 }
53 51
54 /* Enable animating the height of items. */ 52 /* Enable animating the height of items. */
55 list.cookie-list .deletable-item { 53 list.cookie-list .deletable-item {
56 -webkit-transition: height 150ms ease-in-out; 54 -webkit-transition: height 150ms ease-in-out;
57 } 55 }
58 56
59 /* Disable webkit-box display. */ 57 /* Disable webkit-box display. */
60 list.cookie-list .deletable-item > :first-child { 58 list.cookie-list .deletable-item > :first-child {
61 display: block; 59 display: block;
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 174
177 .cookie-details-label { 175 .cookie-details-label {
178 vertical-align: top; 176 vertical-align: top;
179 white-space: pre; 177 white-space: pre;
180 width: 10em; 178 width: 10em;
181 } 179 }
182 180
183 .cookie-details-value { 181 .cookie-details-value {
184 word-wrap: break-word; 182 word-wrap: break-word;
185 } 183 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698