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

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: Please ignore previous patch. 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,
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 float: right;
arv (Not doing code reviews) 2011/08/16 19:14:44 why float?
simo 2011/08/17 10:22:09 Because I need the checkbox and label to go as far
74 padding-right: 20px;
75 }
76
77 #search-field {
78 bottom: 2px;
79 position: relative;
80 }
81
82 #status-pane {
83 -webkit-box-flex: 1;
84 -webkit-box-orient: horizontal;
85 display: -webkit-box;
86 margin: 0 10%;
87 }
88
89 .status-box {
90 border: 1px solid #d9d9d9;
91 margin: 20px 100px;
92 min-height: 140px;
93 min-width: 300px;
94 overflow: hidden;
95 padding: 2px;
96 width: 30%;
97 }
98
99 legend {
100 padding: 0.2em 0.5em;
101 }
102
103 .status-box ul {
104 list-style-type: none;
105 padding-left: 10px;
arv (Not doing code reviews) 2011/08/16 19:14:44 -webkit-padding-start: 10px; Any place you have l
simo 2011/08/17 10:22:09 Done.
106 }
107
108 .status-box li {
109 padding: 3px;
110 }
111
112 #no-policies-text {
113 font-weight: bold;
114 margin: 20px;
115 text-align: center;
116 }
117
118 #policy-table {
119 table-layout: fixed;
120 width: 100%;
121 }
122
123 #policy-table th td {
124 border: 1px solid #fff;
125 border-collapse: collapse;
126 text-align: left;
127 }
128
129 #policy-table th {
130 background-color: #dadadd;
131 padding: 10px;
132 }
133
134 #policy-table td {
135 background-color: #eaeef3;
136 overflow: hidden;
137 padding: 10px;
138 text-overflow: ellipsis;
139 width: 20%;
140 }
141
142 .policy-error {
143 background-color: #f0f0f5;
144 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698