1 /* 2 * Copyright (C) 2011 Apple Inc. All rights reserved. 3 * 4 * Redistribution and use in source and binary forms, with or without 5 * modification, are permitted provided that the following conditions 6 * are met: 7 * 1. Redistributions of source code must retain the above copyright 8 * notice, this list of conditions and the following disclaimer. 9 * 2. Redistributions in binary form must reproduce the above copyright 10 * notice, this list of conditions and the following disclaimer in the 11 * documentation and/or other materials provided with the distribution. 12 * 13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' 14 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 15 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS 17 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 18 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 19 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 20 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 21 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 22 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF 23 * THE POSSIBILITY OF SUCH DAMAGE. 24 */ 25 26 #url-prompt-container { 27 position: absolute; 28 top: 0; 29 bottom: 0; 30 left: 0; 31 right: 0; 32 background-color: rgba(0, 0, 0, 0.5); 33 z-index: 50000; 34 } 35 36 #url-prompt { 37 position: absolute; 38 top: 0; 39 bottom: 0; 40 left: 0; 41 right: 0; 42 width: 400px; 43 height: 300px; 44 margin: auto; 45 background-color: white; 46 -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.8); 47 padding: 50px 0; 48 text-align: center; 49 } 50 51 #loading-indicator { 52 position: absolute; 53 right: 20px; 54 width: 150px; 55 margin-top: 5px; 56 } 57 58 #spinner { 59 float: left; 60 margin-top: -1px; 61 } 62 63 #loading-indicator-label { 64 margin-left: 5px; 65 } 66 67 #recent-builds-loading-indicator { 68 color: gray; 69 } 70 71 #recent-builds-list { 72 list-style: none; 73 margin: 0; 74 padding: 0; 75 } 76 77 /* Inspector style overrides */ 78 79 .percent-time-status-bar-item { 80 /* We always show leak counts as real values, not percentages, so this button isn't useful. */ 81 display: none !important; 82 } 83 84 .data-grid .data-container { 85 overflow-x: visible; 86 overflow-y: auto; 87 } 88 89 .data-grid td > div, .data-grid th > div { 90 overflow: visible; 91 } 92