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

Unified 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, 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/options/chromeos/kiosk_apps.css
diff --git a/chrome/browser/resources/options/chromeos/kiosk_apps.css b/chrome/browser/resources/options/chromeos/kiosk_apps.css
deleted file mode 100644
index dde7bfffe1659a671d5d9410395c191951c1eba9..0000000000000000000000000000000000000000
--- a/chrome/browser/resources/options/chromeos/kiosk_apps.css
+++ /dev/null
@@ -1,86 +0,0 @@
-/* Copyright 2013 The Chromium Authors. All rights reserved.
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file. */
-
-#kiosk-app-list {
- border: 1px solid lightgrey;
- margin-bottom: 5px;
-}
-
-#kiosk-app-id-edit {
- width: 510px;
-}
-
-#kiosk-apps-error-banner {
- -webkit-transition: opacity 150ms;
- background-color: rgb(223, 165, 165);
- margin: 2px 0;
- opacity: 0;
- padding: 5px;
- visibility: hidden;
- white-space: nowrap;
- width: 510px;
-}
-
-#kiosk-apps-error-banner.visible {
- opacity: 1;
- visibility: visible;
-}
-
-.kiosk-app-list-item {
- white-space: nowrap;
-}
-
-.kiosk-app-list-item .space-filler {
- -webkit-box-flex: 1;
-}
-
-.kiosk-app-icon,
-.kiosk-app-name,
-.kiosk-app-status {
- display: inline-block;
- vertical-align: middle;
-}
-
-.kiosk-app-icon {
- background-size: 100%;
- height: 16px;
- width: 16px;
-}
-
-.kiosk-app-icon.spinner {
- background-image: url('chrome://resources/images/spinner.svg') !important;
-}
-
-.kiosk-app-name,
-.kiosk-app-status {
- overflow: hidden;
- text-overflow: ellipsis;
-}
-
-.kiosk-app-name {
- max-width: 250px;
-}
-
-.kiosk-app-status {
- -webkit-margin-start: 8px;
- max-width: 120px;
-}
-
-.disable-auto-launch-button,
-.enable-auto-launch-button {
- display: none;
-}
-
-.kiosk-app-list-item[auto-launch]:hover .disable-auto-launch-button,
-.kiosk-app-list-item:not([auto-launch]):hover .enable-auto-launch-button {
- display: inline-block;
-}
-
-#kiosk-disable-bailout-confirm-overlay {
- width: 250px
-}
-
-#kiosk-disable-bailout-warning-bold {
- font-weight: bold;
-}
« 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