"src/targets/vscode:/vscode.git/clone" did not exist on "af0d45a50f149472f2cba394fb232db2ee3254b2"
common.scss 568 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44

.idCopy {
	.ms-Button--icon {
		width: 18px;
    	height: 18px;
		margin-left: 4px;
	}

    i {
        color: #33333C;
    }
}

.ms-DetailsRow {
    height: 32px;
}