UNPKG

chrome-devtools-frontend

Version:
63 lines (54 loc) 1.34 kB
/* * Copyright 2021 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. */ .navigator { min-height: 24px; display: flex; flex-wrap: nowrap; justify-content: space-between; overflow: hidden; align-items: center; background-color: var(--sys-color-cdt-base-container); color: var(--sys-color-on-surface); } .navigator-item { display: flex; white-space: nowrap; overflow: hidden; } .address-input { height: var(--sys-size-11); padding: 0 var(--sys-size-5); margin: 0 var(--sys-size-3); text-align: center; align-items: center; outline: none; color: var(--sys-color-on-surface); border: var(--sys-size-1) solid var(--sys-color-neutral-outline); border-radius: var(--sys-shape-corner-extra-small); background: transparent; } .address-input.invalid { color: var(--sys-color-error); } .navigator-button { display: flex; background: transparent; overflow: hidden; border: none; padding: 0; outline: none; justify-content: center; align-items: center; } .navigator-button:disabled devtools-icon { opacity: 50%; } .navigator-button:enabled:hover devtools-icon { color: var(--icon-default-hover); } .navigator-button:enabled:focus devtools-icon { color: var(--icon-default-hover); }