OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * Copyright 2016 The Chromium Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. |
| 5 */ |
| 6 |
| 7 .paint-profiler-overview { |
| 8 background-color: #eee; |
| 9 } |
| 10 |
| 11 .paint-profiler-canvas-container { |
| 12 flex: auto; |
| 13 position: relative; |
| 14 } |
| 15 |
| 16 .paint-profiler-pie-chart { |
| 17 width: 60px !important; |
| 18 height: 60px !important; |
| 19 padding: 2px; |
| 20 overflow: hidden; |
| 21 font-size: 10px; |
| 22 } |
| 23 |
| 24 .paint-profiler-canvas-container canvas { |
| 25 z-index: 200; |
| 26 background-color: white; |
| 27 opacity: 0.95; |
| 28 height: 100%; |
| 29 width: 100%; |
| 30 } |
| 31 |
| 32 .paint-profiler-canvas-container .overview-grid-dividers-background, |
| 33 .paint-profiler-canvas-container .overview-grid-window { |
| 34 bottom: 0; |
| 35 height: auto; |
| 36 } |
| 37 |
| 38 .paint-profiler-canvas-container .overview-grid-window-resizer { |
| 39 z-index: 2000; |
| 40 } |
| 41 |
| 42 .paint-profiler-image-view { |
| 43 overflow: hidden; |
| 44 } |
| 45 |
| 46 .paint-profiler-image-view .paint-profiler-image-container { |
| 47 -webkit-transform-origin: 0 0; |
| 48 } |
| 49 |
| 50 .paint-profiler-image-view .paint-profiler-image-container div { |
| 51 border-color: rgba(100, 100, 100, 0.4); |
| 52 border-style: solid; |
| 53 z-index: 100; |
| 54 position: absolute; |
| 55 top: 0; |
| 56 left: 0; |
| 57 } |
| 58 |
| 59 .paint-profiler-image-view img { |
| 60 border: solid 1px black; |
| 61 } |
OLD | NEW |