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

Side by Side Diff: chrome/browser/resources/bookmark_manager/css/bookmark_all_tabs.css

Issue 9958101: [WebUI] Fix rest of CSS style nits in misc. dirs so I can turn on CSS checker. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: removing .py files Created 8 years, 8 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 /* 1 /* Copyright (c) 2012 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 2 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 3 * found in the LICENSE file.
5 */ 4 */
Evan Stade 2012/04/03 02:59:48 poop
Dan Beam 2012/04/03 04:15:06 Done.
6 5
7 * { 6 * {
Evan Stade 2012/04/03 02:59:48 this selector should be banned imo
Dan Beam 2012/04/03 04:15:06 put it in the style guide
8 margin: 0; 7 margin: 0;
9 padding: 0; 8 padding: 0;
10 } 9 }
11 10
12 /* Outer frame of the dialog. */ 11 /* Outer frame of the dialog. */
13 body { 12 body {
14 -webkit-box-orient: vertical; 13 -webkit-box-orient: vertical;
15 -webkit-user-select: none; 14 -webkit-user-select: none;
16 display: -webkit-box; 15 display: -webkit-box;
17 font-family: segoe ui, arial, helvetica, sans-serif; 16 font-family: segoe ui, arial, helvetica, sans-serif;
18 height: 100%; 17 height: 100%;
19 min-height: 150px; 18 min-height: 150px;
20 position: absolute; 19 position: absolute;
21 width: 100%; 20 width: 100%;
22 } 21 }
23 22
24 /* The top title of the dialog. */ 23 /* The top title of the dialog. */
25 .dialog-title { 24 .dialog-title {
26 -webkit-box-sizing: border-box; 25 -webkit-box-sizing: border-box;
27 background-image: -webkit-linear-gradient(top, #fff, #f6f6f6); 26 background-image: -webkit-linear-gradient(top, #fff, #f6f6f6);
28 border-bottom: 1px #d6d9e3 solid; 27 border-bottom: 1px rgb(214, 217, 227) solid;
29 color: #42506c; 28 color: rgb(66, 80, 108);
30 cursor: default; 29 cursor: default;
31 font-size: 15px; 30 font-size: 15px;
32 font-weight: bold; 31 font-weight: bold;
33 height: 32px; 32 height: 32px;
34 padding: 8px 15px; 33 padding: 8px 15px;
35 } 34 }
36 35
37 /* Container for the detail list views. */ 36 /* Container for the detail list views. */
38 .dialog-body { 37 .dialog-body {
39 -webkit-box-flex: 1; 38 -webkit-box-flex: 1;
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 } 77 }
79 78
80 #save { 79 #save {
81 float: right; 80 float: right;
82 margin-right: 15px; 81 margin-right: 15px;
83 } 82 }
84 83
85 #cancel { 84 #cancel {
86 float: right; 85 float: right;
87 } 86 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698