Chromium Code Reviews| Index: third_party/WebKit/Source/devtools/front_end/perf_ui/flameChart.css |
| diff --git a/third_party/WebKit/Source/devtools/front_end/perf_ui/flameChart.css b/third_party/WebKit/Source/devtools/front_end/perf_ui/flameChart.css |
| index 6f42b1b229e3a3b43368f53cfdfa18b995f8a407..860f725cae1353ae1e023cd534cb1db4c33dd111 100644 |
| --- a/third_party/WebKit/Source/devtools/front_end/perf_ui/flameChart.css |
| +++ b/third_party/WebKit/Source/devtools/front_end/perf_ui/flameChart.css |
| @@ -45,13 +45,13 @@ |
| overflow-y: scroll; |
| } |
| +/* force non overlay scrollbars for Mac */ |
| :host-context(.platform-mac) .flame-chart-v-scroll { |
| right: 2px; |
| top: 3px; |
| bottom: 3px; |
| } |
| -/* force non-overlay scrollbars */ |
| :host-context(.platform-mac) ::-webkit-scrollbar { |
| width: 8px; |
| } |
| @@ -65,6 +65,20 @@ |
| background-color: hsla(0, 0%, 25%, 0.6); |
| } |
| +/* force non overlay scrollbars for Aura Overlay Scrollbar enabled */ |
| +:host-context(.overlay-scrollbar-enabled) ::-webkit-scrollbar { |
| + width: 10px; |
| +} |
| + |
| +:host-context(.overlay-scrollbar-enabled) ::-webkit-scrollbar-thumb { |
| + background-color: hsla(0, 0%, 0%, 0.5); |
| + border-radius: 0px; |
|
alph
2017/05/22 18:50:08
not needed?
|
| +} |
| + |
| +:host-context(.overlay-scrollbar-enabled) .flame-chart-v-scroll:hover::-webkit-scrollbar-thumb { |
| + background-color: hsla(0, 0%, 0%, 0.7); |
| +} |
| + |
| .flame-chart-selection-overlay { |
| position: absolute; |
| z-index: 100; |