| /* Copyright 2017 The Chromium Authors. All rights reserved. |
| * Use of this source code is governed by a BSD-style license that can be |
| * found in the LICENSE file. */ |
| |
| table { |
| border-collapse: collapse; |
| } |
| |
| table td, |
| table th { |
| border: 1px solid #777; |
| padding-left: 4px; |
| padding-right: 4px; |
| } |
| |
| table th { |
| -webkit-padding-end: 16px; |
| background: rgb(224, 236, 255); |
| cursor: pointer; |
| padding-bottom: 4px; |
| padding-top: 4px; |
| white-space: nowrap; |
| } |
| |
| table td.title-cell { |
| max-width: 200px; |
| overflow: hidden; |
| white-space: nowrap; |
| } |
| |
| table td div.title-cell-container { |
| align-items: center; |
| display: flex; |
| justify-content: flex-start; |
| } |
| |
| table td div.favicon-div { |
| height: 16px; |
| margin: 3px; |
| padding: 0; |
| width: 16px; |
| } |
| |
| table td div.favicon-div img { |
| height: 16px; |
| width: 16px; |
| } |
| |
| table td div.title-div { |
| margin: 0; |
| overflow: hidden; |
| padding: 0; |
| white-space: nowrap; |
| } |
| |
| table td.tab-url-cell { |
| max-width: 200px; |
| overflow: hidden; |
| white-space: nowrap; |
| } |
| |
| table td.boolean-cell, |
| table td.discard-count-cell { |
| text-align: center; |
| } |
| |
| table td div.is-auto-discardable-link, |
| table td.discard-links-cell { |
| font-size: 0.6rem; |
| } |
| |
| table tr:hover { |
| background: rgb(255, 255, 187); |
| } |
| |
| th.sort-column::after { |
| content: '▲'; |
| position: absolute; |
| } |
| |
| th[data-sort-reverse].sort-column::after { |
| content: '▼'; |
| position: absolute; |
| } |