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

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

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

.thread-item {
    padding: 3px 8px 3px 20px;
    position: relative;
    min-height: 18px;
    line-height: 15px;
    display: flex;
    flex-wrap: wrap;
}

.thread-item + .thread-item {
    border-top: 1px solid #efefef;
}

.thread-item:hover {
    background-color: #eee;
}

.thread-item[data-keyboard-focus="true"] {
    background-color: var(--focus-bg-color);
}

.thread-item-title,
.thread-item-paused-state {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.thread-item-paused-state {
    color: #888;
    margin-left: auto;
    padding: 0 10px 0 10px;
}

.selected-thread-icon {
    display: none;
    position: absolute;
    top: 5px;
    left: 4px;
}

.thread-item.selected .selected-thread-icon {
    display: block;
}

@media (forced-colors: active) {
    .thread-item:hover,
    .thread-item[data-keyboard-focus="true"] {
        forced-color-adjust: none;
        background-color: Highlight;
    }
    .thread-item:hover > div,
    .thread-item[data-keyboard-focus="true"] > div {
        color: HighlightText;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy