count.scss 1.5 KB
Newer Older
1
$seriesIconMargin: 8px;
2
3
4
5
6
7
8

.ExpDuration {
    margin-top: 28px;

    span:hover {
        cursor: pointer;
    }
9
10
11
12

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

15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
.exp-progress {
    margin-top: 10px;

    .bold {
        font-weight: 500;
    }

    .joiner {
        padding: 0 3px;
    }
}

.maxTrialNum {
    .editparam {
        position: relative;
        top: -7px;
    }
}

.noEditDuration {
    position: relative;
    top: -7px;
}

.editDuration {
    position: relative;
    top: -17px;
42
43
}

44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
.editparam {
    &-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: 48px;
        display: inline-block;
        position: relative;
        top: 13px;
        left: 4px;
        margin-right: 3px;
    }
}

.ExpDuration .series .confirm {
    margin: 0 6px;
71
72
73
}

.series {
74
75
76
    position: relative;
    top: 5px;

77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
    i {
        font-size: 20px;
        font-weight: 700;
    }

    .confirm {
        margin: 0 $seriesIconMargin;

        i {
            color: green;
        }
    }
}

.cancel i {
    color: red;
93
    font-size: 16px;
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
}

.edit i {
    margin-left: 4px;
}

.overview input:disabled {
    background: transparent;
    border: none;
}

.info {
    position: absolute;
    z-index: 999;
    left: 0;
}
110
111
112
113
114
115
116
117

.mess {
    margin-top: 20px;

    .basic p {
        margin-top: 0;
    }
}