chrome-devtools-frontend
Version:
Chrome DevTools UI
66 lines (56 loc) • 1.77 kB
CSS
/*
* Copyright 2018 The Chromium Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
:host {
z-index: 30;
padding: var(--sys-size-3);
background-color: var(--sys-color-surface3);
border-radius: 7px;
border: var(--sys-size-2) solid var(--sys-color-divider);
width: 90%;
pointer-events: auto;
}
:host(.sources-edit-breakpoint-dialog) {
border-radius: 0;
z-index: 30;
background-color: var(--sys-color-surface3);
width: 555px;
pointer-events: auto;
margin-left: calc(-1 * var(--sys-size-1));
padding: 0 10px 10px 5px;
border: var(--sys-size-1) solid var(--sys-color-divider);
}
:host-context(.sources-edit-breakpoint-dialog) .condition-editor {
background-color: var(--sys-color-cdt-base-container);
margin: 0 var(--sys-size-4) var(--sys-size-9) 3px;
}
:host-context(.sources-edit-breakpoint-dialog) .source-frame-breakpoint-toolbar {
font-family: var(--default-font-family);
font-size: var(--sys-typescale-body4-size);
}
:host-context(.sources-edit-breakpoint-dialog) .link,
.devtools-link {
font-family: var(--default-font-family);
font-size: var(--sys-typescale-body4-size);
margin: 0 3px;
}
:host-context(.sources-edit-breakpoint-dialog) devtools-icon.link-icon {
vertical-align: sub;
margin-right: 0.5ch;
color: var(--icon-link);
width: var(--sys-size-8);
height: var(--sys-size-8);
}
:host-context(.sources-edit-breakpoint-dialog) .link-wrapper {
display: inline-flex;
}
:host-context(.sources-edit-breakpoint-dialog) .dialog-header {
display: flex;
justify-content: space-between;
align-items: center;
}
:host-context(.sources-edit-breakpoint-dialog) .dialog-header > devtools-icon:hover {
color: var(--icon-default-hover);
}