probar.scss 924 Bytes
Newer Older
1
/* status: 'INITIALIZED' | 'RUNNING' | 'ERROR' | 'STOPPING' | 'STOPPED' | 'DONE' */
2
3
4
$running: #0071bc;
$done: #00ad56;
$error: #a4262c;
5
6
7
8
9
10
11
12

/* status: 'TUNER_NO_MORE_TRIAL' | 'NO_MORE_TRIAL' */
.RUNNING,
.STOPPING,
.INITIALIZED,
.NO_MORE_TRIAL,
.TUNER_NO_MORE_TRIAL {
    /* specific status color */
13
    color: $running;
14
15
16

    /* progress- duration & trial numbers span */
    .ms-ProgressIndicator-progressBar {
17
        background-color: $running;
18
19
20
21
22
    }
}

.DONE,
.STOPPED {
23
    color: $done;
24
25

    .ms-ProgressIndicator-progressBar {
26
        background-color: $done;
27
28
29
30
    }
}

.ERROR {
31
    color: $error;
32
33

    .ms-ProgressIndicator-progressBar {
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
        background-color: $error;
    }
}

.bestMetric {
    .DONE,
    .STOPPED {
        color: $done;
    }

    .ERROR {
        color: $error;
    }

    .RUNNING,
    .STOPPING,
    .INITIALIZED,
    .NO_MORE_TRIAL,
    .TUNER_NO_MORE_TRIAL {
        color: $running;
54
55
    }
}