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

Side by Side Diff: chrome/browser/resources/certificate_viewer.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 /* 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 /* Using 100% width within body should exclude margins. */ 5 /* Using 100% width within body should exclude margins. */
6 html, body { 6 html,
7 body {
7 height: 100%; 8 height: 100%;
8 width: 100%; 9 width: 100%;
9 } 10 }
10 11
11 body { 12 body {
12 -webkit-box-sizing: border-box; 13 -webkit-box-sizing: border-box;
13 margin: 0; 14 margin: 0;
14 padding-top: 8px; 15 padding-top: 8px;
15 } 16 }
16 17
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 border: 1px solid #9e9e9e; 100 border: 1px solid #9e9e9e;
100 /* Scrolling should be enabled on all tree views and value field. */ 101 /* Scrolling should be enabled on all tree views and value field. */
101 overflow: auto; 102 overflow: auto;
102 } 103 }
103 104
104 #export { 105 #export {
105 -webkit-margin-start: 1px; 106 -webkit-margin-start: 1px;
106 margin-bottom: 10px; 107 margin-bottom: 10px;
107 margin-top: 5px; 108 margin-top: 5px;
108 } 109 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698