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

Side by Side Diff: chrome/browser/resources/policy.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 color: black; 6 color: black;
3 cursor: default; 7 cursor: default;
4 font-family: Arial, sans-serif; 8 font-family: Arial, sans-serif;
5 font-size: 14px; 9 font-size: 14px;
6 margin: 0 10px; 10 margin: 0 10px;
7 min-width: 47em; 11 min-width: 47em;
8 } 12 }
9 13
10 button { 14 button {
11 font-size: 0.9em; 15 font-size: 0.9em;
12 } 16 }
13 17
14 #header { 18 #header {
15 border-bottom: 1px solid #000; 19 border-bottom: 1px solid #000;
16 padding-top: 20px; 20 padding-top: 20px;
17 } 21 }
18 22
19 #about-policy-title { 23 #about-policy-title {
20 -webkit-padding-end: 24px; 24 -webkit-padding-end: 24px;
21 -webkit-user-select: none; 25 -webkit-user-select: none;
22 border-bottom: 1px solid #c6c9ce; 26 border-bottom: 1px solid rgb(198, 201, 206);
23 color: #53637d; 27 color: rgb(83, 99, 125);
24 cursor: pointer; 28 cursor: pointer;
25 font-size: 200%; 29 font-size: 200%;
26 font-weight: normal; 30 font-weight: normal;
27 margin: 0; 31 margin: 0;
28 padding-bottom: 14px; 32 padding-bottom: 14px;
29 padding-top: 13px; 33 padding-top: 13px;
30 text-shadow: white 0 1px 2px; 34 text-shadow: white 0 1px 2px;
31 } 35 }
32 36
33 #main-content { 37 #main-content {
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 table-layout: fixed; 127 table-layout: fixed;
124 width: 100%; 128 width: 100%;
125 } 129 }
126 130
127 #policy-table th td { 131 #policy-table th td {
128 border: 1px solid #fff; 132 border: 1px solid #fff;
129 border-collapse: collapse; 133 border-collapse: collapse;
130 } 134 }
131 135
132 #policy-table th { 136 #policy-table th {
133 background-color: #dadadd; 137 background-color: rgb(218, 218, 221);
134 padding: 10px; 138 padding: 10px;
135 } 139 }
136 140
137 #policy-table td { 141 #policy-table td {
138 background-color: #eaeef3; 142 background-color: rgb(234, 238, 243);
139 padding: 10px; 143 padding: 10px;
140 position: relative; 144 position: relative;
141 vertical-align: top; 145 vertical-align: top;
142 width: 20%; 146 width: 20%;
143 } 147 }
144 148
145 .text-collapsed { 149 .text-collapsed {
146 bottom: 0; 150 bottom: 0;
147 left: 0; 151 left: 0;
148 margin: 10px; 152 margin: 10px;
(...skipping 21 matching lines...) Expand all
170 } 174 }
171 175
172 .text-expanded .text-value { 176 .text-expanded .text-value {
173 white-space: pre-wrap; 177 white-space: pre-wrap;
174 } 178 }
175 179
176 .toggler { 180 .toggler {
177 float: right; 181 float: right;
178 padding: 0 3px !important; 182 padding: 0 3px !important;
179 } 183 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698