view analyzer/fx/src/main/resources/jp/co/ntt/oss/heapstats/fx/plugin/builtin/log/log.css @ 272:dd85c1cbc8c8

Bug 3752: Migrate to OpenJFX 13 Reviewed-by: ykubota https://github.com/HeapStats/heapstats/pull/144
author Yasumasa Suenaga <yasuenag@gmail.com>
date Fri, 27 Sep 2019 14:47:03 +0900
parents
children
line wrap: on
line source

/*
 * Copyright (C) 2014-2017 Yasumasa Suenaga
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */

/* 
    Created on : 2014/05/11, 23:24:38
    Author     : Yasumasa Suenaga
*/

.rect-range-selected {
    -fx-background-color: lime;
}

.rect-range-unselected {
    -fx-background-color: grey;
}

/* Java CPU */
#javaCPUChart .series0 {
    -fx-fill: red;
    -fx-stroke: red;
    -fx-background-color: red, white;
}
#javaCPUChart .series1 {
    -fx-fill: blue;
    -fx-stroke: blue;
    -fx-background-color: blue, white;
}

/* System CPU */
#systemCPUChart .series0 {
    -fx-fill: red;
    -fx-stroke: red;
    -fx-background-color: red, white;
}
#systemCPUChart .series1 {
    -fx-fill: limegreen;
    -fx-stroke: limegreen;
    -fx-background-color: limegreen, white;
}
#systemCPUChart .series2 {
    -fx-fill: blue;
    -fx-stroke: blue;
    -fx-background-color: blue, white;
}
#systemCPUChart .series3 {
    -fx-fill: orange;
    -fx-stroke: orange;
    -fx-background-color: orange, white;
}
#systemCPUChart .series4 {
    -fx-fill: violet;
    -fx-stroke: violet;
    -fx-background-color: violet, white;
}
#systemCPUChart .series5 {
    -fx-fill: skyblue;
    -fx-stroke: skyblue;
    -fx-background-color: skyblue, white;
}
#systemCPUChart .series6 {
    -fx-fill: bisque;
    -fx-stroke: bisque;
    -fx-background-color: bisque, white;
}
#systemCPUChart .series7 {
    -fx-fill: darkgray;
    -fx-stroke: darkgray;
    -fx-background-color: darkgray, white;
}
#systemCPUChart .series8 {
    -fx-fill: maroon;
    -fx-stroke: maroon;
    -fx-background-color: maroon, white;
}


/* Java Native Memory */
#javaMemoryChart .series0 {
    -fx-stroke: blue;
    -fx-background-color: blue, white;
}
#javaMemoryChart .series1 {
    -fx-stroke: red;
    -fx-background-color: red, white;
}

/* Safepoint chart */
#safepointChart .series0 {
    -fx-stroke: limegreen;
    -fx-background-color: limegreen, white;
}

/* Safepoint time chart */
#safepointTimeChart .series0 {
    -fx-stroke: orange;
    -fx-background-color: orange, white;
}

/* Thread chart */
#threadChart .series0 {
    -fx-stroke: red;
    -fx-background-color: red, white;
}

/* Monitor chart */
#monitorChart .series0 {
    -fx-stroke: blue;
    -fx-background-color: blue, white;
}

/* Archive file area */
#logArea { -fx-font-family: monospace ; }