| 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 width: 100%; | 70 width: 100%; |
| 71 overflow-y: auto; | 71 overflow-y: auto; |
| 72 border: 0 none; | 72 border: 0 none; |
| 73 -webkit-flex: none; | 73 -webkit-flex: none; |
| 74 } | 74 } |
| 75 | 75 |
| 76 .audit-launcher-view button { | 76 .audit-launcher-view button { |
| 77 margin: 0 5px 0 0; | 77 margin: 0 5px 0 0; |
| 78 } | 78 } |
| 79 | 79 |
| 80 .audit-result-view { |
| 81 overflow: auto; |
| 82 } |
| 83 |
| 80 .panel-enabler-view.audit-launcher-view label { | 84 .panel-enabler-view.audit-launcher-view label { |
| 81 padding: 0 0 5px 0; | 85 padding: 0 0 5px 0; |
| 82 margin: 0; | 86 margin: 0; |
| 83 display: flex; | 87 display: flex; |
| 84 flex-shrink: 0; | 88 flex-shrink: 0; |
| 85 } | 89 } |
| 86 | 90 |
| 87 .panel-enabler-view.audit-launcher-view label.disabled { | 91 .panel-enabler-view.audit-launcher-view label.disabled { |
| 88 color: rgb(130, 130, 130); | 92 color: rgb(130, 130, 130); |
| 89 } | 93 } |
| (...skipping 11 matching lines...) Expand all Loading... |
| 101 .audit-launcher-view .progress-indicator { | 105 .audit-launcher-view .progress-indicator { |
| 102 display: inline-block; | 106 display: inline-block; |
| 103 } | 107 } |
| 104 | 108 |
| 105 .resource-url { | 109 .resource-url { |
| 106 float: right; | 110 float: right; |
| 107 text-align: right; | 111 text-align: right; |
| 108 max-width: 100%; | 112 max-width: 100%; |
| 109 margin-left: 4px; | 113 margin-left: 4px; |
| 110 } | 114 } |
| OLD | NEW |