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

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

Issue 6990030: WebUI: size the cookies list according to the window height. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 7 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 | chrome/browser/resources/options/cookies_view.js » ('j') | 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) 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 /* styles for the cookies list elements in cookies_view.html */ 7 /* styles for the cookies list elements in cookies_view.html */
8 #remove-all-cookies-search-column { 8 #remove-all-cookies-search-column {
9 bottom: 10px; 9 bottom: 10px;
10 position: absolute; 10 position: absolute;
(...skipping 24 matching lines...) Expand all
35 } 35 }
36 36
37 #cookies-data-column { 37 #cookies-data-column {
38 -webkit-padding-start: 7px; 38 -webkit-padding-start: 7px;
39 display: inline-block; 39 display: inline-block;
40 font-weight: bold; 40 font-weight: bold;
41 } 41 }
42 42
43 #cookies-list { 43 #cookies-list {
44 border: 1px solid #D9D9D9; 44 border: 1px solid #D9D9D9;
45 /* it would be nice if we could make this expand as necessary up to the height
46 * of the window, but the panel doesn't have a known height and that would
47 * probably confuse cr.ui.List (which doesn't expect that) anyway */
48 height: 600px;
49 margin: 0; 45 margin: 0;
50 } 46 }
51 47
52 48
53 /* enable animating the height of items */ 49 /* enable animating the height of items */
54 list.cookie-list .deletable-item { 50 list.cookie-list .deletable-item {
55 -webkit-transition: height .15s ease-in-out; 51 -webkit-transition: height .15s ease-in-out;
56 } 52 }
57 53
58 /* disable webkit-box display */ 54 /* disable webkit-box display */
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 167
172 .cookie-details-label { 168 .cookie-details-label {
173 vertical-align: top; 169 vertical-align: top;
174 white-space: pre; 170 white-space: pre;
175 width: 10em; 171 width: 10em;
176 } 172 }
177 173
178 .cookie-details-value { 174 .cookie-details-value {
179 word-wrap: break-word; 175 word-wrap: break-word;
180 } 176 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/options/cookies_view.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698