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

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

Issue 9309116: [Clean up] Fix style guide nits in chrome/browser/resources/options2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 10 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.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */
4
1 #startup-overlay { 5 #startup-overlay {
2 min-width: 600px; 6 min-width: 600px;
3 } 7 }
4 8
5 #startupPagesList { 9 #startupPagesList {
6 margin-bottom: 20px; 10 margin-bottom: 20px;
7 min-height: 64px; 11 min-height: 64px;
8 min-width: 600px; 12 min-width: 600px;
9 } 13 }
10 14
11 #startupPagesList .title { 15 #startupPagesList .title {
12 width: 40%; 16 width: 40%;
13 } 17 }
14 18
15 #startupPagesList .url { 19 #startupPagesList .url {
16 -webkit-box-flex: 1; 20 -webkit-box-flex: 1;
17 color: #666; 21 color: #666;
18 } 22 }
19 23
20 #startupPagesList > * { 24 #startupPagesList > * {
21 max-width: 700px; 25 max-width: 700px;
22 } 26 }
23 27
24 #startupPagesListDropmarker { 28 #startupPagesListDropmarker {
25 background-clip: padding-box; 29 background-clip: padding-box;
26 background-color: hsl(214, 91%, 65%); 30 background-color: hsl(214, 91%, 65%);
31 border: 2px solid hsl(214, 91%, 65%);
27 border-bottom-color: transparent; 32 border-bottom-color: transparent;
28 border-radius: 0; 33 border-radius: 0;
29 border-top-color: transparent; 34 border-top-color: transparent;
30 border: 2px solid hsl(214, 91%, 65%);
31 box-sizing: border-box; 35 box-sizing: border-box;
32 display: none; 36 display: none;
33 height: 6px; 37 height: 6px;
34 overflow: hidden; 38 overflow: hidden;
35 pointer-events: none; 39 pointer-events: none;
36 position: fixed; 40 position: fixed;
37 z-index: 10; 41 z-index: 10;
38 } 42 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698