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

META-INF.dirigible.dev-tools.timeline.timelineStatusDialog.css Maven / Gradle / Ivy

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

.timeline-status-dialog {
    display: flex;
    flex-direction: column;
    padding: 16px 16px 12px 16px;
    align-self: center;
    background-color: white;
    box-shadow: var(--drop-shadow);
}

.status-dialog-line {
    margin: 2px;
    height: 14px;
    display: flex;
    align-items: baseline;
}

.status-dialog-line .label {
    display: inline-block;
    width: 80px;
    text-align: right;
    color: #aaa;
    margin-right: 10px;
}

.timeline-status-dialog .progress .indicator-container {
    display: inline-block;
    width: 200px;
    height: 8px;
    background-color: #f4f4f4;
    display: inline-block;
}

.timeline-status-dialog .progress .indicator {
    background-color: rgb(112, 166, 255);
    height: 100%;
    width: 0;
    margin: 0;
}

.timeline-status-dialog .stop-button {
    margin-top: 8px;
    height: 100%;
    align-self: flex-end;
}

.timeline-status-dialog .stop-button button {
    min-width: 80px;
}

@media (forced-colors: active) {
    .timeline-status-dialog {
        border: 1px solid CanvasText;
    }
    .timeline-status-dialog .progress .indicator-container {
        border: 1px solid ButtonText;
        background-color: ButtonFace;
    }
    .timeline-status-dialog .progress .indicator {
        forced-color-adjust: none;
        background-color: ButtonText;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy