probar.scss 636 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/* status: 'INITIALIZED' | 'RUNNING' | 'ERROR' | 'STOPPING' | 'STOPPED' | 'DONE' */

/* status: 'TUNER_NO_MORE_TRIAL' | 'NO_MORE_TRIAL' */
.RUNNING,
.STOPPING,
.INITIALIZED,
.NO_MORE_TRIAL,
.TUNER_NO_MORE_TRIAL {
    /* specific status color */
    color: #0071bc;

    /* progress- duration & trial numbers span */
    .ms-ProgressIndicator-progressBar {
        background-color: #0071bc;
    }
}

.DONE,
.STOPPED {
    color: #009245;

    .ms-ProgressIndicator-progressBar {
        background-color: #009245;
    }
}

.ERROR {
    color: #eb0716;

    .ms-ProgressIndicator-progressBar {
        background-color: #eb0716;
    }
}