count.scss 1.35 KB
Newer Older
Lijiaoa's avatar
Lijiaoa committed
1
$seriesIconMargin: 10px;
2
3
4
5
6
$margin: 24px;

.marginTop {
	margin-top: $margin;
}
7
8

.ExpDuration {
9
	margin-top: $margin;
10

11
12
13
	.maxTrialNum {
		margin-bottom: 10px;
	}
14
15
}

16
.exp-progress {
17
18
19
20
21
	margin-top: 9px;

	.bold {
		font-weight: 500;
	}
22

23
24
25
26
	.joiner {
		padding: 0 3px;
	}
}
27

28
29
30
31
32
33
34
35
36
37
38
.status-count {
	span {
		font-size: 14px;
		color: #8f8f8f;
	}

	p {
		font-size: 16px;
		font-weight: 500;
		color: #484848;
	}
39
40
41
}

.maxTrialNum {
42
43
44
45
	.editparam {
		position: relative;
		top: -7px;
	}
46
47
48
}

.noEditDuration {
49
50
	position: relative;
	top: -7px;
51
52
53
}

.editDuration {
54
55
	position: relative;
	top: -4px;
56
57
}

58
59
60
61
62
.concurrency {
	.editparam {
		margin-top: 5px;
	}
}
63
.editparam {
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
	&-Input {
		width: 42px;
		height: 32px;
		padding-right: 5px;
		text-align: right;
		outline: none;
		border: none;
		border-bottom: 1px solid #ccc;
	}

	.maxExecDuration {
		width: 36px;
	}

	&-dropdown {
		width: 65px;
		display: inline-block;
		position: relative;
		top: 13px;
		left: 4px;
		margin-right: 3px;

		.ms-Dropdown-title {
			padding-right: 0;
		}
	}
90
91
92
}

.series {
93
94
	position: relative;
	top: 5px;
95

96
97
98
99
	i {
		font-size: 20px;
		font-weight: 700;
	}
100

101
102
	.confirm {
		margin: 0 $seriesIconMargin;
103

104
105
106
107
		i {
			color: green;
		}
	}
108
109
110
}

.cancel i {
111
112
	color: red;
	font-size: 16px;
113
114
115
}

.edit i {
116
	margin-left: 4px;
117
118
119
}

.overview input:disabled {
120
121
	background: transparent;
	border: none;
122
123
124
}

.info {
125
126
127
	position: absolute;
	z-index: 999;
	left: 0;
128
}