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 16table { 17 font-family: Roboto !important; 18 font-size: 13px !important; 19 white-space: nowrap !important; 20} 21.table-header-cell { 22 background-color: white; 23 transition: max-width 1s; 24 max-width: 150px; 25} 26.table-header-cell:hover { 27 transition-delay: 0.5s; 28 max-width: 1000px; 29} 30.table-header-content.table-header-legend { 31 max-width: none; 32} 33.table-header-content { 34 font-weight: initial; 35 white-space: nowrap; 36 overflow: hidden; 37 text-overflow: ellipsis; 38 display: inline-block; 39 max-width: inherit; 40 width: 100%; 41} 42.page-button-wrapper { 43 top: 50%; 44 bottom: auto; 45 padding: 0; 46} 47#newer-wrapper { 48 left: 23px; 49 right: auto; 50} 51#chart-holder { 52 padding: 30px 5px; 53} 54#pie-chart-div { 55 width: 100%; 56 height: 300px; 57} 58#profiling-container { 59 padding: 0; 60} 61#error-div { 62 padding: 30px 25px; 63} 64#profiling-body { 65 border: none; 66} 67#profiling-list { 68 max-height: 200px; 69 overflow-y: scroll; 70} 71.collapsible-header { 72 user-select: none; 73} 74.collapsible-link { 75 color: inherit; 76} 77.collection a.collection-item.profiling-point-name { 78 color: #616161; 79 font-size: 13px; 80 padding: 2px 0 2px 25px; 81} 82#legend-wrapper { 83 display: inline-block; 84 padding: 10px 15px 12px; 85} 86#filter-wrapper { 87 height: 74px; 88} 89#search-icon-wrapper { 90 display: inline-block; 91 height: 100%; 92 padding-top: 26px; 93 padding-left: 15px; 94} 95#search-icon { 96 color: #9e9e9e; 97 cursor: default; 98} 99#help-icon-wrapper { 100 display: inline-block; 101 height: 100%; 102 padding-top: 26px; 103 padding-left: 0; 104} 105#help-icon { 106 color: #bdbdbd; 107 font-size: 18px; 108 cursor: help; 109} 110#search-wrapper { 111 display: inline-block; 112 width: 45%; 113 margin-top: 0; 114 margin-left: 5px; 115 top: -8px; 116} 117.input-field label { 118 left: 0; 119} 120.input-field label.active { 121 transform: translateY(-100%); 122} 123#refresh { 124 margin-top: 18px; 125 margin-right: 15px; 126} 127[type="checkbox"]+label { 128 padding-left: 25px; 129 margin-right: 20px; 130 margin-top: 28px; 131} 132.btn.inline-btn { 133 border-radius: 50px; 134 height: auto; 135 line-height: inherit; 136 padding: 1px; 137 margin-left: 2px; 138} 139i.material-icons.inline-icon { 140 font-size: inherit; 141} 142a.legend-circle { 143 width: 15px; 144 height: 15px; 145 padding: 0; 146 border-radius: 15px; 147} 148.legend-header-cell { 149 text-transform: capitalize; 150} 151.legend-entry { 152 display: inline-block; 153 margin: 0 5px; 154 min-width: 50px; 155} 156.legend-bubble { 157 border-radius: 20px; 158 height: 20px; 159 width: 20px; 160 margin: 0 auto; 161} 162#pie-chart-wrapper { 163 padding: 25px 0; 164} 165.pie-chart-title { 166 cursor: default; 167} 168div.status-icon { 169 width: 10px; 170 height: 10px; 171 border-radius: 10px; 172 display: inline-block; 173 margin-left: 5px; 174} 175.test-case-status { 176 border-radius: 50px; 177 display: inline-block; 178 height: 100%; 179 width: 100%; 180} 181.test-case-status.width-1 { 182 width: calc(100% - 18px); 183} 184.TEST_CASE_RESULT_PASS { 185 background-color: #7FFF00; 186} 187.TEST_CASE_RESULT_FAIL { 188 background-color: #ff4d4d; 189} 190.TEST_CASE_RESULT_SKIP { 191 background-color: #A8A8A8; 192} 193.TEST_CASE_RESULT_EXCEPTION { 194 background-color: black; 195} 196.TEST_CASE_RESULT_TIMEOUT { 197 background-color: #9900CC; 198} 199.UNKNOWN_RESULT { 200 background-color: white; 201 border: 1px #A8A8A8 solid; 202} 203