succTable.scss 356 Bytes
Newer Older
1
#succTable {
2
3
4
    min-height: 400px;
    max-height: 1000px;
    overflow-y: auto;
5
    position: relative;
6
7

    .succTable-tooltip {
8
9
        position: absolute;
        top: 40%;
10
        left: 5%;
11
12

        .link {
13
            margin-left: 15px;
14
15

            a {
16
17
18
19
20
                font-weight: 500;
                color: blue;
            }
        }
    }
21
}