Chromium Code Reviews| Index: third_party/WebKit/Source/devtools/front_end/sources/watchExpressionsSidebarPane.css |
| diff --git a/third_party/WebKit/Source/devtools/front_end/sources/watchExpressionsSidebarPane.css b/third_party/WebKit/Source/devtools/front_end/sources/watchExpressionsSidebarPane.css |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..a4a2958c04081b1d6115d43a29601501df6908b7 |
| --- /dev/null |
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/watchExpressionsSidebarPane.css |
| @@ -0,0 +1,106 @@ |
| +/* |
| + * 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. |
| + */ |
| + |
| +.watch-expression-delete-button { |
| + width: 10px; |
| + height: 10px; |
| + background-image: url(Images/deleteIcon.png); |
| + background-position: 0 0; |
| + background-color: transparent; |
| + background-repeat: no-repeat; |
| + border: 0 none transparent; |
| + position: absolute; |
| + top: 4px; |
| + right: 3px; |
| + display: none; |
| +} |
| + |
| +.watch-expression-header:hover .watch-expression-delete-button { |
| + display: inline; |
| +} |
| + |
| +.watch-expressions { |
| + overflow-x: hidden; |
| + min-height: 26px; |
| +} |
| + |
| +.watch-expressions .dimmed { |
| + opacity: 0.6; |
| +} |
| + |
| +.watch-expression-title { |
| + white-space: nowrap; |
| + text-overflow: ellipsis; |
| + overflow: hidden; |
| + line-height: 16px; |
| + margin-left: 11px; |
| +} |
| + |
| +.watch-expression-object-header .watch-expression-title { |
| + margin-left: 1px; |
| +} |
| + |
| +.watch-expression { |
| + position: relative; |
| + padding: 1px 0px 1px 6px; |
| + flex: none; |
| + min-height: 20px; |
| +} |
| + |
| +.watch-expressions .name { |
| + color: rgb(136, 19, 145); |
| + flex: none; |
| + white-space: nowrap; |
| + text-overflow: ellipsis ; |
| + overflow: hidden; |
| +} |
| + |
| +.watch-expression-error { |
| + color: red; |
| +} |
| + |
| +:host-context(.-theme-with-dark-background) .watch-expression-error { |
| + color: hsl(0, 100%, 65%); |
| +} |
| + |
| +.watch-expressions-separator { |
| + flex: none; |
| +} |
| + |
| +.watch-expressions .value { |
| + white-space: nowrap; |
| + display: inline; |
| +} |
| + |
| +.watch-expression .text-prompt { |
| + text-overflow: clip; |
| + overflow: hidden; |
| + white-space: nowrap; |
| + padding-left: 4px; |
| + -webkit-user-select: text; |
| +} |
| + |
| +.watch-expression-text-prompt-proxy { |
| + margin-left: 12px; |
| +} |
| + |
| +.watch-expression-header { |
| + flex: auto; |
| +} |
| + |
| +.watch-expression-object-header { |
| + margin-left: -12px; |
| + padding-left: 12px; |
| +} |
| + |
| +.watch-expression-header:hover { |
| + background-color: #F0F0F0; |
| + padding-right: 14px; |
| +} |
| + |
| +.sidebar-pane-stack .watch-expressions { |
|
dgozman
2017/05/25 00:22:05
Just remove it.
luoe
2017/05/27 03:04:47
Done.
|
| + margin-top: 0px; |
| +} |