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

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

Issue 2698503004: Add empty list indicator for Physical Web WebUI (Closed)
Patch Set: remove scanning indicator Created 3 years, 9 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 (c) 2016 The Chromium Authors. All rights reserved. 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 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 body { 5 body {
6 font-family: Sans-Serif; 6 font-family: Sans-Serif;
7 font-size: .9em; 7 font-size: .9em;
8 } 8 }
9 .physicalWebTemplate { 9 .physicalWebTemplate {
10 display: flex; 10 display: flex;
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 } 43 }
44 .physicalWebText .description { 44 .physicalWebText .description {
45 display: block; 45 display: block;
46 height: 2.5em; 46 height: 2.5em;
47 line-height: 1.25; 47 line-height: 1.25;
48 font-size: 90%; 48 font-size: 90%;
49 color: #444; 49 color: #444;
50 overflow: hidden; 50 overflow: hidden;
51 text-overflow: ellipsis; 51 text-overflow: ellipsis;
52 } 52 }
53
54 #body-container {
55 visibility:visible;
cco3 2017/02/23 23:36:54 This is default, so I don't think it's needed.
Ran 2017/02/24 18:52:59 Done.
56 }
57
58 #empty-container {
59 visibility:hidden;
cco3 2017/02/23 23:36:54 I think we should be using display:none, because o
Ran 2017/02/24 18:52:59 Done.
60 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698