ARK: Survival Evolved Wiki
Advertisement

他言語版: DeutschEnglishEspañolFrançaisItalianoPolskiPortuguês do BrasilРусский


CSS and Javascript changes must comply with the wiki design rules.


Note: After saving, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
/* CSS placed here will affect sysops only */

/* https://github.com/Shridhad/jjsonviewer + improvements */
#q-helper .jjson-container {
    font-size: 13px;
    line-height: 1.2;
    font-family: monospace;
    padding-left: 15px;
    margin-left: 0;
    overflow: auto;
    background-color: #f9f9f9;
}

.jjson-container,
.jjson-container ul {
    list-style: none;
}

    .jjson-container ul {
        padding: 0;
        padding-left: 20px;
        margin: 0;
    }

    .jjson-container li {
        position: relative;
    }

    .jjson-container > li > .key,
    .jjson-container .array .key {
        display: none;
    }

    .jjson-container .array .object .key {
        display: inline;
    }

    .jjson-container li:after {
        content: ",";
    }

    .jjson-container li:last-child:after {
        content: "";
    }

    .jjson-container .null {
        color: #999;
    }

    .jjson-container .string {
        color: #4e9a06;
    }

    .jjson-container .number {
        color: #a40000;
    }

    .jjson-container .boolean {
        color: #c4a000;
    }

    .jjson-container .key {
        color: #204a87;
    }

.jjson-error {
    margin: 10px;
    color: rgb(239, 62, 62);
}

.jjson-container .expanded {
    cursor: pointer;
}

    .jjson-container .expanded:before {
        content: "-";
        font-size: 1.2em;
        width: 13px;
        text-align: center;
        line-height: 13px;
        font-family: sans-serif;
        color: #933;
        position: absolute;
        left: -15px;
        top: 3px;
    }

.jjson-container .collapsed:before {
    content: "+";
    font-size: 1.1em;
    color: #000;
    top: 1px;
}

.jjson-container li .collapsed ~ .close:before {
    content: " ... ";
    color: #999;
}

.jjson-container li .collapsed ~ .name ~ .close:before {
    content: "";
}

.jjson-container .expanded.collapsed ~ .content {
    display: none;
}

.jjson-container .expanded.collapsed ~ .name {
    display: initial;
    color: #999;
}

.jjson-container .expanded ~ .name {
    display: none;
}

.jjson-container .hidden ~ ul {
    display: none;
}

.jjson-container span {
    position: static;
    white-space: pre;
}
Advertisement