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

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: rebase 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 */
6 4
7 * { 5 * {
8 margin: 0; 6 margin: 0;
9 padding: 0; 7 padding: 0;
10 } 8 }
11 9
12 /* Outer frame of the dialog. */ 10 /* Outer frame of the dialog. */
13 body { 11 body {
14 -webkit-box-orient: vertical; 12 -webkit-box-orient: vertical;
15 -webkit-user-select: none; 13 -webkit-user-select: none;
16 display: -webkit-box; 14 display: -webkit-box;
17 font-family: segoe ui, arial, helvetica, sans-serif; 15 font-family: segoe ui, arial, helvetica, sans-serif;
18 height: 100%; 16 height: 100%;
19 min-height: 150px; 17 min-height: 150px;
20 position: absolute; 18 position: absolute;
21 width: 100%; 19 width: 100%;
22 } 20 }
23 21
24 /* The top title of the dialog. */ 22 /* The top title of the dialog. */
25 .dialog-title { 23 .dialog-title {
26 -webkit-box-sizing: border-box; 24 -webkit-box-sizing: border-box;
27 background-image: -webkit-linear-gradient(top, #fff, #f6f6f6); 25 background-image: -webkit-linear-gradient(top, #fff, #f6f6f6);
28 border-bottom: 1px #d6d9e3 solid; 26 border-bottom: 1px rgb(214, 217, 227) solid;
29 color: #42506c; 27 color: rgb(66, 80, 108);
30 cursor: default; 28 cursor: default;
31 font-size: 15px; 29 font-size: 15px;
32 font-weight: bold; 30 font-weight: bold;
33 height: 32px; 31 height: 32px;
34 padding: 8px 15px; 32 padding: 8px 15px;
35 } 33 }
36 34
37 /* Container for the detail list views. */ 35 /* Container for the detail list views. */
38 .dialog-body { 36 .dialog-body {
39 -webkit-box-flex: 1; 37 -webkit-box-flex: 1;
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 } 76 }
79 77
80 #save { 78 #save {
81 float: right; 79 float: right;
82 margin-right: 15px; 80 margin-right: 15px;
83 } 81 }
84 82
85 #cancel { 83 #cancel {
86 float: right; 84 float: right;
87 } 85 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/bookmark_manager/css/bmm.css ('k') | chrome/browser/resources/certificate_viewer.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698