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

META-INF.dirigible.dev-tools.sources.debuggerPausedMessage.css Maven / Gradle / Ivy

There is a newer version: 10.6.27
Show newest version
/*
 * Copyright 2016 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.
 */

.paused-status {
    padding: 6px;
    border-bottom: 1px solid transparent;
    border-top: 1px solid rgb(189, 189, 189);
    background-color: hsl(50, 100%, 95%);
    color: rgb(107, 97, 48);
}

.-theme-with-dark-background .paused-status {
    background-color: hsl(46, 98%, 22%);
    color: #ccc;
}

.paused-status.error-reason {
    background-color: hsl(0, 100%, 97%);
    color: #6b3b3b;
}

.status-main {
    font-weight: bold;
    padding-left: 15px;
    position: relative;
}

.status-sub:not(:empty) {
    padding-left: 15px;
    padding-top: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.paused-status.error-reason .status-sub {
    color: red;
    line-height: 11px;
    max-height: 27px;
    user-select: text;
}

.status-icon {
    -webkit-filter: hue-rotate(190deg);
    position: absolute;
    left: 0;
    top: calc(50% - 5px);
}

.paused-status.error-reason .status-icon {
    -webkit-filter: none;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy