count.scss 1.39 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
.concurrency {
	.editparam {
		margin-top: 5px;
61
		position: relative;
62
63
	}
}
64
.editparam {
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
90
	&-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;
		}
	}
91
92
93
}

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

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

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

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

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

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

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

.info {
126
127
	position: absolute;
	z-index: 999;
128
129
	left: -50%;
    width: 270%;
130
}