chrome-devtools-frontend
Version:
Chrome DevTools UI
28 lines (23 loc) • 655 B
CSS
/*
* Copyright 2016 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 {
white-space: nowrap;
--override-bezier-icon-purple: #9c27b0;
--override-bezier-icon-purple-hover: #800080;
}
[is="ui-icon"].icon-mask.bezier-swatch-icon {
position: relative;
margin-left: 1px;
margin-right: 2px;
top: 1px;
user-select: none;
line-height: 10px;
background-color: var(--override-bezier-icon-purple);
cursor: default;
}
[is="ui-icon"].icon-mask.bezier-swatch-icon:hover {
background-color: var(--override-bezier-icon-purple-hover);
}