trialsDetail.scss 2.18 KB
Newer Older
1
#tabsty {
Lijiaoa's avatar
Lijiaoa committed
2
    background-color: #fff;
3
4
5

    .ms-Pivot {
        .ms-Button {
6
            padding: 0;
7

8
9
10
11
12
13
            /* reset fabric style */
            margin-right: 0;
            border-right: 2px solid #fff;
            transition: 0.3s;
        }

14
        .ms-Pivot-link::before {
15
16
            height: 0;
        }
17
18

        .is-selected {
19
            background: #999;
20
21

            &:hover {
22
                background: #999;
Lijiao's avatar
Lijiao committed
23
24
            }
        }
25

26
        .is-selected::before {
27
28
            border-bottom: none;
        }
Lijiao's avatar
Lijiao committed
29
    }
30
31

    .ms-Pivot-icon {
32
33
        margin-left: 12px;
    }
34
35
36

    .ms-Pivot-text {
        /* Default metric | Hyper-parameter | Duration | Intermediate result */
37
38
39
        margin: 0 12px;
        font-size: 16px;
        font-weight: 600;
Lijiao's avatar
Lijiao committed
40
41
42
    }
}

43
.trial {
Lijiao's avatar
Lijiao committed
44
45
    /* graph, title total height */
    width: 100%;
46
    height: 500px;
Lijiaoa's avatar
Lijiaoa committed
47

48
    .graph {
Lijiao's avatar
Lijiao committed
49
50
51
52
53
        height: 432px;
        margin: 0 auto;
    }
}

54
.detailTabs {
Lijiao's avatar
Lijiao committed
55
56
57
    padding-left: 6px;
    padding-right: 18px;
}
58

Lijiao's avatar
Lijiao committed
59
/* table list all */
60
61
62
63
64
65
66
67
.bulletedList {
    background: #fff;

    .title {
        margin-top: 18px;
        margin-left: 14px;
    }
}
Lijiao's avatar
Lijiao committed
68

69
70
71
72
73
#tableList {
    width: 96%;
    margin: 0 auto;

    .commonTableStyle {
Lijiao's avatar
Lijiao committed
74
75
        overflow: hidden;
    }
76
77
}

78
.tooldetailAccuracy {
79
80
81
82
83
84
85
    user-select: text;
    min-width: 245px;
    max-width: 350px;
    max-height: 350px;
    padding: 10px 10px;
    white-space: normal;
    overflow: auto;
86
87

    pre {
88
89
90
91
        overflow: inherit;
        margin-bottom: 10px;
    }
}
92

93
.default-metric {
94
95
96
    width: 90%;
    text-align: right;
    margin-top: 15px;
97

98
    &-graph {
99
100
101
        position: relative;
    }

102
    &-noData {
103
104
105
        position: absolute;
        left: 48%;
        top: 30%;
106
107
108
        color: #333;
    }
}
109

110
111
112
.detial-title {
    .ms-Button {
        i {
113
114
115
116
            font-size: 22px;
        }
    }
}
117
118
119

/* for yAxis # intermediate position in intermediate graph */
.intermediate-graph {
120
    position: relative;
121
122

    .xAxis {
123
124
        color: #333;
        position: absolute;
125
126
127
128
129
130
        left: 50%;
        top: 88%;
        transform: translate(-50%);
    }
}

131
132
.detail-table {
    .ms-Button {
133
134
135
        padding: 0;
        height: 26px;
        margin-top: -2px;
136
137

        span {
138
139
            padding: 0;
        }
140
141
    }
}