chrome-devtools-frontend
Version:
Chrome DevTools UI
55 lines (47 loc) • 1.14 kB
CSS
/*
* Copyright 2022 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.
*/
:host {
display: inline-flex;
vertical-align: middle;
}
:host(.hidden) {
display: none;
}
.expand-button {
display: inline-flex;
justify-content: center;
align-items: center;
box-sizing: border-box;
width: 14px;
height: 10px;
margin: 0 2px;
border: 1px solid var(--override-adorner-border-color, var(--sys-color-tonal-outline));
border-radius: 10px;
background: var(--override-adorner-background-color, var(--sys-color-cdt-base-container));
padding: 0;
position: relative;
&:hover::after,
&:active::before {
content: "";
height: 100%;
width: 100%;
border-radius: inherit;
position: absolute;
top: 0;
left: 0;
}
&:hover::after {
background-color: var(--sys-color-state-hover-on-subtle);
}
&:active::before {
background-color: var(--sys-color-state-ripple-neutral-on-subtle);
}
}
.expand-button devtools-icon {
width: 14px;
height: 14px;
color: var(--sys-color-primary);
}