OLD | NEW |
(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 } |
OLD | NEW |