| OLD | NEW |
| (Empty) |
| 1 /* Copyright 2013 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 #kiosk-app-list { | |
| 6 border: 1px solid lightgrey; | |
| 7 margin-bottom: 5px; | |
| 8 } | |
| 9 | |
| 10 #kiosk-app-id-edit { | |
| 11 width: 510px; | |
| 12 } | |
| 13 | |
| 14 #kiosk-apps-error-banner { | |
| 15 -webkit-transition: opacity 150ms; | |
| 16 background-color: rgb(223, 165, 165); | |
| 17 margin: 2px 0; | |
| 18 opacity: 0; | |
| 19 padding: 5px; | |
| 20 visibility: hidden; | |
| 21 white-space: nowrap; | |
| 22 width: 510px; | |
| 23 } | |
| 24 | |
| 25 #kiosk-apps-error-banner.visible { | |
| 26 opacity: 1; | |
| 27 visibility: visible; | |
| 28 } | |
| 29 | |
| 30 .kiosk-app-list-item { | |
| 31 white-space: nowrap; | |
| 32 } | |
| 33 | |
| 34 .kiosk-app-list-item .space-filler { | |
| 35 -webkit-box-flex: 1; | |
| 36 } | |
| 37 | |
| 38 .kiosk-app-icon, | |
| 39 .kiosk-app-name, | |
| 40 .kiosk-app-status { | |
| 41 display: inline-block; | |
| 42 vertical-align: middle; | |
| 43 } | |
| 44 | |
| 45 .kiosk-app-icon { | |
| 46 background-size: 100%; | |
| 47 height: 16px; | |
| 48 width: 16px; | |
| 49 } | |
| 50 | |
| 51 .kiosk-app-icon.spinner { | |
| 52 background-image: url('chrome://resources/images/spinner.svg') !important; | |
| 53 } | |
| 54 | |
| 55 .kiosk-app-name, | |
| 56 .kiosk-app-status { | |
| 57 overflow: hidden; | |
| 58 text-overflow: ellipsis; | |
| 59 } | |
| 60 | |
| 61 .kiosk-app-name { | |
| 62 max-width: 250px; | |
| 63 } | |
| 64 | |
| 65 .kiosk-app-status { | |
| 66 -webkit-margin-start: 8px; | |
| 67 max-width: 120px; | |
| 68 } | |
| 69 | |
| 70 .disable-auto-launch-button, | |
| 71 .enable-auto-launch-button { | |
| 72 display: none; | |
| 73 } | |
| 74 | |
| 75 .kiosk-app-list-item[auto-launch]:hover .disable-auto-launch-button, | |
| 76 .kiosk-app-list-item:not([auto-launch]):hover .enable-auto-launch-button { | |
| 77 display: inline-block; | |
| 78 } | |
| 79 | |
| 80 #kiosk-disable-bailout-confirm-overlay { | |
| 81 width: 250px | |
| 82 } | |
| 83 | |
| 84 #kiosk-disable-bailout-warning-bold { | |
| 85 font-weight: bold; | |
| 86 } | |
| OLD | NEW |