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

Side by Side Diff: components/proximity_auth/webui/resources/proximity_auth.css

Issue 2953863002: [CrOS Tether] ProximityAuth WebUI improvement: show the local device's ID. (Closed)
Patch Set: Rebased. Created 3 years, 6 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
OLDNEW
1 /* Copyright 2017 The Chromium Authors. All rights reserved. 1 /* Copyright 2017 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. 3 * found in the LICENSE file.
4 */ 4 */
5 5
6 table { 6 table {
7 margin-left: 10px; 7 margin-left: 10px;
8 } 8 }
9 9
10 td { 10 td {
(...skipping 13 matching lines...) Expand all
24 } 24 }
25 25
26 tr.subrow td:first-of-type { 26 tr.subrow td:first-of-type {
27 text-align: right; 27 text-align: right;
28 } 28 }
29 29
30 .flex { 30 .flex {
31 flex: 1; 31 flex: 1;
32 } 32 }
33 33
34 #local-device-id {
35 font-family: monospace;
36 }
37
34 .remote-device { 38 .remote-device {
35 display: flex; 39 display: flex;
36 flex-direction: column; 40 flex-direction: column;
37 width: 100%; 41 width: 100%;
38 } 42 }
39 43
40 .remote-device:hover { 44 .remote-device:hover {
41 background-color: #eee; 45 background-color: #eee;
42 } 46 }
43 47
(...skipping 30 matching lines...) Expand all
74 } 78 }
75 79
76 .remote-device button { 80 .remote-device button {
77 margin: 0px 2px; 81 margin: 0px 2px;
78 } 82 }
79 83
80 #eligible-devices-list[device-count='0'], 84 #eligible-devices-list[device-count='0'],
81 #ineligible-devices-list[device-count='0'] { 85 #ineligible-devices-list[device-count='0'] {
82 display: none; 86 display: none;
83 } 87 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698