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

Side by Side Diff: chrome/browser/resources/extensions/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: rebase and remove temp flag 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
1 /* Copyright 2013 The Chromium Authors. All rights reserved. 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 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 #kiosk-apps-page .checkbox {
6 display: block;
7 }
8
5 #kiosk-app-list { 9 #kiosk-app-list {
6 border: 1px solid lightgrey; 10 border: 1px solid lightgrey;
11 height: 200px;
7 margin-bottom: 5px; 12 margin-bottom: 5px;
8 } 13 }
9 14
15 #kiosk-app-list > * {
16 -webkit-box-align: center;
17 box-sizing: border-box;
18 display: -webkit-box;
19 height: 32px;
20 }
21
22 /* TODO(xiyuan): The .row-delete-button rules probably should live somewherei
Dan Beam 2013/05/30 21:14:55 s/somewherei/somewhere/
xiyuan 2013/05/30 23:03:38 Done.
23 * else and be shared with options.css */
24 list .row-delete-button {
25 -webkit-transition: 150ms opacity;
26 background-color: transparent;
27 /* TODO(stuartmorgan): Replace with real images once they are available. */
28 background-image: -webkit-image-set(
29 url('../../../../../ui/resources/default_100_percent/close_2.png') 1x,
30 url('../../../../../ui/resources/default_200_percent/close_2.png') 2x);
31 border: none;
32 display: block;
33 height: 16px;
34 opacity: 1;
35 width: 16px;
36 }
37
38 list > *:not(:hover):not([selected]):not([lead]) .row-delete-button,
39 list:not([hasElementFocus]) > *:not(:hover):not([selected]) .row-delete-button,
40 list[disabled] .row-delete-button,
41 list .row-delete-button[disabled] {
42 opacity: 0;
43 pointer-events: none;
44 }
45
46 list .row-delete-button:hover {
47 background-image: -webkit-image-set(
48 url('../../../../../ui/resources/default_100_percent/close_2_hover.png')
49 1x,
50 url('../../../../../ui/resources/default_200_percent/close_2_hover.png')
51 2x);
52 }
53
54 list .row-delete-button:active {
55 background-image: -webkit-image-set(
56 url('../../../../../ui/resources/default_100_percent/close_2_pressed.png')
57 1x,
58 url('../../../../../ui/resources/default_200_percent/close_2_pressed.png')
59 2x);
60 }
61
10 #kiosk-app-id-edit { 62 #kiosk-app-id-edit {
11 width: 510px; 63 width: 510px;
12 } 64 }
13 65
14 #kiosk-apps-error-banner { 66 #kiosk-apps-error-banner {
15 -webkit-transition: opacity 150ms; 67 -webkit-transition: opacity 150ms;
16 background-color: rgb(223, 165, 165); 68 background-color: rgb(223, 165, 165);
17 margin: 2px 0; 69 margin: 2px 0;
18 opacity: 0; 70 opacity: 0;
19 padding: 5px; 71 padding: 5px;
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 display: inline-block; 129 display: inline-block;
78 } 130 }
79 131
80 #kiosk-disable-bailout-confirm-overlay { 132 #kiosk-disable-bailout-confirm-overlay {
81 width: 250px 133 width: 250px
82 } 134 }
83 135
84 #kiosk-disable-bailout-warning-bold { 136 #kiosk-disable-bailout-warning-bold {
85 font-weight: bold; 137 font-weight: bold;
86 } 138 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698