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

Side by Side Diff: chrome/browser/resources/options2/startup_overlay.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 #startup-overlay { 5 #startup-overlay {
6 min-width: 600px; 6 min-width: 500px;
7 } 7 }
8 8
9 #startupPagesList { 9 #startupPagesList {
10 margin-bottom: 20px; 10 margin-bottom: 20px;
11 min-height: 64px; 11 min-height: 64px;
12 min-width: 600px;
13 } 12 }
14 13
15 #startupPagesList .title { 14 #startupPagesList .title {
16 width: 40%; 15 width: 40%;
17 } 16 }
18 17
19 #startupPagesList .url { 18 #startupPagesList .url {
20 -webkit-box-flex: 1; 19 -webkit-box-flex: 1;
21 color: #666; 20 color: #666;
22 } 21 }
(...skipping 10 matching lines...) Expand all
33 border-radius: 0; 32 border-radius: 0;
34 border-top-color: transparent; 33 border-top-color: transparent;
35 box-sizing: border-box; 34 box-sizing: border-box;
36 display: none; 35 display: none;
37 height: 6px; 36 height: 6px;
38 overflow: hidden; 37 overflow: hidden;
39 pointer-events: none; 38 pointer-events: none;
40 position: fixed; 39 position: fixed;
41 z-index: 10; 40 z-index: 10;
42 } 41 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698