| OLD | NEW |
| (Empty) | |
| 1 /* Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. */ |
| 4 |
| 5 .usb-permission-page .throbber-placeholder { |
| 6 height: 16px; |
| 7 margin: 4px; |
| 8 width: 16px; |
| 9 } |
| 10 |
| 11 .usb-permission-message { |
| 12 margin: 0; |
| 13 padding-bottom: 35px; |
| 14 } |
| 15 |
| 16 .usb-permission-prompt { |
| 17 padding: 35px 20px; |
| 18 width: 360px; |
| 19 } |
| 20 |
| 21 .usb-permission-extension-desc { |
| 22 display: flex; |
| 23 } |
| 24 |
| 25 .usb-permission-extension-icon { |
| 26 background-position: center; |
| 27 background-repeat: none; |
| 28 height: 24px; |
| 29 width: 24px; |
| 30 } |
| 31 |
| 32 .usb-permission-extension-name { |
| 33 flex: 1; |
| 34 line-height: 24px; |
| 35 overflow-wrap: break-word; |
| 36 } |
| 37 |
| 38 .usb-permission-page > .action-area { |
| 39 margin: 0 3px 10px; |
| 40 } |
| OLD | NEW |