trialsDetail.scss 2.25 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
55
56
57
58
.detailTable {
    margin-bottom: 24px;
    background: #fff;
}

59
.detailTabs {
Lijiao's avatar
Lijiao committed
60
61
62
    padding-left: 6px;
    padding-right: 18px;
}
63

Lijiao's avatar
Lijiao committed
64
/* table list all */
65
66
67
68
69
70
71
72
.bulletedList {
    background: #fff;

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

74
75
76
77
78
#tableList {
    width: 96%;
    margin: 0 auto;

    .commonTableStyle {
Lijiao's avatar
Lijiao committed
79
80
        overflow: hidden;
    }
81
82
}

83
.tooldetailAccuracy {
84
85
86
87
88
89
90
    user-select: text;
    min-width: 245px;
    max-width: 350px;
    max-height: 350px;
    padding: 10px 10px;
    white-space: normal;
    overflow: auto;
91
92

    pre {
93
94
95
96
        overflow: inherit;
        margin-bottom: 10px;
    }
}
97

98
.default-metric {
99
100
101
    width: 90%;
    text-align: right;
    margin-top: 15px;
102

103
    &-graph {
104
105
106
        position: relative;
    }

107
    &-noData {
108
109
110
        position: absolute;
        left: 48%;
        top: 30%;
111
112
113
        color: #333;
    }
}
114

115
116
117
.detial-title {
    .ms-Button {
        i {
118
119
120
121
            font-size: 22px;
        }
    }
}
122
123
124

/* for yAxis # intermediate position in intermediate graph */
.intermediate-graph {
125
    position: relative;
126
127

    .xAxis {
128
129
        color: #333;
        position: absolute;
130
131
132
133
134
135
        left: 50%;
        top: 88%;
        transform: translate(-50%);
    }
}

136
137
.detail-table {
    .ms-Button {
138
139
140
        padding: 0;
        height: 26px;
        margin-top: -2px;
141
142

        span {
143
144
            padding: 0;
        }
145
146
    }
}