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;
Lijiaoa's avatar
Lijiaoa committed
35

36
37
38
39
    .editparam {
        position: relative;
        top: -7px;
    }
40
41
42
}

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

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

Lijiaoa's avatar
Lijiaoa committed
52
.editExpDuration {
53
54
55
56
57
58
59
    box-sizing: border-box;
    width: 31%;
    position: relative;
    left: 69%;
    bottom: 33%;
}

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

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

    .maxExecDuration {
        width: 36px;
    }

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

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

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

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

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

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

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

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

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

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