overview.scss 2.1 KB
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
58
59
60
61
62
63
64
65
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
$boxPadding: 20px 42px;

.wrapper {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-auto-rows: 82px;
    grid-gap: 18px;

    >div {
        background: #fff;
        padding: $boxPadding;
        border-radius: 20px;
        box-sizing: border-box;
    }

    .overviewProgress {
        grid-column: 2 / 5;
        grid-row: 1 / 5;
        display: grid;
        grid-auto-rows: 70px;
        padding: 0;
        background: transparent;

        .duration,
        .trialCount {
            background: #fff;
            padding: $boxPadding;
            border-radius: 20px;
            box-sizing: border-box;

            /* for alert message tooltip position */
            position: relative;
        }

        .duration {
            // grid-row: 1 / 3;
            height: 136px;
        }

        .trialCount {
            margin-top: 14px;
            height: 228px;
        }
    }
}

.overviewBasicInfo {
    grid-column-start: 1;
    grid-row: 1 / 5;
    z-index: 2;
}

.basic {
    line-height: 21px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;

    p {
        font-size: 14px;
        color: #8f8f8f;
        margin-top: 20px;
    }

    div {
        font-size: 16px;
        color: #484848;
    }

    .nowrap {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
}

.overviewTable {
    grid-column: 5 / 9;
    grid-row: 1 / 10;
    overflow: hidden;

    .topTrialTitle {
        width: 72%;
    }

    .active {
        background: #f3f2f1;
    }

    .max {
        margin-left: 7px;
    }

    .mincenter {
        margin: 0 13px 0 10px;
    }

    .chooseEntry {
        margin-right: 10px;
        line-height: 30px;
    }
}

.overviewCommand,
.overviewChart {
    grid-column: 1 / 5;
}

.overviewCommand {
    height: 144px;
    overflow: hidden;
}
$circle: 10px;
$bgblue: #0071bc;

.overviewChart {
    grid-row: 7 / 11;
    margin-top: -38px;

    .circle {
        width: $circle;
        height: $circle;
        border-radius: 50%;
        background-color: $bgblue;
        margin-top: 6px;
        margin-right: 18px;
    }
}