| 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 width: 100%; | 78 width: 100%; |
| 79 overflow-y: auto; | 79 overflow-y: auto; |
| 80 border: 0 none; | 80 border: 0 none; |
| 81 -webkit-flex: none; | 81 -webkit-flex: none; |
| 82 } | 82 } |
| 83 | 83 |
| 84 .audit-launcher-view button { | 84 .audit-launcher-view button { |
| 85 margin: 0 5px 0 0; | 85 margin: 0 5px 0 0; |
| 86 } | 86 } |
| 87 | 87 |
| 88 .audit-result-view { |
| 89 overflow: auto; |
| 90 } |
| 91 |
| 88 .panel-enabler-view.audit-launcher-view label { | 92 .panel-enabler-view.audit-launcher-view label { |
| 89 padding: 0 0 5px 0; | 93 padding: 0 0 5px 0; |
| 90 margin: 0; | 94 margin: 0; |
| 91 display: flex; | 95 display: flex; |
| 92 flex-shrink: 0; | 96 flex-shrink: 0; |
| 93 } | 97 } |
| 94 | 98 |
| 95 .panel-enabler-view.audit-launcher-view label.disabled { | 99 .panel-enabler-view.audit-launcher-view label.disabled { |
| 96 color: rgb(130, 130, 130); | 100 color: rgb(130, 130, 130); |
| 97 } | 101 } |
| (...skipping 11 matching lines...) Expand all Loading... |
| 109 .audit-launcher-view .progress-indicator { | 113 .audit-launcher-view .progress-indicator { |
| 110 display: inline-block; | 114 display: inline-block; |
| 111 } | 115 } |
| 112 | 116 |
| 113 .resource-url { | 117 .resource-url { |
| 114 float: right; | 118 float: right; |
| 115 text-align: right; | 119 text-align: right; |
| 116 max-width: 100%; | 120 max-width: 100%; |
| 117 margin-left: 4px; | 121 margin-left: 4px; |
| 118 } | 122 } |
| OLD | NEW |