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

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

8
.exp-progress {
9
    margin-top: 9px;
10

11
12
13
    .bold {
        font-weight: 500;
    }
14

15
16
17
    .joiner {
        padding: 0 3px;
    }
18
}
19

20
.status-count {
21
22
23
24
25
26
27
28
29
30
    span {
        font-size: 14px;
        color: #8f8f8f;
    }

    p {
        font-size: 16px;
        font-weight: 500;
        color: #484848;
    }
31
32
33
}

.maxTrialNum {
34
    margin-bottom: 10px;
35
36
37
38
    .editparam {
        position: relative;
        top: -7px;
    }
39
40
41
}

.noEditDuration {
42
43
    position: relative;
    top: -7px;
44
45
46
}

.editDuration {
47
48
    position: relative;
    top: -4px;
49
50
}

51
52
53
54
55
56
57
58
.editExpDuration{
    box-sizing: border-box;
    width: 31%;
    position: relative;
    left: 69%;
    bottom: 33%;
}

59
.concurrency {
60
61
62
63
    .editparam {
        margin-top: 5px;
        position: relative;
    }
64
}
65

66
.editparam {
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
    &-Input {
        width: 42px;
        height: 32px;
        padding-right: 5px;
        text-align: right;
        outline: none;
        border: none;
        border-bottom: 1px solid #ccc;
    }

    .maxExecDuration {
        width: 36px;
    }

    &-dropdown {
82
        width: 60px;
83
84
85
86
87
88
89
90
91
92
        display: inline-block;
        position: relative;
        top: 13px;
        left: 4px;
        margin-right: 3px;

        .ms-Dropdown-title {
            padding-right: 0;
        }
    }
93
94
95
}

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

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

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

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

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

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

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

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