| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2008 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2009 Google Inc. All rights reserved. | 3 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
| 7 * met: | 7 * met: |
| 8 * | 8 * |
| 9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 */ | 30 */ |
| 31 | 31 |
| 32 .audits-sidebar-tree-item .icon { | 32 .audits-sidebar-tree-item .icon { |
| 33 content: url(Images/resourcesTimeGraphIcon.png); | 33 content: url(Images/resourcesTimeGraphIcon.png); |
| 34 } | 34 } |
| 35 | 35 |
| 36 .audit-result-sidebar-tree-item .icon { | 36 .audit-result-sidebar-tree-item .icon { |
| 37 content: url(Images/resourceDocumentIcon.png); | 37 content: url(Images/resourceDocumentIcon.png); |
| 38 } | 38 } |
| 39 | 39 |
| 40 .audit-launcher-view { | |
| 41 z-index: 1000; | |
| 42 position: absolute; | |
| 43 top: 0; | |
| 44 left: 0; | |
| 45 right: 0; | |
| 46 bottom: 0; | |
| 47 background-color: white; | |
| 48 font-size: 13px; | |
| 49 overflow-x: hidden; | |
| 50 overflow-y: overlay; | |
| 51 display: none; | |
| 52 } | |
| 53 | |
| 54 .audit-launcher-view.visible { | |
| 55 display: block; | |
| 56 } | |
| 57 | |
| 58 .audit-launcher-view .audit-launcher-view-content { | 40 .audit-launcher-view .audit-launcher-view-content { |
| 59 position: absolute; | |
| 60 top: 0; | |
| 61 left: 0; | |
| 62 right: 0; | |
| 63 bottom: 0; | |
| 64 padding: 0 0 0 16px; | 41 padding: 0 0 0 16px; |
| 65 white-space: nowrap; | 42 white-space: nowrap; |
| 66 display: -webkit-flex; | 43 display: -webkit-flex; |
| 67 text-align: left; | 44 text-align: left; |
| 68 -webkit-flex-direction: column; | 45 -webkit-flex-direction: column; |
| 46 flex: auto; |
| 69 } | 47 } |
| 70 | 48 |
| 71 .audit-launcher-view h1 { | 49 .audit-launcher-view h1 { |
| 72 padding-top: 15px; | 50 padding-top: 15px; |
| 73 -webkit-flex: none; | 51 -webkit-flex: none; |
| 74 } | 52 } |
| 75 | 53 |
| 76 .audit-launcher-view h1.no-audits { | 54 .audit-launcher-view h1.no-audits { |
| 77 text-align: center; | 55 text-align: center; |
| 78 font-style: italic; | 56 font-style: italic; |
| 79 position: relative; | 57 position: relative; |
| 80 left: -8px; | 58 left: -8px; |
| 81 } | 59 } |
| 82 | 60 |
| 83 .audit-launcher-view div.button-container { | 61 .audit-launcher-view div.button-container { |
| 84 width: 100%; | 62 width: 100%; |
| 85 padding: 16px 0; | 63 padding: 16px 0; |
| 86 -webkit-flex: none; | 64 -webkit-flex: none; |
| 87 } | 65 } |
| 88 | 66 |
| 89 .audit-launcher-view div.button-container > button { | 67 .audit-launcher-view div.button-container > button { |
| 90 -webkit-align-self: flex-start; | 68 -webkit-align-self: flex-start; |
| 69 margin: 5px; |
| 91 } | 70 } |
| 92 | 71 |
| 93 .audit-launcher-view fieldset.audit-categories-container { | 72 .audit-launcher-view fieldset.audit-categories-container { |
| 94 position: relative; | 73 position: relative; |
| 95 top: 11px; | 74 top: 11px; |
| 96 left: 0; | 75 left: 0; |
| 97 width: 100%; | 76 width: 100%; |
| 98 overflow-y: auto; | 77 overflow-y: auto; |
| 99 border: 0 none; | 78 border: 0 none; |
| 100 -webkit-flex: none; | 79 -webkit-flex: none; |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 font-weight: bold; | 235 font-weight: bold; |
| 257 } | 236 } |
| 258 | 237 |
| 259 .audit-launcher-view .progress-bar-container { | 238 .audit-launcher-view .progress-bar-container { |
| 260 display: inline-block; | 239 display: inline-block; |
| 261 } | 240 } |
| 262 | 241 |
| 263 .audit-launcher-view .progress-bar-container .progress-bar-stop-button { | 242 .audit-launcher-view .progress-bar-container .progress-bar-stop-button { |
| 264 display: none; | 243 display: none; |
| 265 } | 244 } |
| OLD | NEW |