Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(120)

Side by Side Diff: chrome/browser/resources/options/chromeos/kiosk_apps.css

Issue 15966004: cros: Move kiosk settings to extensions page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix space Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/options/chromeos/kiosk_app_list.js ('k') | chrome/browser/resources/options/chromeos/kiosk_apps.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698