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

Side by Side Diff: chrome/browser/resources/options/chromeos/change_picture_options.css

Issue 158953002: Spoken feedback sounds for user photo capture/discard at image picker added. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: PlaySystemSound... functions introduced according to latest changes. Created 6 years, 10 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
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 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 #user-images-area { 5 #user-images-area {
6 display: -webkit-box; 6 display: -webkit-box;
7 } 7 }
8 8
9 #user-image-grid { 9 #user-image-grid {
10 -webkit-user-drag: none; 10 -webkit-user-drag: none;
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 */ 54 */
55 55
56 #user-image-preview { 56 #user-image-preview {
57 margin: 20px 10px 0 0; 57 margin: 20px 10px 0 0;
58 max-width: 220px; 58 max-width: 220px;
59 position: relative; 59 position: relative;
60 } 60 }
61 61
62 #user-image-preview .perspective-box { 62 #user-image-preview .perspective-box {
63 -webkit-perspective: 600px; 63 -webkit-perspective: 600px;
64 border: solid 1px #cacaca;
65 border-radius: 4px;
66 padding: 2px;
67 width: 220px;
64 } 68 }
65 69
66 #user-image-preview-img { 70 #user-image-preview-img {
67 background: white; 71 background: white;
68 border: solid 1px #cacaca; 72 border: solid 1px #cacaca;
69 border-radius: 4px; 73 border-radius: 4px;
70 max-height: 220px; 74 max-height: 220px;
71 max-width: 220px; 75 max-width: 220px;
72 padding: 2px; 76 padding: 2px;
73 } 77 }
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 } 190 }
187 191
188 #user-image-attribution { 192 #user-image-attribution {
189 -webkit-padding-start: 34px; 193 -webkit-padding-start: 34px;
190 line-height: 26px; 194 line-height: 26px;
191 } 195 }
192 196
193 #user-image-author-website { 197 #user-image-author-website {
194 -webkit-padding-start: 5px; 198 -webkit-padding-start: 5px;
195 } 199 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698