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

Side by Side Diff: chrome/browser/resources/policy.css

Issue 7585036: First CL for the about:policy page. This only implements the policy section of the page. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Removed the map wrapper and wrapped the javascript functions into an object. Created 9 years, 4 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
(Empty)
1 body {
2 color: black;
3 cursor: default;
4 font-family: Arial, sans-serif;
5 font-size: 14px;
6 margin: 0 10px;
7 min-width: 47em;
8 }
9
10 button {
11 font-size: 0.9em;
12 }
13
14 #header {
15 border-bottom: 1px solid #000;
16 padding-top: 20px;
17 }
18
19 #about-policy-title {
20 -webkit-padding-end: 24px;
21 -webkit-user-select: none;
22 border-bottom: 1px solid #c6c9ce;
23 color: #53637d;
24 cursor: pointer;
25 font-size: 200%;
26 font-weight: normal;
27 margin: 0;
28 padding-bottom: 14px;
29 padding-top: 13px;
30 text-shadow: white 0 1px 2px;
31 }
32
33 #main-content {
34 min-height: 100%;
35 }
36
37 #status-title, #policies-title {
James Hawkins 2011/08/10 17:38:08 nit: One selector per line.
simo 2011/08/11 17:12:53 Done.
38 font-size: 120%;
39 font-weight: bold;
40 width: 65%;
41 }
42
43 table {
44 width: 100%;
45 }
46
47 section {
48 border-bottom: 1px solid #EEE;
James Hawkins 2011/08/10 17:38:08 s/EEE/eee/
simo 2011/08/11 17:12:53 Done.
49 margin-top: 17px;
50 padding-bottom: 20px;
51 width: 100%;
52 }
53
54 #fetch-policies-button,
55 #unsent-policies,
56 #search {
57 text-align: end;
58 }
59
60 #status-pane {
61 -webkit-box-flex: 1;
62 -webkit-box-orient: horizontal;
63 display: -webkit-box;
64 margin: 0 10%;
65 }
66
67 .status-box {
68 border: 1px solid #D9D9D9;
James Hawkins 2011/08/10 17:38:08 d9d9d9
simo 2011/08/11 17:12:53 Done.
69 margin: 20px 100px;
70 min-height: 140px;
71 min-width: 300px;
72 overflow: hidden;
73 padding: 2px;
74 width: 30%;
75 }
76
77 legend {
78 padding: 0.2em 0.5em;
79 }
80
81 .status-box ul {
82 list-style-type: none;
83 padding-left: 10px;
84 }
85
86 .status-box li {
87 padding: 3px;
88 }
89
90 #policy-table th td {
91 border: 1px solid #FFF;
James Hawkins 2011/08/10 17:38:08 Lower case colors, here and elsewhere.
simo 2011/08/11 17:12:53 Done.
92 border-collapse: collapse;
93 text-align: left;
94 }
95
96 #policy-table th {
97 background-color: #DADADD;
98 padding: 10px;
99 }
100
101 #policy-table td {
102 background-color: #EAEEF3;
103 padding: 10px;
104 width: 20%;
105 }
106
107 .policy-error {
108 background-color: #F0F0F5;
109 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698