succTable.scss 527 Bytes
Newer Older
1
$tableHeight: 432px;
Lijiaoa's avatar
Lijiaoa committed
2
3
4
5
6

.scrollPanel {
    height: $tableHeight;
}

7
#succTable {
Lijiaoa's avatar
Lijiaoa committed
8
    height: $tableHeight;
9
    position: relative;
Lijiaoa's avatar
Lijiaoa committed
10
11
12
13
14
    top: -10px;

    .ms-DetailsHeader {
        padding-top: 0;
    }
15
16

    .succTable-tooltip {
17
        width: 90%;
18
        position: absolute;
19
20
21
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
22

23
24
25
        a {
            font-weight: 500;
            color: blue;
26
27
        }
    }
28
29
30
31
32

    .succeed-padding {
        padding-left: 6px;
        box-sizing: border-box;
    }
33
}