[go: nahoru, domu]

blob: 5311b2c9e6cce5788e3d2badb147e74de5470f55 [file] [log] [blame]
/*
* Copyright 2023 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.
*/
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-size: inherit;
}
*:focus,
*:focus-visible {
outline: none;
}
.wrapper {
padding: 24px;
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 10px;
}
h1 {
font-size: 16px;
line-height: 19px;
color: var(--color-text-primary);
font-weight: normal;
}
devtools-icon {
width: 24px;
height: 24px;
}
.icon {
width: 24px;
height: 24px;
}
.table {
margin-top: 35px;
}
.title {
font-size: 13px;
color: var(--color-text-primary);
margin-left: 10px;
flex: 1;
overflow-x: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.row {
display: flex;
align-items: center;
padding-right: 5px;
height: 28px;
border-bottom: 1px solid var(--color-details-hairline);
}
.row:focus-within,
.row:hover {
background-color: var(--color-background-elevation-1);
}
.row:last-child {
border-bottom: none;
}
.actions {
display: flex;
align-items: center;
}
.actions button {
border: none;
background-color: transparent;
width: 24px;
height: 24px;
border-radius: 50%;
--override-background-color: rgba(26 115 232 / 15%);
}
.actions button:hover,
.actions button:focus-visible {
background-color: var(--override-background-color);
}
.actions button devtools-icon {
width: 24px;
height: 24px;
}
.actions button:hover devtools-icon,
.actions button:focus-visible devtools-icon {
--icon-color: var(--color-primary-old);
}
.actions .divider {
width: 1px;
height: 17px;
background-color: var(--color-details-hairline);
margin: 0 6px;
}