probar.scss 946 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
    }
}

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

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

.ERROR {
32
    color: $error;
33
34

    .ms-ProgressIndicator-progressBar {
35
36
37
38
39
40
        background-color: $error;
    }
}

.bestMetric {
    .DONE,
41
42
    .STOPPED,
    .VIEWED {
43
44
45
46
47
48
49
50
51
52
53
54
55
        color: $done;
    }

    .ERROR {
        color: $error;
    }

    .RUNNING,
    .STOPPING,
    .INITIALIZED,
    .NO_MORE_TRIAL,
    .TUNER_NO_MORE_TRIAL {
        color: $running;
56
57
    }
}