"src/vscode:/vscode.git/clone" did not exist on "c78ce73d060dfc615bc8b6f1acf5607d27f9b374"
common.scss 502 Bytes
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
.ellipsis {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.link {
	outline: none;
	color: #333 !important;
	text-decoration: none;
	
	&:hover {
		color: #0071bc !important;
		text-decoration: underline;
	}
	&:active,
	&:visited {
		color: #0071bc;
	}
}

.cursor {
	&:hover,
	& i:hover {
		cursor: pointer;
	}
}
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43

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

    i {
        color: #33333C;
    }
}

.ms-DetailsRow {
    height: 32px;
}