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

Side by Side Diff: chrome/browser/resources/sessions.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.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */
4
1 body { 5 body {
2 margin: 20px; 6 margin: 20px;
3 } 7 }
4 8
5 h1 { 9 h1 {
6 -webkit-padding-start: 75px; 10 -webkit-padding-start: 75px;
7 background-image: url('shared/images/history_section.png'); 11 background-image: url('shared/images/history_section.png');
8 background-position: left; 12 background-position: left;
9 background-repeat: no-repeat; 13 background-repeat: no-repeat;
10 font-size: 156%; 14 font-size: 156%;
11 font-weight: bold; 15 font-weight: bold;
12 margin: 0; 16 margin: 0;
13 padding-bottom: 20px; 17 padding-bottom: 20px;
14 padding-top: 20px; 18 padding-top: 20px;
15 } 19 }
16 20
17 html[dir=rtl] h1 { 21 html[dir=rtl] h1 {
18 background-position: right; 22 background-position: right;
19 } 23 }
20 24
21 #magic-summary { 25 #magic-summary {
22 background-color: #ebeff9; 26 background-color: rgb(235, 239, 249);
23 border-top: 1px solid #9cc2ef; 27 border-top: 1px solid rgb(156, 194, 239);
24 margin-bottom: 6px; 28 margin-bottom: 6px;
25 margin-top: 12px; 29 margin-top: 12px;
26 padding: 3px; 30 padding: 3px;
27 } 31 }
28 32
29 #magic-summary-text { 33 #magic-summary-text {
30 font-weight: bold; 34 font-weight: bold;
31 } 35 }
32 36
33 #sessions-summary { 37 #sessions-summary {
34 background-color: #ebeff9; 38 background-color: rgb(235, 239, 249);
35 border-top: 1px solid #9cc2ef; 39 border-top: 1px solid rgb(156, 194, 239);
36 margin-bottom: 6px; 40 margin-bottom: 6px;
37 margin-top: 12px; 41 margin-top: 12px;
38 padding: 3px; 42 padding: 3px;
39 } 43 }
40 44
41 #sessions-summary-text { 45 #sessions-summary-text {
42 font-weight: bold; 46 font-weight: bold;
43 } 47 }
44 48
45 #session-list h3 { 49 #session-list h3 {
(...skipping 23 matching lines...) Expand all
69 .indent { 73 .indent {
70 margin: 4px; 74 margin: 4px;
71 padding-left: 16px; 75 padding-left: 16px;
72 } 76 }
73 77
74 .expandable { 78 .expandable {
75 cursor: pointer; 79 cursor: pointer;
76 font-size: 16px; 80 font-size: 16px;
77 } 81 }
78 82
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698