progress.scss 1.15 KB
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
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
63
64
65
66
67
68
69

.status {
    color: #0573bc;
    font-size: 20px;
    font-weight: 600;

    .status-text {
        display: inline-block;
        line-height: 30px;
    }
}

.probar {
    width: 100%;
    height: 34px;
    margin-top: 15px;

    .showProgress {
        width: 300px;
        height: 30px;
    }

    .name {
        width: 178px;
        box-sizing: border-box;
        line-height: 30px;
        text-align: center;
        color: #fff;
        background-color: #999;
        border: 2px solid #e6e6e6;
        border-top-left-radius: 12px;
        border-bottom-left-radius: 12px;
    }

    .boundary {
        width: 100%;
        line-height: 24px;
        font-size: 12px;
        color: #212121;

        .right {
            text-align: right;
        }
    }

    .description {
        line-height: 34px;
        margin-left: 6px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.inputBox {
    height: 32px;
    margin-top: 5px;
}

/* office-fabric-ui progressIndicator */
.ms-ProgressIndicator-itemProgress {
    padding: 0;
    border: 2px solid #e6e6e6;
}

.cursor,
.cursor:hover {
    cursor: pointer;
}