All Downloads are FREE. Search and download functionalities are using the official Maven repository.

META-INF.dirigible.dev-tools.profiler.heapProfiler.css Maven / Gradle / Ivy

There is a newer version: 10.6.27
Show newest version
/*
 * Copyright (C) 2009 Google Inc. All rights reserved.
 * Copyright (C) 2010 Apple Inc. All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are
 * met:
 *
 *     * Redistributions of source code must retain the above copyright
 * notice, this list of conditions and the following disclaimer.
 *     * Redistributions in binary form must reproduce the above
 * copyright notice, this list of conditions and the following disclaimer
 * in the documentation and/or other materials provided with the
 * distribution.
 *     * Neither the name of Google Inc. nor the names of its
 * contributors may be used to endorse or promote products derived from
 * this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

.heap-snapshot-view {
    overflow: hidden;
}

.heap-snapshot-view .data-grid {
    border: none;
}

.heap-snapshot-view .data-grid tr:empty {
    height: 16px;
    visibility: hidden;
}

.heap-snapshot-view .data-grid span.percent-column {
    width: 35px !important;
}

.heap-snapshot-view .object-value-object,
.object-value-node {
    display: inline;
    position: static;
}

.heap-snapshot-view .object-value-string {
    white-space: nowrap;
}

.heap-snapshot-view td.object-column .objects-count {
    margin-left: 10px;
    font-size: 11px;
    color: grey;
}

.heap-snapshot-view tr:not(.selected) .object-value-id {
    color: grey;
}

.heap-snapshot-view .data-grid {
    flex: auto;
}

.profile-view .heap-tracking-overview {
    flex: 0 0 80px;
    height: 80px;
}

.heap-snapshot-view .retaining-paths-view {
    overflow: hidden;
}

.heap-snapshot-view .heap-snapshot-view-resizer {
    background-image: url(Images/toolbarResizerVertical.png);
    background-color: #eee;
    border-bottom: 1px solid rgb(179, 179, 179);
    background-repeat: no-repeat;
    background-position: right center, center;
    flex: 0 0 21px;
}

.heap-snapshot-view .heap-snapshot-view-resizer .title > span {
    display: inline-block;
    padding-top: 3px;
    vertical-align: middle;
    margin-left: 4px;
    margin-right: 8px;
}

.heap-snapshot-view .heap-snapshot-view-resizer * {
    pointer-events: none;
}

.heap-snapshot-view tr:not(.selected) td.object-column span.highlight {
    background-color: inherit;
}

.heap-snapshot-view td.object-column > div > span {
    margin-right: 6px;
}

.heap-snapshot-view td.object-column span.heap-object-source-link {
    float: right;
}

.heap-snapshot-view td.object-column span.heap-object-source-link:empty {
    animation: fadeInOut 2s infinite;
}

.heap-snapshot-view td.object-column span.heap-object-source-link:empty:before {
    content: "\b7\b7";
    font-weight: bold;
}

@keyframes fadeInOut {
    0% {
        transform: rotate(0);
    }
    50% {
        transform: rotate(0.5turn);
    }
    100% {
        transform: rotate(1turn);
    }
}

.heap-snapshot-view tr:not(.selected) td.object-column span.heap-object-tag {
    color: #888;
}

.heap-snapshot-view td.object-column span.grayed {
    color: gray;
}

.cycled-ancessor-node {
    opacity: 0.6;
}

#heap-recording-view .profile-view {
    top: 80px;
}

.heap-overview-container {
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 100%;
    height: 80px;
}

#heap-recording-overview-grid .resources-dividers-label-bar {
    pointer-events: auto;
}

#heap-recording-overview-container {
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.heap-recording-overview-canvas {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    bottom: 0;
}

.heap-snapshot-statistics-view {
    overflow: auto;
}

.heap-snapshot-stats-pie-chart {
    margin: 12px 30px;
    flex-shrink: 0;
}

.heap-allocation-stack .stack-frame {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgb(240, 240, 240);
    padding: 2px;
}

.heap-allocation-stack .stack-frame:hover:not(:focus) {
    background-color: rgba(0, 0, 0, 0.1);
}

.heap-allocation-stack .stack-frame:focus {
    background-color: var(--selection-bg-color);
    color: var(--selection-fg-color);
}

.heap-allocation-stack .stack-frame:focus:hover {
    background-color: var(--accent-color-hover);
}

.heap-allocation-stack .stack-frame .devtools-link {
    color: rgb(33%, 33%, 33%);
}

.heap-allocation-stack .stack-frame:focus .devtools-link {
    color: var(--selection-fg-color);
}

.no-heap-allocation-stack {
    padding: 5px;
}

@media (forced-colors: active) {
    .cycled-ancessor-node {
        opacity: 1;
    }
    .heap-snapshot-view td.object-column .objects-count,
    .heap-snapshot-view tr:not(.selected) td.object-column span.heap-object-tag,
    .heap-snapshot-view tr:not(.selected) .object-value-id {
        color: ButtonText;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy