summaryrefslogtreecommitdiff
path: root/src/main/webapp/css/test_results.css
blob: 1e7c13bba1b9dfa67834f144275a1cf39fefe1a9 (plain)
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
/* Copyright (C) 2017 The Android Open Source Project

 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
 You may obtain a copy of the License at

      http://www.apache.org/licenses/LICENSE-2.0

 Unless required by applicable law or agreed to in writing, software
 distributed under the License is distributed on an "AS IS" BASIS,
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.
*/
li.test-run-container.active {
    border-radius: 0 0 10px 10px;
}
.collapsible-header {
    user-select: none;
}
.collapsible-header.disabled {
    pointer-events: none;
}
.collapsible-header.test-run {
    position: relative;
}
.test-run-metadata {
    font-size: 13px;
    line-height: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
    display: inline-block;
    cursor: text;
    user-select: initial;
}
.suite-test-run-metadata {
    font-size: 13px;
    line-height: 15px;
    position: relative;
    display: inline-block;
    cursor: text;
    user-select: initial;
}
.test-results.row {
    margin: 0;
    border-radius: 0 0 10px 10px;
}
.test-case-container {
    font-weight: 400;
    padding: 10px 15px 15px;
    max-height: 33%;
    overflow: auto;
    box-shadow: inset 0 5px 7px -5px lightgrey;
}
.row .col.test-col {
    padding: 0;
}
.row .col.test-col.bordered {
    border-right: 1px solid lightgray;
}
.row .col.test-col.left-most {
    border-radius: 0 0 0 10px;
}
.row .col.test-col.right-most {
    border-radius: 0 0 10px 0;
}
.row .col.test-col.left-most.right-most {
    border-radius: 0 0 10px 10px;
}
.test-result-label {
    text-transform: capitalize;
    border-bottom: 1px solid lightgray;
    padding: 4px 15px;
    margin: 0;
}
.loaders {
    position: absolute;
    left:0;
    right:0;
    top:0;
    bottom:0;
    margin:auto;
}
.indicator {
    color: white;
    font-size: 12px;
    line-height: 20px;
    font-weight: bold;
    padding: 1px 6px;
    margin-top: 10px;
    min-width: 40px;
    border-radius: 10px;
}
.indicator.padded {
    margin-right: 5px;
}
.test-col .indicator {
    margin-top: 2px;
}
.material-icons.expand-arrow {
    right: 3px;
    bottom: 0px;
    position: absolute;
    transition: transform 0.2s;
}
.rotate {
    transform: rotate(-180deg);
}
i.material-icons.inline-icon {
    font-size: inherit;
}
.test-run-label {
    font-size: 18px;
    line-height: 35px;
    font-weight: 300;
}