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

Unified Diff: chrome/browser/resources/options2/chromeos/change_picture_options.css

Issue 10809005: Options: Rename chrome/browser/resources/options2 -> chrome/browser/resources/options. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix. Created 8 years, 4 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/options2/chromeos/change_picture_options.css
diff --git a/chrome/browser/resources/options2/chromeos/change_picture_options.css b/chrome/browser/resources/options2/chromeos/change_picture_options.css
deleted file mode 100644
index 098b3abbffeb911bc417604a57010d22e9bbc70d..0000000000000000000000000000000000000000
--- a/chrome/browser/resources/options2/chromeos/change_picture_options.css
+++ /dev/null
@@ -1,193 +0,0 @@
-/* Copyright (c) 2012 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. */
-
-#change-picture-page .content-area {
- min-width: 800px;
-}
-
-#user-image-grid {
- -webkit-user-drag: none;
- -webkit-user-select: none;
- display: inline-block;
- margin: 10px;
- outline: none;
- /* Necessary for correct metrics calculation by grid.js. */
- overflow: hidden;
- padding: 0;
- width: 538px;
-}
-
-#user-image-grid * {
- margin: 0;
- padding: 0;
-}
-
-#user-image-grid img {
- background-color: white;
- height: 64px;
- vertical-align: middle;
- width: 64px;
-}
-
-#user-image-grid > li {
- border: 1px solid rgba(0, 0, 0, 0.15);
- border-radius: 4px;
- display: inline-block;
- margin: 8px;
- padding: 3px;
-}
-
-#user-image-grid [selected] {
- border: 2px solid rgb(0, 102, 204);
- padding: 2px;
-}
-
-/**
- * #user-image-preview can have the following classes:
- * .default-image: one of the default images is selected (including the grey
- * silhouette);
- * .profile-image: profile image is selected;
- * .online: camera is streaming video;
- * .camera: camera (live or photo) is selected;
- * .live: camera is in live mode (no photo taken yet/last photo removed).
- */
-
-#user-image-preview {
- display: inline-block;
- margin-right: 10px;
- margin-top: 20px;
- max-width: 220px;
- vertical-align: top;
-}
-
-html[dir=rtl] #user-image-preview {
- float: left;
-}
-
-#user-image-preview .perspective-box {
- -webkit-perspective: 600px;
-}
-
-.user-image-preview-img {
- display: block;
- max-height: 220px;
- max-width: 220px;
-}
-
-[camera=webrtc] .camera.live .user-image-preview-img {
- display: none;
-}
-
-.default-image .user-image-preview-img {
- background: white;
- border: solid 1px #cacaca;
- border-radius: 4px;
- padding: 2px;
-}
-
-.user-image-stream-area {
- display: none;
- position: relative;
-}
-
-[camera=webrtc] .camera.live .user-image-stream-area {
- display: block;
-}
-
-#user-image-stream-crop {
- /* TODO(ivankr): temporary workaround for crbug.com/142347. */
- -webkit-transform: rotateY(360deg);
- -webkit-transition: -webkit-transform 200ms linear;
- height: 220px;
- overflow: hidden;
- position: relative;
- width: 220px;
-}
-
-.flip-x #user-image-stream-crop {
- -webkit-transform: rotateY(180deg);
-}
-
-/* TODO(ivankr): specify dimensions from real capture size. */
-.user-image-stream {
- border: solid 1px #cacaca;
- height: 220px;
- /* Center image for 4:3 aspect ratio. */
- left: -16.6%;
- position: absolute;
- visibility: hidden;
-}
-
-.online .user-image-stream {
- visibility: visible;
-}
-
-.user-image-stream-area .spinner {
- display: none;
- left: 14px;
- position: absolute;
- top: 14px;
-}
-
-html[dir=rtl] .user-image-stream-area .spinner {
- left: auto;
- right: 14px;
-}
-
-.camera.live:not(.online) .user-image-stream-area .spinner {
- display: block;
-}
-
-#flip-photo {
- -webkit-transition: opacity 75ms linear;
- background: url('chrome://theme/IDR_MIRROR_FLIP') no-repeat;
- border: none;
- bottom: 8px;
- display: block;
- height: 32px;
- opacity: 0;
- position: absolute;
- right: 8px;
- width: 32px;
-}
-
-html[dir=rtl] #flip-photo {
- left: 8px;
- right: auto;
-}
-
-/* "Flip photo" button is hidden during flip animation. */
-.online:not(.animation) .user-image-stream-area:hover #flip-photo {
- opacity: 0.75;
-}
-
-#discard-photo,
-#take-photo {
- display: none;
- height: 25px;
- margin: 4px 1px;
- padding: 0;
- width: 220px;
-}
-
-[camera=webrtc] .camera:not(.live) #discard-photo {
- background: url('chrome://theme/IDR_USER_IMAGE_RECYCLE')
- no-repeat center 0;
- display: block;
-}
-
-[camera=webrtc] .camera.live.online #take-photo {
- background: url('chrome://theme/IDR_USER_IMAGE_CAPTURE')
- no-repeat center -1px;
- display: block;
-}
-
-#user-image-attribution {
- -webkit-padding-start: 34px;
- line-height: 26px;
-}
-
-#user-image-author-website {
- -webkit-padding-start: 5px;
-}

Powered by Google App Engine
This is Rietveld 408576698