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

Unified Diff: chrome/browser/resources/policy/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, 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/policy/policy.css
diff --git a/chrome/browser/resources/policy/policy.css b/chrome/browser/resources/policy/policy.css
new file mode 100644
index 0000000000000000000000000000000000000000..905e0259e4a08ddd01754a6e22c0230f40dc839e
--- /dev/null
+++ b/chrome/browser/resources/policy/policy.css
@@ -0,0 +1,100 @@
+body {
Mattias Nissler (ping if slow) 2011/08/09 13:20:40 Duplicate file?
+ font-family: Arial, sans-serif;
+ font-size: 14px;
+ color: black;
+ cursor: default;
+ min-width: 47em;
+ margin-left:10px;
+ margin-right:10px;
+}
+
+a:link {
+ color: rgb(63, 110, 194);
+}
+
+a:active {
+ color: rgb(37, 64, 113);
+}
+
+button {
+ font-size: 0.9em;
+}
+
+#header {
+ padding-top: 20px;
+ border-bottom: 1px solid #000;
+}
+
+#about-policy-title {
+ -webkit-padding-end: 24px;
+ -webkit-user-select: none;
+ color: #53637d;
+ cursor: pointer;
+ font-size: 200%;
+ font-weight: normal;
+ margin: 0;
+ border-bottom: 1px solid #c6c9ce;
+ padding-bottom: 14px;
+ padding-top: 13px;
+ text-shadow: white 0 1px 2px;
+}
+
+#main-content {
+ min-height: 100%;
+}
+
+#status-title, #policies-title {
+ font-size: 120%;
+ font-weight: bold;
+ width: 65%;
+}
+
+table {
+ width: 100%;
+}
+
+section {
+ border-bottom: 1px solid #EEE;
+ margin-top: 17px;
+ padding-bottom: 20px;
+ width: 100%;
+}
+
+#fetch-policies-button, #unsent-policies-checkbox, #search-field {
+ text-align: end;
+ overflow: hidden;
+}
+
+#status-pane {
+ display: -webkit-box;
+ -webkit-box-flex: 1;
+ -webkit-box-orient: horizontal;
+ margin: 0 300px;
+}
+
+.status-box {
+ padding: 2px;
+ border: 1px solid #D9D9D9;
+ margin: 20px 100px;
+ width: 30%;
+ overflow: hidden;
+}
+
+legend {
+ padding: 0.2em 0.5em;
+}
+
+.status-box ul {
+ list-style-type: none;
+ padding-left: 10px;
+}
+
+.status-box li {
+ padding: 3px;
+}
+
+#show-unsent-policies {
+ overflow: ellipsis;
+}
+
+

Powered by Google App Engine
This is Rietveld 408576698