task.contribution.css 1.7 KB
Newer Older
E
Erich Gamma 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
/*---------------------------------------------------------------------------------------------
 *  Copyright (c) Microsoft Corporation. All rights reserved.
 *  Licensed under the MIT License. See License.txt in the project root for license information.
 *--------------------------------------------------------------------------------------------*/

.task-statusbar-item {
	display: inline-block;
}

.task-statusbar-item-icon {
	background: url('task.svg') 50% 2px no-repeat;
	background-size: 18px;
	cursor: pointer;
14
	height: 22px;
E
Erich Gamma 已提交
15 16 17 18 19 20 21 22 23 24
	width: 24px;
	vertical-align: top;
}

.task-statusbar-item-progress {
	width: 6px;
	height: 18px;
	padding: 0px 2px 0px 2px;
	display: inline-block;
	text-align: center;
25
	vertical-align: top;
E
Erich Gamma 已提交
26 27 28 29 30
}

.task-statusbar-item-label {
	display: inline-block;
	cursor: pointer;
B
Benjamin Pasero 已提交
31
	padding: 0 0 0 5px;
E
Erich Gamma 已提交
32 33
}

34
.task-statusbar-item-label > .task-statusbar-item-label-counter {
E
Erich Gamma 已提交
35
	display: inline-block;
36 37 38
	vertical-align: top;
	padding-left: 2px;
	padding-right: 2px;
E
Erich Gamma 已提交
39 40
}

41 42 43
.task-statusbar-item-label > .task-statusbar-item-label-error,
.task-statusbar-item-label > .task-statusbar-item-label-warning,
.task-statusbar-item-label > .task-statusbar-item-label-info {
E
Erich Gamma 已提交
44
	display: inline-block;
45 46 47
	padding-right: 8px;
	width: 8px;
	height: 22px;
E
Erich Gamma 已提交
48 49
}

50 51 52 53 54 55 56 57 58 59 60 61 62
.task-statusbar-item-label > .task-statusbar-item-label-error {
	-webkit-mask: url('status-error.svg') no-repeat 50% 50%;
	-webkit-mask-size: 11px;
}

.task-statusbar-item-label > .task-statusbar-item-label-warning {
	-webkit-mask: url('status-warning.svg') no-repeat 50% 50%;
	-webkit-mask-size: 11px;
}

.task-statusbar-item-label > .task-statusbar-item-label-info {
	-webkit-mask: url('status-info.svg') no-repeat 50% 50%;
	-webkit-mask-size: 11px;
E
Erich Gamma 已提交
63
}