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

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

Issue 734243003: Adding the chrome://copresence page (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@state
Patch Set: Created 6 years 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
« no previous file with comments | « chrome/browser/browser_resources.grd ('k') | chrome/browser/resources/copresence.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /* Copyright 2014 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */
4
5 body {
6 margin: 10px 20px;
7 }
8
9 section {
10 margin-top: 40px;
11 }
12
13 table {
14 border: 1px solid gray;
15 border-spacing: 0;
16 margin-top: 15px;
17 width: 600px;
18 }
19
20 thead {
21 background-color: rgb(220, 240, 255);
22 font-weight: bold;
23 }
24
25 tbody {
26 border-top: 1px solid gray;
27 height: 200px;
28 overflow-x: hidden;
29 overflow-y: scroll;
30 }
31
32 td {
33 padding: 5px;
34 text-align: left;
35 }
36
37 td::first-letter {
38 text-transform: capitalize;
39 }
40
41 .confirmed,
42 .valid {
43 color: green;
44 }
45
46 .done {
47 color: darkGray;
48 }
49
50 .invalid {
51 color: red;
52 }
53
54 .directives td {
55 width: 190px;
56 }
57
58 .tokens td {
59 width: 140px;
60 }
61
62 table td.spacer {
63 width: 5px;
64 }
65
66 tbody,
67 thead > tr {
68 display: block;
69 }
OLDNEW
« no previous file with comments | « chrome/browser/browser_resources.grd ('k') | chrome/browser/resources/copresence.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698