| OLD | NEW |
| 1 /* Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2015 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 .name-column, | 5 .name-column, |
| 6 .keyword-column { | 6 .keyword-column { |
| 7 flex: 2; | 7 flex: 3; |
| 8 } | 8 } |
| 9 | 9 |
| 10 .name-column { | 10 .name-column { |
| 11 display: flex; | 11 display: flex; |
| 12 } | 12 } |
| 13 | 13 |
| 14 .url-column { | 14 .url-column { |
| 15 flex: 5; | 15 flex: 3.5; |
| 16 overflow: hidden; | 16 overflow: hidden; |
| 17 text-overflow: ellipsis; | 17 text-overflow: ellipsis; |
| 18 white-space: nowrap; | 18 white-space: nowrap; |
| 19 } | 19 } |
| 20 | 20 |
| 21 .icon-container { | 21 .icon-container { |
| 22 flex: 1; | 22 flex: 1; |
| 23 margin: auto; |
| 23 text-align: center; | 24 text-align: center; |
| 24 } | 25 } |
| 25 | 26 |
| 26 .name { | 27 .name { |
| 27 flex: 3; | 28 flex: 3; |
| 29 margin: auto; |
| 28 } | 30 } |
| 29 | 31 |
| 30 #container { | 32 #container { |
| 31 border-top: 1px solid lightgray; | 33 border-top: 1px solid lightgray; |
| 32 display: flex; | 34 display: flex; |
| 33 padding: 10px 0; | 35 padding: 10px 0; |
| 34 } | 36 } |
| 35 | 37 |
| 36 .dropdown-content { | 38 .dropdown-content { |
| 37 background: white; | 39 background: white; |
| 38 box-shadow: 0 2px 6px grey; | 40 box-shadow: 0 2px 6px grey; |
| 39 } | 41 } |
| 40 | 42 |
| 41 paper-item:hover { | 43 paper-item:hover { |
| 42 background-color: #f0f0f0; | 44 background-color: #f0f0f0; |
| 43 } | 45 } |
| OLD | NEW |