probar.scss 1.34 KB
Newer Older
1
#barBack{
2
    /* status: 'INITIALIZED' | 'RUNNING' | 'ERROR' | 'STOPPING' | 'STOPPED' | 'DONE' */
3
4
    /* status: 'TUNER_NO_MORE_TRIAL' | 'NO_MORE_TRIAL' */
    .RUNNING, .STOPPING, .INITIALIZED, .NO_MORE_TRIAL, .TUNER_NO_MORE_TRIAL{
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
        /* specific status color */
        color: #0071bc;
        .ant-progress-bg {
            background-color: #0071bc;
        }
        .ant-progress-text{
            color: #0071bc;
        }
    }
    .DONE, .STOPPED{
        color: #009245;
        .ant-progress-bg {
            background-color: #009245;
        }
        .ant-progress-text{
            color: #009245;
        }
    }
    .ERROR{
        color: #eb0716;
        .ant-progress-bg {
            background-color: #eb0716;
        }
        .ant-progress-text{
            color: #eb0716;
        }

    }
    .ant-progress-bg{
        border-radius: 0 !important;
    }
    .ant-progress-status-success .ant-progress-bg{
        border-radius: 0 12px 12px 0 !important;
    }
}

.errorBtn{
    margin-left: 15px;
    display: inline-block;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    font-size: 14px;
    border: 1px solid #4d4d4d;
    border-radius: 50%;
    background-color: #4d4d4d;
    color: #fff;
}
.errorBtn:hover{
    cursor: pointer;
}

.errors{
    width: 240px;
    font-size: 14px;
    color: #212121;
}