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

Side by Side Diff: remoting/client/extension/main.css

Issue 3338014: Improve UI of Chromoting client UI to select available hosts. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: One more camel Created 10 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
« no previous file with comments | « remoting/client/extension/machine.png ('k') | remoting/client/extension/manifest.json » ('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 body {
2 width: 500px;
3 overflow: hidden;
4 scrollbars: no;
5 }
6
7 p {
8 color: black;
9 }
10
11 h1 {
12 font-family: sans-serif;
13 font-size: 2em;
14 font-weight: bold;
15 margin: 2px 5px 5px 5px
16 }
17
18 .message {
19 font-family: sans-serif;
20 font-size: 1.2em;
21 padding: 0px 4px 0px 4px;
22 }
23
24 .hostlist {
25 width: 100%;
26 height: 400px;
27 margin: 0px;
28 overflow: auto;
29 border: black 1px solid;
30 }
31
32 .hostentry {
33 margin: 0;
34 padding: 3px;
35 border-top: blue 1px solid;
36 min-height: 70px;
37 }
38
39 .hostentry:first-child {
40 border-top-style: none;
41 }
42
43 a.hostentry { text-decoration: none; }
44
45 .hosticon {
46 float: left;
47 margin: 2px;
48 }
49
50 .hostname {
51 font-family: sans-serif;
52 font-size: 1.2em;
53 font-weight: bold;
54 line-height: 1.2em;
55 margin: 2px 4px 2px 75px;
56 }
57
58 .hoststatus_good {
59 font-weight: bold;
60 color: green;
61 }
62
63 .hoststatus_bad {
64 font-weight: bold;
65 color: red;
66 }
67
68 .hostinfo {
69 font-family: sans-serif;
70 font-size: 0.8em;
71 line-height: 1em;
72 margin: 2px 4px 2px 75px;
73 }
74
75 .connect {
76 float: right;
77 }
78
79 .reload {
80 font-family: sans-serif;
81 font-size: 0.8em;
82 font-style: italic;
83 text-align: right;
84 margin: 0.25em 0 0.5em 0;
85 line-height: 1em;
86 }
87
88 .login {
89 font-family: sans-serif;
90 font-size: 0.9em;
91 position: absolute;
92 bottom: 0;
93 margin-bottom: 3px;
94 }
95
96 .login_email {
97 font-weight: bold;
98 }
OLDNEW
« no previous file with comments | « remoting/client/extension/machine.png ('k') | remoting/client/extension/manifest.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698