1/* Copyright (C) 2016 The Android Open Source Project
2
3 Licensed under the Apache License, Version 2.0 (the "License");
4 you may not use this file except in compliance with the License.
5 You may obtain a copy of the License at
6
7      http://www.apache.org/licenses/LICENSE-2.0
8
9 Unless required by applicable law or agreed to in writing, software
10 distributed under the License is distributed on an "AS IS" BASIS,
11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 See the License for the specific language governing permissions and
13 limitations under the License.
14*/
15
16.collapsible.popout {
17    margin-bottom: 50px;
18}
19
20.table {
21    font-size: 12px;
22    border: none;
23    width: 100%;
24    word-spacing: 4px;
25    font-family: monospace;
26    white-space: PRE;
27    border-collapse: collapse;
28}
29
30.section-title {
31    margin-left: 24px;
32}
33
34.html-container {
35    padding:  25px 25px;
36}
37
38.login-button {
39    border: 1px solid gray;
40    color: gray;
41    border-radius: 15px;
42    padding: 4px 15px;
43    cursor: pointer;
44}
45
46td {
47    padding: 0;
48}
49
50.count {
51    white-space: nowrap;
52    text-align: right;
53    border-right: 1px solid black;
54    padding-right: 5px;
55}
56
57.line_no {
58    padding-left: 35px;
59    white-space: nowrap;
60    padding-right: 5px;
61    border-right: 1px dotted gray;
62}
63
64.code {
65    padding-left: 10px;
66    width: 99%;
67}
68
69.indicator {
70    display: inline-block;
71    width: 50px;
72    line-height: 18px;
73    border-radius: 10px;
74    padding: 3px 5px;
75    font-size: 12px;
76    font-weight: bold;
77    color: white;
78}
79
80.total-count {
81    margin-left: auto;
82    margin-right: 8px;
83    padding-right: 5px;
84    line-height: 22px;
85    border-right: 1px solid gray;
86    font-size: 12px;
87    font-weight: bold;
88    color: gray;
89}
90
91.uncovered {
92    background-color: LightPink;
93}
94
95.covered {
96    background-color: LightGreen;
97}
98
99.source-name {
100    margin-top: -25px;
101    padding-left: 45px;
102}
103
104.loader-background {
105    display: flex;
106    align-items: center;
107    justify-content: center;
108    background-color: #000;
109
110    position: fixed;
111    z-index: 100;
112    top: 0;
113    left: 0;
114    right: 0;
115    bottom: 0;
116    opacity: 0.5;
117}