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

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

Issue 2248913007: Add a Physical Web WebUI (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 unified diff | Download patch
OLDNEW
(Empty)
1 /* Copyright (c) 2016 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 font-family: Sans-Serif;
7 font-size: 12px;
8 }
9 .physicalWebTemplate {
10 display: flex;
11 width: 290px;
12 margin-bottom: 15px;
13 text-decoration: none;
14 }
15
16 .physicalWebIcon {
17 width: 32px;
18 }
19 .physicalWebText {
20 flex: 1;
21 }
22 .physicalWebIcon img {
23 padding-top: 1px;
24 width: 75%;
25 }
26 .physicalWebTemplate .title {
27 display: block;
28 color: #222;
29 white-space: nowrap;
30 overflow: hidden;
31 text-overflow: ellipsis;
32 margin-bottom: 3px;
33 }
34 .physicalWebTemplate .resolvedUrl {
35 display: block;
36 font-size: 80%;
37 color: #888;
38 white-space: nowrap;
39 overflow: hidden;
40 text-overflow: ellipsis;
41 margin-bottom: 4px;
42 }
43 .physicalWebTemplate .description {
44 display: block;
45 height: 2.5em;
46 font-size: 90%;
47 color: #444;
48 overflow: hidden;
49 text-overflow: ellipsis;
50 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698