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

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: . Created 9 years, 3 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,
38 #policies-title {
39 font-size: 120%;
40 font-weight: bold;
41 width: 65%;
42 }
43
44 section {
45 border-bottom: 1px solid #eee;
46 margin-top: 17px;
47 padding-bottom: 20px;
48 width: 100%;
49 }
50
51 .separator {
52 -webkit-box-orient: horizontal;
53 display: -webkit-box;
54 }
55
56 #fetch-policies,
57 #unsent-policies-control {
58 -webkit-box-flex: 1;
59 }
60
61 #fetch-policies,
62 #unsent-policies-control,
63 #search {
64 bottom: 3px;
65 position: relative;
66 }
67
68 #fetch-policies {
69 direction: rtl;
70 }
71
72 #checkbox-and-label {
73 -webkit-padding-end: 20px;
74 float: right;
75 }
76
77 html[dir='rtl'] #checkbox-and-label {
78 float: left;
79 }
80
81 #search-field {
82 bottom: 2px;
83 position: relative;
84 }
85
86 #status-pane {
87 -webkit-box-flex: 1;
88 -webkit-box-orient: horizontal;
89 display: -webkit-box;
90 margin: 0 10%;
91 }
92
93 .status-box {
94 border: 1px solid #d9d9d9;
95 margin: 20px 100px;
96 min-height: 140px;
97 min-width: 300px;
98 overflow: hidden;
99 padding: 2px;
100 width: 30%;
101 }
102
103 legend {
104 padding: 0.2em 0.5em;
105 }
106
107 .status-box ul {
108 -webkit-padding-start: 10px;
109 list-style-type: none;
110 }
111
112 .status-box li {
113 padding: 3px;
114 }
115
116 #no-policies-text {
117 font-weight: bold;
118 margin: 20px;
119 text-align: center;
120 }
121
122 #policy-table {
123 table-layout: fixed;
124 width: 100%;
125 }
126
127 #policy-table th td {
128 border: 1px solid #fff;
129 border-collapse: collapse;
130 }
131
132 #policy-table th {
133 background-color: #dadadd;
134 padding: 10px;
135 }
136
137 #policy-table td {
138 background-color: #eaeef3;
139 overflow: hidden;
140 padding: 10px;
141 text-overflow: ellipsis;
142 width: 20%;
143 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698