Index: chrome/browser/resources/copresence.css |
diff --git a/chrome/browser/resources/copresence.css b/chrome/browser/resources/copresence.css |
new file mode 100644 |
index 0000000000000000000000000000000000000000..4db38769a87b48b75b91d5f0280aefbe81a5b0b4 |
--- /dev/null |
+++ b/chrome/browser/resources/copresence.css |
@@ -0,0 +1,71 @@ |
+/* Copyright 2014 The Chromium Authors. All rights reserved. |
+ * Use of this source code is governed by a BSD-style license that can be |
+ * found in the LICENSE file. */ |
+ |
+body { |
+ color: black; |
+ font-family: Helvetica,Arial,sans-serif; |
Dan Beam
2014/12/08 22:41:59
you should include chrome_shared.css instead
Charlie
2014/12/08 23:10:45
Done.
|
+ font-size: 10pt; |
+ margin: 10px 20px; |
+} |
+ |
+section { |
+ margin-top: 50px; |
+} |
+ |
+table { |
+ border: 1px solid gray; |
+ border-spacing: 0; |
+ width: 600px; |
+} |
+ |
+thead { |
+ background-color: rgb(220, 240, 255); |
+ font-weight: bold; |
+} |
+ |
+tbody { |
+ border-top: 1px solid gray; |
+ height: 200px; |
+ overflow-x: hidden; |
+ overflow-y: scroll; |
+} |
+ |
+td { |
+ padding: 5px; |
+ text-align: left; |
+} |
+ |
+td::first-letter { |
+ text-transform: capitalize; |
+} |
+ |
+.confirmed, |
+.valid { |
+ color: green; |
+} |
+ |
+.done { |
+ color: darkGray; |
+} |
+ |
+.invalid { |
+ color: red; |
+} |
+ |
+.directive-table td { |
+ width: 190px; |
+} |
+ |
+.token-table td { |
+ width: 140px; |
+} |
+ |
+table td.spacer { |
Dan Beam
2014/12/08 22:41:59
td:last-of-type instead?
Charlie
2014/12/08 23:10:45
I'm not sure this will work. The HTML includes onl
|
+ width: 5px; |
+} |
+ |
+tbody, |
+thead > tr { |
+ display: block; |
+} |