| Index: third_party/WebKit/Source/devtools/front_end/components/domBreakpointsSidebarPane.css
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/components/domBreakpointsSidebarPane.css b/third_party/WebKit/Source/devtools/front_end/components/domBreakpointsSidebarPane.css
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..e58d820148162148456d3db18869f43dcb535bf5
|
| --- /dev/null
|
| +++ b/third_party/WebKit/Source/devtools/front_end/components/domBreakpointsSidebarPane.css
|
| @@ -0,0 +1,35 @@
|
| +/*
|
| + * Copyright 2017 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.
|
| + */
|
| +
|
| +.breakpoint-list {
|
| + padding-bottom: 3px;
|
| +}
|
| +
|
| +.breakpoint-list .dom-breakpoint > div {
|
| + overflow: hidden;
|
| + text-overflow: ellipsis;
|
| +}
|
| +
|
| +.breakpoint-entry {
|
| + display: flex;
|
| + white-space: nowrap;
|
| + text-overflow: ellipsis;
|
| + overflow: hidden;
|
| + padding: 2px 0;
|
| +}
|
| +
|
| +.breakpoint-list .breakpoint-entry:hover {
|
| + background-color: #eee;
|
| +}
|
| +
|
| +.breakpoint-hit {
|
| + background-color: rgb(255, 255, 194);
|
| +}
|
| +
|
| +:host-context(.-theme-with-dark-background) .breakpoint-hit {
|
| + background-color: hsl(46, 98%, 22%);
|
| + color: #ccc;
|
| +}
|
|
|