common.scss 699 Bytes
Newer Older
1
.ellipsis {
2
3
4
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
5
6
7
}

.link {
8
9
10
11
12
13
14
15
16
17
18
19
20
    outline: none;
    color: #333 !important;
    text-decoration: none;

    &:hover {
        color: #0071bc !important;
        text-decoration: underline;
    }

    &:active,
    &:visited {
        color: #0071bc;
    }
21
22
23
}

.cursor {
24
25
26
27
    &:hover,
    & i:hover {
        cursor: pointer;
    }
28
}
29
30

.idCopy {
31
32
33
34
35
    .ms-Button--icon {
        width: 18px;
        height: 18px;
        margin-left: 4px;
    }
36
37

    i {
38
        color: #33333c;
39
40
41
42
43
44
    }
}

.ms-DetailsRow {
    height: 32px;
}
45
46
47
48
49
50

/* for graph tooltip style */
.graph > div > div {
    padding: 0 !important;
    border: none !important;
}