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

com.xceptance.xlt.engine.resultbrowser.assets.css.jsonview.css Maven / Gradle / Ivy

Go to download

XLT (Xceptance LoadTest) is an extensive load and performance test tool developed and maintained by Xceptance.

There is a newer version: 8.1.0
Show newest version
/**
 * Inspired by the json-view library (https://github.com/pgrabovets/json-view)
 * created by Pavel Grabovets and published under ISC license.
 *
 * ISC License
 *
 * Copyright (c) 2018, Pavel Grabovets
 *
 * Permission to use, copy, modify, and/or distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

.json-line {
    margin: 4px 0;
    display: flex;
    justify-content: flex-start;
}

.json-caret {
    min-width: 16px;
    cursor: pointer;
    background: url(../images/arrow-right.gif) center center no-repeat;
}

.json-caret-expanded {
    background-image: url(../images/arrow-bottom-right.gif);
}

.json-caret-empty {
    cursor: default;
    background-image: none;
}

.json-key {
    color: #444;
    margin-right: 4px;
    margin-left: 4px;
}

.json-size {
    color: #808080;
    margin-right: 4px;
    margin-left: 4px;
}

.json-index {
    color: #444;
    margin-right: 4px;
    margin-left: 4px;
}

.json-separator {
    color: #808080;
}

.json-value {
    margin-left: 8px;
}

.json-number {
    color: #f9ae58;
}

.json-boolean {
    color: #ec5f66;
}

.json-string {
    color: #86b25c;
}

.json-null {
    color: #808080;
}

.json-match {
    background-color: #DDD;
    color: #0c46dd;
}

.json-match-current {
    background-color: #444;
    color: #FFF;
}

.json-hide {
    display: none;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy