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

Unified Diff: chrome/browser/resources/login.css

Issue 7980012: [ChromeOS] Reland - Make WebUI login use only needed resources. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 3 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
« no previous file with comments | « chrome/browser/resources/common_oobe_login.css ('k') | chrome/browser/resources/login.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/login.css
diff --git a/chrome/browser/resources/login.css b/chrome/browser/resources/login.css
deleted file mode 100644
index 4c5ce02b4fe88651e6ae6e8cff1347f47fd1b854..0000000000000000000000000000000000000000
--- a/chrome/browser/resources/login.css
+++ /dev/null
@@ -1,135 +0,0 @@
-/* Copyright (c) 2011 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.
- *
- * This is the stylesheet used by the WebUI login screen
- */
-
-html {
- /* It's necessary to put this here instead of in body in order to get the
- background-size of 100% to work properly */
- height: 100%;
-}
-
-[hidden] {
- display: none !important;
-}
-
-#user-frame {
- height: 100%;
- left: 0;
- overflow: hidden;
- position: fixed;
- /* hide the user frame until we're done loading */
- visibility: hidden;
- width: 100%;
-}
-
-/* The list holds all the user cards */
-#user-list {
- display: table;
- height: 100%;
-}
-
-/* The user slider container contains the slider and the top and bottom
- horizontal lines. */
-#user-slider-container {
- margin-top: -178px;
- position: absolute;
- top: 50%;
- width: 100%;
-}
-
-.user-card {
- display: table-cell;
- height: 100%;
- padding: 29px;
- position: relative;
- vertical-align: middle;
-}
-
-.user.focus {
- background-color: #ececec;
-}
-
-.user-card-grayed {
- opacity: 0.4;
-}
-
-.user {
- text-align: center;
- width: 220px;
- height: 242px;
- padding-top: 20px;
-}
-
-.user-image {
- /* -webkit-mask-image set by JavaScript to the image source */
- -webkit-mask-size: 100% 100%;
- background-position: center;
- background-repeat: no-repeat;
- height: 170px;
- margin: 4px;
- padding: 0px;
- width: 170px;
-}
-
-.delete-button {
- background-color: white;
- height: 16px;
- opacity: 0.5;
- position: absolute;
- right: 12px;
- top: 8px;
- width: 16px;
-}
-
-#add-user-box {
- margin-top: 48px;
-}
-
-.user-image-border-box {
- -webkit-border-radius: 2px;
- border-color: #cfcfcf;
- border-style: solid;
- border-width: 1px;
- height: 180px;
- margin: auto;
- position: relative;
- width: 180px;
-}
-
-.user span {
- color: black;
- font-size: 18px;
- line-height: 40px;
- overflow: hidden;
- text-align: center;
- text-decoration: none;
- /* TODO(fsamuel, rbyers): why isn't ellipsis working? */
- text-overflow: ellipsis;
- white-space: nowrap;
-}
-
-.user .user-login-box {
- margin-top: 4px;
-}
-
-.guest-login-box {
- text-align: center;
- width: 100%;
-}
-
-button.loginbutton {
- font-size: 16px;
- height: 32px;
- margin-top: 8px;
- width: 80%;
-}
-
-#add-user {
- height: 207px;
- width: 207px;
- background-image: url('chrome://theme/IDR_LOGIN_ADD_USER');
-}
-
« no previous file with comments | « chrome/browser/resources/common_oobe_login.css ('k') | chrome/browser/resources/login.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698