count.scss 722 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
$seriesIconMargin: 13px;

.ExpDuration {
    margin-top: 28px;

    span:hover {
        cursor: pointer;
    }
}

.durationInput {
    width: 42px;
    height: 32px;
    padding-right: 5px;
    text-align: right;
    outline: none;
    border: none;
    border-bottom: 1px solid #ccc;
}

.maxExecDuration {
    width: 74px;
}

.series {
    i {
        font-size: 20px;
        font-weight: 700;
    }

    .confirm {
        margin: 0 $seriesIconMargin;

        i {
            color: green;
        }
    }
}

.cancel i {
    color: red;
}

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

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

.info {
    position: absolute;
    z-index: 999;
    left: 0;
}