diff options
-rw-r--r-- | core/css/auth.css | 39 | ||||
-rw-r--r-- | settings/css/oauth.css | 4 | ||||
-rw-r--r-- | settings/templates/oauth-required-apps.php | 19 |
3 files changed, 0 insertions, 62 deletions
diff --git a/core/css/auth.css b/core/css/auth.css deleted file mode 100644 index 70df9f0ae0f..00000000000 --- a/core/css/auth.css +++ /dev/null @@ -1,39 +0,0 @@ -h2 { - font-size:32px; - font-weight:700; - margin-bottom:16px; - white-space:nowrap; -} - -ul.scopes { - list-style:disc; -} - -ul.scopes li { - white-space:nowrap; -} - -h2 img { - width:50%; -} - -#oauth { - width:320px; - margin:64px auto 32px; -} - -#allow-auth { - background-color:#5c3; - box-shadow:0 1px 1px #fff, 0 1px 1px #5f3 inset; - color:#fff; - text-shadow:#5e3 0 1px 0; -} - -#deny-auth { - background:none; - border:0; - box-shadow:0 0 0 #fff, 0 0 0 #fff inset; - font-size:19px; - margin:11px; - padding:0; -} diff --git a/settings/css/oauth.css b/settings/css/oauth.css deleted file mode 100644 index ccdb98cfa39..00000000000 --- a/settings/css/oauth.css +++ /dev/null @@ -1,4 +0,0 @@ -.guest-container{ width:35%; margin: 2em auto 0 auto; } -#oauth-request a.button{ float: right; } -#oauth-request ul li{ list-style: disc; } -#oauth-request ul { margin-left: 2em; margin-top: 1em; } diff --git a/settings/templates/oauth-required-apps.php b/settings/templates/oauth-required-apps.php deleted file mode 100644 index 3660f423423..00000000000 --- a/settings/templates/oauth-required-apps.php +++ /dev/null @@ -1,19 +0,0 @@ -<?php -/** - * Copyright (c) 2012, Tom Needham <tom@owncloud.com> - * This file is licensed under the Affero General Public License version 3 or later. - * See the COPYING-README file. - */ -?> -<div id="oauth-request" class="guest-container"> - <p><strong><?php print_unescaped(OC_Util::sanitizeHTML($_['consumer']['name']).'</strong> '.OC_Util::sanitizeHTML($_['message'])); ?></p> - <ul> - <?php - // Foreach requested scope - foreach($_['requiredapps'] as $requiredapp){ - print_unescaped('<li>'.OC_Util::sanitizeHTML($requiredapp).'</li>'); - } - ?> - </ul> - <a href="<?php print_unescaped(OC::$WEBROOT); ?>" id="back-home" class="button">Back to ownCloud</a> -</div> |