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

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

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

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

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

19
20
21
    .bold {
        font-weight: 500;
    }
22

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

28
.status-count {
29
30
31
32
33
34
35
36
37
38
    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
.concurrency {
59
60
61
62
    .editparam {
        margin-top: 5px;
        position: relative;
    }
63
}
64

65
.editparam {
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
91
    &-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;
        }
    }
92
93
94
}

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

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

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

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

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

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

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

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